@sphereon/ssi-sdk-ext.did-provider-jwk 0.24.1-unstable.54 → 0.24.1-unstable.71

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.
@@ -34,7 +34,7 @@ class JwkDIDProvider extends did_manager_1.AbstractIdentifierProvider {
34
34
  const key = yield (0, ssi_sdk_ext_key_utils_1.importProvidedOrGeneratedKey)({
35
35
  kms: (_a = args.kms) !== null && _a !== void 0 ? _a : this.defaultKms,
36
36
  alias: args.alias,
37
- options: args.options
37
+ options: args.options,
38
38
  }, context);
39
39
  const use = (0, ssi_sdk_ext_key_utils_1.jwkDetermineUse)(key.type, (_b = args === null || args === void 0 ? void 0 : args.options) === null || _b === void 0 ? void 0 : _b.use);
40
40
  const jwk = (0, ssi_sdk_ext_key_utils_1.toJwk)(key.publicKeyHex, key.type, { use, key, noKidThumbprint: true });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk-ext.did-provider-jwk",
3
3
  "description": "Sphereon SSI-SDK plugin for management of did:key identifiers.",
4
- "version": "0.24.1-unstable.54+5ce83cc",
4
+ "version": "0.24.1-unstable.71+8d51b5a",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -11,8 +11,8 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@ethersproject/random": "^5.7.0",
14
- "@sphereon/ssi-sdk-ext.did-utils": "0.24.1-unstable.54+5ce83cc",
15
- "@sphereon/ssi-sdk-ext.key-utils": "0.24.1-unstable.54+5ce83cc",
14
+ "@sphereon/ssi-sdk-ext.did-utils": "0.24.1-unstable.71+8d51b5a",
15
+ "@sphereon/ssi-sdk-ext.key-utils": "0.24.1-unstable.71+8d51b5a",
16
16
  "@sphereon/ssi-types": "0.28.0",
17
17
  "@stablelib/ed25519": "^1.0.3",
18
18
  "@veramo/core": "4.2.0",
@@ -24,8 +24,8 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@or13/did-jwk": "^0.0.4",
27
- "@sphereon/ssi-sdk-ext.key-manager": "0.24.1-unstable.54+5ce83cc",
28
- "@sphereon/ssi-sdk-ext.kms-local": "0.24.1-unstable.54+5ce83cc",
27
+ "@sphereon/ssi-sdk-ext.key-manager": "0.24.1-unstable.71+8d51b5a",
28
+ "@sphereon/ssi-sdk-ext.kms-local": "0.24.1-unstable.71+8d51b5a",
29
29
  "@veramo/did-resolver": "4.2.0",
30
30
  "@veramo/key-manager": "4.2.0",
31
31
  "jose": "^4.14.6",
@@ -49,5 +49,5 @@
49
49
  "DID",
50
50
  "Veramo"
51
51
  ],
52
- "gitHead": "5ce83cca64d55b664a2b0e6eb04660d299e2655c"
52
+ "gitHead": "8d51b5ae666f7dfc47ce87f9dfbe6ea0d4d4c316"
53
53
  }
@@ -25,7 +25,7 @@ export class JwkDIDProvider extends AbstractIdentifierProvider {
25
25
  {
26
26
  kms: args.kms ?? this.defaultKms,
27
27
  alias: args.alias,
28
- options: args.options
28
+ options: args.options,
29
29
  },
30
30
  context
31
31
  )