@sphereon/ssi-sdk-ext.jwt-service 0.36.1-feature.SSISDK.82.and.SSISDK.70.35 → 0.36.1-feature.integration.fides.100

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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.12"
8
+ "packageVersion": "7.55.0"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk-ext.jwt-service",
3
- "version": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
3
+ "version": "0.36.1-feature.integration.fides.100+3513dc6b",
4
4
  "source": "./src/index.ts",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -27,13 +27,13 @@
27
27
  "generate-plugin-schema": "tsx ../../packages/dev/bin/sphereon.js dev generate-plugin-schema"
28
28
  },
29
29
  "dependencies": {
30
- "@sphereon/ssi-sdk-ext.did-utils": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
31
- "@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
32
- "@sphereon/ssi-sdk-ext.key-manager": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
33
- "@sphereon/ssi-sdk-ext.key-utils": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
34
- "@sphereon/ssi-sdk-ext.x509-utils": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
35
- "@sphereon/ssi-sdk.agent-config": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
36
- "@sphereon/ssi-types": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
30
+ "@sphereon/ssi-sdk-ext.did-utils": "0.36.1-feature.integration.fides.100+3513dc6b",
31
+ "@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-feature.integration.fides.100+3513dc6b",
32
+ "@sphereon/ssi-sdk-ext.key-manager": "0.36.1-feature.integration.fides.100+3513dc6b",
33
+ "@sphereon/ssi-sdk-ext.key-utils": "0.36.1-feature.integration.fides.100+3513dc6b",
34
+ "@sphereon/ssi-sdk-ext.x509-utils": "0.36.1-feature.integration.fides.100+3513dc6b",
35
+ "@sphereon/ssi-sdk.agent-config": "0.36.1-feature.integration.fides.100+3513dc6b",
36
+ "@sphereon/ssi-types": "0.36.1-feature.integration.fides.100+3513dc6b",
37
37
  "@stablelib/random": "^1.0.2",
38
38
  "@veramo/core": "4.2.0",
39
39
  "@veramo/utils": "4.2.0",
@@ -43,10 +43,10 @@
43
43
  "uint8arrays": "3.1.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
47
- "@sphereon/ssi-sdk-ext.did-provider-web": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
48
- "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
49
- "@sphereon/ssi-sdk-ext.kms-local": "0.36.1-feature.SSISDK.82.and.SSISDK.70.35+b3c0abff",
46
+ "@sphereon/ssi-sdk-ext.did-provider-jwk": "0.36.1-feature.integration.fides.100+3513dc6b",
47
+ "@sphereon/ssi-sdk-ext.did-provider-web": "0.36.1-feature.integration.fides.100+3513dc6b",
48
+ "@sphereon/ssi-sdk-ext.did-resolver-jwk": "0.36.1-feature.integration.fides.100+3513dc6b",
49
+ "@sphereon/ssi-sdk-ext.kms-local": "0.36.1-feature.integration.fides.100+3513dc6b",
50
50
  "@sphereon/ssi-sdk.dev": "0.33.0",
51
51
  "@veramo/data-store": "4.2.0",
52
52
  "@veramo/did-manager": "4.2.0",
@@ -83,5 +83,5 @@
83
83
  "X.509 Certificates",
84
84
  "ARF"
85
85
  ],
86
- "gitHead": "b3c0abff5a63fc40d620b95888ce8fdd006b5d00"
86
+ "gitHead": "3513dc6b280cb172713c7bbb2795193ab698ce75"
87
87
  }
@@ -194,7 +194,7 @@ const checkAndUpdateX5cHeader = async (
194
194
  context: IRequiredContext,
195
195
  ) => {
196
196
  const { x5c } = header
197
- if (x5c) {
197
+ if (x5c?.length) {
198
198
  // let's resolve the provided x5c to be sure
199
199
  const x5cIdentifier = await context.agent.identifierManagedGetByX5c({ identifier: x5c })
200
200
  if (x5cIdentifier.kmsKeyRef !== identifier.kmsKeyRef) {