interface OAuthGoogleLoginInput {
    purpose: "oauth-login" | "oauth-signup";
    redirectUrl: string;
    typeId?: string;
}

Properties

purpose: "oauth-login" | "oauth-signup"

Purpose of the oauth process. When 'login', users will not be auto created

redirectUrl: string
typeId?: string

Type ID to create users as. This is only needed when purpose is signup (login will not use this) Default: '000;

Generated using TypeDoc