@xyo-network/diviner-model 3.8.0 → 3.8.2

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 (39) hide show
  1. package/dist/neutral/index.d.ts +691 -13
  2. package/package.json +7 -7
  3. package/dist/neutral/Config.d.ts +0 -9
  4. package/dist/neutral/Config.d.ts.map +0 -1
  5. package/dist/neutral/DivinerQueryFunctions.d.ts +0 -10
  6. package/dist/neutral/DivinerQueryFunctions.d.ts.map +0 -1
  7. package/dist/neutral/EventData.d.ts +0 -5
  8. package/dist/neutral/EventData.d.ts.map +0 -1
  9. package/dist/neutral/EventsModels/DivineEnd.d.ts +0 -12
  10. package/dist/neutral/EventsModels/DivineEnd.d.ts.map +0 -1
  11. package/dist/neutral/EventsModels/DivineStart.d.ts +0 -10
  12. package/dist/neutral/EventsModels/DivineStart.d.ts.map +0 -1
  13. package/dist/neutral/EventsModels/index.d.ts +0 -3
  14. package/dist/neutral/EventsModels/index.d.ts.map +0 -1
  15. package/dist/neutral/Instance.d.ts +0 -9
  16. package/dist/neutral/Instance.d.ts.map +0 -1
  17. package/dist/neutral/Module.d.ts +0 -6
  18. package/dist/neutral/Module.d.ts.map +0 -1
  19. package/dist/neutral/Params.d.ts +0 -5
  20. package/dist/neutral/Params.d.ts.map +0 -1
  21. package/dist/neutral/Payload.d.ts +0 -7
  22. package/dist/neutral/Payload.d.ts.map +0 -1
  23. package/dist/neutral/Queries/Divine.d.ts +0 -7
  24. package/dist/neutral/Queries/Divine.d.ts.map +0 -1
  25. package/dist/neutral/Queries/index.d.ts +0 -6
  26. package/dist/neutral/Queries/index.d.ts.map +0 -1
  27. package/dist/neutral/SearchableStorage.d.ts +0 -19
  28. package/dist/neutral/SearchableStorage.d.ts.map +0 -1
  29. package/dist/neutral/attachable/AttachableInstance.d.ts +0 -13
  30. package/dist/neutral/attachable/AttachableInstance.d.ts.map +0 -1
  31. package/dist/neutral/attachable/asAttachableInstance.d.ts +0 -146
  32. package/dist/neutral/attachable/asAttachableInstance.d.ts.map +0 -1
  33. package/dist/neutral/attachable/index.d.ts +0 -4
  34. package/dist/neutral/attachable/index.d.ts.map +0 -1
  35. package/dist/neutral/attachable/isAttachableInstance.d.ts +0 -6
  36. package/dist/neutral/attachable/isAttachableInstance.d.ts.map +0 -1
  37. package/dist/neutral/index.d.ts.map +0 -1
  38. package/dist/neutral/typeChecks.d.ts +0 -465
  39. package/dist/neutral/typeChecks.d.ts.map +0 -1
