@twin.org/crypto-cli 0.0.1-next.24 → 0.0.1-next.27
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 +4 -1
- package/docs/changelog.md +1 -1
- package/package.json +5 -5
package/dist/cjs/index.cjs
CHANGED
|
@@ -193,7 +193,7 @@ class CLI extends cliCore.CLIBase {
|
|
|
193
193
|
return this.execute({
|
|
194
194
|
title: "TWIN Crypto",
|
|
195
195
|
appName: "twin-crypto",
|
|
196
|
-
version: "0.0.1-next.
|
|
196
|
+
version: "0.0.1-next.27",
|
|
197
197
|
icon: "🌍",
|
|
198
198
|
supportsEnvFiles: true,
|
|
199
199
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -190,7 +190,7 @@ class CLI extends CLIBase {
|
|
|
190
190
|
return this.execute({
|
|
191
191
|
title: "TWIN Crypto",
|
|
192
192
|
appName: "twin-crypto",
|
|
193
|
-
version: "0.0.1-next.
|
|
193
|
+
version: "0.0.1-next.27",
|
|
194
194
|
icon: "🌍",
|
|
195
195
|
supportsEnvFiles: true,
|
|
196
196
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"stringBase58": "Property \"{property}\" must be a base58 encoded string, it is \"{value}\"",
|
|
68
68
|
"stringHex": "Property \"{property}\" must be a hex string, it is \"{value}\"",
|
|
69
69
|
"stringHexLength": "Property \"{property}\" must be a hex string of length \"{options}\", it is \"{value}\"",
|
|
70
|
+
"stringJson": "Property \"{property}\" must be a JSON string",
|
|
70
71
|
"number": "Property \"{property}\" must be a number, it is \"{value}\"",
|
|
71
72
|
"integer": "Property \"{property}\" must be an integer, it is \"{value}\"",
|
|
72
73
|
"bigint": "Property \"{property}\" must be a bigint, it is \"{value}\"",
|
|
@@ -91,7 +92,9 @@
|
|
|
91
92
|
"greaterThan0": "Property \"{property}\" must be greater than zero, it is {value}"
|
|
92
93
|
},
|
|
93
94
|
"objectHelper": {
|
|
94
|
-
"failedBytesToJSON": "Failed converting bytes to JSON"
|
|
95
|
+
"failedBytesToJSON": "Failed converting bytes to JSON",
|
|
96
|
+
"cannotSetArrayIndex": "Cannot set property \"{property}\" using index \"{index}\" as it is not an array",
|
|
97
|
+
"cannotSetProperty": "Cannot set property \"{property}\" when the target is not an object"
|
|
95
98
|
},
|
|
96
99
|
"common": {
|
|
97
100
|
"notImplementedMethod": "The method \"{method}\" has not been implemented",
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.27",
|
|
4
4
|
"description": "A command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "0.0.1-next.
|
|
18
|
-
"@twin.org/core": "0.0.1-next.
|
|
19
|
-
"@twin.org/crypto": "0.0.1-next.
|
|
17
|
+
"@twin.org/cli-core": "0.0.1-next.27",
|
|
18
|
+
"@twin.org/core": "0.0.1-next.27",
|
|
19
|
+
"@twin.org/crypto": "0.0.1-next.27",
|
|
20
20
|
"@twin.org/nameof": "next",
|
|
21
|
-
"commander": "13.
|
|
21
|
+
"commander": "13.1.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|
|
24
24
|
"module": "./dist/esm/index.mjs",
|