Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IdentitytoolkitRelyingpartyVerifyPasswordRequest

import type { IdentitytoolkitRelyingpartyVerifyPasswordRequest } from "https://googleapis.deno.dev/v1/identitytoolkit:v3.ts";

Request to verify the password.

interface IdentitytoolkitRelyingpartyVerifyPasswordRequest {
captchaChallenge?: string;
captchaResponse?: string;
delegatedProjectNumber?: bigint;
email?: string;
idToken?: string;
instanceId?: string;
password?: string;
pendingIdToken?: string;
returnSecureToken?: boolean;
tenantId?: string;
tenantProjectNumber?: bigint;
}

§Properties

§
captchaChallenge?: string
[src]

The captcha challenge.

§
captchaResponse?: string
[src]

Response to the captcha.

§
delegatedProjectNumber?: bigint
[src]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.

§
email?: string
[src]

The email of the user.

§
idToken?: string
[src]

The GITKit token of the authenticated user.

§
instanceId?: string
[src]

Instance id token of the app.

§
password?: string
[src]

The password inputed by the user.

§
pendingIdToken?: string
[src]

The GITKit token for the non-trusted IDP, which is to be confirmed by the user.

§
returnSecureToken?: boolean
[src]

Whether return sts id token and refresh token instead of gitkit token.

§
tenantId?: string
[src]

For multi-tenant use cases, in order to construct sign-in URL with the correct IDP parameters, Firebear needs to know which Tenant to retrieve IDP configs from.

§
tenantProjectNumber?: bigint
[src]

Tenant project number to be used for idp discovery.