@xyo-network/diviner-forecasting-model 2.56.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.
Files changed (88) hide show
  1. package/LICENSE +165 -0
  2. package/README.md +13 -0
  3. package/dist/cjs/Config/Config.js +6 -0
  4. package/dist/cjs/Config/Config.js.map +1 -0
  5. package/dist/cjs/Config/ForecastingSettings.js +3 -0
  6. package/dist/cjs/Config/ForecastingSettings.js.map +1 -0
  7. package/dist/cjs/Config/TransformerSettings.js +3 -0
  8. package/dist/cjs/Config/TransformerSettings.js.map +1 -0
  9. package/dist/cjs/Config/index.js +7 -0
  10. package/dist/cjs/Config/index.js.map +1 -0
  11. package/dist/cjs/ForecastingMethod.js +3 -0
  12. package/dist/cjs/ForecastingMethod.js.map +1 -0
  13. package/dist/cjs/Payload/Forecast.js +3 -0
  14. package/dist/cjs/Payload/Forecast.js.map +1 -0
  15. package/dist/cjs/Payload/Payload.js +8 -0
  16. package/dist/cjs/Payload/Payload.js.map +1 -0
  17. package/dist/cjs/Payload/index.js +6 -0
  18. package/dist/cjs/Payload/index.js.map +1 -0
  19. package/dist/cjs/PayloadValueTransformer.js +3 -0
  20. package/dist/cjs/PayloadValueTransformer.js.map +1 -0
  21. package/dist/cjs/Query.js +8 -0
  22. package/dist/cjs/Query.js.map +1 -0
  23. package/dist/cjs/Schema.js +5 -0
  24. package/dist/cjs/Schema.js.map +1 -0
  25. package/dist/cjs/index.js +10 -0
  26. package/dist/cjs/index.js.map +1 -0
  27. package/dist/docs.json +1385 -0
  28. package/dist/esm/Config/Config.js +3 -0
  29. package/dist/esm/Config/Config.js.map +1 -0
  30. package/dist/esm/Config/ForecastingSettings.js +2 -0
  31. package/dist/esm/Config/ForecastingSettings.js.map +1 -0
  32. package/dist/esm/Config/TransformerSettings.js +2 -0
  33. package/dist/esm/Config/TransformerSettings.js.map +1 -0
  34. package/dist/esm/Config/index.js +4 -0
  35. package/dist/esm/Config/index.js.map +1 -0
  36. package/dist/esm/ForecastingMethod.js +2 -0
  37. package/dist/esm/ForecastingMethod.js.map +1 -0
  38. package/dist/esm/Payload/Forecast.js +2 -0
  39. package/dist/esm/Payload/Forecast.js.map +1 -0
  40. package/dist/esm/Payload/Payload.js +4 -0
  41. package/dist/esm/Payload/Payload.js.map +1 -0
  42. package/dist/esm/Payload/index.js +3 -0
  43. package/dist/esm/Payload/index.js.map +1 -0
  44. package/dist/esm/PayloadValueTransformer.js +2 -0
  45. package/dist/esm/PayloadValueTransformer.js.map +1 -0
  46. package/dist/esm/Query.js +4 -0
  47. package/dist/esm/Query.js.map +1 -0
  48. package/dist/esm/Schema.js +2 -0
  49. package/dist/esm/Schema.js.map +1 -0
  50. package/dist/esm/index.js +7 -0
  51. package/dist/esm/index.js.map +1 -0
  52. package/dist/types/Config/Config.d.ts +13 -0
  53. package/dist/types/Config/Config.d.ts.map +1 -0
  54. package/dist/types/Config/ForecastingSettings.d.ts +8 -0
  55. package/dist/types/Config/ForecastingSettings.d.ts.map +1 -0
  56. package/dist/types/Config/TransformerSettings.d.ts +4 -0
  57. package/dist/types/Config/TransformerSettings.d.ts.map +1 -0
  58. package/dist/types/Config/index.d.ts +4 -0
  59. package/dist/types/Config/index.d.ts.map +1 -0
  60. package/dist/types/ForecastingMethod.d.ts +6 -0
  61. package/dist/types/ForecastingMethod.d.ts.map +1 -0
  62. package/dist/types/Payload/Forecast.d.ts +6 -0
  63. package/dist/types/Payload/Forecast.d.ts.map +1 -0
  64. package/dist/types/Payload/Payload.d.ts +14 -0
  65. package/dist/types/Payload/Payload.d.ts.map +1 -0
  66. package/dist/types/Payload/index.d.ts +3 -0
  67. package/dist/types/Payload/index.d.ts.map +1 -0
  68. package/dist/types/PayloadValueTransformer.d.ts +3 -0
  69. package/dist/types/PayloadValueTransformer.d.ts.map +1 -0
  70. package/dist/types/Query.d.ts +13 -0
  71. package/dist/types/Query.d.ts.map +1 -0
  72. package/dist/types/Schema.d.ts +3 -0
  73. package/dist/types/Schema.d.ts.map +1 -0
  74. package/dist/types/index.d.ts +7 -0
  75. package/dist/types/index.d.ts.map +1 -0
  76. package/package.json +57 -0
  77. package/src/Config/Config.ts +18 -0
  78. package/src/Config/ForecastingSettings.ts +7 -0
  79. package/src/Config/TransformerSettings.ts +3 -0
  80. package/src/Config/index.ts +3 -0
  81. package/src/ForecastingMethod.ts +7 -0
  82. package/src/Payload/Forecast.ts +5 -0
  83. package/src/Payload/Payload.ts +13 -0
  84. package/src/Payload/index.ts +2 -0
  85. package/src/PayloadValueTransformer.ts +3 -0
  86. package/src/Query.ts +12 -0
  87. package/src/Schema.ts +2 -0
  88. package/src/index.ts +6 -0
