Variable verifyCredentials
verifyCredentials: (
tenantId: string,
email: string,
password: string,
userContext?: Record<string, any>,
) => Promise<{ status: "OK" | "WRONG_CREDENTIALS_ERROR" }> = Wrapper.verifyCredentials
Type declaration
- (
tenantId: string,
email: string,
password: string,
userContext?: Record<string, any>,
): Promise<{ status: "OK" | "WRONG_CREDENTIALS_ERROR" }> Parameters
- tenantId: string
- email: string
- password: string
Optional
userContext: Record<string, any>
Returns Promise<{ status: "OK" | "WRONG_CREDENTIALS_ERROR" }>