APIInterface
: { generateEmailVerifyTokenPOST
: undefined | ((input
: { options
: APIOptions; userContext
: any }) => Promise<{ status
: "EMAIL_ALREADY_VERIFIED_ERROR" | "OK" } | GeneralErrorResponse>); isEmailVerifiedGET
: undefined | ((input
: { options
: APIOptions; userContext
: any }) => Promise<{ isVerified
: boolean; status
: "OK" } | GeneralErrorResponse>); verifyEmailPOST
: undefined | ((input
: { options
: APIOptions; token
: string; userContext
: any }) => Promise<{ status
: "OK"; user
: User } | { status
: "EMAIL_VERIFICATION_INVALID_TOKEN_ERROR" } | GeneralErrorResponse>) }