@xyo-network/diviner-address-space-model 2.72.8 → 2.73.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,22 @@
1
+ import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
2
+ import { AnyConfigSchema } from '@xyo-network/module-model';
3
+
4
+ type AddressSpaceSchema = 'network.xyo.diviner.address.space';
5
+ declare const AddressSpaceSchema: 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 { AddressSpaceBatchDivinerConfig, AddressSpaceBatchDivinerConfigSchema, AddressSpaceDivinerConfig, AddressSpaceDivinerConfigSchema, AddressSpaceDivinerParams, AddressSpaceSchema };
@@ -0,0 +1,22 @@
1
+ import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
2
+ import { AnyConfigSchema } from '@xyo-network/module-model';
3
+
4
+ type AddressSpaceSchema = 'network.xyo.diviner.address.space';
5
+ declare const AddressSpaceSchema: 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 { AddressSpaceBatchDivinerConfig, AddressSpaceBatchDivinerConfigSchema, AddressSpaceDivinerConfig, AddressSpaceDivinerConfigSchema, AddressSpaceDivinerParams, AddressSpaceSchema };
package/dist/index.js ADDED
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ AddressSpaceBatchDivinerConfigSchema: () => AddressSpaceBatchDivinerConfigSchema,
24
+ AddressSpaceDivinerConfigSchema: () => AddressSpaceDivinerConfigSchema,
25
+ AddressSpaceSchema: () => AddressSpaceSchema
26
+ });
27
+ module.exports = __toCommonJS(src_exports);
28
+
29
+ // src/Schema.ts
30
+ var AddressSpaceSchema = "network.xyo.diviner.address.space";
31
+
32
+ // src/Config.ts
33
+ var AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
34
+ var AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
35
+ // Annotate the CommonJS export names for ESM import in node:
36
+ 0 && (module.exports = {
37
+ AddressSpaceBatchDivinerConfigSchema,
38
+ AddressSpaceDivinerConfigSchema,
39
+ AddressSpaceSchema
40
+ });
41
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts","../src/Schema.ts","../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { AddressSpaceSchema } from './Schema'\n\nexport type AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`\nexport const AddressSpaceDivinerConfigSchema: AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`\n\nexport type AddressSpaceDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceDivinerConfigSchema\n}>\n\nexport type AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`\nexport const AddressSpaceBatchDivinerConfigSchema: AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`\n\nexport type AddressSpaceBatchDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceBatchDivinerConfigSchema\n}>\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACCO,IAAM,qBAAyC;;;ACI/C,IAAM,kCAAmE,GAAG,kBAAkB;AAQ9F,IAAM,uCAA6E,GAAG,kBAAkB;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,12 @@
1
+ // src/Schema.ts
2
+ var AddressSpaceSchema = "network.xyo.diviner.address.space";
3
+
4
+ // src/Config.ts
5
+ var AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
6
+ var AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
7
+ export {
8
+ AddressSpaceBatchDivinerConfigSchema,
9
+ AddressSpaceDivinerConfigSchema,
10
+ AddressSpaceSchema
11
+ };
12
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/Schema.ts","../src/Config.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { AddressSpaceSchema } from './Schema'\n\nexport type AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`\nexport const AddressSpaceDivinerConfigSchema: AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`\n\nexport type AddressSpaceDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceDivinerConfigSchema\n}>\n\nexport type AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`\nexport const AddressSpaceBatchDivinerConfigSchema: AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`\n\nexport type AddressSpaceBatchDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceBatchDivinerConfigSchema\n}>\n"],"mappings":";AACO,IAAM,qBAAyC;;;ACI/C,IAAM,kCAAmE,GAAG,kBAAkB;AAQ9F,IAAM,uCAA6E,GAAG,kBAAkB;","names":[]}
package/package.json CHANGED
@@ -10,36 +10,50 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/diviner-model": "~2.72.8",
14
- "@xyo-network/module-model": "~2.72.8"
13
+ "@xyo-network/diviner-model": "~2.73.0",
14
+ "@xyo-network/module-model": "~2.73.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@xylabs/ts-scripts-yarn3": "^2.19.3",
18
- "@xylabs/tsconfig": "^2.19.3",
17
+ "@xylabs/ts-scripts-yarn3": "^2.19.5",
18
+ "@xylabs/tsconfig": "^2.19.5",
19
+ "publint": "^0.2.2",
20
+ "tsup": "^7.2.0",
19
21
  "typescript": "^5.2.2"
