@xyo-network/diviner-address-space-model 2.73.3 → 2.74.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,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"}
@@ -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"}
@@ -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,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"}
@@ -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"}
package/dist/index.d.mts CHANGED
@@ -1,22 +1,4 @@
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 };
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"}
package/dist/index.d.ts CHANGED
@@ -1,22 +1,4 @@
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 };
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"}
package/package.json CHANGED
@@ -10,20 +10,14 @@
10
10
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@xyo-network/diviner-model": "~2.73.3",
14
- "@xyo-network/module-model": "~2.73.3"
13
+ "@xyo-network/diviner-model": "~2.74.0",
14
+ "@xyo-network/module-model": "~2.74.0"
15
15
  },
16
16
  "devDependencies": {
17
- "@xylabs/ts-scripts-yarn3": "^2.19.5",
18
- "@xylabs/tsconfig": "^2.19.5",
19
- "publint": "^0.2.2",
20
- "tsup": "^7.2.0",
17
+ "@xylabs/ts-scripts-yarn3": "^3.0.27",
18
+ "@xylabs/tsconfig": "^3.0.27",
21
19
  "typescript": "^5.2.2"
22
20
  },
23
- "scripts": {
24
- "package-compile": "tsup && publint",
25
- "package-recompile": "tsup && publint"
26
- },
27
21
  "description": "Primary SDK for using XYO Protocol 2.0",
28
22
  "docs": "dist/docs.json",
29
23
  "types": "dist/index.d.ts",
@@ -64,5 +58,5 @@
64
58
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
65
59
  },
66
60
  "sideEffects": false,
67
- "version": "2.73.3"
61
+ "version": "2.74.0"
68
62
  }
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/753f3479f1dad/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L16"
20
- }
21
- ],
22
- "type": {
23
- "type": "reference",
24
- "target": {
25
- "sourceFileName": "../../../model/dist/index.d.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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Config.ts#L8"
153
- }
154
- ],
155
- "type": {
156
- "type": "reference",
157
- "target": {
158
- "sourceFileName": "../../../model/dist/index.d.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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/packages/modules/packages/diviner/packages/addressspace/packages/model/src/Params.ts#L6"
286
- }
287
- ],
288
- "type": {
289
- "type": "reference",
290
- "target": {
291
- "sourceFileName": "../../../model/dist/index.d.ts",
292
- "qualifiedName": "DivinerParams"
293
- },
294
- "typeArguments": [
295
- {
296
- "type": "reference",
297
- "target": {
298
- "sourceFileName": "../../../../../module/packages/model/dist/index.d.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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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/753f3479f1dad/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
- }
package/tsup.config.ts DELETED
@@ -1,16 +0,0 @@
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: false,
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
- })