@okta/okta-auth-js 6.4.3 → 6.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/cjs/OktaUserAgent.js +2 -2
- package/cjs/idx/authenticator/WebauthnEnrollment.js +8 -3
- package/cjs/idx/authenticator/WebauthnEnrollment.js.map +1 -1
- package/cjs/idx/authenticator/WebauthnVerification.js +8 -3
- package/cjs/idx/authenticator/WebauthnVerification.js.map +1 -1
- package/dist/okta-auth-js.min.js +1 -1
- package/dist/okta-auth-js.min.js.map +1 -1
- package/dist/okta-auth-js.umd.js +1 -1
- package/dist/okta-auth-js.umd.js.map +1 -1
- package/esm/esm.browser.js +19 -13
- package/esm/esm.browser.js.map +1 -1
- package/esm/esm.node.mjs +19 -13
- package/esm/esm.node.mjs.map +1 -1
- package/lib/idx/authenticator/WebauthnEnrollment.d.ts +1 -0
- package/lib/idx/authenticator/WebauthnVerification.d.ts +1 -0
- package/package.json +4 -4
|
@@ -2,6 +2,7 @@ import { Authenticator, Credentials } from './Authenticator';
|
|
|
2
2
|
export interface WebauthnEnrollValues {
|
|
3
3
|
clientData?: string;
|
|
4
4
|
attestation?: string;
|
|
5
|
+
credentials?: Credentials;
|
|
5
6
|
}
|
|
6
7
|
export declare class WebauthnEnrollment extends Authenticator<WebauthnEnrollValues> {
|
|
7
8
|
canVerify(values: WebauthnEnrollValues): boolean;
|
|
@@ -3,6 +3,7 @@ export interface WebauthnVerificationValues {
|
|
|
3
3
|
clientData?: string;
|
|
4
4
|
authenticatorData?: string;
|
|
5
5
|
signatureData?: string;
|
|
6
|
+
credentials?: Credentials;
|
|
6
7
|
}
|
|
7
8
|
export declare class WebauthnVerification extends Authenticator<WebauthnVerificationValues> {
|
|
8
9
|
canVerify(values: WebauthnVerificationValues): boolean;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@okta/okta-auth-js",
|
|
4
4
|
"description": "The Okta Auth SDK",
|
|
5
|
-
"version": "6.4.
|
|
5
|
+
"version": "6.4.4",
|
|
6
6
|
"homepage": "https://github.com/okta/okta-auth-js",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"main": "cjs/index.js",
|
|
@@ -187,8 +187,8 @@
|
|
|
187
187
|
}
|
|
188
188
|
},
|
|
189
189
|
"okta": {
|
|
190
|
-
"commitSha": "
|
|
191
|
-
"fullVersion": "6.4.
|
|
192
|
-
"testedSha": "
|
|
190
|
+
"commitSha": "fa993ca7a1bed86b58b01d0b4815775339189e47",
|
|
191
|
+
"fullVersion": "6.4.4-gfa993ca",
|
|
192
|
+
"testedSha": "8bcbbdb385828760bb2be241298a7aeb5d88ac5d"
|
|
193
193
|
}
|
|
194
194
|
}
|