@xyo-network/bridge-model 3.8.0 → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/neutral/index.d.ts +865 -12
  2. package/package.json +7 -7
  3. package/dist/neutral/Config.d.ts +0 -22
  4. package/dist/neutral/Config.d.ts.map +0 -1
  5. package/dist/neutral/EventData.d.ts +0 -5
  6. package/dist/neutral/EventData.d.ts.map +0 -1
  7. package/dist/neutral/Events/Exposed.d.ts +0 -9
  8. package/dist/neutral/Events/Exposed.d.ts.map +0 -1
  9. package/dist/neutral/Events/QueryFulfillFinished.d.ts +0 -14
  10. package/dist/neutral/Events/QueryFulfillFinished.d.ts.map +0 -1
  11. package/dist/neutral/Events/QueryFulfillStarted.d.ts +0 -12
  12. package/dist/neutral/Events/QueryFulfillStarted.d.ts.map +0 -1
  13. package/dist/neutral/Events/QuerySendFinished.d.ts +0 -14
  14. package/dist/neutral/Events/QuerySendFinished.d.ts.map +0 -1
  15. package/dist/neutral/Events/QuerySendStarted.d.ts +0 -12
  16. package/dist/neutral/Events/QuerySendStarted.d.ts.map +0 -1
  17. package/dist/neutral/Events/Unexposed.d.ts +0 -9
  18. package/dist/neutral/Events/Unexposed.d.ts.map +0 -1
  19. package/dist/neutral/Events/index.d.ts +0 -7
  20. package/dist/neutral/Events/index.d.ts.map +0 -1
  21. package/dist/neutral/Instance.d.ts +0 -11
  22. package/dist/neutral/Instance.d.ts.map +0 -1
  23. package/dist/neutral/Module.d.ts +0 -6
  24. package/dist/neutral/Module.d.ts.map +0 -1
  25. package/dist/neutral/Params.d.ts +0 -6
  26. package/dist/neutral/Params.d.ts.map +0 -1
  27. package/dist/neutral/Queries/Connect.d.ts +0 -10
  28. package/dist/neutral/Queries/Connect.d.ts.map +0 -1
  29. package/dist/neutral/Queries/Disconnect.d.ts +0 -10
  30. package/dist/neutral/Queries/Disconnect.d.ts.map +0 -1
  31. package/dist/neutral/Queries/Expose.d.ts +0 -15
  32. package/dist/neutral/Queries/Expose.d.ts.map +0 -1
  33. package/dist/neutral/Queries/Unexpose.d.ts +0 -8
  34. package/dist/neutral/Queries/Unexpose.d.ts.map +0 -1
  35. package/dist/neutral/Queries/index.d.ts +0 -12
  36. package/dist/neutral/Queries/index.d.ts.map +0 -1
  37. package/dist/neutral/QueryFunctions.d.ts +0 -11
  38. package/dist/neutral/QueryFunctions.d.ts.map +0 -1
  39. package/dist/neutral/RawQueryFunctions.d.ts +0 -10
  40. package/dist/neutral/RawQueryFunctions.d.ts.map +0 -1
  41. package/dist/neutral/attachable/AttachableInstance.d.ts +0 -13
  42. package/dist/neutral/attachable/AttachableInstance.d.ts.map +0 -1
  43. package/dist/neutral/attachable/asAttachableInstance.d.ts +0 -164
  44. package/dist/neutral/attachable/asAttachableInstance.d.ts.map +0 -1
  45. package/dist/neutral/attachable/index.d.ts +0 -4
  46. package/dist/neutral/attachable/index.d.ts.map +0 -1
  47. package/dist/neutral/attachable/isAttachableInstance.d.ts +0 -6
  48. package/dist/neutral/attachable/isAttachableInstance.d.ts.map +0 -1
  49. package/dist/neutral/index.d.ts.map +0 -1
  50. package/dist/neutral/typeChecks.d.ts +0 -545
  51. package/dist/neutral/typeChecks.d.ts.map +0 -1
