@sphereon/ssi-sdk.vc-status-list 0.34.1-feature.SSISDK.57.uni.client.206 → 0.34.1-feature.SSISDK.58.host.nonce.endpoint.145

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk.vc-status-list",
3
3
  "description": "Sphereon SSI-SDK plugin for Status List management, like StatusList2021.",
4
- "version": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
4
+ "version": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
5
5
  "source": "src/index.ts",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -27,13 +27,13 @@
27
27
  "@sd-jwt/jwt-status-list": "^0.15.0",
28
28
  "@sd-jwt/sd-jwt-vc": "^0.15.1",
29
29
  "@sphereon/kmp-mdoc-core": "0.2.0-SNAPSHOT.26",
30
- "@sphereon/oid4vci-common": "0.19.1-feature.DIIPv4.161",
31
- "@sphereon/ssi-sdk-ext.did-utils": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
32
- "@sphereon/ssi-sdk-ext.identifier-resolution": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
33
- "@sphereon/ssi-sdk-ext.jwt-service": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
34
- "@sphereon/ssi-sdk.credential-vcdm": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
35
- "@sphereon/ssi-sdk.data-store": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
36
- "@sphereon/ssi-types": "0.34.1-feature.SSISDK.57.uni.client.206+c30b7b42",
30
+ "@sphereon/oid4vci-common": "0.19.1-feature.SSISDK.58.host.nonce.endpoint.107",
31
+ "@sphereon/ssi-sdk-ext.did-utils": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
32
+ "@sphereon/ssi-sdk-ext.identifier-resolution": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
33
+ "@sphereon/ssi-sdk-ext.jwt-service": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
34
+ "@sphereon/ssi-sdk.credential-vcdm": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
35
+ "@sphereon/ssi-sdk.data-store": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
36
+ "@sphereon/ssi-types": "0.34.1-feature.SSISDK.58.host.nonce.endpoint.145+5bfc0b12",
37
37
  "@sphereon/vc-status-list": "7.0.0-next.0",
38
38
  "@veramo/core": "4.2.0",
39
39
  "@veramo/credential-status": "4.2.0",
@@ -72,5 +72,5 @@
72
72
  "SSI",
73
73
  "StatusList2021"
74
74
  ],
75
- "gitHead": "c30b7b42dfbd1ea969234fe7a4a5813c5fddef3b"
75
+ "gitHead": "5bfc0b1229134b5d80279a3baf1fc64c9c6e755e"
76
76
  }
@@ -6,7 +6,6 @@ import {
6
6
  DocumentFormat,
7
7
  type IIssuer,
8
8
  type StatusListCredential,
9
- StatusListCredentialIdMode,
10
9
  StatusListType,
11
10
  } from '@sphereon/ssi-types'
12
11
 
@@ -61,7 +60,6 @@ export class StatusList2021Implementation implements IStatusList {
61
60
  statusList2021: {
62
61
  statusPurpose,
63
62
  indexingDirection: 'rightToLeft',
64
- credentialIdMode: StatusListCredentialIdMode.ISSUANCE,
65
63
  },
66
64
  length,
67
65
  type: StatusListType.StatusList2021,
@@ -110,7 +108,6 @@ export class StatusList2021Implementation implements IStatusList {
110
108
  statusList2021: {
111
109
  statusPurpose: credentialSubject.statusPurpose,
112
110
  indexingDirection: 'rightToLeft',
113
- credentialIdMode: StatusListCredentialIdMode.ISSUANCE,
114
111
  },
115
112
  length: statusList.length - 1,
116
113
  type: StatusListType.StatusList2021,
@@ -156,7 +153,6 @@ export class StatusList2021Implementation implements IStatusList {
156
153
  statusList2021: {
157
154
  statusPurpose: args.statusList2021.statusPurpose,
158
155
  indexingDirection: 'rightToLeft',
159
- credentialIdMode: StatusListCredentialIdMode.ISSUANCE,
160
156
  },
161
157
  length: statusList.length,
162
158
  proofFormat: args.proofFormat ?? 'lds',
@@ -228,7 +224,6 @@ export class StatusList2021Implementation implements IStatusList {
228
224
  statusList2021: {
229
225
  indexingDirection: 'rightToLeft',
230
226
  statusPurpose,
231
- credentialIdMode: StatusListCredentialIdMode.ISSUANCE,
232
227
  },
233
228
  }
234
229
  } else {
@@ -256,7 +251,6 @@ export class StatusList2021Implementation implements IStatusList {
256
251
  statusList2021: {
257
252
  indexingDirection: statusList2021Entity.indexingDirection,
258
253
  statusPurpose: statusList2021Entity.statusPurpose,
259
- credentialIdMode: StatusListCredentialIdMode.ISSUANCE,
260
254
  },
261
255
  }
262
256
  }
@@ -1,4 +1,4 @@
1
- import { BitstringStatusListCredentialUnsigned } from '@4sure-tech/vc-bitstring-status-lists'
2
1
  import { StatusListCredential } from '@sphereon/ssi-types'
2
+ import { BitstringStatusListCredentialUnsigned } from '../../../../../vc-bitstring-status-lists'
3
3
 
4
4
  export type BitstringStatusListCredential = BitstringStatusListCredentialUnsigned & StatusListCredential
@@ -7,7 +7,6 @@ import {
7
7
  type IVerifiableCredential,
8
8
  type OrPromise,
9
9
  type StatusListCredential,
10
- StatusListCredentialIdMode,
11
10
  StatusListDriverType,
12
11
  type StatusListIndexingDirection,
13
12
  StatusListType,
@@ -113,7 +112,6 @@ export interface StatusListResult {
113
112
  statusList2021?: {
114
113
  indexingDirection: StatusListIndexingDirection
115
114
  statusPurpose: StatusPurpose2021
116
- credentialIdMode: StatusListCredentialIdMode
117
115
  }
118
116
  oauthStatusList?: {
119
117
  bitsPerStatus: number