From e888d8ee8cee1fe9ed3f439cc6f7a625e629f166 Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Mon, 17 Jul 2023 15:12:09 +1000 Subject: [PATCH 1/3] Update inconsistent casing --- src/api/passkey-api-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/passkey-api-client.ts b/src/api/passkey-api-client.ts index 0ca8d4a..0619bee 100644 --- a/src/api/passkey-api-client.ts +++ b/src/api/passkey-api-client.ts @@ -30,7 +30,7 @@ export class PasskeyApiClient { async registrationOptions({token, userName}: RegistrationOptsRequest): Promise { const response = await this.api.post("user-authenticators/passkey/registration-options", { - json: {userName}, + json: {username: userName}, headers: this.buildHeaders(token), }); From aa53a412e1f5cf4f7ba8dcc69252ad04c6f0c148 Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Mon, 17 Jul 2023 15:15:52 +1000 Subject: [PATCH 2/3] Add tags and bump version --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d9dab2d..3c13eff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@authsignal/browser", - "version": "0.1.7", + "version": "0.1.8", "type": "module", "main": "dist/index.js", "module": "dist/index.js", @@ -9,7 +9,10 @@ "authsignal", "mfa", "2fa", - "authentication" + "authentication", + "passkeys", + "webauthn", + "passwordless" ], "license": "MIT", "repository": "git://github.com/authsignal/authsignal-browser.git", From 698b24d9fa978f290e6aa2bd94310ee2dad448d4 Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Mon, 17 Jul 2023 15:33:10 +1000 Subject: [PATCH 3/3] More tags --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3c13eff..0e68d48 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,10 @@ "authentication", "passkeys", "webauthn", - "passwordless" + "passwordless", + "fido2", + "biometrics", + "typescript" ], "license": "MIT", "repository": "git://github.com/authsignal/authsignal-browser.git",