signInUp(thirdPartyId, thirdPartyUserId, email: { id, isVerified })
#
ParametersthirdPartyId
- type:
string
- type:
thirdPartyUserId
- type:
string
- type:
email
id
- type:
string
- type:
isVerified
- type:
boolean
- type:
#
ReturnsPromise<{
status: "OK";
createdNewUser: boolean;
user: User;
} | {
status: "FIELD_ERROR";
error: string; // errors during sign in / up - for example if the OAuth provider does not return the user's email.
}>