@getpara/web-sdk 2.0.0 → 2.2.0

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.
@@ -108,7 +108,7 @@ function createCredential(env, userId, identifier, isE2E) {
108
108
  userVerification: "required"
109
109
  },
110
110
  rp: {
111
- id: getPortalDomain(env, isE2E),
111
+ id: getPortalDomain(env, isE2E, true),
112
112
  name: "Para"
113
113
  },
114
114
  user: {
@@ -148,7 +148,7 @@ function generateSignature(env, challenge, allowedPublicKeys, isE2E) {
148
148
  type: "public-key"
149
149
  })),
150
150
  userVerification: "required",
151
- rpId: getPortalDomain(env, isE2E)
151
+ rpId: getPortalDomain(env, isE2E, true)
152
152
  }
153
153
  };
154
154
  const assertation = yield navigator.credentials.get(getCredentialDefaultArgs);
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@getpara/web-sdk",
3
- "version": "2.0.0",
3
+ "version": "2.2.0",
4
4
  "dependencies": {
5
- "@getpara/core-sdk": "2.0.0",
6
- "@getpara/user-management-client": "2.0.0",
5
+ "@getpara/core-sdk": "2.2.0",
6
+ "@getpara/user-management-client": "2.2.0",
7
7
  "base64url": "^3.0.1",
8
8
  "buffer": "6.0.3",
9
9
  "cbor-web": "^9.0.2",
@@ -28,7 +28,7 @@
28
28
  "dist",
29
29
  "package.json"
30
30
  ],
31
- "gitHead": "a64b6aa9b3c481a2d955022f621e495fb55e549e",
31
+ "gitHead": "51765cf39b1667e0283b3906a8f8ef91e447e347",
32
32
  "main": "dist/index.js",
33
33
  "scripts": {
34
34
  "build": "rm -rf dist && yarn typegen && node ./scripts/build.mjs && yarn post-build",