20
22
  },
23
+ "scripts": {
24
+ "package-compile": "tsup && publint",
25
+ "package-recompile": "tsup && publint"
26
+ },
21
27
  "description": "Primary SDK for using XYO Protocol 2.0",
22
- "browser": "dist/esm/index.js",
23
28
  "docs": "dist/docs.json",
29
+ "types": "dist/index.d.ts",
24
30
  "exports": {
25
31
  ".": {
26
- "node": {
27
- "import": "./dist/esm/index.js",
28
- "require": "./dist/cjs/index.js"
29
- },
30
- "browser": {
31
- "import": "./dist/esm/index.js",
32
- "require": "./dist/cjs/index.js"
32
+ "require": {
33
+ "types": "./dist/index.d.ts",
34
+ "default": "./dist/index.js"
33
35
  },
34
- "default": "./dist/esm/index.js"
36
+ "import": {
37
+ "types": "./dist/index.d.mts",
38
+ "default": "./dist/index.mjs"
39
+ }
35
40
  },
36
41
  "./dist/docs.json": {
37
42
  "default": "./dist/docs.json"
38
43
  },
44
+ "./cjs": {
45
+ "default": "./dist/index.js"
46
+ },
47
+ "./docs": {
48
+ "default": "./dist/docs.json"
49
+ },
50
+ "./esm": {
51
+ "default": "./dist/index.mjs"
52
+ },
39
53
  "./package.json": "./package.json"
40
54
  },
41
- "main": "dist/cjs/index.js",
42
- "module": "dist/esm/index.js",
55
+ "main": "dist/index.js",
56
+ "module": "dist/index.mjs",
43
57
  "homepage": "https://xyo.network",
44
58
  "license": "LGPL-3.0",
45
59
  "publishConfig": {
@@ -50,6 +64,5 @@
50
64
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
51
65
  },
52
66
  "sideEffects": false,
53
- "types": "dist/types/index.d.ts",
54
- "version": "2.72.8"
67
+ "version": "2.73.0"
55
68
  }
