@sphereon/ssi-sdk.credential-vcdm 0.34.1-next.29 → 0.34.1-next.299

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/dist/index.d.cts CHANGED
@@ -141,6 +141,7 @@ interface ICreateVerifiableCredentialLDArgs {
141
141
  */
142
142
  purpose?: IAuthenticationProofPurpose | IControllerProofPurpose | IAssertionProofPurpose | IProofPurpose;
143
143
  credentialStatusOpts?: IIssueCredentialStatusOpts;
144
+ opts?: any;
144
145
  }
145
146
  /**
146
147
  * Encapsulates the parameters required to verify a
package/dist/index.d.ts CHANGED
@@ -141,6 +141,7 @@ interface ICreateVerifiableCredentialLDArgs {
141
141
  */
142
142
  purpose?: IAuthenticationProofPurpose | IControllerProofPurpose | IAssertionProofPurpose | IProofPurpose;
143
143
  credentialStatusOpts?: IIssueCredentialStatusOpts;
144
+ opts?: any;
144
145
  }
145
146
  /**
146
147
  * Encapsulates the parameters required to verify a
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ssi-sdk.credential-vcdm",
3
3
  "description": "Plugin for working with W3C Verifiable Credentials DataModel 1 and 2 Credentials & Presentations.",
4
- "version": "0.34.1-next.29+2593a430",
4
+ "version": "0.34.1-next.299+9e9f5a50",
5
5
  "source": "src/index.ts",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -25,14 +25,14 @@
25
25
  },
26
26
  "scripts": {
27
27
  "build": "tsup --config ../../tsup.config.ts --tsconfig ../../tsconfig.tsup.json",
28
- "generate-plugin-schema": "tsx ../../packages/dev/bin/sphereon.js dev generate-plugin-schema"
28
+ "generate-plugin-schema.bak": "tsx ../../packages/dev/bin/sphereon.js dev generate-plugin-schema"
29
29
  },
30
30
  "dependencies": {
31
- "@sphereon/ssi-sdk-ext.did-utils": "workspace:*",
32
- "@sphereon/ssi-sdk-ext.key-utils": "workspace:*",
33
- "@sphereon/ssi-sdk.agent-config": "0.34.1-next.29+2593a430",
34
- "@sphereon/ssi-sdk.core": "0.34.1-next.29+2593a430",
35
- "@sphereon/ssi-types": "0.34.1-next.29+2593a430",
31
+ "@sphereon/ssi-sdk-ext.did-utils": "0.34.1-next.299+9e9f5a50",
32
+ "@sphereon/ssi-sdk-ext.key-utils": "0.34.1-next.299+9e9f5a50",
33
+ "@sphereon/ssi-sdk.agent-config": "0.34.1-next.299+9e9f5a50",
34
+ "@sphereon/ssi-sdk.core": "0.34.1-next.299+9e9f5a50",
35
+ "@sphereon/ssi-types": "0.34.1-next.299+9e9f5a50",
36
36
  "@veramo/core": "4.2.0",
37
37
  "@veramo/message-handler": "4.2.0",
38
38
  "@veramo/utils": "4.2.0",
@@ -44,10 +44,10 @@
44
44
  "uuid": "^9.0.1"
45
45
  },
46
46
  "devDependencies": {
47
- "@sphereon/oid4vci-common": "0.19.0",
48
- "@sphereon/ssi-sdk-ext.did-provider-key": "0.29.1-next.3",
49
- "@sphereon/ssi-sdk-ext.key-manager": "0.29.1-next.3",
50
- "@sphereon/ssi-sdk-ext.kms-local": "0.29.1-next.3",
47
+ "@sphereon/oid4vci-common": "0.19.1-next.220",
48
+ "@sphereon/ssi-sdk-ext.did-provider-key": "0.34.1-next.299+9e9f5a50",
49
+ "@sphereon/ssi-sdk-ext.key-manager": "0.34.1-next.299+9e9f5a50",
50
+ "@sphereon/ssi-sdk-ext.kms-local": "0.34.1-next.299+9e9f5a50",
51
51
  "@types/debug": "4.1.8",
52
52
  "@types/uuid": "9.0.2",
53
53
  "@veramo/did-manager": "4.2.0",
@@ -92,5 +92,5 @@
92
92
  "node_modules",
93
93
  "src"
94
94
  ],
95
- "gitHead": "2593a430ac4faca47b620a3e12b297899518f2af"
95
+ "gitHead": "9e9f5a50ead9373a078cb5291cbc4fb1e7865dc2"
96
96
  }
package/src/types.ts CHANGED
@@ -177,6 +177,8 @@ export interface ICreateVerifiableCredentialLDArgs {
177
177
  purpose?: IAuthenticationProofPurpose | IControllerProofPurpose | IAssertionProofPurpose | IProofPurpose
178
178
 
179
179
  credentialStatusOpts?: IIssueCredentialStatusOpts
180
+
181
+ opts?: any
180
182
  }
181
183
 
182
184
  /**