@xyo-network/diviner-address-space-model 3.9.18 → 3.9.20
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/Config.d.ts +15 -0
- package/dist/neutral/Config.d.ts.map +1 -0
- package/dist/neutral/Params.d.ts +5 -0
- package/dist/neutral/Params.d.ts.map +1 -0
- package/dist/neutral/Schema.d.ts +3 -0
- package/dist/neutral/Schema.d.ts.map +1 -0
- package/dist/neutral/index.d.ts +4 -22
- package/dist/neutral/index.d.ts.map +1 -0
- package/package.json +6 -6
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DivinerConfig } from '@xyo-network/diviner-model';
|
|
2
|
+
import { AddressSpaceSchema } from './Schema.ts';
|
|
3
|
+
export type AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
|
|
4
|
+
export declare const AddressSpaceDivinerConfigSchema: AddressSpaceDivinerConfigSchema;
|
|
5
|
+
export type AddressSpaceDivinerConfig = DivinerConfig<{
|
|
6
|
+
address?: string;
|
|
7
|
+
schema: AddressSpaceDivinerConfigSchema;
|
|
8
|
+
}>;
|
|
9
|
+
export type AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
|
|
10
|
+
export declare const AddressSpaceBatchDivinerConfigSchema: AddressSpaceBatchDivinerConfigSchema;
|
|
11
|
+
export type AddressSpaceBatchDivinerConfig = DivinerConfig<{
|
|
12
|
+
address?: string;
|
|
13
|
+
schema: AddressSpaceBatchDivinerConfigSchema;
|
|
14
|
+
}>;
|
|
15
|
+
//# sourceMappingURL=Config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAE/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAEhD,MAAM,MAAM,+BAA+B,GAAG,GAAG,kBAAkB,iBAAiB,CAAA;AACpF,eAAO,MAAM,+BAA+B,EAAE,+BAAwE,CAAA;AAEtH,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC;IACpD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,+BAA+B,CAAA;CACxC,CAAC,CAAA;AAEF,MAAM,MAAM,oCAAoC,GAAG,GAAG,kBAAkB,uBAAuB,CAAA;AAC/F,eAAO,MAAM,oCAAoC,EAAE,oCAAmF,CAAA;AAEtI,MAAM,MAAM,8BAA8B,GAAG,aAAa,CAAC;IACzD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,oCAAoC,CAAA;CAC7C,CAAC,CAAA"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
+
import type { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
import type { AddressSpaceDivinerConfig } from './Config.ts';
|
|
4
|
+
export type AddressSpaceDivinerParams = DivinerParams<AnyConfigSchema<AddressSpaceDivinerConfig>>;
|
|
5
|
+
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAEhE,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAA;AAE5D,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC,eAAe,CAAC,yBAAyB,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB,EAAG,mCAA4C,CAAA;AAC9E,MAAM,MAAM,kBAAkB,GAAG,OAAO,kBAAkB,CAAA"}
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,22 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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 { type AddressSpaceBatchDivinerConfig, AddressSpaceBatchDivinerConfigSchema, type AddressSpaceDivinerConfig, AddressSpaceDivinerConfigSchema, type AddressSpaceDivinerParams, AddressSpaceSchema };
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export * from './Params.ts';
|
|
3
|
+
export * from './Schema.ts';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-space-model",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.20",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
33
|
-
"@xyo-network/module-model": "^3.9.
|
|
32
|
+
"@xyo-network/diviner-model": "^3.9.20",
|
|
33
|
+
"@xyo-network/module-model": "^3.9.20"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
37
|
-
"@xylabs/tsconfig": "^5.0.
|
|
38
|
-
"typescript": "^5.
|
|
36
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.39",
|
|
37
|
+
"@xylabs/tsconfig": "^5.0.39",
|
|
38
|
+
"typescript": "^5.8.2"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|