@xyo-network/xl1-cli-lib 1.15.1 → 1.15.2
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/node/index.mjs +1 -1
- package/dist/node/index.mjs.map +1 -1
- package/dist/node/orchestration/archivists/lib/localPersistentArchivist.d.ts +1 -0
- package/dist/node/orchestration/archivists/lib/localPersistentArchivist.d.ts.map +1 -1
- package/dist/node/xl1.mjs +1 -1
- package/dist/node/xl1.mjs.map +1 -1
- package/package.json +13 -13
- package/src/orchestration/archivists/lib/localPersistentArchivist.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/xl1-cli-lib",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.2",
|
|
4
4
|
"description": "XYO Layer One CLI Library",
|
|
5
5
|
"homepage": "https://xylabs.com",
|
|
6
6
|
"bugs": {
|
|
@@ -52,17 +52,17 @@
|
|
|
52
52
|
"@xylabs/promise": "~5.0.11",
|
|
53
53
|
"@xylabs/telemetry": "~5.0.11",
|
|
54
54
|
"@xylabs/typeof": "~5.0.11",
|
|
55
|
-
"@xyo-network/archivist-lmdb": "~5.1.
|
|
56
|
-
"@xyo-network/archivist-memory": "~5.1.
|
|
57
|
-
"@xyo-network/archivist-model": "~5.1.
|
|
58
|
-
"@xyo-network/chain-api": "~1.15.
|
|
59
|
-
"@xyo-network/chain-sdk": "~1.15.
|
|
60
|
-
"@xyo-network/payload-builder": "~5.1.
|
|
61
|
-
"@xyo-network/payload-model": "~5.1.
|
|
62
|
-
"@xyo-network/wallet": "~5.1.
|
|
63
|
-
"@xyo-network/wallet-model": "~5.1.
|
|
64
|
-
"@xyo-network/xl1-protocol": "~1.12.
|
|
65
|
-
"@xyo-network/xl1-protocol-sdk": "~1.15.
|
|
55
|
+
"@xyo-network/archivist-lmdb": "~5.1.3",
|
|
56
|
+
"@xyo-network/archivist-memory": "~5.1.3",
|
|
57
|
+
"@xyo-network/archivist-model": "~5.1.3",
|
|
58
|
+
"@xyo-network/chain-api": "~1.15.2",
|
|
59
|
+
"@xyo-network/chain-sdk": "~1.15.2",
|
|
60
|
+
"@xyo-network/payload-builder": "~5.1.3",
|
|
61
|
+
"@xyo-network/payload-model": "~5.1.3",
|
|
62
|
+
"@xyo-network/wallet": "~5.1.3",
|
|
63
|
+
"@xyo-network/wallet-model": "~5.1.3",
|
|
64
|
+
"@xyo-network/xl1-protocol": "~1.12.40",
|
|
65
|
+
"@xyo-network/xl1-protocol-sdk": "~1.15.2",
|
|
66
66
|
"async-mutex": "~0.5.0",
|
|
67
67
|
"cosmiconfig": "~9.0.0",
|
|
68
68
|
"dotenv": "~17.2.2",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"@xylabs/ts-scripts-yarn3": "~7.1.7",
|
|
76
76
|
"@xylabs/tsconfig": "~7.1.7",
|
|
77
77
|
"@xylabs/vitest-extended": "~5.0.11",
|
|
78
|
-
"@xyo-network/account-model": "~5.1.
|
|
78
|
+
"@xyo-network/account-model": "~5.1.3",
|
|
79
79
|
"eslint": "^9.36.0",
|
|
80
80
|
"nodemon": "~3.1.10",
|
|
81
81
|
"rimraf": "~6.0.1",
|
|
@@ -11,6 +11,7 @@ const DEFAULT_STORAGE_ROOT = Path.join(process.cwd(), '.store')
|
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* Returns a local persistent archivist
|
|
14
|
+
* @param name The name of the archivist
|
|
14
15
|
* @param dbName The name of the database
|
|
15
16
|
* @param storeName The name of the store
|
|
16
17
|
* @param storageRoot The root directory for storage (default is '.store' in the current working directory)
|