@twin.org/nft-cli 0.0.1-next.23 → 0.0.1-next.24
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 +3 -0
- package/docs/changelog.md +15 -0
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -467,7 +467,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
467
467
|
return this.execute({
|
|
468
468
|
title: "TWIN NFT",
|
|
469
469
|
appName: "twin-nft",
|
|
470
|
-
version: "0.0.1-next.
|
|
470
|
+
version: "0.0.1-next.24", // x-release-please-version
|
|
471
471
|
icon: "🌍",
|
|
472
472
|
supportsEnvFiles: true,
|
|
473
473
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -464,7 +464,7 @@ class CLI extends CLIBase {
|
|
|
464
464
|
return this.execute({
|
|
465
465
|
title: "TWIN NFT",
|
|
466
466
|
appName: "twin-nft",
|
|
467
|
-
version: "0.0.1-next.
|
|
467
|
+
version: "0.0.1-next.24", // x-release-please-version
|
|
468
468
|
icon: "🌍",
|
|
469
469
|
supportsEnvFiles: true,
|
|
470
470
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -100,6 +100,9 @@
|
|
|
100
100
|
"base58": {
|
|
101
101
|
"invalidCharacter": "Data contains a character \"{invalidCharacter}\" which is not in the charset"
|
|
102
102
|
},
|
|
103
|
+
"jsonHelper": {
|
|
104
|
+
"failedPatch": "Failed to patch the JSON object, patch index \"{index}\" failed"
|
|
105
|
+
},
|
|
103
106
|
"bip39": {
|
|
104
107
|
"missingMnemonicWord": "The mnemonic contains a word not in the wordlist, \"{value}\"",
|
|
105
108
|
"checksumMismatch": "The checksum does not match \"{newChecksum}\" != \"{checksumBits}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @twin.org/nft-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.24](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.23...nft-cli-v0.0.1-next.24) (2025-03-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
|
|
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.23 to 0.0.1-next.24
|
|
16
|
+
* @twin.org/nft-connector-iota-stardust bumped from 0.0.1-next.23 to 0.0.1-next.24
|
|
17
|
+
|
|
3
18
|
## v0.0.1-next.23
|
|
4
19
|
|
|
5
20
|
- Initial Release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nft-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.24",
|
|
4
4
|
"description": "A command line interface for interacting with the nft connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
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.
|
|
25
|
-
"@twin.org/nft-connector-iota-stardust": "0.0.1-next.
|
|
24
|
+
"@twin.org/nft-connector-iota": "0.0.1-next.24",
|
|
25
|
+
"@twin.org/nft-connector-iota-stardust": "0.0.1-next.24",
|
|
26
26
|
"@twin.org/vault-connector-entity-storage": "next",
|
|
27
27
|
"@twin.org/vault-models": "next",
|
|
28
28
|
"@twin.org/wallet-cli": "next",
|