@@ -1,545 +0,0 @@
1
- import type { BridgeInstance } from './Instance.ts';
2
- import type { BridgeModule } from './Module.ts';
3
- export declare const isBridgeInstance: import("@xylabs/object").TypeCheck<BridgeInstance<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
4
- schema: import("@xyo-network/payload-model").Schema;
5
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
6
- client?: {
7
- cache?: true | {
8
- max?: number | undefined;
9
- maxSize?: number | undefined;
10
- ttl?: number | undefined;
11
- } | undefined;
12
- discoverRoots?: "start" | "lazy" | undefined;
13
- maxDepth?: number | undefined;
14
- } | undefined;
15
- discoverRoots?: "start" | "lazy" | undefined;
16
- host?: {
17
- cache?: true | {
18
- max?: number | undefined;
19
- maxSize?: number | undefined;
20
- ttl?: number | undefined;
21
- } | undefined;
22
- maxDepth?: number | undefined;
23
- } | undefined;
24
- readonly archiving?: {
25
- readonly archivists?: string[] | undefined;
26
- readonly queries?: string[] | undefined;
27
- } | undefined;
28
- readonly allowedQueries?: string[] | undefined;
29
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
30
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
31
- readonly labels?: {
32
- [x: string]: string | undefined;
33
- } | undefined;
34
- readonly paging?: {
35
- [x: string]: {
36
- size?: number | undefined;
37
- };
38
- } | undefined;
39
- readonly retry?: {
40
- backoff?: number | undefined;
41
- interval?: number | undefined;
42
- retries?: number | undefined;
43
- } | undefined;
44
- readonly security?: {
45
- readonly allowAnonymous?: boolean | undefined;
46
- readonly allowed?: {
47
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
48
- } | undefined;
49
- readonly disallowed?: {
50
- [x: string]: Lowercase<string>[];
51
- } | undefined;
52
- } | undefined;
53
- readonly sign?: boolean | undefined;
54
- readonly storeQueries?: boolean | undefined;
55
- readonly timestamp?: boolean | undefined;
56
- }>>, import("./EventData.ts").BridgeModuleEventData>>;
57
- export declare const isBridgeModule: import("@xyo-network/module-model").ModuleTypeCheck<BridgeModule<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
58
- schema: import("@xyo-network/payload-model").Schema;
59
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
60
- client?: {
61
- cache?: true | {
62
- max?: number | undefined;
63
- maxSize?: number | undefined;
64
- ttl?: number | undefined;
65
- } | undefined;
66
- discoverRoots?: "start" | "lazy" | undefined;
67
- maxDepth?: number | undefined;
68
- } | undefined;
69
- discoverRoots?: "start" | "lazy" | undefined;
70
- host?: {
71
- cache?: true | {
72
- max?: number | undefined;
73
- maxSize?: number | undefined;
74
- ttl?: number | undefined;
75
- } | undefined;
76
- maxDepth?: number | undefined;
77
- } | undefined;
78
- readonly archiving?: {
79
- readonly archivists?: string[] | undefined;
80
- readonly queries?: string[] | undefined;
81
- } | undefined;
82
- readonly allowedQueries?: string[] | undefined;
83
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
84
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
85
- readonly labels?: {
86
- [x: string]: string | undefined;
87
- } | undefined;
88
- readonly paging?: {
89
- [x: string]: {
90
- size?: number | undefined;
91
- };
92
- } | undefined;
93
- readonly retry?: {
94
- backoff?: number | undefined;
95
- interval?: number | undefined;
96
- retries?: number | undefined;
97
- } | undefined;
98
- readonly security?: {
99
- readonly allowAnonymous?: boolean | undefined;
100
- readonly allowed?: {
101
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
102
- } | undefined;
103
- readonly disallowed?: {
104
- [x: string]: Lowercase<string>[];
105
- } | undefined;
106
- } | undefined;
107
- readonly sign?: boolean | undefined;
108
- readonly storeQueries?: boolean | undefined;
109
- readonly timestamp?: boolean | undefined;
110
- }>>, import("./EventData.ts").BridgeModuleEventData>>;
111
- export declare const asBridgeModule: {
112
- <TType extends BridgeModule<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
113
- schema: import("@xyo-network/payload-model").Schema;
114
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
115
- client?: {
116
- cache?: true | {
117
- max?: number | undefined;
118
- maxSize?: number | undefined;
119
- ttl?: number | undefined;
120
- } | undefined;
121
- discoverRoots?: "start" | "lazy" | undefined;
122
- maxDepth?: number | undefined;
123
- } | undefined;
124
- discoverRoots?: "start" | "lazy" | undefined;
125
- host?: {
126
- cache?: true | {
127
- max?: number | undefined;
128
- maxSize?: number | undefined;
129
- ttl?: number | undefined;
130
- } | undefined;
131
- maxDepth?: number | undefined;
132
- } | undefined;
133
- readonly archiving?: {
134
- readonly archivists?: string[] | undefined;
135
- readonly queries?: string[] | undefined;
136
- } | undefined;
137
- readonly allowedQueries?: string[] | undefined;
138
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
139
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
140
- readonly labels?: {
141
- [x: string]: string | undefined;
142
- } | undefined;
143
- readonly paging?: {
144
- [x: string]: {
145
- size?: number | undefined;
146
- };
147
- } | undefined;
148
- readonly retry?: {
149
- backoff?: number | undefined;
150
- interval?: number | undefined;
151
- retries?: number | undefined;
152
- } | undefined;
153
- readonly security?: {
154
- readonly allowAnonymous?: boolean | undefined;
155
- readonly allowed?: {
156
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
157
- } | undefined;
158
- readonly disallowed?: {
159
- [x: string]: Lowercase<string>[];
160
- } | undefined;
161
- } | undefined;
162
- readonly sign?: boolean | undefined;
163
- readonly storeQueries?: boolean | undefined;
164
- readonly timestamp?: boolean | undefined;
165
- }>>, import("./EventData.ts").BridgeModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
166
- <TType extends BridgeModule<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
167
- schema: import("@xyo-network/payload-model").Schema;
168
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
169
- client?: {
170
- cache?: true | {
171
- max?: number | undefined;
172
- maxSize?: number | undefined;
173
- ttl?: number | undefined;
174
- } | undefined;
175
- discoverRoots?: "start" | "lazy" | undefined;
176
- maxDepth?: number | undefined;
177
- } | undefined;
178
- discoverRoots?: "start" | "lazy" | undefined;
179
- host?: {
180
- cache?: true | {
181
- max?: number | undefined;
182
- maxSize?: number | undefined;
183
- ttl?: number | undefined;
184
- } | undefined;
185
- maxDepth?: number | undefined;
186
- } | undefined;
187
- readonly archiving?: {
188
- readonly archivists?: string[] | undefined;
189
- readonly queries?: string[] | undefined;
190
- } | undefined;
191
- readonly allowedQueries?: string[] | undefined;
192
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
193
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
194
- readonly labels?: {
195
- [x: string]: string | undefined;
196
- } | 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
- }>>, import("./EventData.ts").BridgeModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<BridgeModule<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
220
- schema: import("@xyo-network/payload-model").Schema;
221
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
222
- client?: {
223
- cache?: true | {
224
- max?: number | undefined;
225
- maxSize?: number | undefined;
226
- ttl?: number | undefined;
227
- } | undefined;
228
- discoverRoots?: "start" | "lazy" | undefined;
229
- maxDepth?: number | undefined;
230
- } | undefined;
231
- discoverRoots?: "start" | "lazy" | undefined;
232
- host?: {
233
- cache?: true | {
234
- max?: number | undefined;
235
- maxSize?: number | undefined;
236
- ttl?: number | undefined;
237
- } | undefined;
238
- maxDepth?: number | undefined;
239
- } | undefined;
240
- readonly archiving?: {
241
- readonly archivists?: string[] | undefined;
242
- readonly queries?: string[] | undefined;
243
- } | undefined;
244
- readonly allowedQueries?: string[] | undefined;
245
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
246
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
247
- readonly labels?: {
248
- [x: string]: string | undefined;
249
- } | undefined;
250
- readonly paging?: {
251
- [x: string]: {
252
- size?: number | undefined;
253
- };
254
- } | undefined;
255
- readonly retry?: {
256
- backoff?: number | undefined;
257
- interval?: number | undefined;
258
- retries?: number | undefined;
259
- } | undefined;
260
- readonly security?: {
261
- readonly allowAnonymous?: boolean | undefined;
262
- readonly allowed?: {
263
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
264
- } | undefined;
265
- readonly disallowed?: {
266
- [x: string]: Lowercase<string>[];
267
- } | undefined;
268
- } | undefined;
269
- readonly sign?: boolean | undefined;
270
- readonly storeQueries?: boolean | undefined;
271
- readonly timestamp?: boolean | undefined;
272
- }>>, import("./EventData.ts").BridgeModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
273
- };
274
- export declare const asBridgeInstance: {
275
- <TType extends BridgeInstance<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
276
- schema: import("@xyo-network/payload-model").Schema;
277
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
278
- client?: {
279
- cache?: true | {
280
- max?: number | undefined;
281
- maxSize?: number | undefined;
282
- ttl?: number | undefined;
283
- } | undefined;
284
- discoverRoots?: "start" | "lazy" | undefined;
285
- maxDepth?: number | undefined;
286
- } | undefined;
287
- discoverRoots?: "start" | "lazy" | undefined;
288
- host?: {
289
- cache?: true | {
290
- max?: number | undefined;
291
- maxSize?: number | undefined;
292
- ttl?: number | undefined;
293
- } | undefined;
294
- maxDepth?: number | undefined;
295
- } | undefined;
296
- readonly archiving?: {
297
- readonly archivists?: string[] | undefined;
298
- readonly queries?: string[] | undefined;
299
- } | undefined;
300
- readonly allowedQueries?: string[] | undefined;
301
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
302
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
303
- readonly labels?: {
304
- [x: string]: string | undefined;
305
- } | undefined;
306
- readonly paging?: {
307
- [x: string]: {
308
- size?: number | undefined;
309
- };
310
- } | undefined;
311
- readonly retry?: {
312
- backoff?: number | undefined;
313
- interval?: number | undefined;
314
- retries?: number | undefined;
315
- } | undefined;
316
- readonly security?: {
317
- readonly allowAnonymous?: boolean | undefined;
318
- readonly allowed?: {
319
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
320
- } | undefined;
321
- readonly disallowed?: {
322
- [x: string]: Lowercase<string>[];
323
- } | undefined;
324
- } | undefined;
325
- readonly sign?: boolean | undefined;
326
- readonly storeQueries?: boolean | undefined;
327
- readonly timestamp?: boolean | undefined;
328
- }>>, import("./EventData.ts").BridgeModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
329
- <TType extends BridgeInstance<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
330
- schema: import("@xyo-network/payload-model").Schema;
331
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
332
- client?: {
333
- cache?: true | {
334
- max?: number | undefined;
335
- maxSize?: number | undefined;
336
- ttl?: number | undefined;
337
- } | undefined;
338
- discoverRoots?: "start" | "lazy" | undefined;
339
- maxDepth?: number | undefined;
340
- } | undefined;
341
- discoverRoots?: "start" | "lazy" | undefined;
342
- host?: {
343
- cache?: true | {
344
- max?: number | undefined;
345
- maxSize?: number | undefined;
346
- ttl?: number | undefined;
347
- } | undefined;
348
- maxDepth?: number | undefined;
349
- } | undefined;
350
- readonly archiving?: {
351
- readonly archivists?: string[] | undefined;
352
- readonly queries?: string[] | undefined;
353
- } | undefined;
354
- readonly allowedQueries?: string[] | undefined;
355
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
356
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
357
- readonly labels?: {
358
- [x: string]: string | undefined;
359
- } | undefined;
360
- readonly paging?: {
361
- [x: string]: {
362
- size?: number | undefined;
363
- };
364
- } | undefined;
365
- readonly retry?: {
366
- backoff?: number | undefined;
367
- interval?: number | undefined;
368
- retries?: number | undefined;
369
- } | undefined;
370
- readonly security?: {
371
- readonly allowAnonymous?: boolean | undefined;
372
- readonly allowed?: {
373
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
374
- } | undefined;
375
- readonly disallowed?: {
376
- [x: string]: Lowercase<string>[];
377
- } | undefined;
378
- } | undefined;
379
- readonly sign?: boolean | undefined;
380
- readonly storeQueries?: boolean | undefined;
381
- readonly timestamp?: boolean | undefined;
382
- }>>, import("./EventData.ts").BridgeModuleEventData>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<BridgeInstance<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
383
- schema: import("@xyo-network/payload-model").Schema;
384
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
385
- client?: {
386
- cache?: true | {
387
- max?: number | undefined;
388
- maxSize?: number | undefined;
389
- ttl?: number | undefined;
390
- } | undefined;
391
- discoverRoots?: "start" | "lazy" | undefined;
392
- maxDepth?: number | undefined;
393
- } | undefined;
394
- discoverRoots?: "start" | "lazy" | undefined;
395
- host?: {
396
- cache?: true | {
397
- max?: number | undefined;
398
- maxSize?: number | undefined;
399
- ttl?: number | undefined;
400
- } | undefined;
401
- maxDepth?: number | undefined;
402
- } | undefined;
403
- readonly archiving?: {
404
- readonly archivists?: string[] | undefined;
405
- readonly queries?: string[] | undefined;
406
- } | undefined;
407
- readonly allowedQueries?: string[] | undefined;
408
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
409
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
410
- readonly labels?: {
411
- [x: string]: string | undefined;
412
- } | undefined;
413
- readonly paging?: {
414
- [x: string]: {
415
- size?: number | undefined;
416
- };
417
- } | undefined;
418
- readonly retry?: {
419
- backoff?: number | undefined;
420
- interval?: number | undefined;
421
- retries?: number | undefined;
422
- } | undefined;
423
- readonly security?: {
424
- readonly allowAnonymous?: boolean | undefined;
425
- readonly allowed?: {
426
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
427
- } | undefined;
428
- readonly disallowed?: {
429
- [x: string]: Lowercase<string>[];
430
- } | undefined;
431
- } | undefined;
432
- readonly sign?: boolean | undefined;
433
- readonly storeQueries?: boolean | undefined;
434
- readonly timestamp?: boolean | undefined;
435
- }>>, import("./EventData.ts").BridgeModuleEventData>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
436
- };
437
- export declare const withBridgeModule: <R>(mod: any, closure: (mod: BridgeModule<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
438
- schema: import("@xyo-network/payload-model").Schema;
439
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
440
- client?: {
441
- cache?: true | {
442
- max?: number | undefined;
443
- maxSize?: number | undefined;
444
- ttl?: number | undefined;
445
- } | undefined;
446
- discoverRoots?: "start" | "lazy" | undefined;
447
- maxDepth?: number | undefined;
448
- } | undefined;
449
- discoverRoots?: "start" | "lazy" | undefined;
450
- host?: {
451
- cache?: true | {
452
- max?: number | undefined;
453
- maxSize?: number | undefined;
454
- ttl?: number | undefined;
455
- } | undefined;
456
- maxDepth?: number | undefined;
457
- } | undefined;
458
- readonly archiving?: {
459
- readonly archivists?: string[] | undefined;
460
- readonly queries?: string[] | undefined;
461
- } | undefined;
462
- readonly allowedQueries?: string[] | undefined;
463
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
464
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
465
- readonly labels?: {
466
- [x: string]: string | undefined;
467
- } | undefined;
468
- readonly paging?: {
469
- [x: string]: {
470
- size?: number | undefined;
471
- };
472
- } | undefined;
473
- readonly retry?: {
474
- backoff?: number | undefined;
475
- interval?: number | undefined;
476
- retries?: number | undefined;
477
- } | undefined;
478
- readonly security?: {
479
- readonly allowAnonymous?: boolean | undefined;
480
- readonly allowed?: {
481
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
482
- } | undefined;
483
- readonly disallowed?: {
484
- [x: string]: Lowercase<string>[];
485
- } | undefined;
486
- } | undefined;
487
- readonly sign?: boolean | undefined;
488
- readonly storeQueries?: boolean | undefined;
489
- readonly timestamp?: boolean | undefined;
490
- }>>, import("./EventData.ts").BridgeModuleEventData>) => R) => R | undefined;
491
- export declare const withBridgeInstance: <R>(mod: any, closure: (mod: BridgeInstance<import("./Params.ts").BridgeParams<import("@xylabs/object").DeepRestrictToStringKeys<{
492
- schema: import("@xyo-network/payload-model").Schema;
493
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
494
- client?: {
495
- cache?: true | {
496
- max?: number | undefined;
497
- maxSize?: number | undefined;
498
- ttl?: number | undefined;
499
- } | undefined;
500
- discoverRoots?: "start" | "lazy" | undefined;
501
- maxDepth?: number | undefined;
502
- } | undefined;
503
- discoverRoots?: "start" | "lazy" | undefined;
504
- host?: {
505
- cache?: true | {
506
- max?: number | undefined;
507
- maxSize?: number | undefined;
508
- ttl?: number | undefined;
509
- } | undefined;
510
- maxDepth?: number | undefined;
511
- } | undefined;
512
- readonly archiving?: {
513
- readonly archivists?: string[] | undefined;
514
- readonly queries?: string[] | undefined;
515
- } | undefined;
516
- readonly allowedQueries?: string[] | undefined;
517
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
518
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
519
- readonly labels?: {
520
- [x: string]: string | undefined;
521
- } | undefined;
522
- readonly paging?: {
523
- [x: string]: {
524
- size?: number | undefined;
525
- };
526
- } | undefined;
527
- readonly retry?: {
528
- backoff?: number | undefined;
529
- interval?: number | undefined;
530
- retries?: number | undefined;
531
- } | undefined;
532
- readonly security?: {
533
- readonly allowAnonymous?: boolean | undefined;
534
- readonly allowed?: {
535
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
536
- } | undefined;
537
- readonly disallowed?: {
538
- [x: string]: Lowercase<string>[];
539
- } | undefined;
540
- } | undefined;
541
- readonly sign?: boolean | undefined;
542
- readonly storeQueries?: boolean | undefined;
543
- readonly timestamp?: boolean | undefined;
544
- }>>, import("./EventData.ts").BridgeModuleEventData>) => R) => R | undefined;
545
- //# 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,cAAc,EAAE,MAAM,eAAe,CAAA;AACnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAG/C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qDAG5B,CAAA;AACD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qDAAsG,CAAA;AAEjI,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEATQ,iBAC/B,iCAAiC,gBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEb,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2EAIjC,gBAAmB;CAEqB,CAAA;AACpE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAVM,iBAC/B,iCAAiC,gBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEb,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2EAIjC,gBAAmB;CAGyB,CAAA;AACxE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAqC,CAAA;AAClE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAuC,CAAA"}