Skip to content

Commit 14214d8

Browse files
committed
feat: implement list and remove credential APIs for WebAuthn recipe and update build
1 parent 013e0fa commit 14214d8

File tree

12 files changed

+244
-4
lines changed

12 files changed

+244
-4
lines changed

lib/build/recipe/webauthn/api/implementation.js

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/api/listCredentials.d.ts

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/api/listCredentials.js

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/api/removeCredential.d.ts

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/api/removeCredential.js

Lines changed: 64 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/constants.d.ts

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/constants.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/recipe.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build/recipe/webauthn/types.d.ts

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ts/recipe/webauthn/api/listCredentials.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import { AuthUtils } from "../../../authUtils";
2121

2222
export default async function listCredentialsAPI(
2323
apiImplementation: APIInterface,
24-
tenantId: string,
24+
_: string,
2525
options: APIOptions,
26-
userContext: UserContext,
26+
userContext: UserContext
2727
): Promise<boolean> {
2828
if (apiImplementation.listCredentialsGET === undefined) {
2929
return false;

0 commit comments

Comments
 (0)