@dfns/sdk-browser 0.6.12 → 0.7.1-alpha.1
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/package.json +3 -4
- package/signers/webauthn.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dfns/sdk-browser",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1-alpha.1",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"buffer": "6.0.3",
|
|
6
|
-
"cross-fetch": "3.1.6"
|
|
7
|
-
"uuid": "9.0.0"
|
|
6
|
+
"cross-fetch": "3.1.6"
|
|
8
7
|
},
|
|
9
8
|
"peerDependencies": {
|
|
10
|
-
"@dfns/sdk": "0.
|
|
9
|
+
"@dfns/sdk": "0.7.1-alpha.1"
|
|
11
10
|
},
|
|
12
11
|
"main": "./index.js",
|
|
13
12
|
"type": "commonjs"
|
package/signers/webauthn.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { CreateCredentialChallengeResponse, CreateRegistrationChallengeResponse
|
|
|
3
3
|
export declare const DEFAULT_WAIT_TIMEOUT = 60000;
|
|
4
4
|
interface WebAuthnSignerConf {
|
|
5
5
|
/**
|
|
6
|
-
* The relying party identifies your application to users, when users create/use passkeys. (Read more [here](https://www.w3.org/TR/webauthn-2/#relying-party)).
|
|
6
|
+
* The "relying party" identifies your application to users, when users create/use passkeys. (Read more [here](https://www.w3.org/TR/webauthn-2/#relying-party)).
|
|
7
7
|
* - id: The relying party identifier is a valid domain string identifying the WebAuthn Relying Party.
|
|
8
8
|
* In other words, its the domain your application is running on, which will be tied to the passkeys that users create.
|
|
9
9
|
* We advise to use the root domain, not the full domain (eg `acme.com`, not `app.acme.com` nor `foo.app.acme.com`), that way, passkeys created
|