@twin.org/nft-cli 0.0.1-next.30 → 0.0.1-next.32

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.
@@ -438,7 +438,7 @@ class CLI extends cliCore.CLIBase {
438
438
  return this.execute({
439
439
  title: "TWIN NFT",
440
440
  appName: "twin-nft",
441
- version: "0.0.1-next.30", // x-release-please-version
441
+ version: "0.0.1-next.32", // x-release-please-version
442
442
  icon: "🌍",
443
443
  supportsEnvFiles: true,
444
444
  overrideOutputWidth: options?.overrideOutputWidth
@@ -435,7 +435,7 @@ class CLI extends CLIBase {
435
435
  return this.execute({
436
436
  title: "TWIN NFT",
437
437
  appName: "twin-nft",
438
- version: "0.0.1-next.30", // x-release-please-version
438
+ version: "0.0.1-next.32", // x-release-please-version
439
439
  icon: "🌍",
440
440
  supportsEnvFiles: true,
441
441
  overrideOutputWidth: options?.overrideOutputWidth
@@ -65,6 +65,8 @@
65
65
  "array": "Property \"{property}\" must be an array, it is \"{value}\"",
66
66
  "arrayValue": "Property \"{property}\" must be an array with at least one item",
67
67
  "arrayOneOf": "Property \"{property}\" must be one of [{options}], it is \"{value}\"",
68
+ "arrayStartsWith": "Property \"{property}\" must be an array starting with [{startValues}], it is \"{value}\"",
69
+ "arrayEndsWith": "Property \"{property}\" must be an array ending with [{endValues}], it is \"{value}\"",
68
70
  "uint8Array": "Property \"{property}\" must be a Uint8Array, it is \"{value}\"",
69
71
  "function": "Property \"{property}\" must be a function, it is \"{value}\"",
70
72
  "urn": "Property \"{property}\" must be a Urn formatted string, it is \"{value}\"",
@@ -210,7 +212,10 @@
210
212
  "packageObjectError": "Failed to fetch the package object \"{packageId}\"",
211
213
  "valueTransactionFailed": "The value transaction failed",
212
214
  "transactionFailed": "The transaction failed",
213
- "addressNotFound": "The address is missing could not be found from the seed \"{address}\""
215
+ "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
216
+ "gasStationTransactionFailed": "The gas station transaction failed",
217
+ "gasReservationFailed": "The gas reservation failed",
218
+ "gasStationExecutionFailed": "The gas station execution failed"
214
219
  },
215
220
  "vaultConnectorHelper": {
216
221
  "invalidSignature": "The JSON Web token signature could not be verified"
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @twin.org/nft-cli - Changelog
2
2
 
3
+ ## [0.0.1-next.32](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.31...nft-cli-v0.0.1-next.32) (2025-06-24)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **nft-cli:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nft-connector-iota bumped from 0.0.1-next.31 to 0.0.1-next.32
16
+
17
+ ## [0.0.1-next.31](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.30...nft-cli-v0.0.1-next.31) (2025-06-12)
18
+
19
+
20
+ ### Features
21
+
22
+ * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/nft-connector-iota bumped from 0.0.1-next.30 to 0.0.1-next.31
30
+
3
31
  ## [0.0.1-next.30](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.29...nft-cli-v0.0.1-next.30) (2025-05-22)
4
32
 
5
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/nft-cli",
3
- "version": "0.0.1-next.30",
3
+ "version": "0.0.1-next.32",
4
4
  "description": "A command line interface for interacting with the nft connectors",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,12 +21,12 @@
21
21
  "@twin.org/entity": "next",
22
22
  "@twin.org/entity-storage-connector-memory": "next",
23
23
  "@twin.org/nameof": "next",
24
- "@twin.org/nft-connector-iota": "0.0.1-next.30",
24
+ "@twin.org/nft-connector-iota": "0.0.1-next.32",
25
25
  "@twin.org/vault-connector-entity-storage": "next",
26
26
  "@twin.org/vault-models": "next",
27
27
  "@twin.org/wallet-cli": "next",
28
28
  "@twin.org/wallet-models": "next",
29
- "commander": "13.1.0"
29
+ "commander": "14.0.0"
30
30
  },
31
31
  "main": "./dist/cjs/index.cjs",
32
32
  "module": "./dist/esm/index.mjs",