@xyo-network/diviner-address-space-model 2.75.0 → 2.75.1

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,15 @@
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
@@ -0,0 +1 @@
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,9 +1,6 @@
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`;
1
+ import { AddressSpaceSchema } from "./Schema";
2
+ const AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
3
+ const AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
7
4
  export {
8
5
  AddressSpaceBatchDivinerConfigSchema,
9
6
  AddressSpaceDivinerConfigSchema
@@ -1 +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":[]}
1
+ {"version":3,"sources":["../../src/Config.ts"],"sourcesContent":["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":"AAEA,SAAS,0BAA0B;AAG5B,MAAM,kCAAmE,GAAG,kBAAkB;AAQ9F,MAAM,uCAA6E,GAAG,kBAAkB;","names":[]}
@@ -0,0 +1,5 @@
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
@@ -0,0 +1 @@
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"}
@@ -0,0 +1,3 @@
1
+ export type AddressSpaceSchema = 'network.xyo.diviner.address.space';
2
+ export declare const AddressSpaceSchema: AddressSpaceSchema;
3
+ //# sourceMappingURL=Schema.d.ts.map
@@ -0,0 +1 @@
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,5 +1,4 @@
1
- // src/Schema.ts
2
- var AddressSpaceSchema = "network.xyo.diviner.address.space";
1
+ const AddressSpaceSchema = "network.xyo.diviner.address.space";
3
2
  export {
4
3
  AddressSpaceSchema
5
4
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":";AACO,IAAM,qBAAyC;","names":[]}
1
+ {"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":"AACO,MAAM,qBAAyC;","names":[]}
@@ -0,0 +1,4 @@
1
+ export * from './Config';
2
+ export * from './Params';
3
+ export * from './Schema';
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,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}
@@ -1,12 +1,4 @@
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
- };
1
+ export * from "./Config";
2
+ export * from "./Params";
3
+ export * from "./Schema";
12
4
  //# sourceMappingURL=index.js.map
@@ -1 +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":[]}
1
+ {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
package/dist/docs.json ADDED
@@ -0,0 +1,512 @@
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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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/ca3276aa9c376/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
+ }
@@ -0,0 +1,15 @@
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
@@ -0,0 +1 @@
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"}
@@ -16,15 +16,21 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/Config.ts
19
21
  var Config_exports = {};
20
22
  __export(Config_exports, {
21
23
  AddressSpaceBatchDivinerConfigSchema: () => AddressSpaceBatchDivinerConfigSchema,
22
24
  AddressSpaceDivinerConfigSchema: () => AddressSpaceDivinerConfigSchema
23
25
  });
24
26
  module.exports = __toCommonJS(Config_exports);
25
- var import_Schema = require("./Schema");
26
- const AddressSpaceDivinerConfigSchema = `${import_Schema.AddressSpaceSchema}.diviner.config`;
27
- const AddressSpaceBatchDivinerConfigSchema = `${import_Schema.AddressSpaceSchema}.batch.diviner.config`;
27
+
28
+ // src/Schema.ts
29
+ var AddressSpaceSchema = "network.xyo.diviner.address.space";
30
+
31
+ // src/Config.ts
32
+ var AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
33
+ var AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
28
34
  // Annotate the CommonJS export names for ESM import in node:
29
35
  0 && (module.exports = {
30
36
  AddressSpaceBatchDivinerConfigSchema,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Config.ts"],"sourcesContent":["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;AAEA,oBAAmC;AAG5B,MAAM,kCAAmE,GAAG,gCAAkB;AAQ9F,MAAM,uCAA6E,GAAG,gCAAkB;","names":[]}
1
+ {"version":3,"sources":["../../src/Config.ts","../../src/Schema.ts"],"sourcesContent":["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","export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACCO,IAAM,qBAAyC;;;ADI/C,IAAM,kCAAmE,GAAG,kBAAkB;AAQ9F,IAAM,uCAA6E,GAAG,kBAAkB;","names":[]}
@@ -1,6 +1,9 @@
1
- import { AddressSpaceSchema } from "./Schema";
2
- const AddressSpaceDivinerConfigSchema = `${AddressSpaceSchema}.diviner.config`;
3
- const AddressSpaceBatchDivinerConfigSchema = `${AddressSpaceSchema}.batch.diviner.config`;
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`;
4
7
  export {
5
8
  AddressSpaceBatchDivinerConfigSchema,
6
9
  AddressSpaceDivinerConfigSchema
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Config.ts"],"sourcesContent":["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":"AAEA,SAAS,0BAA0B;AAG5B,MAAM,kCAAmE,GAAG,kBAAkB;AAQ9F,MAAM,uCAA6E,GAAG,kBAAkB;","names":[]}
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":[]}
@@ -0,0 +1,5 @@
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
@@ -0,0 +1 @@
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"}
@@ -12,6 +12,8 @@ var __copyProps = (to, from, except, desc) => {
12
12
  return to;
13
13
  };
14
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+
16
+ // src/Params.ts
15
17
  var Params_exports = {};
16
18
  module.exports = __toCommonJS(Params_exports);
17
19
  //# sourceMappingURL=Params.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Params.ts"],"sourcesContent":["import { DivinerParams } from '@xyo-network/diviner-model'\nimport { AnyConfigSchema } from '@xyo-network/module-model'\n\nimport { AddressSpaceDivinerConfig } from './Config'\n\nexport type AddressSpaceDivinerParams = DivinerParams<AnyConfigSchema<AddressSpaceDivinerConfig>>\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
1
+ {"version":3,"sources":["../../src/Params.ts"],"sourcesContent":["import { DivinerParams } from '@xyo-network/diviner-model'\nimport { AnyConfigSchema } from '@xyo-network/module-model'\n\nimport { AddressSpaceDivinerConfig } from './Config'\n\nexport type AddressSpaceDivinerParams = DivinerParams<AnyConfigSchema<AddressSpaceDivinerConfig>>\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
@@ -0,0 +1,3 @@
1
+ export type AddressSpaceSchema = 'network.xyo.diviner.address.space';
2
+ export declare const AddressSpaceSchema: AddressSpaceSchema;
3
+ //# sourceMappingURL=Schema.d.ts.map
@@ -0,0 +1 @@
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"}
@@ -16,12 +16,14 @@ var __copyProps = (to, from, except, desc) => {
16
16
  return to;
17
17
  };
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/Schema.ts
19
21
  var Schema_exports = {};
20
22
  __export(Schema_exports, {
21
23
  AddressSpaceSchema: () => AddressSpaceSchema
22
24
  });
23
25
  module.exports = __toCommonJS(Schema_exports);
24
- const AddressSpaceSchema = "network.xyo.diviner.address.space";
26
+ var AddressSpaceSchema = "network.xyo.diviner.address.space";
25
27
  // Annotate the CommonJS export names for ESM import in node:
26
28
  0 && (module.exports = {
27
29
  AddressSpaceSchema
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACO,MAAM,qBAAyC;","names":[]}
1
+ {"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACO,IAAM,qBAAyC;","names":[]}
@@ -1,4 +1,5 @@
1
- const AddressSpaceSchema = "network.xyo.diviner.address.space";
1
+ // src/Schema.ts
2
+ var AddressSpaceSchema = "network.xyo.diviner.address.space";
2
3
  export {
3
4
  AddressSpaceSchema
4
5
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":"AACO,MAAM,qBAAyC;","names":[]}
1
+ {"version":3,"sources":["../../src/Schema.ts"],"sourcesContent":["export type AddressSpaceSchema = 'network.xyo.diviner.address.space'\nexport const AddressSpaceSchema: AddressSpaceSchema = 'network.xyo.diviner.address.space'\n"],"mappings":";AACO,IAAM,qBAAyC;","names":[]}
@@ -0,0 +1,4 @@
1
+ export * from './Config';
2
+ export * from './Params';
3
+ export * from './Schema';
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,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}
@@ -3,6 +3,10 @@ var __defProp = Object.defineProperty;
3
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
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
+ };
6
10
  var __copyProps = (to, from, except, desc) => {
7
11
  if (from && typeof from === "object" || typeof from === "function") {
8
12
  for (let key of __getOwnPropNames(from))
@@ -11,17 +15,27 @@ var __copyProps = (to, from, except, desc) => {
11
15
  }
12
16
  return to;
13
17
  };
14
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
16
21
  var src_exports = {};
22
+ __export(src_exports, {
23
+ AddressSpaceBatchDivinerConfigSchema: () => AddressSpaceBatchDivinerConfigSchema,
24
+ AddressSpaceDivinerConfigSchema: () => AddressSpaceDivinerConfigSchema,
25
+ AddressSpaceSchema: () => AddressSpaceSchema
26
+ });
17
27
  module.exports = __toCommonJS(src_exports);
18
- __reExport(src_exports, require("./Config"), module.exports);
19
- __reExport(src_exports, require("./Params"), module.exports);
20
- __reExport(src_exports, require("./Schema"), module.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`;
21
35
  // Annotate the CommonJS export names for ESM import in node:
22
36
  0 && (module.exports = {
23
- ...require("./Config"),
24
- ...require("./Params"),
25
- ...require("./Schema")
37
+ AddressSpaceBatchDivinerConfigSchema,
38
+ AddressSpaceDivinerConfigSchema,
39
+ AddressSpaceSchema
26
40
  });
27
41
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n"],"mappings":";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,qBAAd;AACA,wBAAc,qBADd;AAEA,wBAAc,qBAFd;","names":[]}
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":[]}
@@ -1,4 +1,12 @@
1
- export * from "./Config";
2
- export * from "./Params";
3
- export * from "./Schema";
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
+ };
4
12
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
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,12 +10,12 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/diviner-model": "~2.75.0",
14
- "@xyo-network/module-model": "~2.75.0"
13
+ "@xyo-network/diviner-model": "~2.75.1",
14
+ "@xyo-network/module-model": "~2.75.1"
15
15
  },
16
16
  "devDependencies": {
17
- "@xylabs/ts-scripts-yarn3": "^3.0.70",
18
- "@xylabs/tsconfig": "^3.0.70",
17
+ "@xylabs/ts-scripts-yarn3": "^3.0.77",
18
+ "@xylabs/tsconfig": "^3.0.77",
19
19
  "typescript": "^5.2.2"
20
20
  },
21
21
  "description": "Primary SDK for using XYO Protocol 2.0",
@@ -25,7 +25,7 @@
25
25
  ".": {
26
26
  "browser": {
27
27
  "require": {
28
- "types": "./dist/browser/index.d.ts",
28
+ "types": "./dist/browser/index.d.cts",
29
29
  "default": "./dist/browser/index.cjs"
30
30
  },
31
31
  "import": {
@@ -61,5 +61,5 @@
61
61
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
62
62
  },
63
63
  "sideEffects": false,
64
- "version": "2.75.0"
64
+ "version": "2.75.1"
65
65
  }