File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -365,6 +365,16 @@ export interface PasskeyConfigRequest {
365
365
expectedOrigins? : string [];
366
366
}
367
367
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
+
368
378
// @public
369
379
export interface PasswordPolicyConfig {
370
380
constraints? : CustomStrengthOptionsConfig ;
@@ -664,7 +674,6 @@ export class UserRecord {
664
674
readonly emailVerified: boolean ;
665
675
readonly metadata: UserMetadata ;
666
676
readonly multiFactor? : MultiFactorSettings ;
667
- // Warning: (ae-forgotten-export) The symbol "PasskeyInfo" needs to be exported by the entry point index.d.ts
668
677
readonly passkeyInfo? : PasskeyInfo [];
669
678
readonly passwordHash? : string ;
670
679
readonly passwordSalt? : string ;
Original file line number Diff line number Diff line change @@ -172,4 +172,5 @@ export {
172
172
UserInfo ,
173
173
UserMetadata ,
174
174
UserRecord ,
175
+ PasskeyInfo ,
175
176
} from './user-record' ;
You can’t perform that action at this time.
0 commit comments