@@ -1,465 +0,0 @@
1
- import type { DivinerInstance } from './Instance.ts';
2
- import type { DivinerModule } from './Module.ts';
3
- export declare const isDivinerInstance: import("@xylabs/object").TypeCheck<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
4
- account?: import("@xyo-network/account-model").AccountInstance | "random";
5
- addToResolvers?: boolean;
6
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
7
- allowNameResolution?: boolean;
8
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
9
- schema: import("@xyo-network/payload-model").Schema;
10
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
11
- readonly archiving?: {
12
- readonly archivists?: string[] | undefined;
13
- readonly queries?: string[] | undefined;
14
- } | undefined;
15
- readonly allowedQueries?: string[] | undefined;
16
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
17
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
18
- readonly labels?: {
19
- [x: string]: string | undefined;
20
- } | undefined;
21
- readonly paging?: {
22
- [x: string]: {
23
- size?: number | undefined;
24
- };
25
- } | undefined;
26
- readonly retry?: {
27
- backoff?: number | undefined;
28
- interval?: number | undefined;
29
- retries?: number | undefined;
30
- } | undefined;
31
- readonly security?: {
32
- readonly allowAnonymous?: boolean | undefined;
33
- readonly allowed?: {
34
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
35
- } | undefined;
36
- readonly disallowed?: {
37
- [x: string]: Lowercase<string>[];
38
- } | undefined;
39
- } | undefined;
40
- readonly sign?: boolean | undefined;
41
- readonly storeQueries?: boolean | undefined;
42
- readonly timestamp?: boolean | undefined;
43
- }>;
44
- ephemeralQueryAccountEnabled?: boolean;
45
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
46
- }, import("@xylabs/object").DeepRestrictToStringKeys<{
47
- schema: import("@xyo-network/payload-model").Schema;
48
- }>, import("@xylabs/object").DeepRestrictToStringKeys<{
49
- schema: import("@xyo-network/payload-model").Schema;
50
- }>, import("./EventData.ts").DivinerModuleEventData>>;
51
- export declare const isDivinerModule: import("@xyo-network/module-model").ModuleTypeCheck<DivinerModule<import("@xylabs/object").BaseParamsFields & {
52
- account?: import("@xyo-network/account-model").AccountInstance | "random";
53
- addToResolvers?: boolean;
54
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
55
- allowNameResolution?: boolean;
56
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
57
- schema: import("@xyo-network/payload-model").Schema;
58
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
59
- readonly archiving?: {
60
- readonly archivists?: string[] | undefined;
61
- readonly queries?: string[] | undefined;
62
- } | undefined;
63
- readonly allowedQueries?: string[] | undefined;
64
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
65
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
66
- readonly labels?: {
67
- [x: string]: string | undefined;
68
- } | undefined;
69
- readonly paging?: {
70
- [x: string]: {
71
- size?: number | undefined;
72
- };
73
- } | undefined;
74
- readonly retry?: {
75
- backoff?: number | undefined;
76
- interval?: number | undefined;
77
- retries?: number | undefined;
78
- } | undefined;
79
- readonly security?: {
80
- readonly allowAnonymous?: boolean | undefined;
81
- readonly allowed?: {
82
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
83
- } | undefined;
84
- readonly disallowed?: {
85
- [x: string]: Lowercase<string>[];
86
- } | undefined;
87
- } | undefined;
88
- readonly sign?: boolean | undefined;
89
- readonly storeQueries?: boolean | undefined;
90
- readonly timestamp?: boolean | undefined;
91
- }>;
92
- ephemeralQueryAccountEnabled?: boolean;
93
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
94
- }, import("./EventData.ts").DivinerModuleEventData>>;
95
- export declare const asDivinerModule: {
96
- <TType extends DivinerModule<import("@xylabs/object").BaseParamsFields & {
97
- account?: import("@xyo-network/account-model").AccountInstance | "random";
98
- addToResolvers?: boolean;
99
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
100
- allowNameResolution?: boolean;
101
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
102
- schema: import("@xyo-network/payload-model").Schema;
103
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
104
- readonly archiving?: {
105
- readonly archivists?: string[] | undefined;
106
- readonly queries?: string[] | undefined;
107
- } | undefined;
108
- readonly allowedQueries?: string[] | undefined;
109
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
110
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
111
- readonly labels?: {
112
- [x: string]: string | undefined;
113
- } | undefined;
114
- readonly paging?: {
115
- [x: string]: {
116
- size?: number | undefined;
117
- };
118
- } | undefined;
119
- readonly retry?: {
120
- backoff?: number | undefined;
121
- interval?: number | undefined;
122
- retries?: number | undefined;
123
- } | undefined;
124
- readonly security?: {
125
- readonly allowAnonymous?: boolean | undefined;
126
- readonly allowed?: {
127
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
128
- } | undefined;
129
- readonly disallowed?: {
130
- [x: string]: Lowercase<string>[];
131
- } | undefined;
132
- } | undefined;
133
- readonly sign?: boolean | undefined;
134
- readonly storeQueries?: boolean | undefined;
135
- readonly timestamp?: boolean | undefined;
136
- }>;
137
- ephemeralQueryAccountEnabled?: boolean;
138
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
139
- }, import("./EventData.ts").DivinerModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
140
- <TType extends DivinerModule<import("@xylabs/object").BaseParamsFields & {
141
- account?: import("@xyo-network/account-model").AccountInstance | "random";
142
- addToResolvers?: boolean;
143
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
144
- allowNameResolution?: boolean;
145
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
146
- schema: import("@xyo-network/payload-model").Schema;
147
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
148
- readonly archiving?: {
149
- readonly archivists?: string[] | undefined;
150
- readonly queries?: string[] | undefined;
151
- } | undefined;
152
- readonly allowedQueries?: string[] | undefined;
153
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
154
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
155
- readonly labels?: {
156
- [x: string]: string | undefined;
157
- } | undefined;
158
- readonly paging?: {
159
- [x: string]: {
160
- size?: number | undefined;
161
- };
162
- } | undefined;
163
- readonly retry?: {
164
- backoff?: number | undefined;
165
- interval?: number | undefined;
166
- retries?: number | undefined;
167
- } | undefined;
168
- readonly security?: {
169
- readonly allowAnonymous?: boolean | undefined;
170
- readonly allowed?: {
171
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
172
- } | undefined;
173
- readonly disallowed?: {
174
- [x: string]: Lowercase<string>[];
175
- } | undefined;
176
- } | undefined;
177
- readonly sign?: boolean | undefined;
178
- readonly storeQueries?: boolean | undefined;
179
- readonly timestamp?: boolean | undefined;
180
- }>;
181
- ephemeralQueryAccountEnabled?: boolean;
182
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
183
- }, import("./EventData.ts").DivinerModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<DivinerModule<import("@xylabs/object").BaseParamsFields & {
184
- account?: import("@xyo-network/account-model").AccountInstance | "random";
185
- addToResolvers?: boolean;
186
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
187
- allowNameResolution?: boolean;
188
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
189
- schema: import("@xyo-network/payload-model").Schema;
190
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
191
- readonly archiving?: {
192
- readonly archivists?: string[] | undefined;
193
- readonly queries?: string[] | undefined;
194
- } | undefined;
195
- readonly allowedQueries?: string[] | undefined;
196
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
197
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
198
- readonly labels?: {
199
- [x: string]: string | undefined;
200
- } | undefined;
201
- readonly paging?: {
202
- [x: string]: {
203
- size?: number | undefined;
204
- };
205
- } | undefined;
206
- readonly retry?: {
207
- backoff?: number | undefined;
208
- interval?: number | undefined;
209
- retries?: number | undefined;
210
- } | undefined;
211
- readonly security?: {
212
- readonly allowAnonymous?: boolean | undefined;
213
- readonly allowed?: {
214
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
215
- } | undefined;
216
- readonly disallowed?: {
217
- [x: string]: Lowercase<string>[];
218
- } | undefined;
219
- } | undefined;
220
- readonly sign?: boolean | undefined;
221
- readonly storeQueries?: boolean | undefined;
222
- readonly timestamp?: boolean | undefined;
223
- }>;
224
- ephemeralQueryAccountEnabled?: boolean;
225
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
226
- }, import("./EventData.ts").DivinerModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
227
- };
228
- export declare const asDivinerInstance: {
229
- <TType extends DivinerInstance<import("@xylabs/object").BaseParamsFields & {
230
- account?: import("@xyo-network/account-model").AccountInstance | "random";
231
- addToResolvers?: boolean;
232
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
233
- allowNameResolution?: boolean;
234
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
235
- schema: import("@xyo-network/payload-model").Schema;
236
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
237
- readonly archiving?: {
238
- readonly archivists?: string[] | undefined;
239
- readonly queries?: string[] | undefined;
240
- } | undefined;
241
- readonly allowedQueries?: string[] | undefined;
242
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
243
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
244
- readonly labels?: {
245
- [x: string]: string | undefined;
246
- } | undefined;
247
- readonly paging?: {
248
- [x: string]: {
249
- size?: number | undefined;
250
- };
251
- } | undefined;
252
- readonly retry?: {
253
- backoff?: number | undefined;
254
- interval?: number | undefined;
255
- retries?: number | undefined;
256
- } | undefined;
257
- readonly security?: {
258
- readonly allowAnonymous?: boolean | undefined;
259
- readonly allowed?: {
260
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
261
- } | undefined;
262
- readonly disallowed?: {
263
- [x: string]: Lowercase<string>[];
264
- } | undefined;
265
- } | undefined;
266
- readonly sign?: boolean | undefined;
267
- readonly storeQueries?: boolean | undefined;
268
- readonly timestamp?: boolean | undefined;
269
- }>;
270
- ephemeralQueryAccountEnabled?: boolean;
271
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
272
- }, import("@xylabs/object").DeepRestrictToStringKeys<{
273
- schema: import("@xyo-network/payload-model").Schema;
274
- }>, import("@xylabs/object").DeepRestrictToStringKeys<{
275
- schema: import("@xyo-network/payload-model").Schema;
276
- }>, import("./EventData.ts").DivinerModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
277
- <TType extends DivinerInstance<import("@xylabs/object").BaseParamsFields & {
278
- account?: import("@xyo-network/account-model").AccountInstance | "random";
279
- addToResolvers?: boolean;
280
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
281
- allowNameResolution?: boolean;
282
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
283
- schema: import("@xyo-network/payload-model").Schema;
284
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
285
- readonly archiving?: {
286
- readonly archivists?: string[] | undefined;
287
- readonly queries?: string[] | undefined;
288
- } | undefined;
289
- readonly allowedQueries?: string[] | undefined;
290
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
291
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
292
- readonly labels?: {
293
- [x: string]: string | undefined;
294
- } | undefined;
295
- readonly paging?: {
296
- [x: string]: {
297
- size?: number | undefined;
298
- };
299
- } | undefined;
300
- readonly retry?: {
301
- backoff?: number | undefined;
302
- interval?: number | undefined;
303
- retries?: number | undefined;
304
- } | undefined;
305
- readonly security?: {
306
- readonly allowAnonymous?: boolean | undefined;
307
- readonly allowed?: {
308
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
309
- } | undefined;
310
- readonly disallowed?: {
311
- [x: string]: Lowercase<string>[];
312
- } | undefined;
313
- } | undefined;
314
- readonly sign?: boolean | undefined;
315
- readonly storeQueries?: boolean | undefined;
316
- readonly timestamp?: boolean | undefined;
317
- }>;
318
- ephemeralQueryAccountEnabled?: boolean;
319
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
320
- }, import("@xylabs/object").DeepRestrictToStringKeys<{
321
- schema: import("@xyo-network/payload-model").Schema;
322
- }>, import("@xylabs/object").DeepRestrictToStringKeys<{
323
- schema: import("@xyo-network/payload-model").Schema;
324
- }>, import("./EventData.ts").DivinerModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
325
- account?: import("@xyo-network/account-model").AccountInstance | "random";
326
- addToResolvers?: boolean;
327
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
328
- allowNameResolution?: boolean;
329
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
330
- schema: import("@xyo-network/payload-model").Schema;
331
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
332
- readonly archiving?: {
333
- readonly archivists?: string[] | undefined;
334
- readonly queries?: string[] | undefined;
335
- } | undefined;
336
- readonly allowedQueries?: string[] | undefined;
337
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
338
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
339
- readonly labels?: {
340
- [x: string]: string | undefined;
341
- } | undefined;
342
- readonly paging?: {
343
- [x: string]: {
344
- size?: number | undefined;
345
- };
346
- } | undefined;
347
- readonly retry?: {
348
- backoff?: number | undefined;
349
- interval?: number | undefined;
350
- retries?: number | undefined;
351
- } | undefined;
352
- readonly security?: {
353
- readonly allowAnonymous?: boolean | undefined;
354
- readonly allowed?: {
355
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
356
- } | undefined;
357
- readonly disallowed?: {
358
- [x: string]: Lowercase<string>[];
359
- } | undefined;
360
- } | undefined;
361
- readonly sign?: boolean | undefined;
362
- readonly storeQueries?: boolean | undefined;
363
- readonly timestamp?: boolean | undefined;
364
- }>;
365
- ephemeralQueryAccountEnabled?: boolean;
366
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
367
- }, import("@xylabs/object").DeepRestrictToStringKeys<{
368
- schema: import("@xyo-network/payload-model").Schema;
369
- }>, import("@xylabs/object").DeepRestrictToStringKeys<{
370
- schema: import("@xyo-network/payload-model").Schema;
371
- }>, import("./EventData.ts").DivinerModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
372
- };
373
- export declare const withDivinerModule: <R>(mod: any, closure: (mod: DivinerModule<import("@xylabs/object").BaseParamsFields & {
374
- account?: import("@xyo-network/account-model").AccountInstance | "random";
375
- addToResolvers?: boolean;
376
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
377
- allowNameResolution?: boolean;
378
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
379
- schema: import("@xyo-network/payload-model").Schema;
380
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
381
- readonly archiving?: {
382
- readonly archivists?: string[] | undefined;
383
- readonly queries?: string[] | undefined;
384
- } | undefined;
385
- readonly allowedQueries?: string[] | undefined;
386
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
387
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
388
- readonly labels?: {
389
- [x: string]: string | undefined;
390
- } | undefined;
391
- readonly paging?: {
392
- [x: string]: {
393
- size?: number | undefined;
394
- };
395
- } | undefined;
396
- readonly retry?: {
397
- backoff?: number | undefined;
398
- interval?: number | undefined;
399
- retries?: number | undefined;
400
- } | undefined;
401
- readonly security?: {
402
- readonly allowAnonymous?: boolean | undefined;
403
- readonly allowed?: {
404
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
405
- } | undefined;
406
- readonly disallowed?: {
407
- [x: string]: Lowercase<string>[];
408
- } | undefined;
409
- } | undefined;
410
- readonly sign?: boolean | undefined;
411
- readonly storeQueries?: boolean | undefined;
412
- readonly timestamp?: boolean | undefined;
413
- }>;
414
- ephemeralQueryAccountEnabled?: boolean;
415
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
416
- }, import("./EventData.ts").DivinerModuleEventData>) => R) => R | undefined;
417
- export declare const withDivinerInstance: <R>(mod: any, closure: (mod: DivinerInstance<import("@xylabs/object").BaseParamsFields & {
418
- account?: import("@xyo-network/account-model").AccountInstance | "random";
419
- addToResolvers?: boolean;
420
- additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
421
- allowNameResolution?: boolean;
422
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
423
- schema: import("@xyo-network/payload-model").Schema;
424
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
425
- readonly archiving?: {
426
- readonly archivists?: string[] | undefined;
427
- readonly queries?: string[] | undefined;
428
- } | undefined;
429
- readonly allowedQueries?: string[] | undefined;
430
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
431
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
432
- readonly labels?: {
433
- [x: string]: string | undefined;
434
- } | undefined;
435
- readonly paging?: {
436
- [x: string]: {
437
- size?: number | undefined;
438
- };
439
- } | undefined;
440
- readonly retry?: {
441
- backoff?: number | undefined;
442
- interval?: number | undefined;
443
- retries?: number | undefined;
444
- } | undefined;
445
- readonly security?: {
446
- readonly allowAnonymous?: boolean | undefined;
447
- readonly allowed?: {
448
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
449
- } | undefined;
450
- readonly disallowed?: {
451
- [x: string]: Lowercase<string>[];
452
- } | undefined;
453
- } | undefined;
454
- readonly sign?: boolean | undefined;
455
- readonly storeQueries?: boolean | undefined;
456
- readonly timestamp?: boolean | undefined;
457
- }>;
458
- ephemeralQueryAccountEnabled?: boolean;
459
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
460
- }, import("@xylabs/object").DeepRestrictToStringKeys<{
461
- schema: import("@xyo-network/payload-model").Schema;
462
- }>, import("@xylabs/object").DeepRestrictToStringKeys<{
463
- schema: import("@xyo-network/payload-model").Schema;
464
- }>, import("./EventData.ts").DivinerModuleEventData>) => R) => R | undefined;
465
- //# sourceMappingURL=typeChecks.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"typeChecks.d.ts","sourceRoot":"","sources":["../../src/typeChecks.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAGhD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qDAA8F,CAAA;AAC5H,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oDAA0E,CAAA;AAEtG,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uEANO,iBACjC,iCAAkC,gBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uEAEgB,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0EAC7B,gBAAoB;CAET,CAAA;AACtE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAPK,iBACjC,iCAAkC,gBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEgB,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2EAC7B,gBAAoB;CAGL,CAAA;AAC1E,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2EAAsC,CAAA;AACpE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAwC,CAAA"}