Skip to content

Commit 9d69dd8

Browse files
committed
undo package json changes
passkey config admin changes Bug Fix for issue #2320 (#2321) fixed unit test errors lint fixes + integration remove integration tests adding comments undo package json changes undo package json changes
1 parent abfb295 commit 9d69dd8

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

etc/firebase-admin.auth.api.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,26 @@ export interface PasskeyConfigRequest {
365365
expectedOrigins?: string[];
366366
}
367367

368+
// @public
369+
export class PasskeyConfig {
370+
readonly expectedOrigins?: string[];
371+
readonly name?: string;
372+
readonly rpId?: string;
373+
toJSON(): object;
374+
}
375+
376+
// @public
377+
export class PasskeyConfigManager {
378+
createPasskeyConfig(rpId: string, passkeyConfigRequest: PasskeyConfigRequest, tenantId?: string): Promise<PasskeyConfig>;
379+
getPasskeyConfig(tenantId?: string): Promise<PasskeyConfig>;
380+
updatePasskeyConfig(passkeyConfigRequest: PasskeyConfigRequest, tenantId?: string): Promise<PasskeyConfig>;
381+
}
382+
383+
// @public
384+
export interface PasskeyConfigRequest {
385+
expectedOrigins?: string[];
386+
}
387+
368388
// @public
369389
export interface PasswordPolicyConfig {
370390
constraints?: CustomStrengthOptionsConfig;

test/unit/auth/passkey-config.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@ describe('PasskeyConfig', () => {
140140
});
141141
});
142142
});
143-
});
143+
});

0 commit comments

Comments
 (0)