We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b4e47 commit e9dc3a6Copy full SHA for e9dc3a6
src/auth/user-record.ts
@@ -53,6 +53,7 @@ export interface MultiFactorInfoResponse {
53
}
54
55
export interface TotpInfoResponse {
56
+ [key: string]: any;
57
58
59
export interface ProviderUserInfoResponse {
@@ -236,7 +237,7 @@ export class PhoneMultiFactorInfo extends MultiFactorInfo {
236
237
phoneNumber: this.phoneNumber,
238
});
239
- /**
240
+ /**
241
* Returns the factor ID based on the response provided.
242
*
243
* @param response - The server side response.
@@ -250,6 +251,9 @@ export class PhoneMultiFactorInfo extends MultiFactorInfo {
250
251
252
253
254
+/**
255
+ * TotpInfo struct associated with a second factor
256
+ */
257
export class TotpInfo {
258
259
0 commit comments