Skip to content

Commit 0795917

Browse files
committed
fix: webauthn-parsed-credentials-type
1 parent f9d571b commit 0795917

File tree

4 files changed

+272
-3011
lines changed

4 files changed

+272
-3011
lines changed

.changeset/jolly-signs-think.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@forgerock/javascript-sdk': patch
3+
---
4+
5+
remove shared array buffer type from webauthn ParsedCredentials.

package.json

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
},
3838
"homepage": "https://github.com/ForgeRock/forgerock-javascript-sdk#readme",
3939
"devDependencies": {
40+
"@changesets/changelog-github": "^0.5.0",
41+
"@changesets/cli": "^2.27.9",
4042
"@commitlint/cli": "^19.1.0",
4143
"@commitlint/config-conventional": "^19.1.0",
4244
"@commitlint/prompt": "^19.1.0",
@@ -125,28 +127,5 @@
125127
"nx": {
126128
"includedScripts": []
127129
},
128-
"packageManager": "[email protected]+sha256.09a8fe31a34fda706354680619f4002f4ccef6dadff93240d24ef6c831f0fd28",
129-
"dependencies": {
130-
"@changesets/changelog-github": "^0.5.0",
131-
"@changesets/cli": "^2.27.9",
132-
"browserstack-node-sdk": "1.34.17",
133-
"nx-cloud": "19.1.0"
134-
},
135-
"pnpm": {
136-
"overrides": {
137-
"jsonpath-plus@<=7.2.0": ">=10.2.0",
138-
"nanoid@<=3.3.7": ">=3.3.8",
139-
"cross-spawn@<=7.0.3": ">=7.0.5",
140-
"ssri@>=5.2.2 <6.0.2": ">=6.0.2",
141-
"express@<4.19.2": ">=4.19.2",
142-
"tough-cookie@<4.1.3": ">=4.1.3",
143-
"micromatch@<4.0.8": ">=4.0.8",
144-
"body-parser@<1.20.3": ">=1.20.3",
145-
"send@<0.19.0": ">=0.19.0",
146-
"serve-static@<1.16.0": ">=1.16.0",
147-
"express@<4.20.0": ">=4.20.0",
148-
"path-to-regexp@<0.1.10": ">=0.1.10",
149-
"rollup@<2.79.2": ">=2.79.2"
150-
}
151-
}
130+
"packageManager": "[email protected]+sha256.09a8fe31a34fda706354680619f4002f4ccef6dadff93240d24ef6c831f0fd28"
152131
}

packages/javascript-sdk/src/fr-webauthn/interfaces.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ interface WebAuthnCallbacks {
9595
type WebAuthnTextOutputRegistration = string;
9696

9797
interface ParsedCredential {
98-
id: ArrayBuffer | SharedArrayBuffer;
98+
id: ArrayBuffer;
9999
type: 'public-key';
100100
}
101101

0 commit comments

Comments
 (0)