package/tsup.config.ts ADDED
@@ -0,0 +1,16 @@
1
+ import { defineConfig } from 'tsup'
2
+
3
+ // eslint-disable-next-line import/no-default-export
4
+ export default defineConfig({
5
+ bundle: true,
6
+ cjsInterop: true,
7
+ clean: true,
8
+ dts: {
9
+ entry: ['src/index.ts'],
10
+ },
11
+ entry: ['src/index.ts'],
12
+ format: ['cjs', 'esm'],
13
+ sourcemap: true,
14
+ splitting: false,
15
+ tsconfig: 'tsconfig.json',
16
+ })
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AddressSpaceBatchDivinerConfigSchema = exports.AddressSpaceDivinerConfigSchema = void 0;
4
- const Schema_1 = require("./Schema");
5
- exports.AddressSpaceDivinerConfigSchema = `${Schema_1.AddressSpaceSchema}.diviner.config`;
6
- exports.AddressSpaceBatchDivinerConfigSchema = `${Schema_1.AddressSpaceSchema}.batch.diviner.config`;
7
- //# sourceMappingURL=Config.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Config.js","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":";;;AAEA,qCAA6C;AAGhC,QAAA,+BAA+B,GAAoC,GAAG,2BAAkB,iBAAiB,CAAA;AAQzG,QAAA,oCAAoC,GAAyC,GAAG,2BAAkB,uBAAuB,CAAA"}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=Params.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Params.js","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":""}
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AddressSpaceSchema = void 0;
4
- exports.AddressSpaceSchema = 'network.xyo.diviner.address.space';
5
- //# sourceMappingURL=Schema.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Schema.js","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":";;;AACa,QAAA,kBAAkB,GAAuB,mCAAmC,CAAA"}
package/dist/cjs/index.js DELETED
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Config"), exports);
5
- tslib_1.__exportStar(require("./Params"), exports);
6
- tslib_1.__exportStar(require("./Schema"), exports);
7
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,mDAAwB;AACxB,mDAAwB;AACxB,mDAAwB"}
package/dist/docs.json DELETED
@@ -1,512 +0,0 @@
1
- {
2
- "id": 0,
3
- "name": "@xyo-network/diviner-address-space-model",
4
- "variant": "project",
5
- "kind": 1,
6
- "flags": {},
7
- "children": [
8
- {
9
- "id": 9,
10
- "name": "AddressSpaceBatchDivinerConfig",
11
- "variant": "declaration",
12
- "kind": 4194304,
13
- "flags": {},
14
- "sources": [
15
- {
16
- "fileName": "Config.ts",
17
- "line": 16,
18
- "character": 12,
19
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L16"
20
- }
21
- ],
22
- "type": {
23
- "type": "reference",
24
- "target": {
25
- "sourceFileName": "../../../model/src/Config.ts",
26
- "qualifiedName": "DivinerConfig"
27
- },
28
- "typeArguments": [
29
- {
30
- "type": "reflection",
31
- "declaration": {
32
- "id": 10,
33
- "name": "__type",
34
- "variant": "declaration",
35
- "kind": 65536,
36
- "flags": {},
37
- "children": [
38
- {
39
- "id": 11,
40
- "name": "address",
41
- "variant": "declaration",
42
- "kind": 1024,
43
- "flags": {
44
- "isOptional": true
45
- },
46
- "sources": [
47
- {
48
- "fileName": "Config.ts",
49
- "line": 17,
50
- "character": 2,
51
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L17"
52
- }
53
- ],
54
- "type": {
55
- "type": "intrinsic",
56
- "name": "string"
57
- }
58
- },
59
- {
60
- "id": 12,
61
- "name": "schema",
62
- "variant": "declaration",
63
- "kind": 1024,
64
- "flags": {},
65
- "sources": [
66
- {
67
- "fileName": "Config.ts",
68
- "line": 18,
69
- "character": 2,
70
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L18"
71
- }
72
- ],
73
- "type": {
74
- "type": "reference",
75
- "target": 7,
76
- "name": "AddressSpaceBatchDivinerConfigSchema",
77
- "package": "@xyo-network/diviner-address-space-model"
78
- }
79
- }
80
- ],
81
- "groups": [
82
- {
83
- "title": "Properties",
84
- "children": [
85
- 11,
86
- 12
87
- ]
88
- }
89
- ],
90
- "sources": [
91
- {
92
- "fileName": "Config.ts",
93
- "line": 16,
94
- "character": 59,
95
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L16"
96
- }
97
- ]
98
- }
99
- }
100
- ],
101
- "name": "DivinerConfig",
102
- "package": "@xyo-network/diviner-model"
103
- }
104
- },
105
- {
106
- "id": 8,
107
- "name": "AddressSpaceBatchDivinerConfigSchema",
108
- "variant": "declaration",
109
- "kind": 4194304,
110
- "flags": {},
111
- "sources": [
112
- {
113
- "fileName": "Config.ts",
114
- "line": 13,
115
- "character": 12,
116
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L13"
117
- },
118
- {
119
- "fileName": "Config.ts",
120
- "line": 14,
121
- "character": 13,
122
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L14"
123
- }
124
- ],
125
- "type": {
126
- "type": "templateLiteral",
127
- "head": "",
128
- "tail": [
129
- [
130
- {
131
- "type": "reference",
132
- "target": 14,
133
- "name": "AddressSpaceSchema",
134
- "package": "@xyo-network/diviner-address-space-model"
135
- },
136
- ".batch.diviner.config"
137
- ]
138
- ]
139
- }
140
- },
141
- {
142
- "id": 3,
143
- "name": "AddressSpaceDivinerConfig",
144
- "variant": "declaration",
145
- "kind": 4194304,
146
- "flags": {},
147
- "sources": [
148
- {
149
- "fileName": "Config.ts",
150
- "line": 8,
151
- "character": 12,
152
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L8"
153
- }
154
- ],
155
- "type": {
156
- "type": "reference",
157
- "target": {
158
- "sourceFileName": "../../../model/src/Config.ts",
159
- "qualifiedName": "DivinerConfig"
160
- },
161
- "typeArguments": [
162
- {
163
- "type": "reflection",
164
- "declaration": {
165
- "id": 4,
166
- "name": "__type",
167
- "variant": "declaration",
168
- "kind": 65536,
169
- "flags": {},
170
- "children": [
171
- {
172
- "id": 5,
173
- "name": "address",
174
- "variant": "declaration",
175
- "kind": 1024,
176
- "flags": {
177
- "isOptional": true
178
- },
179
- "sources": [
180
- {
181
- "fileName": "Config.ts",
182
- "line": 9,
183
- "character": 2,
184
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L9"
185
- }
186
- ],
187
- "type": {
188
- "type": "intrinsic",
189
- "name": "string"
190
- }
191
- },
192
- {
193
- "id": 6,
194
- "name": "schema",
195
- "variant": "declaration",
196
- "kind": 1024,
197
- "flags": {},
198
- "sources": [
199
- {
200
- "fileName": "Config.ts",
201
- "line": 10,
202
- "character": 2,
203
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L10"
204
- }
205
- ],
206
- "type": {
207
- "type": "reference",
208
- "target": 1,
209
- "name": "AddressSpaceDivinerConfigSchema",
210
- "package": "@xyo-network/diviner-address-space-model"
211
- }
212
- }
213
- ],
214
- "groups": [
215
- {
216
- "title": "Properties",
217
- "children": [
218
- 5,
219
- 6
220
- ]
221
- }
222
- ],
223
- "sources": [
224
- {
225
- "fileName": "Config.ts",
226
- "line": 8,
227
- "character": 54,
228
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L8"
229
- }
230
- ]
231
- }
232
- }
233
- ],
234
- "name": "DivinerConfig",
235
- "package": "@xyo-network/diviner-model"
236
- }
237
- },
238
- {
239
- "id": 2,
240
- "name": "AddressSpaceDivinerConfigSchema",
241
- "variant": "declaration",
242
- "kind": 4194304,
243
- "flags": {},
244
- "sources": [
245
- {
246
- "fileName": "Config.ts",
247
- "line": 5,
248
- "character": 12,
249
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L5"
250
- },
251
- {
252
- "fileName": "Config.ts",
253
- "line": 6,
254
- "character": 13,
255
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L6"
256
- }
257
- ],
258
- "type": {
259
- "type": "templateLiteral",
260
- "head": "",
261
- "tail": [
262
- [
263
- {
264
- "type": "reference",
265
- "target": 14,
266
- "name": "AddressSpaceSchema",
267
- "package": "@xyo-network/diviner-address-space-model"
268
- },
269
- ".diviner.config"
270
- ]
271
- ]
272
- }
273
- },
274
- {
275
- "id": 13,
276
- "name": "AddressSpaceDivinerParams",
277
- "variant": "declaration",
278
- "kind": 4194304,
279
- "flags": {},
280
- "sources": [
281
- {
282
- "fileName": "Params.ts",
283
- "line": 6,
284
- "character": 12,
285
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Params.ts#L6"
286
- }
287
- ],
288
- "type": {
289
- "type": "reference",
290
- "target": {
291
- "sourceFileName": "../../../model/src/Params.ts",
292
- "qualifiedName": "DivinerParams"
293
- },
294
- "typeArguments": [
295
- {
296
- "type": "reference",
297
- "target": {
298
- "sourceFileName": "../../../../../module/packages/model/src/Config.ts",
299
- "qualifiedName": "AnyConfigSchema"
300
- },
301
- "typeArguments": [
302
- {
303
- "type": "reference",
304
- "target": 3,
305
- "name": "AddressSpaceDivinerConfig",
306
- "package": "@xyo-network/diviner-address-space-model"
307
- }
308
- ],
309
- "name": "AnyConfigSchema",
310
- "package": "@xyo-network/module-model"
311
- }
312
- ],
313
- "name": "DivinerParams",
314
- "package": "@xyo-network/diviner-model"
315
- }
316
- },
317
- {
318
- "id": 15,
319
- "name": "AddressSpaceSchema",
320
- "variant": "declaration",
321
- "kind": 4194304,
322
- "flags": {},
323
- "sources": [
324
- {
325
- "fileName": "Schema.ts",
326
- "line": 1,
327
- "character": 12,
328
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Schema.ts#L1"
329
- },
330
- {
331
- "fileName": "Schema.ts",
332
- "line": 2,
333
- "character": 13,
334
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Schema.ts#L2"
335
- }
336
- ],
337
- "type": {
338
- "type": "literal",
339
- "value": "network.xyo.diviner.address.space"
340
- }
341
- },
342
- {
343
- "id": 7,
344
- "name": "AddressSpaceBatchDivinerConfigSchema",
345
- "variant": "declaration",
346
- "kind": 32,
347
- "flags": {},
348
- "sources": [
349
- {
350
- "fileName": "Config.ts",
351
- "line": 13,
352
- "character": 12,
353
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L13"
354
- },
355
- {
356
- "fileName": "Config.ts",
357
- "line": 14,
358
- "character": 13,
359
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L14"
360
- }
361
- ],
362
- "type": {
363
- "type": "literal",
364
- "value": "network.xyo.diviner.address.space.batch.diviner.config"
365
- }
366
- },
367
- {
368
- "id": 1,
369
- "name": "AddressSpaceDivinerConfigSchema",
370
- "variant": "declaration",
371
- "kind": 32,
372
- "flags": {},
373
- "sources": [
374
- {
375
- "fileName": "Config.ts",
376
- "line": 5,
377
- "character": 12,
378
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L5"
379
- },
380
- {
381
- "fileName": "Config.ts",
382
- "line": 6,
383
- "character": 13,
384
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L6"
385
- }
386
- ],
387
- "type": {
388
- "type": "literal",
389
- "value": "network.xyo.diviner.address.space.diviner.config"
390
- }
391
- },
392
- {
393
- "id": 14,
394
- "name": "AddressSpaceSchema",
395
- "variant": "declaration",
396
- "kind": 32,
397
- "flags": {},
398
- "sources": [
399
- {
400
- "fileName": "Schema.ts",
401
- "line": 1,
402
- "character": 12,
403
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Schema.ts#L1"
404
- },
405
- {
406
- "fileName": "Schema.ts",
407
- "line": 2,
408
- "character": 13,
409
- "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/7dd5ad12b4447/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Schema.ts#L2"
410
- }
411
- ],
412
- "type": {
413
- "type": "literal",
414
- "value": "network.xyo.diviner.address.space"
415
- }
416
- }
417
- ],
418
- "groups": [
419
- {
420
- "title": "Type Aliases",
421
- "children": [
422
- 9,
423
- 8,
424
- 3,
425
- 2,
426
- 13,
427
- 15
428
- ]
429
- },
430
- {
431
- "title": "Variables",
432
- "children": [
433
- 7,
434
- 1,
435
- 14
436
- ]
437
- }
438
- ],
439
- "packageName": "@xyo-network/diviner-address-space-model",
440
- "readme": [
441
- {
442
- "kind": "text",
443
- "text": "[![logo][]](https://xyo.network)\n\nPart of [sdk-xyo-clint-js](https://www.npmjs.com/package/@xyo-network/sdk-xyo-client-js)\n\n## License\n\n> See the [LICENSE](LICENSE) file for license details\n\n## Credits\n\n[Made with 🔥 and ❄️ by XYO](https://xyo.network)\n\n[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png"
444
- }
445
- ],
446
- "symbolIdMap": {
447
- "0": {
448
- "sourceFileName": "src/index.ts",
449
- "qualifiedName": ""
450
- },
451
- "1": {
452
- "sourceFileName": "src/Config.ts",
453
- "qualifiedName": "AddressSpaceDivinerConfigSchema"
454
- },
455
- "2": {
456
- "sourceFileName": "src/Config.ts",
457
- "qualifiedName": "AddressSpaceDivinerConfigSchema"
458
- },
459
- "3": {
460
- "sourceFileName": "src/Config.ts",
461
- "qualifiedName": "AddressSpaceDivinerConfig"
462
- },
463
- "4": {
464
- "sourceFileName": "src/Config.ts",
465
- "qualifiedName": "__type"
466
- },
467
- "5": {
468
- "sourceFileName": "src/Config.ts",
469
- "qualifiedName": "__type.address"
470
- },
471
- "6": {
472
- "sourceFileName": "src/Config.ts",
473
- "qualifiedName": "__type.schema"
474
- },
475
- "7": {
476
- "sourceFileName": "src/Config.ts",
477
- "qualifiedName": "AddressSpaceBatchDivinerConfigSchema"
478
- },
479
- "8": {
480
- "sourceFileName": "src/Config.ts",
481
- "qualifiedName": "AddressSpaceBatchDivinerConfigSchema"
482
- },
483
- "9": {
484
- "sourceFileName": "src/Config.ts",
485
- "qualifiedName": "AddressSpaceBatchDivinerConfig"
486
- },
487
- "10": {
488
- "sourceFileName": "src/Config.ts",
489
- "qualifiedName": "__type"
490
- },
491
- "11": {
492
- "sourceFileName": "src/Config.ts",
493
- "qualifiedName": "__type.address"
494
- },
495
- "12": {
496
- "sourceFileName": "src/Config.ts",
497
- "qualifiedName": "__type.schema"
498
- },
499
- "13": {
500
- "sourceFileName": "src/Params.ts",
501
- "qualifiedName": "AddressSpaceDivinerParams"
502
- },
503
- "14": {
504
- "sourceFileName": "src/Schema.ts",
505
- "qualifiedName": "AddressSpaceSchema"
506
- },
507
- "15": {
508
- "sourceFileName": "src/Schema.ts",
509
- "qualifiedName": "AddressSpaceSchema"
510
- }
511
- }
512
- }
@@ -1,4 +0,0 @@
1
- import { AddressSpaceSchema } from './Schema';
2
- export const AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
3
- export const AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
4
- //# sourceMappingURL=Config.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Config.js","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAG7C,MAAM,CAAC,MAAM,+BAA+B,GAAoC,GAAG,kBAAkB,iBAAiB,CAAA;AAQtH,MAAM,CAAC,MAAM,oCAAoC,GAAyC,GAAG,kBAAkB,uBAAuB,CAAA"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=Params.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Params.js","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export const AddressSpaceSchema = 'network.xyo.diviner.address.space';
2
- //# sourceMappingURL=Schema.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Schema.js","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AACA,MAAM,CAAC,MAAM,kBAAkB,GAAuB,mCAAmC,CAAA"}
package/dist/esm/index.js DELETED
@@ -1,4 +0,0 @@
1
- export * from './Config';
2
- export * from './Params';
3
- export * from './Schema';
4
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}
@@ -1,15 +0,0 @@
1
- import { DivinerConfig } from '@xyo-network/diviner-model';
2
- import { AddressSpaceSchema } from './Schema';
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
@@ -1 +0,0 @@
1
- {"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAE1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAE7C,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"}
@@ -1,5 +0,0 @@
1
- import { DivinerParams } from '@xyo-network/diviner-model';
2
- import { AnyConfigSchema } from '@xyo-network/module-model';
3
- import { AddressSpaceDivinerConfig } from './Config';
4
- export type AddressSpaceDivinerParams = DivinerParams<AnyConfigSchema<AddressSpaceDivinerConfig>>;
5
- //# sourceMappingURL=Params.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE3D,OAAO,EAAE,yBAAyB,EAAE,MAAM,UAAU,CAAA;AAEpD,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC,eAAe,CAAC,yBAAyB,CAAC,CAAC,CAAA"}
@@ -1,3 +0,0 @@
1
- export type AddressSpaceSchema = 'network.xyo.diviner.address.space';
2
- export declare const AddressSpaceSchema: AddressSpaceSchema;
3
- //# sourceMappingURL=Schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAAG,mCAAmC,CAAA;AACpE,eAAO,MAAM,kBAAkB,EAAE,kBAAwD,CAAA"}
@@ -1,4 +0,0 @@
1
- export * from './Config';
2
- export * from './Params';
3
- export * from './Schema';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}