package/dist/docs.json ADDED
@@ -0,0 +1,1385 @@
1
+ {
2
+ "id": 0,
3
+ "name": "@xyo-network/diviner-forecasting-model",
4
+ "kind": 1,
5
+ "kindString": "Project",
6
+ "flags": {},
7
+ "originalName": "",
8
+ "children": [
9
+ {
10
+ "id": 21,
11
+ "name": "Forecast",
12
+ "kind": 256,
13
+ "kindString": "Interface",
14
+ "flags": {},
15
+ "children": [
16
+ {
17
+ "id": 22,
18
+ "name": "error",
19
+ "kind": 1024,
20
+ "kindString": "Property",
21
+ "flags": {
22
+ "isOptional": true
23
+ },
24
+ "sources": [
25
+ {
26
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts",
27
+ "line": 2,
28
+ "character": 2,
29
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts#L2"
30
+ }
31
+ ],
32
+ "type": {
33
+ "type": "intrinsic",
34
+ "name": "number"
35
+ }
36
+ },
37
+ {
38
+ "id": 23,
39
+ "name": "timestamp",
40
+ "kind": 1024,
41
+ "kindString": "Property",
42
+ "flags": {
43
+ "isOptional": true
44
+ },
45
+ "sources": [
46
+ {
47
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts",
48
+ "line": 3,
49
+ "character": 2,
50
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts#L3"
51
+ }
52
+ ],
53
+ "type": {
54
+ "type": "intrinsic",
55
+ "name": "number"
56
+ }
57
+ },
58
+ {
59
+ "id": 24,
60
+ "name": "value",
61
+ "kind": 1024,
62
+ "kindString": "Property",
63
+ "flags": {},
64
+ "sources": [
65
+ {
66
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts",
67
+ "line": 4,
68
+ "character": 2,
69
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts#L4"
70
+ }
71
+ ],
72
+ "type": {
73
+ "type": "intrinsic",
74
+ "name": "number"
75
+ }
76
+ }
77
+ ],
78
+ "groups": [
79
+ {
80
+ "title": "Properties",
81
+ "children": [
82
+ 22,
83
+ 23,
84
+ 24
85
+ ]
86
+ }
87
+ ],
88
+ "sources": [
89
+ {
90
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts",
91
+ "line": 1,
92
+ "character": 17,
93
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Forecast.ts#L1"
94
+ }
95
+ ]
96
+ },
97
+ {
98
+ "id": 8,
99
+ "name": "ForecastingSettings",
100
+ "kind": 256,
101
+ "kindString": "Interface",
102
+ "flags": {},
103
+ "children": [
104
+ {
105
+ "id": 9,
106
+ "name": "forecastingMethod",
107
+ "kind": 1024,
108
+ "kindString": "Property",
109
+ "flags": {
110
+ "isOptional": true
111
+ },
112
+ "sources": [
113
+ {
114
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts",
115
+ "line": 2,
116
+ "character": 2,
117
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts#L2"
118
+ }
119
+ ],
120
+ "type": {
121
+ "type": "intrinsic",
122
+ "name": "string"
123
+ }
124
+ },
125
+ {
126
+ "id": 10,
127
+ "name": "forecastingSteps",
128
+ "kind": 1024,
129
+ "kindString": "Property",
130
+ "flags": {
131
+ "isOptional": true
132
+ },
133
+ "sources": [
134
+ {
135
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts",
136
+ "line": 3,
137
+ "character": 2,
138
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts#L3"
139
+ }
140
+ ],
141
+ "type": {
142
+ "type": "intrinsic",
143
+ "name": "number"
144
+ }
145
+ },
146
+ {
147
+ "id": 11,
148
+ "name": "windowSize",
149
+ "kind": 1024,
150
+ "kindString": "Property",
151
+ "flags": {
152
+ "isOptional": true
153
+ },
154
+ "sources": [
155
+ {
156
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts",
157
+ "line": 4,
158
+ "character": 2,
159
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts#L4"
160
+ }
161
+ ],
162
+ "type": {
163
+ "type": "intrinsic",
164
+ "name": "number"
165
+ }
166
+ },
167
+ {
168
+ "id": 12,
169
+ "name": "witnessAddresses",
170
+ "kind": 1024,
171
+ "kindString": "Property",
172
+ "flags": {
173
+ "isOptional": true
174
+ },
175
+ "sources": [
176
+ {
177
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts",
178
+ "line": 5,
179
+ "character": 2,
180
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts#L5"
181
+ }
182
+ ],
183
+ "type": {
184
+ "type": "array",
185
+ "elementType": {
186
+ "type": "intrinsic",
187
+ "name": "string"
188
+ }
189
+ }
190
+ },
191
+ {
192
+ "id": 13,
193
+ "name": "witnessSchema",
194
+ "kind": 1024,
195
+ "kindString": "Property",
196
+ "flags": {
197
+ "isOptional": true
198
+ },
199
+ "sources": [
200
+ {
201
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts",
202
+ "line": 6,
203
+ "character": 2,
204
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts#L6"
205
+ }
206
+ ],
207
+ "type": {
208
+ "type": "intrinsic",
209
+ "name": "string"
210
+ }
211
+ }
212
+ ],
213
+ "groups": [
214
+ {
215
+ "title": "Properties",
216
+ "children": [
217
+ 9,
218
+ 10,
219
+ 11,
220
+ 12,
221
+ 13
222
+ ]
223
+ }
224
+ ],
225
+ "sources": [
226
+ {
227
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts",
228
+ "line": 1,
229
+ "character": 17,
230
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/ForecastingSettings.ts#L1"
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "id": 14,
236
+ "name": "TransformerSettings",
237
+ "kind": 256,
238
+ "kindString": "Interface",
239
+ "flags": {},
240
+ "children": [
241
+ {
242
+ "id": 15,
243
+ "name": "jsonPathExpression",
244
+ "kind": 1024,
245
+ "kindString": "Property",
246
+ "flags": {
247
+ "isOptional": true
248
+ },
249
+ "sources": [
250
+ {
251
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/TransformerSettings.ts",
252
+ "line": 2,
253
+ "character": 2,
254
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/TransformerSettings.ts#L2"
255
+ }
256
+ ],
257
+ "type": {
258
+ "type": "intrinsic",
259
+ "name": "string"
260
+ }
261
+ }
262
+ ],
263
+ "groups": [
264
+ {
265
+ "title": "Properties",
266
+ "children": [
267
+ 15
268
+ ]
269
+ }
270
+ ],
271
+ "sources": [
272
+ {
273
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/TransformerSettings.ts",
274
+ "line": 1,
275
+ "character": 17,
276
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/TransformerSettings.ts#L1"
277
+ }
278
+ ]
279
+ },
280
+ {
281
+ "id": 27,
282
+ "name": "ForecastPayload",
283
+ "kind": 4194304,
284
+ "kindString": "Type alias",
285
+ "flags": {},
286
+ "sources": [
287
+ {
288
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
289
+ "line": 9,
290
+ "character": 12,
291
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L9"
292
+ }
293
+ ],
294
+ "type": {
295
+ "type": "reference",
296
+ "typeArguments": [
297
+ {
298
+ "type": "reflection",
299
+ "declaration": {
300
+ "id": 28,
301
+ "name": "__type",
302
+ "kind": 65536,
303
+ "kindString": "Type literal",
304
+ "flags": {},
305
+ "children": [
306
+ {
307
+ "id": 29,
308
+ "name": "schema",
309
+ "kind": 1024,
310
+ "kindString": "Property",
311
+ "flags": {},
312
+ "sources": [
313
+ {
314
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
315
+ "line": 10,
316
+ "character": 2,
317
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L10"
318
+ }
319
+ ],
320
+ "type": {
321
+ "type": "reference",
322
+ "id": 25,
323
+ "name": "ForecastPayloadSchema"
324
+ }
325
+ },
326
+ {
327
+ "id": 30,
328
+ "name": "values",
329
+ "kind": 1024,
330
+ "kindString": "Property",
331
+ "flags": {},
332
+ "sources": [
333
+ {
334
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
335
+ "line": 11,
336
+ "character": 2,
337
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L11"
338
+ }
339
+ ],
340
+ "type": {
341
+ "type": "array",
342
+ "elementType": {
343
+ "type": "reference",
344
+ "id": 21,
345
+ "name": "Forecast"
346
+ }
347
+ }
348
+ }
349
+ ],
350
+ "groups": [
351
+ {
352
+ "title": "Properties",
353
+ "children": [
354
+ 29,
355
+ 30
356
+ ]
357
+ }
358
+ ],
359
+ "sources": [
360
+ {
361
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
362
+ "line": 9,
363
+ "character": 38,
364
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L9"
365
+ }
366
+ ]
367
+ }
368
+ }
369
+ ],
370
+ "name": "Payload"
371
+ }
372
+ },
373
+ {
374
+ "id": 26,
375
+ "name": "ForecastPayloadSchema",
376
+ "kind": 4194304,
377
+ "kindString": "Type alias",
378
+ "flags": {},
379
+ "sources": [
380
+ {
381
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
382
+ "line": 6,
383
+ "character": 12,
384
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L6"
385
+ },
386
+ {
387
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
388
+ "line": 7,
389
+ "character": 13,
390
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L7"
391
+ }
392
+ ],
393
+ "type": {
394
+ "type": "template-literal",
395
+ "head": "",
396
+ "tail": [
397
+ [
398
+ {
399
+ "type": "reference",
400
+ "id": 55,
401
+ "name": "ForecastingDivinerSchema"
402
+ },
403
+ ".forecast"
404
+ ]
405
+ ]
406
+ }
407
+ },
408
+ {
409
+ "id": 3,
410
+ "name": "ForecastingDivinerConfig",
411
+ "kind": 4194304,
412
+ "kindString": "Type alias",
413
+ "flags": {},
414
+ "sources": [
415
+ {
416
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
417
+ "line": 11,
418
+ "character": 12,
419
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L11"
420
+ }
421
+ ],
422
+ "type": {
423
+ "type": "reference",
424
+ "typeArguments": [
425
+ {
426
+ "type": "intersection",
427
+ "types": [
428
+ {
429
+ "type": "reflection",
430
+ "declaration": {
431
+ "id": 4,
432
+ "name": "__type",
433
+ "kind": 65536,
434
+ "kindString": "Type literal",
435
+ "flags": {},
436
+ "children": [
437
+ {
438
+ "id": 5,
439
+ "name": "archivist",
440
+ "kind": 1024,
441
+ "kindString": "Property",
442
+ "flags": {
443
+ "isOptional": true
444
+ },
445
+ "sources": [
446
+ {
447
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
448
+ "line": 13,
449
+ "character": 4,
450
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L13"
451
+ }
452
+ ],
453
+ "type": {
454
+ "type": "reference",
455
+ "name": "ModuleFilter"
456
+ }
457
+ },
458
+ {
459
+ "id": 6,
460
+ "name": "boundWitnessDiviner",
461
+ "kind": 1024,
462
+ "kindString": "Property",
463
+ "flags": {
464
+ "isOptional": true
465
+ },
466
+ "sources": [
467
+ {
468
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
469
+ "line": 14,
470
+ "character": 4,
471
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L14"
472
+ }
473
+ ],
474
+ "type": {
475
+ "type": "reference",
476
+ "name": "ModuleFilter"
477
+ }
478
+ },
479
+ {
480
+ "id": 7,
481
+ "name": "schema",
482
+ "kind": 1024,
483
+ "kindString": "Property",
484
+ "flags": {},
485
+ "sources": [
486
+ {
487
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
488
+ "line": 15,
489
+ "character": 4,
490
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L15"
491
+ }
492
+ ],
493
+ "type": {
494
+ "type": "reference",
495
+ "id": 1,
496
+ "name": "ForecastingDivinerConfigSchema"
497
+ }
498
+ }
499
+ ],
500
+ "groups": [
501
+ {
502
+ "title": "Properties",
503
+ "children": [
504
+ 5,
505
+ 6,
506
+ 7
507
+ ]
508
+ }
509
+ ],
510
+ "sources": [
511
+ {
512
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
513
+ "line": 12,
514
+ "character": 2,
515
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L12"
516
+ }
517
+ ]
518
+ }
519
+ },
520
+ {
521
+ "type": "reference",
522
+ "id": 8,
523
+ "name": "ForecastingSettings"
524
+ },
525
+ {
526
+ "type": "reference",
527
+ "id": 14,
528
+ "name": "TransformerSettings"
529
+ }
530
+ ]
531
+ }
532
+ ],
533
+ "name": "DivinerConfig"
534
+ }
535
+ },
536
+ {
537
+ "id": 2,
538
+ "name": "ForecastingDivinerConfigSchema",
539
+ "kind": 4194304,
540
+ "kindString": "Type alias",
541
+ "flags": {},
542
+ "sources": [
543
+ {
544
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
545
+ "line": 8,
546
+ "character": 12,
547
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L8"
548
+ },
549
+ {
550
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
551
+ "line": 9,
552
+ "character": 13,
553
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L9"
554
+ }
555
+ ],
556
+ "type": {
557
+ "type": "template-literal",
558
+ "head": "",
559
+ "tail": [
560
+ [
561
+ {
562
+ "type": "reference",
563
+ "id": 55,
564
+ "name": "ForecastingDivinerSchema"
565
+ },
566
+ ".config"
567
+ ]
568
+ ]
569
+ }
570
+ },
571
+ {
572
+ "id": 45,
573
+ "name": "ForecastingDivinerQueryPayload",
574
+ "kind": 4194304,
575
+ "kindString": "Type alias",
576
+ "flags": {},
577
+ "sources": [
578
+ {
579
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
580
+ "line": 10,
581
+ "character": 12,
582
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L10"
583
+ }
584
+ ],
585
+ "type": {
586
+ "type": "reference",
587
+ "typeArguments": [
588
+ {
589
+ "type": "intersection",
590
+ "types": [
591
+ {
592
+ "type": "reflection",
593
+ "declaration": {
594
+ "id": 46,
595
+ "name": "__type",
596
+ "kind": 65536,
597
+ "kindString": "Type literal",
598
+ "flags": {},
599
+ "children": [
600
+ {
601
+ "id": 47,
602
+ "name": "schema",
603
+ "kind": 1024,
604
+ "kindString": "Property",
605
+ "flags": {},
606
+ "sources": [
607
+ {
608
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
609
+ "line": 10,
610
+ "character": 53,
611
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L10"
612
+ }
613
+ ],
614
+ "type": {
615
+ "type": "reference",
616
+ "id": 43,
617
+ "name": "ForecastingDivinerQuerySchema"
618
+ }
619
+ }
620
+ ],
621
+ "groups": [
622
+ {
623
+ "title": "Properties",
624
+ "children": [
625
+ 47
626
+ ]
627
+ }
628
+ ],
629
+ "sources": [
630
+ {
631
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
632
+ "line": 10,
633
+ "character": 51,
634
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L10"
635
+ }
636
+ ]
637
+ }
638
+ },
639
+ {
640
+ "type": "reference",
641
+ "typeArguments": [
642
+ {
643
+ "type": "reference",
644
+ "id": 8,
645
+ "name": "ForecastingSettings"
646
+ }
647
+ ],
648
+ "name": "Partial",
649
+ "qualifiedName": "Partial",
650
+ "package": "typescript"
651
+ }
652
+ ]
653
+ }
654
+ ],
655
+ "name": "Query"
656
+ }
657
+ },
658
+ {
659
+ "id": 44,
660
+ "name": "ForecastingDivinerQuerySchema",
661
+ "kind": 4194304,
662
+ "kindString": "Type alias",
663
+ "flags": {},
664
+ "sources": [
665
+ {
666
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
667
+ "line": 7,
668
+ "character": 12,
669
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L7"
670
+ },
671
+ {
672
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
673
+ "line": 8,
674
+ "character": 13,
675
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L8"
676
+ }
677
+ ],
678
+ "type": {
679
+ "type": "template-literal",
680
+ "head": "",
681
+ "tail": [
682
+ [
683
+ {
684
+ "type": "reference",
685
+ "id": 55,
686
+ "name": "ForecastingDivinerSchema"
687
+ },
688
+ ".query"
689
+ ]
690
+ ]
691
+ }
692
+ },
693
+ {
694
+ "id": 56,
695
+ "name": "ForecastingDivinerSchema",
696
+ "kind": 4194304,
697
+ "kindString": "Type alias",
698
+ "flags": {},
699
+ "sources": [
700
+ {
701
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts",
702
+ "line": 1,
703
+ "character": 12,
704
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts#L1"
705
+ },
706
+ {
707
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts",
708
+ "line": 2,
709
+ "character": 13,
710
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts#L2"
711
+ }
712
+ ],
713
+ "type": {
714
+ "type": "literal",
715
+ "value": "network.xyo.diviner.forecasting"
716
+ }
717
+ },
718
+ {
719
+ "id": 16,
720
+ "name": "ForecastingMethod",
721
+ "kind": 4194304,
722
+ "kindString": "Type alias",
723
+ "flags": {},
724
+ "sources": [
725
+ {
726
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/ForecastingMethod.ts",
727
+ "line": 7,
728
+ "character": 12,
729
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/ForecastingMethod.ts#L7"
730
+ }
731
+ ],
732
+ "type": {
733
+ "type": "reflection",
734
+ "declaration": {
735
+ "id": 17,
736
+ "name": "__type",
737
+ "kind": 65536,
738
+ "kindString": "Type literal",
739
+ "flags": {},
740
+ "sources": [
741
+ {
742
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/ForecastingMethod.ts",
743
+ "line": 7,
744
+ "character": 32,
745
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/ForecastingMethod.ts#L7"
746
+ }
747
+ ],
748
+ "signatures": [
749
+ {
750
+ "id": 18,
751
+ "name": "__type",
752
+ "kind": 4096,
753
+ "kindString": "Call signature",
754
+ "flags": {},
755
+ "parameters": [
756
+ {
757
+ "id": 19,
758
+ "name": "payloads",
759
+ "kind": 32768,
760
+ "kindString": "Parameter",
761
+ "flags": {},
762
+ "type": {
763
+ "type": "array",
764
+ "elementType": {
765
+ "type": "reference",
766
+ "name": "Payload"
767
+ }
768
+ }
769
+ },
770
+ {
771
+ "id": 20,
772
+ "name": "transformers",
773
+ "kind": 32768,
774
+ "kindString": "Parameter",
775
+ "flags": {},
776
+ "type": {
777
+ "type": "reference",
778
+ "id": 39,
779
+ "name": "PayloadValueTransformer"
780
+ }
781
+ }
782
+ ],
783
+ "type": {
784
+ "type": "reference",
785
+ "typeArguments": [
786
+ {
787
+ "type": "array",
788
+ "elementType": {
789
+ "type": "reference",
790
+ "id": 21,
791
+ "name": "Forecast"
792
+ }
793
+ }
794
+ ],
795
+ "name": "Promisable"
796
+ }
797
+ }
798
+ ]
799
+ }
800
+ }
801
+ },
802
+ {
803
+ "id": 39,
804
+ "name": "PayloadValueTransformer",
805
+ "kind": 4194304,
806
+ "kindString": "Type alias",
807
+ "flags": {},
808
+ "sources": [
809
+ {
810
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/PayloadValueTransformer.ts",
811
+ "line": 3,
812
+ "character": 12,
813
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/PayloadValueTransformer.ts#L3"
814
+ }
815
+ ],
816
+ "type": {
817
+ "type": "reflection",
818
+ "declaration": {
819
+ "id": 40,
820
+ "name": "__type",
821
+ "kind": 65536,
822
+ "kindString": "Type literal",
823
+ "flags": {},
824
+ "sources": [
825
+ {
826
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/PayloadValueTransformer.ts",
827
+ "line": 3,
828
+ "character": 38,
829
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/PayloadValueTransformer.ts#L3"
830
+ }
831
+ ],
832
+ "signatures": [
833
+ {
834
+ "id": 41,
835
+ "name": "__type",
836
+ "kind": 4096,
837
+ "kindString": "Call signature",
838
+ "flags": {},
839
+ "parameters": [
840
+ {
841
+ "id": 42,
842
+ "name": "payload",
843
+ "kind": 32768,
844
+ "kindString": "Parameter",
845
+ "flags": {},
846
+ "type": {
847
+ "type": "reference",
848
+ "name": "Payload"
849
+ }
850
+ }
851
+ ],
852
+ "type": {
853
+ "type": "intrinsic",
854
+ "name": "number"
855
+ }
856
+ }
857
+ ]
858
+ }
859
+ }
860
+ },
861
+ {
862
+ "id": 25,
863
+ "name": "ForecastPayloadSchema",
864
+ "kind": 32,
865
+ "kindString": "Variable",
866
+ "flags": {},
867
+ "sources": [
868
+ {
869
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
870
+ "line": 6,
871
+ "character": 12,
872
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L6"
873
+ },
874
+ {
875
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
876
+ "line": 7,
877
+ "character": 13,
878
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L7"
879
+ }
880
+ ],
881
+ "type": {
882
+ "type": "literal",
883
+ "value": "network.xyo.diviner.forecasting.forecast"
884
+ }
885
+ },
886
+ {
887
+ "id": 1,
888
+ "name": "ForecastingDivinerConfigSchema",
889
+ "kind": 32,
890
+ "kindString": "Variable",
891
+ "flags": {},
892
+ "sources": [
893
+ {
894
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
895
+ "line": 8,
896
+ "character": 12,
897
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L8"
898
+ },
899
+ {
900
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts",
901
+ "line": 9,
902
+ "character": 13,
903
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Config/Config.ts#L9"
904
+ }
905
+ ],
906
+ "type": {
907
+ "type": "literal",
908
+ "value": "network.xyo.diviner.forecasting.config"
909
+ }
910
+ },
911
+ {
912
+ "id": 43,
913
+ "name": "ForecastingDivinerQuerySchema",
914
+ "kind": 32,
915
+ "kindString": "Variable",
916
+ "flags": {},
917
+ "sources": [
918
+ {
919
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
920
+ "line": 7,
921
+ "character": 12,
922
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L7"
923
+ },
924
+ {
925
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
926
+ "line": 8,
927
+ "character": 13,
928
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L8"
929
+ }
930
+ ],
931
+ "type": {
932
+ "type": "literal",
933
+ "value": "network.xyo.diviner.forecasting.query"
934
+ }
935
+ },
936
+ {
937
+ "id": 55,
938
+ "name": "ForecastingDivinerSchema",
939
+ "kind": 32,
940
+ "kindString": "Variable",
941
+ "flags": {},
942
+ "sources": [
943
+ {
944
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts",
945
+ "line": 1,
946
+ "character": 12,
947
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts#L1"
948
+ },
949
+ {
950
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts",
951
+ "line": 2,
952
+ "character": 13,
953
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Schema.ts#L2"
954
+ }
955
+ ],
956
+ "type": {
957
+ "type": "literal",
958
+ "value": "network.xyo.diviner.forecasting"
959
+ }
960
+ },
961
+ {
962
+ "id": 31,
963
+ "name": "isForecastPayload",
964
+ "kind": 64,
965
+ "kindString": "Function",
966
+ "flags": {},
967
+ "sources": [
968
+ {
969
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
970
+ "line": 13,
971
+ "character": 13,
972
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L13"
973
+ }
974
+ ],
975
+ "signatures": [
976
+ {
977
+ "id": 32,
978
+ "name": "isForecastPayload",
979
+ "kind": 4096,
980
+ "kindString": "Call signature",
981
+ "flags": {},
982
+ "parameters": [
983
+ {
984
+ "id": 33,
985
+ "name": "x",
986
+ "kind": 32768,
987
+ "kindString": "Parameter",
988
+ "flags": {
989
+ "isOptional": true
990
+ },
991
+ "type": {
992
+ "type": "union",
993
+ "types": [
994
+ {
995
+ "type": "literal",
996
+ "value": null
997
+ },
998
+ {
999
+ "type": "intersection",
1000
+ "types": [
1001
+ {
1002
+ "type": "reference",
1003
+ "name": "SchemaFields"
1004
+ },
1005
+ {
1006
+ "type": "reference",
1007
+ "name": "PayloadFields"
1008
+ },
1009
+ {
1010
+ "type": "reflection",
1011
+ "declaration": {
1012
+ "id": 34,
1013
+ "name": "__type",
1014
+ "kind": 65536,
1015
+ "kindString": "Type literal",
1016
+ "flags": {},
1017
+ "children": [
1018
+ {
1019
+ "id": 35,
1020
+ "name": "schema",
1021
+ "kind": 1024,
1022
+ "kindString": "Property",
1023
+ "flags": {},
1024
+ "sources": [
1025
+ {
1026
+ "fileName": "protocol/packages/payload/packages/model/dist/types/Payload.d.ts",
1027
+ "line": 21,
1028
+ "character": 4
1029
+ }
1030
+ ],
1031
+ "type": {
1032
+ "type": "intrinsic",
1033
+ "name": "string"
1034
+ }
1035
+ }
1036
+ ],
1037
+ "groups": [
1038
+ {
1039
+ "title": "Properties",
1040
+ "children": [
1041
+ 35
1042
+ ]
1043
+ }
1044
+ ],
1045
+ "sources": [
1046
+ {
1047
+ "fileName": "protocol/packages/payload/packages/model/dist/types/Payload.d.ts",
1048
+ "line": 20,
1049
+ "character": 17
1050
+ }
1051
+ ]
1052
+ }
1053
+ }
1054
+ ]
1055
+ }
1056
+ ]
1057
+ }
1058
+ }
1059
+ ],
1060
+ "type": {
1061
+ "type": "predicate",
1062
+ "name": "x",
1063
+ "asserts": false,
1064
+ "targetType": {
1065
+ "type": "intersection",
1066
+ "types": [
1067
+ {
1068
+ "type": "reference",
1069
+ "name": "SchemaFields"
1070
+ },
1071
+ {
1072
+ "type": "reference",
1073
+ "name": "PayloadFields"
1074
+ },
1075
+ {
1076
+ "type": "reflection",
1077
+ "declaration": {
1078
+ "id": 36,
1079
+ "name": "__type",
1080
+ "kind": 65536,
1081
+ "kindString": "Type literal",
1082
+ "flags": {},
1083
+ "children": [
1084
+ {
1085
+ "id": 37,
1086
+ "name": "schema",
1087
+ "kind": 1024,
1088
+ "kindString": "Property",
1089
+ "flags": {},
1090
+ "sources": [
1091
+ {
1092
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
1093
+ "line": 10,
1094
+ "character": 2,
1095
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L10"
1096
+ }
1097
+ ],
1098
+ "type": {
1099
+ "type": "literal",
1100
+ "value": "network.xyo.diviner.forecasting.forecast"
1101
+ }
1102
+ },
1103
+ {
1104
+ "id": 38,
1105
+ "name": "values",
1106
+ "kind": 1024,
1107
+ "kindString": "Property",
1108
+ "flags": {},
1109
+ "sources": [
1110
+ {
1111
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
1112
+ "line": 11,
1113
+ "character": 2,
1114
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L11"
1115
+ }
1116
+ ],
1117
+ "type": {
1118
+ "type": "array",
1119
+ "elementType": {
1120
+ "type": "reference",
1121
+ "id": 21,
1122
+ "name": "Forecast"
1123
+ }
1124
+ }
1125
+ }
1126
+ ],
1127
+ "groups": [
1128
+ {
1129
+ "title": "Properties",
1130
+ "children": [
1131
+ 37,
1132
+ 38
1133
+ ]
1134
+ }
1135
+ ],
1136
+ "sources": [
1137
+ {
1138
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts",
1139
+ "line": 9,
1140
+ "character": 38,
1141
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Payload/Payload.ts#L9"
1142
+ }
1143
+ ]
1144
+ }
1145
+ }
1146
+ ]
1147
+ }
1148
+ }
1149
+ }
1150
+ ]
1151
+ },
1152
+ {
1153
+ "id": 48,
1154
+ "name": "isForecastingDivinerQueryPayload",
1155
+ "kind": 64,
1156
+ "kindString": "Function",
1157
+ "flags": {},
1158
+ "sources": [
1159
+ {
1160
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
1161
+ "line": 11,
1162
+ "character": 13,
1163
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L11"
1164
+ }
1165
+ ],
1166
+ "signatures": [
1167
+ {
1168
+ "id": 49,
1169
+ "name": "isForecastingDivinerQueryPayload",
1170
+ "kind": 4096,
1171
+ "kindString": "Call signature",
1172
+ "flags": {},
1173
+ "parameters": [
1174
+ {
1175
+ "id": 50,
1176
+ "name": "x",
1177
+ "kind": 32768,
1178
+ "kindString": "Parameter",
1179
+ "flags": {
1180
+ "isOptional": true
1181
+ },
1182
+ "type": {
1183
+ "type": "union",
1184
+ "types": [
1185
+ {
1186
+ "type": "literal",
1187
+ "value": null
1188
+ },
1189
+ {
1190
+ "type": "intersection",
1191
+ "types": [
1192
+ {
1193
+ "type": "reference",
1194
+ "name": "SchemaFields"
1195
+ },
1196
+ {
1197
+ "type": "reference",
1198
+ "name": "PayloadFields"
1199
+ },
1200
+ {
1201
+ "type": "reflection",
1202
+ "declaration": {
1203
+ "id": 51,
1204
+ "name": "__type",
1205
+ "kind": 65536,
1206
+ "kindString": "Type literal",
1207
+ "flags": {},
1208
+ "children": [
1209
+ {
1210
+ "id": 52,
1211
+ "name": "schema",
1212
+ "kind": 1024,
1213
+ "kindString": "Property",
1214
+ "flags": {},
1215
+ "sources": [
1216
+ {
1217
+ "fileName": "protocol/packages/payload/packages/model/dist/types/Payload.d.ts",
1218
+ "line": 21,
1219
+ "character": 4
1220
+ }
1221
+ ],
1222
+ "type": {
1223
+ "type": "intrinsic",
1224
+ "name": "string"
1225
+ }
1226
+ }
1227
+ ],
1228
+ "groups": [
1229
+ {
1230
+ "title": "Properties",
1231
+ "children": [
1232
+ 52
1233
+ ]
1234
+ }
1235
+ ],
1236
+ "sources": [
1237
+ {
1238
+ "fileName": "protocol/packages/payload/packages/model/dist/types/Payload.d.ts",
1239
+ "line": 20,
1240
+ "character": 17
1241
+ }
1242
+ ]
1243
+ }
1244
+ }
1245
+ ]
1246
+ }
1247
+ ]
1248
+ }
1249
+ }
1250
+ ],
1251
+ "type": {
1252
+ "type": "predicate",
1253
+ "name": "x",
1254
+ "asserts": false,
1255
+ "targetType": {
1256
+ "type": "intersection",
1257
+ "types": [
1258
+ {
1259
+ "type": "reference",
1260
+ "name": "SchemaFields"
1261
+ },
1262
+ {
1263
+ "type": "reference",
1264
+ "name": "PayloadFields"
1265
+ },
1266
+ {
1267
+ "type": "reflection",
1268
+ "declaration": {
1269
+ "id": 53,
1270
+ "name": "__type",
1271
+ "kind": 65536,
1272
+ "kindString": "Type literal",
1273
+ "flags": {},
1274
+ "children": [
1275
+ {
1276
+ "id": 54,
1277
+ "name": "schema",
1278
+ "kind": 1024,
1279
+ "kindString": "Property",
1280
+ "flags": {},
1281
+ "sources": [
1282
+ {
1283
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
1284
+ "line": 10,
1285
+ "character": 53,
1286
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L10"
1287
+ }
1288
+ ],
1289
+ "type": {
1290
+ "type": "literal",
1291
+ "value": "network.xyo.diviner.forecasting.query"
1292
+ }
1293
+ }
1294
+ ],
1295
+ "groups": [
1296
+ {
1297
+ "title": "Properties",
1298
+ "children": [
1299
+ 54
1300
+ ]
1301
+ }
1302
+ ],
1303
+ "sources": [
1304
+ {
1305
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts",
1306
+ "line": 10,
1307
+ "character": 51,
1308
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/Query.ts#L10"
1309
+ }
1310
+ ]
1311
+ }
1312
+ },
1313
+ {
1314
+ "type": "reference",
1315
+ "typeArguments": [
1316
+ {
1317
+ "type": "reference",
1318
+ "id": 8,
1319
+ "name": "ForecastingSettings"
1320
+ }
1321
+ ],
1322
+ "name": "Partial",
1323
+ "qualifiedName": "Partial",
1324
+ "package": "typescript"
1325
+ },
1326
+ {
1327
+ "type": "reference",
1328
+ "name": "QueryFields"
1329
+ }
1330
+ ]
1331
+ }
1332
+ }
1333
+ }
1334
+ ]
1335
+ }
1336
+ ],
1337
+ "groups": [
1338
+ {
1339
+ "title": "Interfaces",
1340
+ "children": [
1341
+ 21,
1342
+ 8,
1343
+ 14
1344
+ ]
1345
+ },
1346
+ {
1347
+ "title": "Type Aliases",
1348
+ "children": [
1349
+ 27,
1350
+ 26,
1351
+ 3,
1352
+ 2,
1353
+ 45,
1354
+ 44,
1355
+ 56,
1356
+ 16,
1357
+ 39
1358
+ ]
1359
+ },
1360
+ {
1361
+ "title": "Variables",
1362
+ "children": [
1363
+ 25,
1364
+ 1,
1365
+ 43,
1366
+ 55
1367
+ ]
1368
+ },
1369
+ {
1370
+ "title": "Functions",
1371
+ "children": [
1372
+ 31,
1373
+ 48
1374
+ ]
1375
+ }
1376
+ ],
1377
+ "sources": [
1378
+ {
1379
+ "fileName": "modules/packages/diviner/packages/forecasting/packages/model/src/index.ts",
1380
+ "line": 1,
1381
+ "character": 0,
1382
+ "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/c06ab3d932fd/packages/modules/packages/diviner/packages/forecasting/packages/model/src/index.ts#L1"
1383
+ }
1384
+ ]
1385
+ }