Skip to content

Commit cdb7e5d

Browse files
committed
forgotten export
1 parent 4d3b900 commit cdb7e5d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

etc/firebase-admin.auth.api.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,16 @@ export interface PasskeyConfigRequest {
365365
expectedOrigins?: string[];
366366
}
367367

368+
// @public
369+
export class PasskeyInfo {
370+
// Warning: (ae-forgotten-export) The symbol "PasskeyInfoResponse" needs to be exported by the entry point index.d.ts
371+
constructor(response: PasskeyInfoResponse);
372+
readonly credentialId: string;
373+
readonly displayName?: string;
374+
readonly name?: string;
375+
toJSON(): object;
376+
}
377+
368378
// @public
369379
export interface PasswordPolicyConfig {
370380
constraints?: CustomStrengthOptionsConfig;
@@ -664,7 +674,6 @@ export class UserRecord {
664674
readonly emailVerified: boolean;
665675
readonly metadata: UserMetadata;
666676
readonly multiFactor?: MultiFactorSettings;
667-
// Warning: (ae-forgotten-export) The symbol "PasskeyInfo" needs to be exported by the entry point index.d.ts
668677
readonly passkeyInfo?: PasskeyInfo[];
669678
readonly passwordHash?: string;
670679
readonly passwordSalt?: string;

src/auth/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,5 @@ export {
172172
UserInfo,
173173
UserMetadata,
174174
UserRecord,
175+
PasskeyInfo,
175176
} from './user-record';

0 commit comments

Comments
 (0)