@twin.org/identity-cli 0.0.2-next.3 → 0.0.2-next.4

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.
@@ -701,7 +701,9 @@ async function actionCommandVerifiableCredentialCreate(opts) {
701
701
  cliCore.CLIDisplay.task(core.I18n.formatMessage("commands.verifiable-credential-create.progress.creatingVerifiableCredential"));
702
702
  cliCore.CLIDisplay.break();
703
703
  cliCore.CLIDisplay.spinnerStart();
704
- const verifiableCredential = await identityConnector.createVerifiableCredential(localIdentity, id, credentialId, jsonData, revocationIndex);
704
+ const verifiableCredential = await identityConnector.createVerifiableCredential(localIdentity, id, credentialId, jsonData, {
705
+ revocationIndex
706
+ });
705
707
  cliCore.CLIDisplay.spinnerStop();
706
708
  if (opts.console) {
707
709
  cliCore.CLIDisplay.section(core.I18n.formatMessage("commands.verifiable-credential-create.labels.verifiableCredential"));
@@ -1146,7 +1148,7 @@ class CLI extends cliCore.CLIBase {
1146
1148
  return this.execute({
1147
1149
  title: "TWIN Identity",
1148
1150
  appName: "twin-identity",
1149
- version: "0.0.2-next.3", // x-release-please-version
1151
+ version: "0.0.2-next.4", // x-release-please-version
1150
1152
  icon: "🌍",
1151
1153
  supportsEnvFiles: true,
1152
1154
  overrideOutputWidth: options?.overrideOutputWidth,
@@ -698,7 +698,9 @@ async function actionCommandVerifiableCredentialCreate(opts) {
698
698
  CLIDisplay.task(I18n.formatMessage("commands.verifiable-credential-create.progress.creatingVerifiableCredential"));
699
699
  CLIDisplay.break();
700
700
  CLIDisplay.spinnerStart();
701
- const verifiableCredential = await identityConnector.createVerifiableCredential(localIdentity, id, credentialId, jsonData, revocationIndex);
701
+ const verifiableCredential = await identityConnector.createVerifiableCredential(localIdentity, id, credentialId, jsonData, {
702
+ revocationIndex
703
+ });
702
704
  CLIDisplay.spinnerStop();
703
705
  if (opts.console) {
704
706
  CLIDisplay.section(I18n.formatMessage("commands.verifiable-credential-create.labels.verifiableCredential"));
@@ -1143,7 +1145,7 @@ class CLI extends CLIBase {
1143
1145
  return this.execute({
1144
1146
  title: "TWIN Identity",
1145
1147
  appName: "twin-identity",
1146
- version: "0.0.2-next.3", // x-release-please-version
1148
+ version: "0.0.2-next.4", // x-release-please-version
1147
1149
  icon: "🌍",
1148
1150
  supportsEnvFiles: true,
1149
1151
  overrideOutputWidth: options?.overrideOutputWidth,
package/docs/changelog.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @twin.org/identity-cli - Changelog
2
2
 
3
+ ## [0.0.2-next.4](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.3...identity-cli-v0.0.2-next.4) (2025-09-12)
4
+
5
+
6
+ ### Features
7
+
8
+ * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/identity-models bumped from 0.0.2-next.3 to 0.0.2-next.4
16
+ * @twin.org/identity-connector-iota bumped from 0.0.2-next.3 to 0.0.2-next.4
17
+
3
18
  ## [0.0.2-next.3](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.2...identity-cli-v0.0.2-next.3) (2025-08-29)
4
19
 
5
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/identity-cli",
3
- "version": "0.0.2-next.3",
3
+ "version": "0.0.2-next.4",
4
4
  "description": "A command line interface for interacting with the identity connectors",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,8 +21,8 @@
21
21
  "@twin.org/data-json-ld": "next",
22
22
  "@twin.org/entity": "next",
23
23
  "@twin.org/entity-storage-connector-memory": "next",
24
- "@twin.org/identity-connector-iota": "0.0.2-next.3",
25
- "@twin.org/identity-models": "0.0.2-next.3",
24
+ "@twin.org/identity-connector-iota": "0.0.2-next.4",
25
+ "@twin.org/identity-models": "0.0.2-next.4",
26
26
  "@twin.org/nameof": "next",
27
27
  "@twin.org/standards-w3c-did": "next",
28
28
  "@twin.org/vault-connector-entity-storage": "next",