@twin.org/nft-cli 0.0.2-next.1 → 0.0.2-next.2
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +7 -2
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -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.2-next.
|
|
441
|
+
version: "0.0.2-next.2", // x-release-please-version
|
|
442
442
|
icon: "🌍",
|
|
443
443
|
supportsEnvFiles: true,
|
|
444
444
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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.2-next.
|
|
438
|
+
version: "0.0.2-next.2", // x-release-please-version
|
|
439
439
|
icon: "🌍",
|
|
440
440
|
supportsEnvFiles: true,
|
|
441
441
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -201,7 +201,11 @@
|
|
|
201
201
|
"deployTransactionFailed": "Deploying the contract failed with error: \"{error}\"",
|
|
202
202
|
"connectorNotStarted": "Please call start() before using this connector. Package ID: \"{packageId}\" is missing.",
|
|
203
203
|
"invalidImmutableMetadata": "The immutable metadata for NFT \"{nftId}\" is invalid",
|
|
204
|
-
"invalidMetadata": "The metadata for NFT \"{nftId}\" is invalid"
|
|
204
|
+
"invalidMetadata": "The metadata for NFT \"{nftId}\" is invalid",
|
|
205
|
+
"contractDataNotFound": "Contract data not found for network \"{network}\". Available networks: {availableNetworks}",
|
|
206
|
+
"packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network",
|
|
207
|
+
"deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
|
|
208
|
+
"packageIdNotFound": "Package ID not found for network \"{network}\""
|
|
205
209
|
},
|
|
206
210
|
"iotaNftUtils": {
|
|
207
211
|
"invalidNftIdFormat": "The NFT ID \"{id}\" has an invalid format"
|
|
@@ -603,7 +607,8 @@
|
|
|
603
607
|
"iotaNftConnector": {
|
|
604
608
|
"contractAlreadyDeployed": "Contract already deployed",
|
|
605
609
|
"contractDeploymentStarted": "Contract deployment started",
|
|
606
|
-
"contractDeploymentCompleted": "Contract deployment completed"
|
|
610
|
+
"contractDeploymentCompleted": "Contract deployment completed",
|
|
611
|
+
"contractReady": "Contract ready for use"
|
|
607
612
|
}
|
|
608
613
|
},
|
|
609
614
|
"errorMessages": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/nft-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.2](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.1...nft-cli-v0.0.2-next.2) (2025-07-25)
|
|
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.2-next.1 to 0.0.2-next.2
|
|
16
|
+
|
|
3
17
|
## [0.0.2-next.1](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.0...nft-cli-v0.0.2-next.1) (2025-07-16)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nft-cli",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.2",
|
|
4
4
|
"description": "A command line interface for interacting with the nft connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
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.2-next.
|
|
24
|
+
"@twin.org/nft-connector-iota": "0.0.2-next.2",
|
|
25
25
|
"@twin.org/vault-connector-entity-storage": "next",
|
|
26
26
|
"@twin.org/vault-models": "next",
|
|
27
27
|
"@twin.org/wallet-cli": "next",
|