@xyo-network/react-standard-node 4.4.3 → 4.4.5

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/browser/index.d.ts +1066 -5
  2. package/package.json +9 -9
  3. package/dist/browser/components/ActiveStandardNode.d.ts +0 -7
  4. package/dist/browser/components/ActiveStandardNode.d.ts.map +0 -1
  5. package/dist/browser/components/index.d.ts +0 -2
  6. package/dist/browser/components/index.d.ts.map +0 -1
  7. package/dist/browser/contexts/StandardRemoteNodes/Context.d.ts +0 -3
  8. package/dist/browser/contexts/StandardRemoteNodes/Context.d.ts.map +0 -1
  9. package/dist/browser/contexts/StandardRemoteNodes/Providers.d.ts +0 -11
  10. package/dist/browser/contexts/StandardRemoteNodes/Providers.d.ts.map +0 -1
  11. package/dist/browser/contexts/StandardRemoteNodes/State.d.ts +0 -8
  12. package/dist/browser/contexts/StandardRemoteNodes/State.d.ts.map +0 -1
  13. package/dist/browser/contexts/StandardRemoteNodes/index.d.ts +0 -5
  14. package/dist/browser/contexts/StandardRemoteNodes/index.d.ts.map +0 -1
  15. package/dist/browser/contexts/StandardRemoteNodes/use.d.ts +0 -2
  16. package/dist/browser/contexts/StandardRemoteNodes/use.d.ts.map +0 -1
  17. package/dist/browser/contexts/index.d.ts +0 -2
  18. package/dist/browser/contexts/index.d.ts.map +0 -1
  19. package/dist/browser/hooks/index.d.ts +0 -2
  20. package/dist/browser/hooks/index.d.ts.map +0 -1
  21. package/dist/browser/hooks/useActiveNodeAddress.d.ts +0 -2
  22. package/dist/browser/hooks/useActiveNodeAddress.d.ts.map +0 -1
  23. package/dist/browser/index.d.ts.map +0 -1
  24. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +0 -311
  25. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +0 -1
  26. package/dist/browser/lib/Builders/SentinelBuilder.d.ts +0 -500
  27. package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +0 -1
  28. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +0 -212
  29. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +0 -1
  30. package/dist/browser/lib/Builders/index.d.ts +0 -4
  31. package/dist/browser/lib/Builders/index.d.ts.map +0 -1
  32. package/dist/browser/lib/ModuleAccountPaths.d.ts +0 -4
  33. package/dist/browser/lib/ModuleAccountPaths.d.ts.map +0 -1
  34. package/dist/browser/lib/ModuleNames.d.ts +0 -3
  35. package/dist/browser/lib/ModuleNames.d.ts.map +0 -1
  36. package/dist/browser/lib/buildNodes.d.ts +0 -4
  37. package/dist/browser/lib/buildNodes.d.ts.map +0 -1
  38. package/dist/browser/lib/index.d.ts +0 -5
  39. package/dist/browser/lib/index.d.ts.map +0 -1
