@xyo-network/diviner-address-space-memory 4.1.2 → 4.1.4
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 +2 -15
- package/package.json +17 -17
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,15 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { AddressPayload } from '@xyo-network/module-model';
|
|
4
|
-
import { Payload, Schema } from '@xyo-network/payload-model';
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* This Diviner returns the list of all addresses encountered for the reachable archivists
|
|
8
|
-
*/
|
|
9
|
-
declare class MemoryAddressSpaceDiviner<TParams extends AddressSpaceDivinerParams = AddressSpaceDivinerParams> extends AddressSpaceDiviner<TParams, Payload, AddressPayload> {
|
|
10
|
-
static readonly configSchemas: Schema[];
|
|
11
|
-
static readonly defaultConfigSchema: Schema;
|
|
12
|
-
protected divineHandler(payloads?: Payload[]): Promise<AddressPayload[]>;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export { MemoryAddressSpaceDiviner };
|
|
1
|
+
export * from './MemoryAddressSpaceDiviner.ts';
|
|
2
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-space-memory",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,24 +29,24 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.13.
|
|
33
|
-
"@xyo-network/archivist-wrapper": "^4.1.
|
|
34
|
-
"@xyo-network/boundwitness-model": "^4.1.
|
|
35
|
-
"@xyo-network/diviner-address-space-abstract": "^4.1.
|
|
36
|
-
"@xyo-network/diviner-address-space-model": "^4.1.
|
|
37
|
-
"@xyo-network/module-model": "^4.1.
|
|
38
|
-
"@xyo-network/payload-builder": "^4.1.
|
|
39
|
-
"@xyo-network/payload-model": "^4.1.
|
|
32
|
+
"@xylabs/assert": "^4.13.16",
|
|
33
|
+
"@xyo-network/archivist-wrapper": "^4.1.4",
|
|
34
|
+
"@xyo-network/boundwitness-model": "^4.1.4",
|
|
35
|
+
"@xyo-network/diviner-address-space-abstract": "^4.1.4",
|
|
36
|
+
"@xyo-network/diviner-address-space-model": "^4.1.4",
|
|
37
|
+
"@xyo-network/module-model": "^4.1.4",
|
|
38
|
+
"@xyo-network/payload-builder": "^4.1.4",
|
|
39
|
+
"@xyo-network/payload-model": "^4.1.4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@xylabs/hex": "^4.13.
|
|
43
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.
|
|
44
|
-
"@xylabs/tsconfig": "^7.0.0-rc.
|
|
45
|
-
"@xylabs/vitest-extended": "^4.13.
|
|
46
|
-
"@xyo-network/account": "^4.1.
|
|
47
|
-
"@xyo-network/archivist-memory": "^4.1.
|
|
48
|
-
"@xyo-network/node-memory": "^4.1.
|
|
49
|
-
"@xyo-network/payload-wrapper": "^4.1.
|
|
42
|
+
"@xylabs/hex": "^4.13.16",
|
|
43
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
|
|
44
|
+
"@xylabs/tsconfig": "^7.0.0-rc.27",
|
|
45
|
+
"@xylabs/vitest-extended": "^4.13.16",
|
|
46
|
+
"@xyo-network/account": "^4.1.4",
|
|
47
|
+
"@xyo-network/archivist-memory": "^4.1.4",
|
|
48
|
+
"@xyo-network/node-memory": "^4.1.4",
|
|
49
|
+
"@xyo-network/payload-wrapper": "^4.1.4",
|
|
50
50
|
"typescript": "^5.8.3",
|
|
51
51
|
"vitest": "^3.2.4"
|
|
52
52
|
},
|