@xyo-network/chain-orchestration 1.6.6 → 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.
@@ -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.6.6",
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/types/index.d.ts",
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/types/index.d.ts",
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.13.5",
39
- "@xyo-network/archivist-memory": "^4.0.3",
40
- "@xyo-network/archivist-model": "^4.0.3",
41
- "@xyo-network/bridge-http": "^4.0.3",
42
- "@xyo-network/bridge-model": "^4.0.3",
43
- "@xyo-network/chain-modules": "^1.6.6",
44
- "@xyo-network/diviner-model": "^4.0.3",
45
- "@xyo-network/module-model": "^4.0.3",
46
- "@xyo-network/node-memory": "^4.0.3",
47
- "@xyo-network/sentinel-memory": "^4.0.3",
48
- "@xyo-network/sentinel-model": "^4.0.3",
49
- "@xyo-network/xl1-protocol": "^1.6.2",
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
53
  "@types/node": "^24.0.13",
54
- "@xylabs/hex": "^4.13.5",
55
- "@xylabs/ts-scripts-yarn3": "^6.5.18",
56
- "@xylabs/tsconfig": "^6.5.18",
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
  },
@@ -1,4 +0,0 @@
1
- export * from './archivist/index.ts';
2
- export * from './bridge.ts';
3
- export * from './initBridgedModule.ts';
4
- //# sourceMappingURL=index.d.ts.map
File without changes
File without changes
File without changes
File without changes
File without changes