@xyo-network/diviner-address-space-model 4.0.2 → 4.1.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 +23 -0
- package/package.json +7 -7
- /package/{dist/types → build/neutral}/Config.d.ts +0 -0
- /package/{dist/types → build/neutral}/Config.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/Params.d.ts +0 -0
- /package/{dist/types → build/neutral}/Params.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/Schema.d.ts +0 -0
- /package/{dist/types → build/neutral}/Schema.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/index.d.ts +0 -0
- /package/{dist/types → build/neutral}/index.d.ts.map +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
+
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
|
|
4
|
+
declare const AddressSpaceSchema: "network.xyo.diviner.address.space";
|
|
5
|
+
type AddressSpaceSchema = typeof AddressSpaceSchema;
|
|
6
|
+
|
|
7
|
+
type AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
|
|
8
|
+
declare const AddressSpaceDivinerConfigSchema: AddressSpaceDivinerConfigSchema;
|
|
9
|
+
type AddressSpaceDivinerConfig = DivinerConfig<{
|
|
10
|
+
address?: string;
|
|
11
|
+
schema: AddressSpaceDivinerConfigSchema;
|
|
12
|
+
}>;
|
|
13
|
+
type AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
|
|
14
|
+
declare const AddressSpaceBatchDivinerConfigSchema: AddressSpaceBatchDivinerConfigSchema;
|
|
15
|
+
type AddressSpaceBatchDivinerConfig = DivinerConfig<{
|
|
16
|
+
address?: string;
|
|
17
|
+
schema: AddressSpaceBatchDivinerConfigSchema;
|
|
18
|
+
}>;
|
|
19
|
+
|
|
20
|
+
type AddressSpaceDivinerParams = DivinerParams<AnyConfigSchema<AddressSpaceDivinerConfig>>;
|
|
21
|
+
|
|
22
|
+
export { AddressSpaceBatchDivinerConfigSchema, AddressSpaceDivinerConfigSchema, AddressSpaceSchema };
|
|
23
|
+
export type { AddressSpaceBatchDivinerConfig, AddressSpaceDivinerConfig, AddressSpaceDivinerParams };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-space-model",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -21,20 +21,20 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/
|
|
24
|
+
"types": "./dist/neutral/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
|
-
"types": "dist/
|
|
30
|
+
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/diviner-model": "^4.0
|
|
33
|
-
"@xyo-network/module-model": "^4.0
|
|
32
|
+
"@xyo-network/diviner-model": "^4.1.0",
|
|
33
|
+
"@xyo-network/module-model": "^4.1.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
37
|
-
"@xylabs/tsconfig": "^
|
|
36
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.20",
|
|
37
|
+
"@xylabs/tsconfig": "^7.0.0-rc.20",
|
|
38
38
|
"typescript": "^5.8.3"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|