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