@twin.org/crypto-cli 0.0.1-next.48 → 0.0.1-next.50

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.
@@ -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.48",
196
+ version: "0.0.1-next.50", // x-release-please-version
197
197
  icon: "🌍",
198
198
  supportsEnvFiles: true,
199
199
  overrideOutputWidth: options?.overrideOutputWidth
@@ -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.48",
193
+ version: "0.0.1-next.50", // x-release-please-version
194
194
  icon: "🌍",
195
195
  supportsEnvFiles: true,
196
196
  overrideOutputWidth: options?.overrideOutputWidth
@@ -116,6 +116,9 @@
116
116
  "base58": {
117
117
  "invalidCharacter": "Data contains a character \"{invalidCharacter}\" which is not in the charset"
118
118
  },
119
+ "jsonHelper": {
120
+ "failedPatch": "Failed to patch the JSON object, patch index \"{index}\" failed"
121
+ },
119
122
  "bip39": {
120
123
  "missingMnemonicWord": "The mnemonic contains a word not in the wordlist, \"{value}\"",
121
124
  "checksumMismatch": "The checksum does not match \"{newChecksum}\" != \"{checksumBits}\""
package/docs/changelog.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @twin.org/crypto-cli - Changelog
2
2
 
3
- ## 0.0.1-next.48
3
+ ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.49...crypto-cli-v0.0.1-next.50) (2025-03-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
9
+ * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
10
+
11
+
12
+ ### Dependencies
13
+
14
+ * The following workspace dependencies were updated
15
+ * dependencies
16
+ * @twin.org/cli-core bumped from 0.0.1-next.49 to 0.0.1-next.50
17
+ * @twin.org/core bumped from 0.0.1-next.49 to 0.0.1-next.50
18
+ * @twin.org/crypto bumped from 0.0.1-next.49 to 0.0.1-next.50
19
+
20
+ ## 0.0.1-next.49
4
21
 
5
22
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/crypto-cli",
3
- "version": "0.0.1-next.48",
3
+ "version": "0.0.1-next.50",
4
4
  "description": "A command line interface for interacting with the crypto tools",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,9 +14,9 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/cli-core": "0.0.1-next.48",
18
- "@twin.org/core": "0.0.1-next.48",
19
- "@twin.org/crypto": "0.0.1-next.48",
17
+ "@twin.org/cli-core": "0.0.1-next.50",
18
+ "@twin.org/core": "0.0.1-next.50",
19
+ "@twin.org/crypto": "0.0.1-next.50",
20
20
  "@twin.org/nameof": "next",
21
21
  "commander": "13.1.0"
22
22
  },