@twin.org/nft-cli 0.0.2-next.1 → 0.0.2-next.3
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 +3 -2
- package/dist/esm/index.mjs +3 -2
- package/dist/locales/en.json +16 -2
- package/docs/changelog.md +28 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -438,10 +438,11 @@ 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.3", // x-release-please-version
|
|
442
442
|
icon: "🌍",
|
|
443
443
|
supportsEnvFiles: true,
|
|
444
|
-
overrideOutputWidth: options?.overrideOutputWidth
|
|
444
|
+
overrideOutputWidth: options?.overrideOutputWidth,
|
|
445
|
+
showDevToolWarning: true
|
|
445
446
|
}, localesDirectory ?? path.join(path.dirname(node_url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.cjs', document.baseURI).href)))), "../locales"), argv);
|
|
446
447
|
}
|
|
447
448
|
/**
|
package/dist/esm/index.mjs
CHANGED
|
@@ -435,10 +435,11 @@ 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.3", // x-release-please-version
|
|
439
439
|
icon: "🌍",
|
|
440
440
|
supportsEnvFiles: true,
|
|
441
|
-
overrideOutputWidth: options?.overrideOutputWidth
|
|
441
|
+
overrideOutputWidth: options?.overrideOutputWidth,
|
|
442
|
+
showDevToolWarning: true
|
|
442
443
|
}, localesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), "../locales"), argv);
|
|
443
444
|
}
|
|
444
445
|
/**
|
package/dist/locales/en.json
CHANGED
|
@@ -163,6 +163,10 @@
|
|
|
163
163
|
"slip0010": {
|
|
164
164
|
"invalidSeed": "The seed is invalid \"{seed}\""
|
|
165
165
|
},
|
|
166
|
+
"rsa": {
|
|
167
|
+
"noPrivateKey": "Private key is required for this operation",
|
|
168
|
+
"invalidKeySize": "Invalid RSA key size"
|
|
169
|
+
},
|
|
166
170
|
"commands": {
|
|
167
171
|
"common": {
|
|
168
172
|
"missingEnv": "The \"{option}\" option is configured as an environment variable, but there is no environment variable with the name \"{value}\" set.",
|
|
@@ -201,7 +205,11 @@
|
|
|
201
205
|
"deployTransactionFailed": "Deploying the contract failed with error: \"{error}\"",
|
|
202
206
|
"connectorNotStarted": "Please call start() before using this connector. Package ID: \"{packageId}\" is missing.",
|
|
203
207
|
"invalidImmutableMetadata": "The immutable metadata for NFT \"{nftId}\" is invalid",
|
|
204
|
-
"invalidMetadata": "The metadata for NFT \"{nftId}\" is invalid"
|
|
208
|
+
"invalidMetadata": "The metadata for NFT \"{nftId}\" is invalid",
|
|
209
|
+
"contractDataNotFound": "Contract data not found for network \"{network}\". Available networks: {availableNetworks}",
|
|
210
|
+
"packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network",
|
|
211
|
+
"deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
|
|
212
|
+
"packageIdNotFound": "Package ID not found for network \"{network}\""
|
|
205
213
|
},
|
|
206
214
|
"iotaNftUtils": {
|
|
207
215
|
"invalidNftIdFormat": "The NFT ID \"{id}\" has an invalid format"
|
|
@@ -271,6 +279,11 @@
|
|
|
271
279
|
"validation": {
|
|
272
280
|
"defaultFieldName": "The field"
|
|
273
281
|
},
|
|
282
|
+
"warn": {
|
|
283
|
+
"common": {
|
|
284
|
+
"devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
|
|
285
|
+
}
|
|
286
|
+
},
|
|
274
287
|
"cli": {
|
|
275
288
|
"progress": {
|
|
276
289
|
"done": "Done.",
|
|
@@ -603,7 +616,8 @@
|
|
|
603
616
|
"iotaNftConnector": {
|
|
604
617
|
"contractAlreadyDeployed": "Contract already deployed",
|
|
605
618
|
"contractDeploymentStarted": "Contract deployment started",
|
|
606
|
-
"contractDeploymentCompleted": "Contract deployment completed"
|
|
619
|
+
"contractDeploymentCompleted": "Contract deployment completed",
|
|
620
|
+
"contractReady": "Contract ready for use"
|
|
607
621
|
}
|
|
608
622
|
},
|
|
609
623
|
"errorMessages": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/nft-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.3](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.2...nft-cli-v0.0.2-next.3) (2025-08-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update framework core ([f3496b6](https://github.com/twinfoundation/nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
|
|
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.2 to 0.0.2-next.3
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **nft-cli:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/nft-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
30
|
+
|
|
3
31
|
## [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
32
|
|
|
5
33
|
|
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.3",
|
|
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.3",
|
|
25
25
|
"@twin.org/vault-connector-entity-storage": "next",
|
|
26
26
|
"@twin.org/vault-models": "next",
|
|
27
27
|
"@twin.org/wallet-cli": "next",
|