@firebase/auth-types
Advanced tools
Comparing version 0.1.2-canary.bf7a221 to 0.1.2-canary.d3ec2e0
@@ -99,2 +99,3 @@ /** | ||
providerId: string; | ||
signInMethod: string; | ||
} | ||
@@ -113,3 +114,6 @@ | ||
static PROVIDER_ID: string; | ||
static EMAIL_PASSWORD_SIGN_IN_METHOD: string; | ||
static EMAIL_LINK_SIGN_IN_METHOD: string; | ||
static credential(email: string, password: string): AuthCredential; | ||
static credentialWithLink(email: string, emailLink: string): AuthCredential; | ||
} | ||
@@ -127,2 +131,3 @@ export class EmailAuthProvider_Instance implements AuthProvider { | ||
static PROVIDER_ID: string; | ||
static FACEBOOK_SIGN_IN_METHOD: string; | ||
static credential(token: string): AuthCredential; | ||
@@ -138,2 +143,3 @@ } | ||
static PROVIDER_ID: string; | ||
static GITHUB_SIGN_IN_METHOD: string; | ||
static credential(token: string): AuthCredential; | ||
@@ -149,2 +155,3 @@ } | ||
static PROVIDER_ID: string; | ||
static GOOGLE_SIGN_IN_METHOD: string; | ||
static credential( | ||
@@ -170,2 +177,3 @@ idToken?: string | null, | ||
static PROVIDER_ID: string; | ||
static PHONE_SIGN_IN_METHOD: string; | ||
static credential( | ||
@@ -200,2 +208,3 @@ verificationId: string, | ||
static PROVIDER_ID: string; | ||
static TWITTER_SIGN_IN_METHOD: string; | ||
static credential(token: string, secret: string): AuthCredential; | ||
@@ -248,2 +257,4 @@ } | ||
fetchProvidersForEmail(email: string): Promise<any>; | ||
fetchSignInMethodsForEmail(email: string): Promise<any>; | ||
isSignInWithEmailLink(emailLink: string): boolean; | ||
getRedirectResult(): Promise<any>; | ||
@@ -261,2 +272,6 @@ languageCode: string | null; | ||
): Unsubscribe; | ||
sendSignInLinkToEmail( | ||
email: string, | ||
actionCodeSettings: ActionCodeSettings | ||
): Promise<any>; | ||
sendPasswordResetEmail( | ||
@@ -278,2 +293,3 @@ email: string, | ||
): Promise<any>; | ||
signInWithEmailLink(email: string, emailLink?: string): Promise<any>; | ||
signInWithPhoneNumber( | ||
@@ -280,0 +296,0 @@ phoneNumber: string, |
{ | ||
"name": "@firebase/auth-types", | ||
"version": "0.1.2-canary.bf7a221", | ||
"version": "0.1.2-canary.d3ec2e0", | ||
"description": "@firebase/auth Types", | ||
@@ -14,3 +14,3 @@ "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)", | ||
"peerDependencies": { | ||
"@firebase/app-types": "0.1.2-canary.bf7a221" | ||
"@firebase/app-types": "0.1.2-canary.d3ec2e0" | ||
}, | ||
@@ -17,0 +17,0 @@ "devDependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10984
294