Skip to content

Commit

Permalink
undo package json changes
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pragatimodi committed Oct 18, 2023
1 parent abfb295 commit 9d69dd8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions etc/firebase-admin.auth.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,26 @@ export interface PasskeyConfigRequest {
expectedOrigins?: string[];
}

// @public
export class PasskeyConfig {
readonly expectedOrigins?: string[];
readonly name?: string;
readonly rpId?: string;
toJSON(): object;
}

// @public
export class PasskeyConfigManager {
createPasskeyConfig(rpId: string, passkeyConfigRequest: PasskeyConfigRequest, tenantId?: string): Promise<PasskeyConfig>;
getPasskeyConfig(tenantId?: string): Promise<PasskeyConfig>;
updatePasskeyConfig(passkeyConfigRequest: PasskeyConfigRequest, tenantId?: string): Promise<PasskeyConfig>;
}

// @public
export interface PasskeyConfigRequest {
expectedOrigins?: string[];
}

// @public
export interface PasswordPolicyConfig {
constraints?: CustomStrengthOptionsConfig;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/auth/passkey-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ describe('PasskeyConfig', () => {
});
});
});
});
});

0 comments on commit 9d69dd8

Please sign in to comment.