@twin.org/move-to-json 0.0.2-next.2 → 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/README.md CHANGED
@@ -335,8 +335,3 @@ iota client call --package 0x2 --module package --function upgrade \
335
335
  --args 0xfd6269c28e3931e41aa9d9e08ffabb8162cf1fd0baaef14094b4442e6c743edf \
336
336
  --gas-budget 50000000
337
337
  ```
338
-
339
- ## Contributing
340
-
341
- To contribute to this package see the guidelines for building and publishing in
342
- [CONTRIBUTING](./CONTRIBUTING.md)
@@ -774,7 +774,7 @@ class CLI extends cliCore.CLIBase {
774
774
  return this.execute({
775
775
  title: "TWIN Move to JSON",
776
776
  appName: "move-to-json",
777
- version: "0.0.2-next.2", // x-release-please-version
777
+ version: "0.0.2-next.3", // x-release-please-version
778
778
  icon: "⚙️ ",
779
779
  supportsEnvFiles: true,
780
780
  overrideOutputWidth: options?.overrideOutputWidth
@@ -771,7 +771,7 @@ class CLI extends CLIBase {
771
771
  return this.execute({
772
772
  title: "TWIN Move to JSON",
773
773
  appName: "move-to-json",
774
- version: "0.0.2-next.2", // x-release-please-version
774
+ version: "0.0.2-next.3", // x-release-please-version
775
775
  icon: "⚙️ ",
776
776
  supportsEnvFiles: true,
777
777
  overrideOutputWidth: options?.overrideOutputWidth
@@ -211,6 +211,10 @@
211
211
  "slip0010": {
212
212
  "invalidSeed": "The seed is invalid \"{seed}\""
213
213
  },
214
+ "rsa": {
215
+ "noPrivateKey": "Private key is required for this operation",
216
+ "invalidKeySize": "Invalid RSA key size"
217
+ },
214
218
  "iota": {
215
219
  "insufficientFunds": "There were insufficient funds to complete the operation",
216
220
  "packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
@@ -269,6 +273,11 @@
269
273
  "seedInvalidFormat": "Invalid DEPLOYER_SEED environment variable format for {network}. Expected hex string starting with 0x and at least 64 characters.\nPlease ensure {seedVar} in your environment or configs/{network}.env contains a valid hex seed value."
270
274
  }
271
275
  },
276
+ "warn": {
277
+ "common": {
278
+ "devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
279
+ }
280
+ },
272
281
  "cli": {
273
282
  "progress": {
274
283
  "done": "Done.",
package/docs/changelog.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @twin.org/move-to-json - Changelog
2
2
 
3
+ ## [0.0.2-next.3](https://github.com/twinfoundation/dlt/compare/move-to-json-v0.0.2-next.2...move-to-json-v0.0.2-next.3) (2025-08-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * update framework core ([79fc4b9](https://github.com/twinfoundation/dlt/commit/79fc4b961bd755437cad98d733ca9e25476bc03f))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * docs ([cade544](https://github.com/twinfoundation/dlt/commit/cade5443a4b955d592c1622f07499ad8a3d554b6))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @twin.org/dlt-iota bumped from 0.0.2-next.2 to 0.0.2-next.3
21
+
3
22
  ## [0.0.2-next.2](https://github.com/twinfoundation/dlt/compare/move-to-json-v0.0.2-next.1...move-to-json-v0.0.2-next.2) (2025-07-25)
4
23
 
5
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/move-to-json",
3
- "version": "0.0.2-next.2",
3
+ "version": "0.0.2-next.3",
4
4
  "description": "Tool to convert Move source files to JSON",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,15 +14,15 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@iota/iota-sdk": "1.4.0",
17
+ "@iota/iota-sdk": "1.5.0",
18
18
  "@twin.org/cli-core": "next",
19
19
  "@twin.org/core": "next",
20
20
  "@twin.org/crypto": "next",
21
- "@twin.org/dlt-iota": "0.0.2-next.2",
21
+ "@twin.org/dlt-iota": "0.0.2-next.3",
22
22
  "@twin.org/nameof": "next",
23
23
  "@twin.org/wallet-connector-iota": "next",
24
24
  "commander": "14.0.0",
25
- "dotenv": "16.5.0",
25
+ "dotenv": "17.2.1",
26
26
  "fast-glob": "3.3.3"
27
27
  },
28
28
  "main": "./dist/cjs/index.cjs",