@@ -1,500 +0,0 @@
1
- import type { AccountInstance } from '@xyo-network/account-model';
2
- import { MemorySentinel } from '@xyo-network/sentinel-memory';
3
- import type { SentinelConfig } from '@xyo-network/sentinel-model';
4
- export declare class SentinelBuilder {
5
- private config;
6
- private account;
7
- private _sentinel;
8
- protected constructor(config: SentinelConfig, account: AccountInstance);
9
- get sentinel(): MemorySentinel<import("@xylabs/object").BaseParamsFields & {
10
- account?: AccountInstance | "random";
11
- addToResolvers?: boolean;
12
- additionalSigners?: AccountInstance[];
13
- allowNameResolution?: boolean;
14
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
15
- schema: import("@xyo-network/payload-model").Schema;
16
- readonly archiving?: {
17
- readonly archivists?: string[] | undefined;
18
- readonly queries?: string[] | undefined;
19
- } | undefined;
20
- readonly allowedQueries?: string[] | undefined;
21
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
22
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
23
- readonly labels?: {
24
- [x: string]: string | undefined;
25
- } | undefined;
26
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
27
- readonly paging?: {
28
- [x: string]: {
29
- size?: number | undefined;
30
- };
31
- } | undefined;
32
- readonly retry?: {
33
- backoff?: number | undefined;
34
- interval?: number | undefined;
35
- retries?: number | undefined;
36
- } | undefined;
37
- readonly security?: {
38
- readonly allowAnonymous?: boolean | undefined;
39
- readonly allowed?: {
40
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
41
- } | undefined;
42
- readonly disallowed?: {
43
- [x: string]: Lowercase<string>[];
44
- } | undefined;
45
- } | undefined;
46
- readonly sign?: boolean | undefined;
47
- readonly storeQueries?: boolean | undefined;
48
- readonly timestamp?: boolean | undefined;
49
- automations?: ({
50
- schema: "network.xyo.automation.interval";
51
- type: "interval";
52
- end?: number | undefined;
53
- frequency?: number | undefined;
54
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
55
- remaining?: number | undefined;
56
- start: number;
57
- } | {
58
- schema: "network.xyo.automation.event";
59
- type: "interval";
60
- end?: number | undefined;
61
- frequency?: number | undefined;
62
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
63
- remaining?: number | undefined;
64
- start: number;
65
- } | {
66
- schema: "network.xyo.automation";
67
- type: "interval";
68
- end?: number | undefined;
69
- frequency?: number | undefined;
70
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
71
- remaining?: number | undefined;
72
- start: number;
73
- } | {
74
- schema: "network.xyo.automation.interval";
75
- type: "event";
76
- } | {
77
- schema: "network.xyo.automation.event";
78
- type: "event";
79
- } | {
80
- schema: "network.xyo.automation";
81
- type: "event";
82
- })[] | undefined;
83
- synchronous?: boolean | undefined;
84
- tasks: ({
85
- endPoint?: "observe" | undefined;
86
- input?: string | boolean | string[] | undefined;
87
- mod: import("@xyo-network/module-model").ModuleIdentifier;
88
- required?: boolean | undefined;
89
- } | {
90
- endPoint?: "divine" | undefined;
91
- input?: string | boolean | string[] | undefined;
92
- mod: import("@xyo-network/module-model").ModuleIdentifier;
93
- required?: boolean | undefined;
94
- } | {
95
- endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
96
- input?: string | boolean | string[] | undefined;
97
- mod: import("@xyo-network/module-model").ModuleIdentifier;
98
- required?: boolean | undefined;
99
- } | {
100
- endPoint?: string | undefined;
101
- input?: string | boolean | string[] | undefined;
102
- mod: import("@xyo-network/module-model").ModuleIdentifier;
103
- required?: boolean | undefined;
104
- })[];
105
- throwErrors?: boolean | undefined;
106
- }>;
107
- ephemeralQueryAccountEnabled?: boolean;
108
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
109
- }, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/sentinel-model").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
110
- account?: AccountInstance | "random";
111
- addToResolvers?: boolean;
112
- additionalSigners?: AccountInstance[];
113
- allowNameResolution?: boolean;
114
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
115
- schema: import("@xyo-network/payload-model").Schema;
116
- readonly archiving?: {
117
- readonly archivists?: string[] | undefined;
118
- readonly queries?: string[] | undefined;
119
- } | undefined;
120
- readonly allowedQueries?: string[] | undefined;
121
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
122
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
123
- readonly labels?: {
124
- [x: string]: string | undefined;
125
- } | undefined;
126
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
127
- readonly paging?: {
128
- [x: string]: {
129
- size?: number | undefined;
130
- };
131
- } | undefined;
132
- readonly retry?: {
133
- backoff?: number | undefined;
134
- interval?: number | undefined;
135
- retries?: number | undefined;
136
- } | undefined;
137
- readonly security?: {
138
- readonly allowAnonymous?: boolean | undefined;
139
- readonly allowed?: {
140
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
141
- } | undefined;
142
- readonly disallowed?: {
143
- [x: string]: Lowercase<string>[];
144
- } | undefined;
145
- } | undefined;
146
- readonly sign?: boolean | undefined;
147
- readonly storeQueries?: boolean | undefined;
148
- readonly timestamp?: boolean | undefined;
149
- automations?: ({
150
- schema: "network.xyo.automation.interval";
151
- type: "interval";
152
- end?: number | undefined;
153
- frequency?: number | undefined;
154
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
155
- remaining?: number | undefined;
156
- start: number;
157
- } | {
158
- schema: "network.xyo.automation.event";
159
- type: "interval";
160
- end?: number | undefined;
161
- frequency?: number | undefined;
162
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
163
- remaining?: number | undefined;
164
- start: number;
165
- } | {
166
- schema: "network.xyo.automation";
167
- type: "interval";
168
- end?: number | undefined;
169
- frequency?: number | undefined;
170
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
171
- remaining?: number | undefined;
172
- start: number;
173
- } | {
174
- schema: "network.xyo.automation.interval";
175
- type: "event";
176
- } | {
177
- schema: "network.xyo.automation.event";
178
- type: "event";
179
- } | {
180
- schema: "network.xyo.automation";
181
- type: "event";
182
- })[] | undefined;
183
- synchronous?: boolean | undefined;
184
- tasks: ({
185
- endPoint?: "observe" | undefined;
186
- input?: string | boolean | string[] | undefined;
187
- mod: import("@xyo-network/module-model").ModuleIdentifier;
188
- required?: boolean | undefined;
189
- } | {
190
- endPoint?: "divine" | undefined;
191
- input?: string | boolean | string[] | undefined;
192
- mod: import("@xyo-network/module-model").ModuleIdentifier;
193
- required?: boolean | undefined;
194
- } | {
195
- endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
196
- input?: string | boolean | string[] | undefined;
197
- mod: import("@xyo-network/module-model").ModuleIdentifier;
198
- required?: boolean | undefined;
199
- } | {
200
- endPoint?: string | undefined;
201
- input?: string | boolean | string[] | undefined;
202
- mod: import("@xyo-network/module-model").ModuleIdentifier;
203
- required?: boolean | undefined;
204
- })[];
205
- throwErrors?: boolean | undefined;
206
- }>;
207
- ephemeralQueryAccountEnabled?: boolean;
208
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
209
- }, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
210
- account?: AccountInstance | "random";
211
- addToResolvers?: boolean;
212
- additionalSigners?: AccountInstance[];
213
- allowNameResolution?: boolean;
214
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
215
- schema: import("@xyo-network/payload-model").Schema;
216
- readonly archiving?: {
217
- readonly archivists?: string[] | undefined;
218
- readonly queries?: string[] | undefined;
219
- } | undefined;
220
- readonly allowedQueries?: string[] | undefined;
221
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
222
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
223
- readonly labels?: {
224
- [x: string]: string | undefined;
225
- } | undefined;
226
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
227
- readonly paging?: {
228
- [x: string]: {
229
- size?: number | undefined;
230
- };
231
- } | undefined;
232
- readonly retry?: {
233
- backoff?: number | undefined;
234
- interval?: number | undefined;
235
- retries?: number | undefined;
236
- } | undefined;
237
- readonly security?: {
238
- readonly allowAnonymous?: boolean | undefined;
239
- readonly allowed?: {
240
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
241
- } | undefined;
242
- readonly disallowed?: {
243
- [x: string]: Lowercase<string>[];
244
- } | undefined;
245
- } | undefined;
246
- readonly sign?: boolean | undefined;
247
- readonly storeQueries?: boolean | undefined;
248
- readonly timestamp?: boolean | undefined;
249
- }>;
250
- ephemeralQueryAccountEnabled?: boolean;
251
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
252
- }, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
253
- static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
254
- buildSentinel(): Promise<MemorySentinel<import("@xylabs/object").BaseParamsFields & {
255
- account?: AccountInstance | "random";
256
- addToResolvers?: boolean;
257
- additionalSigners?: AccountInstance[];
258
- allowNameResolution?: boolean;
259
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
260
- schema: import("@xyo-network/payload-model").Schema;
261
- readonly archiving?: {
262
- readonly archivists?: string[] | undefined;
263
- readonly queries?: string[] | undefined;
264
- } | undefined;
265
- readonly allowedQueries?: string[] | undefined;
266
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
267
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
268
- readonly labels?: {
269
- [x: string]: string | undefined;
270
- } | undefined;
271
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
272
- readonly paging?: {
273
- [x: string]: {
274
- size?: number | undefined;
275
- };
276
- } | undefined;
277
- readonly retry?: {
278
- backoff?: number | undefined;
279
- interval?: number | undefined;
280
- retries?: number | undefined;
281
- } | undefined;
282
- readonly security?: {
283
- readonly allowAnonymous?: boolean | undefined;
284
- readonly allowed?: {
285
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
286
- } | undefined;
287
- readonly disallowed?: {
288
- [x: string]: Lowercase<string>[];
289
- } | undefined;
290
- } | undefined;
291
- readonly sign?: boolean | undefined;
292
- readonly storeQueries?: boolean | undefined;
293
- readonly timestamp?: boolean | undefined;
294
- automations?: ({
295
- schema: "network.xyo.automation.interval";
296
- type: "interval";
297
- end?: number | undefined;
298
- frequency?: number | undefined;
299
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
300
- remaining?: number | undefined;
301
- start: number;
302
- } | {
303
- schema: "network.xyo.automation.event";
304
- type: "interval";
305
- end?: number | undefined;
306
- frequency?: number | undefined;
307
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
308
- remaining?: number | undefined;
309
- start: number;
310
- } | {
311
- schema: "network.xyo.automation";
312
- type: "interval";
313
- end?: number | undefined;
314
- frequency?: number | undefined;
315
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
316
- remaining?: number | undefined;
317
- start: number;
318
- } | {
319
- schema: "network.xyo.automation.interval";
320
- type: "event";
321
- } | {
322
- schema: "network.xyo.automation.event";
323
- type: "event";
324
- } | {
325
- schema: "network.xyo.automation";
326
- type: "event";
327
- })[] | undefined;
328
- synchronous?: boolean | undefined;
329
- tasks: ({
330
- endPoint?: "observe" | undefined;
331
- input?: string | boolean | string[] | undefined;
332
- mod: import("@xyo-network/module-model").ModuleIdentifier;
333
- required?: boolean | undefined;
334
- } | {
335
- endPoint?: "divine" | undefined;
336
- input?: string | boolean | string[] | undefined;
337
- mod: import("@xyo-network/module-model").ModuleIdentifier;
338
- required?: boolean | undefined;
339
- } | {
340
- endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
341
- input?: string | boolean | string[] | undefined;
342
- mod: import("@xyo-network/module-model").ModuleIdentifier;
343
- required?: boolean | undefined;
344
- } | {
345
- endPoint?: string | undefined;
346
- input?: string | boolean | string[] | undefined;
347
- mod: import("@xyo-network/module-model").ModuleIdentifier;
348
- required?: boolean | undefined;
349
- })[];
350
- throwErrors?: boolean | undefined;
351
- }>;
352
- ephemeralQueryAccountEnabled?: boolean;
353
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
354
- }, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/sentinel-model").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
355
- account?: AccountInstance | "random";
356
- addToResolvers?: boolean;
357
- additionalSigners?: AccountInstance[];
358
- allowNameResolution?: boolean;
359
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
360
- schema: import("@xyo-network/payload-model").Schema;
361
- readonly archiving?: {
362
- readonly archivists?: string[] | undefined;
363
- readonly queries?: string[] | undefined;
364
- } | undefined;
365
- readonly allowedQueries?: string[] | undefined;
366
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
367
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
368
- readonly labels?: {
369
- [x: string]: string | undefined;
370
- } | undefined;
371
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
372
- readonly paging?: {
373
- [x: string]: {
374
- size?: number | undefined;
375
- };
376
- } | undefined;
377
- readonly retry?: {
378
- backoff?: number | undefined;
379
- interval?: number | undefined;
380
- retries?: number | undefined;
381
- } | undefined;
382
- readonly security?: {
383
- readonly allowAnonymous?: boolean | undefined;
384
- readonly allowed?: {
385
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
386
- } | undefined;
387
- readonly disallowed?: {
388
- [x: string]: Lowercase<string>[];
389
- } | undefined;
390
- } | undefined;
391
- readonly sign?: boolean | undefined;
392
- readonly storeQueries?: boolean | undefined;
393
- readonly timestamp?: boolean | undefined;
394
- automations?: ({
395
- schema: "network.xyo.automation.interval";
396
- type: "interval";
397
- end?: number | undefined;
398
- frequency?: number | undefined;
399
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
400
- remaining?: number | undefined;
401
- start: number;
402
- } | {
403
- schema: "network.xyo.automation.event";
404
- type: "interval";
405
- end?: number | undefined;
406
- frequency?: number | undefined;
407
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
408
- remaining?: number | undefined;
409
- start: number;
410
- } | {
411
- schema: "network.xyo.automation";
412
- type: "interval";
413
- end?: number | undefined;
414
- frequency?: number | undefined;
415
- frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
416
- remaining?: number | undefined;
417
- start: number;
418
- } | {
419
- schema: "network.xyo.automation.interval";
420
- type: "event";
421
- } | {
422
- schema: "network.xyo.automation.event";
423
- type: "event";
424
- } | {
425
- schema: "network.xyo.automation";
426
- type: "event";
427
- })[] | undefined;
428
- synchronous?: boolean | undefined;
429
- tasks: ({
430
- endPoint?: "observe" | undefined;
431
- input?: string | boolean | string[] | undefined;
432
- mod: import("@xyo-network/module-model").ModuleIdentifier;
433
- required?: boolean | undefined;
434
- } | {
435
- endPoint?: "divine" | undefined;
436
- input?: string | boolean | string[] | undefined;
437
- mod: import("@xyo-network/module-model").ModuleIdentifier;
438
- required?: boolean | undefined;
439
- } | {
440
- endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
441
- input?: string | boolean | string[] | undefined;
442
- mod: import("@xyo-network/module-model").ModuleIdentifier;
443
- required?: boolean | undefined;
444
- } | {
445
- endPoint?: string | undefined;
446
- input?: string | boolean | string[] | undefined;
447
- mod: import("@xyo-network/module-model").ModuleIdentifier;
448
- required?: boolean | undefined;
449
- })[];
450
- throwErrors?: boolean | undefined;
451
- }>;
452
- ephemeralQueryAccountEnabled?: boolean;
453
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
454
- }, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
455
- account?: AccountInstance | "random";
456
- addToResolvers?: boolean;
457
- additionalSigners?: AccountInstance[];
458
- allowNameResolution?: boolean;
459
- config: import("@xylabs/object").DeepRestrictToStringKeys<{
460
- schema: import("@xyo-network/payload-model").Schema;
461
- readonly archiving?: {
462
- readonly archivists?: string[] | undefined;
463
- readonly queries?: string[] | undefined;
464
- } | undefined;
465
- readonly allowedQueries?: string[] | undefined;
466
- readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
467
- readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
468
- readonly labels?: {
469
- [x: string]: string | undefined;
470
- } | undefined;
471
- readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
472
- readonly paging?: {
473
- [x: string]: {
474
- size?: number | undefined;
475
- };
476
- } | undefined;
477
- readonly retry?: {
478
- backoff?: number | undefined;
479
- interval?: number | undefined;
480
- retries?: number | undefined;
481
- } | undefined;
482
- readonly security?: {
483
- readonly allowAnonymous?: boolean | undefined;
484
- readonly allowed?: {
485
- [x: string]: (Lowercase<string> | Lowercase<string>[])[];
486
- } | undefined;
487
- readonly disallowed?: {
488
- [x: string]: Lowercase<string>[];
489
- } | undefined;
490
- } | undefined;
491
- readonly sign?: boolean | undefined;
492
- readonly storeQueries?: boolean | undefined;
493
- readonly timestamp?: boolean | undefined;
494
- }>;
495
- ephemeralQueryAccountEnabled?: boolean;
496
- moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
497
- }, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
498
- private buildParams;
499
- }
500
- //# sourceMappingURL=SentinelBuilder.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAEjE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAEjE,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}