@xyo-network/chain-orchestration 1.6.5 → 1.7.0
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/neutral/index.d.ts +27 -0
- package/package.json +19 -19
- package/dist/types/index.d.ts +0 -4
- /package/dist/{types → neutral}/archivist/index.d.ts +0 -0
- /package/dist/{types → neutral}/archivist/index.d.ts.map +0 -0
- /package/dist/{types → neutral}/archivist/initArchivistSync.d.ts +0 -0
- /package/dist/{types → neutral}/archivist/initArchivistSync.d.ts.map +0 -0
- /package/dist/{types → neutral}/archivist/wrapWithReadCachingArchivist.d.ts +0 -0
- /package/dist/{types → neutral}/archivist/wrapWithReadCachingArchivist.d.ts.map +0 -0
- /package/dist/{types → neutral}/bridge.d.ts +0 -0
- /package/dist/{types → neutral}/bridge.d.ts.map +0 -0
- /package/dist/{types → neutral}/index.d.ts.map +0 -0
- /package/dist/{types → neutral}/initBridgedModule.d.ts +0 -0
- /package/dist/{types → neutral}/initBridgedModule.d.ts.map +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as _xyo_network_node_model from '@xyo-network/node-model';
|
|
2
|
+
import * as _xyo_network_node_memory from '@xyo-network/node-memory';
|
|
3
|
+
import { MemoryNode } from '@xyo-network/node-memory';
|
|
4
|
+
import { TracerProvider } from '@opentelemetry/api';
|
|
5
|
+
import { ArchivistInstance, AttachableArchivistInstance } from '@xyo-network/archivist-model';
|
|
6
|
+
import { ModuleIdentifier, AttachableModuleInstance } from '@xyo-network/module-model';
|
|
7
|
+
import { MemoryArchivistConfig } from '@xyo-network/archivist-memory';
|
|
8
|
+
import { AttachableBridgeInstance, BridgeInstance } from '@xyo-network/bridge-model';
|
|
9
|
+
import { Initializable } from '@xyo-network/xl1-protocol';
|
|
10
|
+
|
|
11
|
+
declare const initArchivistSync: (name: ModuleIdentifier, inArchivist: ArchivistInstance, outArchivist: ArchivistInstance, frequency?: number, max?: number, traceProvider?: TracerProvider) => Promise<MemoryNode<_xyo_network_node_memory.MemoryNodeParams, _xyo_network_node_model.NodeModuleEventData>>;
|
|
12
|
+
|
|
13
|
+
declare const DefaultReadCachingArchivistConfig: MemoryArchivistConfig;
|
|
14
|
+
declare const wrapWithReadCachingArchivist: (archivist: AttachableArchivistInstance, config?: Partial<MemoryArchivistConfig>) => Promise<AttachableArchivistInstance>;
|
|
15
|
+
|
|
16
|
+
declare const initBridge: (nodeUrl: string) => Promise<AttachableBridgeInstance>;
|
|
17
|
+
|
|
18
|
+
declare const initBridgedModule: Initializable<{
|
|
19
|
+
bridge: BridgeInstance;
|
|
20
|
+
moduleName: ModuleIdentifier;
|
|
21
|
+
}, AttachableModuleInstance>;
|
|
22
|
+
declare const initBridgedArchivistModule: Initializable<{
|
|
23
|
+
bridge: BridgeInstance;
|
|
24
|
+
moduleName: ModuleIdentifier;
|
|
25
|
+
}, AttachableArchivistInstance>;
|
|
26
|
+
|
|
27
|
+
export { DefaultReadCachingArchivistConfig, initArchivistSync, initBridge, initBridgedArchivistModule, initBridgedModule, wrapWithReadCachingArchivist };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/chain-orchestration",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"description": "XYO Layer One SDK Orchestration",
|
|
6
6
|
"homepage": "https://xylabs.com",
|
|
7
7
|
"bugs": {
|
|
@@ -22,38 +22,38 @@
|
|
|
22
22
|
"type": "module",
|
|
23
23
|
"exports": {
|
|
24
24
|
".": {
|
|
25
|
-
"types": "./dist/
|
|
25
|
+
"types": "./dist/neutral/index.d.ts",
|
|
26
26
|
"default": "./dist/neutral/index.mjs"
|
|
27
27
|
},
|
|
28
28
|
"./package.json": "./package.json"
|
|
29
29
|
},
|
|
30
30
|
"module": "./dist/neutral/index.mjs",
|
|
31
|
-
"types": "./dist/
|
|
31
|
+
"types": "./dist/neutral/index.d.ts",
|
|
32
32
|
"scripts": {
|
|
33
33
|
"deploy": "echo Deploy not allowed!",
|
|
34
34
|
"deploy3": "echo Deploy3 not allowed!"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@opentelemetry/api": "^1.9.0",
|
|
38
|
-
"@xylabs/assert": "^4.
|
|
39
|
-
"@xyo-network/archivist-memory": "^4.
|
|
40
|
-
"@xyo-network/archivist-model": "^4.
|
|
41
|
-
"@xyo-network/bridge-http": "^4.
|
|
42
|
-
"@xyo-network/bridge-model": "^4.
|
|
43
|
-
"@xyo-network/chain-modules": "^1.
|
|
44
|
-
"@xyo-network/diviner-model": "^4.
|
|
45
|
-
"@xyo-network/module-model": "^4.
|
|
46
|
-
"@xyo-network/node-memory": "^4.
|
|
47
|
-
"@xyo-network/sentinel-memory": "^4.
|
|
48
|
-
"@xyo-network/sentinel-model": "^4.
|
|
49
|
-
"@xyo-network/xl1-protocol": "^1.6.
|
|
38
|
+
"@xylabs/assert": "^4.13.15",
|
|
39
|
+
"@xyo-network/archivist-memory": "^4.1.1",
|
|
40
|
+
"@xyo-network/archivist-model": "^4.1.1",
|
|
41
|
+
"@xyo-network/bridge-http": "^4.1.1",
|
|
42
|
+
"@xyo-network/bridge-model": "^4.1.1",
|
|
43
|
+
"@xyo-network/chain-modules": "^1.7.0",
|
|
44
|
+
"@xyo-network/diviner-model": "^4.1.1",
|
|
45
|
+
"@xyo-network/module-model": "^4.1.1",
|
|
46
|
+
"@xyo-network/node-memory": "^4.1.1",
|
|
47
|
+
"@xyo-network/sentinel-memory": "^4.1.1",
|
|
48
|
+
"@xyo-network/sentinel-model": "^4.1.1",
|
|
49
|
+
"@xyo-network/xl1-protocol": "^1.6.4",
|
|
50
50
|
"async-mutex": "^0.5.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@types/node": "^24.0.
|
|
54
|
-
"@xylabs/hex": "^4.
|
|
55
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
56
|
-
"@xylabs/tsconfig": "^
|
|
53
|
+
"@types/node": "^24.0.13",
|
|
54
|
+
"@xylabs/hex": "^4.13.15",
|
|
55
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
|
|
56
|
+
"@xylabs/tsconfig": "^7.0.0-rc.23",
|
|
57
57
|
"knip": "^5.61.3",
|
|
58
58
|
"typescript": "^5.8.3"
|
|
59
59
|
},
|
package/dist/types/index.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|