@xyo-network/diviner-stateful 2.88.1 → 2.88.3
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.
- package/dist/browser/Diviner.d.cts +9 -3
- package/dist/browser/Diviner.d.cts.map +1 -1
- package/dist/browser/Diviner.d.mts +9 -3
- package/dist/browser/Diviner.d.mts.map +1 -1
- package/dist/browser/Diviner.d.ts +9 -3
- package/dist/browser/Diviner.d.ts.map +1 -1
- package/dist/browser/DivinerMixin.d.cts +37 -21
- package/dist/browser/DivinerMixin.d.cts.map +1 -1
- package/dist/browser/DivinerMixin.d.mts +37 -21
- package/dist/browser/DivinerMixin.d.mts.map +1 -1
- package/dist/browser/DivinerMixin.d.ts +37 -21
- package/dist/browser/DivinerMixin.d.ts.map +1 -1
- package/dist/node/Diviner.d.cts +9 -3
- package/dist/node/Diviner.d.cts.map +1 -1
- package/dist/node/Diviner.d.mts +9 -3
- package/dist/node/Diviner.d.mts.map +1 -1
- package/dist/node/Diviner.d.ts +9 -3
- package/dist/node/Diviner.d.ts.map +1 -1
- package/dist/node/DivinerMixin.d.cts +37 -21
- package/dist/node/DivinerMixin.d.cts.map +1 -1
- package/dist/node/DivinerMixin.d.mts +37 -21
- package/dist/node/DivinerMixin.d.mts.map +1 -1
- package/dist/node/DivinerMixin.d.ts +37 -21
- package/dist/node/DivinerMixin.d.ts.map +1 -1
- package/package.json +21 -21
|
@@ -7,7 +7,7 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
7
7
|
* @param ModuleBase
|
|
8
8
|
* @returns
|
|
9
9
|
*/
|
|
10
|
-
export declare const StatefulModuleMixin: <TParams extends import("@
|
|
10
|
+
export declare const StatefulModuleMixin: <TParams extends import("@xylabs/object").BaseParamsFields & {
|
|
11
11
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
12
12
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
13
13
|
readonly archivist?: string | undefined;
|
|
@@ -16,6 +16,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
16
16
|
readonly paging?: Record<string, {
|
|
17
17
|
size?: number | undefined;
|
|
18
18
|
}> | undefined;
|
|
19
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
19
20
|
schema: "network.xyo.diviner.stateful.config";
|
|
20
21
|
readonly security?: {
|
|
21
22
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -32,6 +33,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
32
33
|
readonly paging?: Record<string, {
|
|
33
34
|
size?: number | undefined;
|
|
34
35
|
}> | undefined;
|
|
36
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
35
37
|
schema: "network.xyo.diviner.stateful.config";
|
|
36
38
|
readonly security?: {
|
|
37
39
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -54,7 +56,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
54
56
|
schema: string;
|
|
55
57
|
};
|
|
56
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
57
|
-
} = import("@
|
|
59
|
+
} = import("@xylabs/object").BaseParamsFields & {
|
|
58
60
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
59
61
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
60
62
|
readonly archivist?: string | undefined;
|
|
@@ -63,6 +65,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
63
65
|
readonly paging?: Record<string, {
|
|
64
66
|
size?: number | undefined;
|
|
65
67
|
}> | undefined;
|
|
68
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
66
69
|
schema: "network.xyo.diviner.stateful.config";
|
|
67
70
|
readonly security?: {
|
|
68
71
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -79,6 +82,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
79
82
|
readonly paging?: Record<string, {
|
|
80
83
|
size?: number | undefined;
|
|
81
84
|
}> | undefined;
|
|
85
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
82
86
|
schema: "network.xyo.diviner.stateful.config";
|
|
83
87
|
readonly security?: {
|
|
84
88
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -116,7 +120,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
116
120
|
* @param store The store to retrieve the archivist for
|
|
117
121
|
* @returns The archivist for the specified store
|
|
118
122
|
*/
|
|
119
|
-
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@
|
|
123
|
+
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
120
124
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
121
125
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
122
126
|
readonly archivist?: string | undefined;
|
|
@@ -125,6 +129,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
125
129
|
readonly paging?: Record<string, {
|
|
126
130
|
size?: number | undefined;
|
|
127
131
|
}> | undefined;
|
|
132
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
128
133
|
schema: "network.xyo.archivist.config";
|
|
129
134
|
readonly security?: {
|
|
130
135
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -141,6 +146,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
141
146
|
readonly paging?: Record<string, {
|
|
142
147
|
size?: number | undefined;
|
|
143
148
|
}> | undefined;
|
|
149
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
144
150
|
schema: "network.xyo.archivist.config";
|
|
145
151
|
readonly security?: {
|
|
146
152
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -165,7 +171,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
165
171
|
* @param store The store to retrieve the BoundWitness Diviner for
|
|
166
172
|
* @returns The BoundWitness Diviner for the specified store
|
|
167
173
|
*/
|
|
168
|
-
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@
|
|
174
|
+
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
175
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
176
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
171
177
|
readonly archivist?: string | undefined;
|
|
@@ -174,6 +180,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
174
180
|
readonly paging?: Record<string, {
|
|
175
181
|
size?: number | undefined;
|
|
176
182
|
}> | undefined;
|
|
183
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
177
184
|
schema: "network.xyo.diviner.config";
|
|
178
185
|
readonly security?: {
|
|
179
186
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -190,6 +197,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
190
197
|
readonly paging?: Record<string, {
|
|
191
198
|
size?: number | undefined;
|
|
192
199
|
}> | undefined;
|
|
200
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
201
|
schema: "network.xyo.diviner.config";
|
|
194
202
|
readonly security?: {
|
|
195
203
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -215,7 +223,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
215
223
|
* @param store The store to retrieve the Payload Diviner for
|
|
216
224
|
* @returns The Payload Diviner for the specified store
|
|
217
225
|
*/
|
|
218
|
-
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@
|
|
226
|
+
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
219
227
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
220
228
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
221
229
|
readonly archivist?: string | undefined;
|
|
@@ -224,6 +232,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
224
232
|
readonly paging?: Record<string, {
|
|
225
233
|
size?: number | undefined;
|
|
226
234
|
}> | undefined;
|
|
235
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
227
236
|
schema: "network.xyo.diviner.config";
|
|
228
237
|
readonly security?: {
|
|
229
238
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -240,6 +249,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
240
249
|
readonly paging?: Record<string, {
|
|
241
250
|
size?: number | undefined;
|
|
242
251
|
}> | undefined;
|
|
252
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
243
253
|
schema: "network.xyo.diviner.config";
|
|
244
254
|
readonly security?: {
|
|
245
255
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -292,6 +302,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
292
302
|
readonly paging?: Record<string, {
|
|
293
303
|
size?: number | undefined;
|
|
294
304
|
}> | undefined;
|
|
305
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
295
306
|
schema: "network.xyo.module.config";
|
|
296
307
|
readonly security?: {
|
|
297
308
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -308,6 +319,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
308
319
|
readonly paging?: Record<string, {
|
|
309
320
|
size?: number | undefined;
|
|
310
321
|
}> | undefined;
|
|
322
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
311
323
|
schema: "network.xyo.module.config";
|
|
312
324
|
readonly security?: {
|
|
313
325
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -339,6 +351,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
339
351
|
readonly paging?: Record<string, {
|
|
340
352
|
size?: number | undefined;
|
|
341
353
|
}> | undefined;
|
|
354
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
342
355
|
schema: "network.xyo.module.config";
|
|
343
356
|
readonly security?: {
|
|
344
357
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -355,6 +368,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
355
368
|
readonly paging?: Record<string, {
|
|
356
369
|
size?: number | undefined;
|
|
357
370
|
}> | undefined;
|
|
371
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
358
372
|
schema: "network.xyo.module.config";
|
|
359
373
|
readonly security?: {
|
|
360
374
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -379,7 +393,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
379
393
|
on<TEventName_3 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventNames: TEventName_3 | TEventName_3[], listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_3]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
380
394
|
onAny(listener: import("@xyo-network/module-events").EventAnyListener<import("@xyo-network/module-events").EventArgs>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
381
395
|
once<TEventName_4 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName_4, listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_4]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
382
|
-
resolve<T_2 extends ModuleInstance<import("@
|
|
396
|
+
resolve<T_2 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
383
397
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
384
398
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
385
399
|
readonly archivist?: string | undefined;
|
|
@@ -388,6 +402,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
388
402
|
readonly paging?: Record<string, {
|
|
389
403
|
size?: number | undefined;
|
|
390
404
|
}> | undefined;
|
|
405
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
391
406
|
schema: "network.xyo.module.config";
|
|
392
407
|
readonly security?: {
|
|
393
408
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -404,6 +419,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
404
419
|
readonly paging?: Record<string, {
|
|
405
420
|
size?: number | undefined;
|
|
406
421
|
}> | undefined;
|
|
422
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
407
423
|
schema: "network.xyo.module.config";
|
|
408
424
|
readonly security?: {
|
|
409
425
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -417,7 +433,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
417
433
|
schema: string;
|
|
418
434
|
};
|
|
419
435
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
420
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@
|
|
436
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
421
437
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
422
438
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
423
439
|
readonly archivist?: string | undefined;
|
|
@@ -426,6 +442,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
426
442
|
readonly paging?: Record<string, {
|
|
427
443
|
size?: number | undefined;
|
|
428
444
|
}> | undefined;
|
|
445
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
429
446
|
schema: "network.xyo.module.config";
|
|
430
447
|
readonly security?: {
|
|
431
448
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -442,6 +459,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
442
459
|
readonly paging?: Record<string, {
|
|
443
460
|
size?: number | undefined;
|
|
444
461
|
}> | undefined;
|
|
462
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
445
463
|
schema: "network.xyo.module.config";
|
|
446
464
|
readonly security?: {
|
|
447
465
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -456,7 +474,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
456
474
|
};
|
|
457
475
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
458
476
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter?: import("@xyo-network/module-model").ModuleFilter<T_2> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_2> | undefined): import("@xylabs/promise").Promisable<T_2[]>;
|
|
459
|
-
resolve<T_3 extends ModuleInstance<import("@
|
|
477
|
+
resolve<T_3 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
460
478
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
461
479
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
462
480
|
readonly archivist?: string | undefined;
|
|
@@ -465,6 +483,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
465
483
|
readonly paging?: Record<string, {
|
|
466
484
|
size?: number | undefined;
|
|
467
485
|
}> | undefined;
|
|
486
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
468
487
|
schema: "network.xyo.module.config";
|
|
469
488
|
readonly security?: {
|
|
470
489
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -481,6 +500,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
481
500
|
readonly paging?: Record<string, {
|
|
482
501
|
size?: number | undefined;
|
|
483
502
|
}> | undefined;
|
|
503
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
484
504
|
schema: "network.xyo.module.config";
|
|
485
505
|
readonly security?: {
|
|
486
506
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -494,7 +514,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
494
514
|
schema: string;
|
|
495
515
|
};
|
|
496
516
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
497
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@
|
|
517
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
498
518
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
499
519
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
500
520
|
readonly archivist?: string | undefined;
|
|
@@ -503,6 +523,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
503
523
|
readonly paging?: Record<string, {
|
|
504
524
|
size?: number | undefined;
|
|
505
525
|
}> | undefined;
|
|
526
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
506
527
|
schema: "network.xyo.module.config";
|
|
507
528
|
readonly security?: {
|
|
508
529
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -519,6 +540,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
519
540
|
readonly paging?: Record<string, {
|
|
520
541
|
size?: number | undefined;
|
|
521
542
|
}> | undefined;
|
|
543
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
522
544
|
schema: "network.xyo.module.config";
|
|
523
545
|
readonly security?: {
|
|
524
546
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -533,7 +555,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
533
555
|
};
|
|
534
556
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
535
557
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddress: string, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_3> | undefined): import("@xylabs/promise").Promisable<T_3 | undefined>;
|
|
536
|
-
resolve<T_4 extends ModuleInstance<import("@
|
|
558
|
+
resolve<T_4 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
537
559
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
538
560
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
539
561
|
readonly archivist?: string | undefined;
|
|
@@ -542,6 +564,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
542
564
|
readonly paging?: Record<string, {
|
|
543
565
|
size?: number | undefined;
|
|
544
566
|
}> | undefined;
|
|
567
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
545
568
|
schema: "network.xyo.module.config";
|
|
546
569
|
readonly security?: {
|
|
547
570
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -558,6 +581,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
558
581
|
readonly paging?: Record<string, {
|
|
559
582
|
size?: number | undefined;
|
|
560
583
|
}> | undefined;
|
|
584
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
561
585
|
schema: "network.xyo.module.config";
|
|
562
586
|
readonly security?: {
|
|
563
587
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -571,7 +595,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
571
595
|
schema: string;
|
|
572
596
|
};
|
|
573
597
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
574
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@
|
|
598
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
575
599
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
576
600
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
577
601
|
readonly archivist?: string | undefined;
|
|
@@ -580,6 +604,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
580
604
|
readonly paging?: Record<string, {
|
|
581
605
|
size?: number | undefined;
|
|
582
606
|
}> | undefined;
|
|
607
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
583
608
|
schema: "network.xyo.module.config";
|
|
584
609
|
readonly security?: {
|
|
585
610
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -596,6 +621,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
596
621
|
readonly paging?: Record<string, {
|
|
597
622
|
size?: number | undefined;
|
|
598
623
|
}> | undefined;
|
|
624
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
599
625
|
schema: "network.xyo.module.config";
|
|
600
626
|
readonly security?: {
|
|
601
627
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -615,18 +641,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
615
641
|
schema: string;
|
|
616
642
|
} & object)[]>;
|
|
617
643
|
manifest: (maxDepth?: number | undefined, ignoreAddresses?: string[] | undefined) => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
618
|
-
/**
|
|
619
|
-
* @ignore Inherit from StatefulDiviner instead
|
|
620
|
-
* @param ModuleBase
|
|
621
|
-
* @returns
|
|
622
|
-
*/
|
|
623
644
|
schema: "network.xyo.module.manifest";
|
|
624
645
|
}) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
625
|
-
/**
|
|
626
|
-
* @ignore Inherit from StatefulDiviner instead
|
|
627
|
-
* @param ModuleBase
|
|
628
|
-
* @returns
|
|
629
|
-
*/
|
|
630
646
|
schema: "network.xyo.node.manifest";
|
|
631
647
|
})>;
|
|
632
648
|
moduleAddress: () => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,eAAe,EAEf,cAAc,EACd,YAAY,EACZ,WAAW,EAEX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AAGlC,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAGvF,MAAM,MAAM,SAAS,CAAC,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,CAAA;AAIpI;;;;GAIG;AACH,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,eAAe,EAEf,cAAc,EACd,YAAY,EACZ,WAAW,EAEX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AAGlC,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAGvF,MAAM,MAAM,SAAS,CAAC,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,CAAA;AAIpI;;;;GAIG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8JATmE,GAAG,EAAE;;IAmBpG;;;;;;OAMG;;IAWH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAWH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA2CN,CAAA"}
|
|
@@ -7,7 +7,7 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
7
7
|
* @param ModuleBase
|
|
8
8
|
* @returns
|
|
9
9
|
*/
|
|
10
|
-
export declare const StatefulModuleMixin: <TParams extends import("@
|
|
10
|
+
export declare const StatefulModuleMixin: <TParams extends import("@xylabs/object").BaseParamsFields & {
|
|
11
11
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
12
12
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
13
13
|
readonly archivist?: string | undefined;
|
|
@@ -16,6 +16,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
16
16
|
readonly paging?: Record<string, {
|
|
17
17
|
size?: number | undefined;
|
|
18
18
|
}> | undefined;
|
|
19
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
19
20
|
schema: "network.xyo.diviner.stateful.config";
|
|
20
21
|
readonly security?: {
|
|
21
22
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -32,6 +33,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
32
33
|
readonly paging?: Record<string, {
|
|
33
34
|
size?: number | undefined;
|
|
34
35
|
}> | undefined;
|
|
36
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
35
37
|
schema: "network.xyo.diviner.stateful.config";
|
|
36
38
|
readonly security?: {
|
|
37
39
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -54,7 +56,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
54
56
|
schema: string;
|
|
55
57
|
};
|
|
56
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
57
|
-
} = import("@
|
|
59
|
+
} = import("@xylabs/object").BaseParamsFields & {
|
|
58
60
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
59
61
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
60
62
|
readonly archivist?: string | undefined;
|
|
@@ -63,6 +65,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
63
65
|
readonly paging?: Record<string, {
|
|
64
66
|
size?: number | undefined;
|
|
65
67
|
}> | undefined;
|
|
68
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
66
69
|
schema: "network.xyo.diviner.stateful.config";
|
|
67
70
|
readonly security?: {
|
|
68
71
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -79,6 +82,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
79
82
|
readonly paging?: Record<string, {
|
|
80
83
|
size?: number | undefined;
|
|
81
84
|
}> | undefined;
|
|
85
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
82
86
|
schema: "network.xyo.diviner.stateful.config";
|
|
83
87
|
readonly security?: {
|
|
84
88
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -116,7 +120,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
116
120
|
* @param store The store to retrieve the archivist for
|
|
117
121
|
* @returns The archivist for the specified store
|
|
118
122
|
*/
|
|
119
|
-
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@
|
|
123
|
+
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
120
124
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
121
125
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
122
126
|
readonly archivist?: string | undefined;
|
|
@@ -125,6 +129,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
125
129
|
readonly paging?: Record<string, {
|
|
126
130
|
size?: number | undefined;
|
|
127
131
|
}> | undefined;
|
|
132
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
128
133
|
schema: "network.xyo.archivist.config";
|
|
129
134
|
readonly security?: {
|
|
130
135
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -141,6 +146,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
141
146
|
readonly paging?: Record<string, {
|
|
142
147
|
size?: number | undefined;
|
|
143
148
|
}> | undefined;
|
|
149
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
144
150
|
schema: "network.xyo.archivist.config";
|
|
145
151
|
readonly security?: {
|
|
146
152
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -165,7 +171,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
165
171
|
* @param store The store to retrieve the BoundWitness Diviner for
|
|
166
172
|
* @returns The BoundWitness Diviner for the specified store
|
|
167
173
|
*/
|
|
168
|
-
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@
|
|
174
|
+
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
169
175
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
170
176
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
171
177
|
readonly archivist?: string | undefined;
|
|
@@ -174,6 +180,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
174
180
|
readonly paging?: Record<string, {
|
|
175
181
|
size?: number | undefined;
|
|
176
182
|
}> | undefined;
|
|
183
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
177
184
|
schema: "network.xyo.diviner.config";
|
|
178
185
|
readonly security?: {
|
|
179
186
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -190,6 +197,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
190
197
|
readonly paging?: Record<string, {
|
|
191
198
|
size?: number | undefined;
|
|
192
199
|
}> | undefined;
|
|
200
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
201
|
schema: "network.xyo.diviner.config";
|
|
194
202
|
readonly security?: {
|
|
195
203
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -215,7 +223,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
215
223
|
* @param store The store to retrieve the Payload Diviner for
|
|
216
224
|
* @returns The Payload Diviner for the specified store
|
|
217
225
|
*/
|
|
218
|
-
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@
|
|
226
|
+
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
219
227
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
220
228
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
221
229
|
readonly archivist?: string | undefined;
|
|
@@ -224,6 +232,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
224
232
|
readonly paging?: Record<string, {
|
|
225
233
|
size?: number | undefined;
|
|
226
234
|
}> | undefined;
|
|
235
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
227
236
|
schema: "network.xyo.diviner.config";
|
|
228
237
|
readonly security?: {
|
|
229
238
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -240,6 +249,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
240
249
|
readonly paging?: Record<string, {
|
|
241
250
|
size?: number | undefined;
|
|
242
251
|
}> | undefined;
|
|
252
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
243
253
|
schema: "network.xyo.diviner.config";
|
|
244
254
|
readonly security?: {
|
|
245
255
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -292,6 +302,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
292
302
|
readonly paging?: Record<string, {
|
|
293
303
|
size?: number | undefined;
|
|
294
304
|
}> | undefined;
|
|
305
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
295
306
|
schema: "network.xyo.module.config";
|
|
296
307
|
readonly security?: {
|
|
297
308
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -308,6 +319,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
308
319
|
readonly paging?: Record<string, {
|
|
309
320
|
size?: number | undefined;
|
|
310
321
|
}> | undefined;
|
|
322
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
311
323
|
schema: "network.xyo.module.config";
|
|
312
324
|
readonly security?: {
|
|
313
325
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -339,6 +351,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
339
351
|
readonly paging?: Record<string, {
|
|
340
352
|
size?: number | undefined;
|
|
341
353
|
}> | undefined;
|
|
354
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
342
355
|
schema: "network.xyo.module.config";
|
|
343
356
|
readonly security?: {
|
|
344
357
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -355,6 +368,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
355
368
|
readonly paging?: Record<string, {
|
|
356
369
|
size?: number | undefined;
|
|
357
370
|
}> | undefined;
|
|
371
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
358
372
|
schema: "network.xyo.module.config";
|
|
359
373
|
readonly security?: {
|
|
360
374
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -379,7 +393,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
379
393
|
on<TEventName_3 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventNames: TEventName_3 | TEventName_3[], listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_3]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
380
394
|
onAny(listener: import("@xyo-network/module-events").EventAnyListener<import("@xyo-network/module-events").EventArgs>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
381
395
|
once<TEventName_4 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName_4, listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_4]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
382
|
-
resolve<T_2 extends ModuleInstance<import("@
|
|
396
|
+
resolve<T_2 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
383
397
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
384
398
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
385
399
|
readonly archivist?: string | undefined;
|
|
@@ -388,6 +402,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
388
402
|
readonly paging?: Record<string, {
|
|
389
403
|
size?: number | undefined;
|
|
390
404
|
}> | undefined;
|
|
405
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
391
406
|
schema: "network.xyo.module.config";
|
|
392
407
|
readonly security?: {
|
|
393
408
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -404,6 +419,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
404
419
|
readonly paging?: Record<string, {
|
|
405
420
|
size?: number | undefined;
|
|
406
421
|
}> | undefined;
|
|
422
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
407
423
|
schema: "network.xyo.module.config";
|
|
408
424
|
readonly security?: {
|
|
409
425
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -417,7 +433,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
417
433
|
schema: string;
|
|
418
434
|
};
|
|
419
435
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
420
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@
|
|
436
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
421
437
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
422
438
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
423
439
|
readonly archivist?: string | undefined;
|
|
@@ -426,6 +442,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
426
442
|
readonly paging?: Record<string, {
|
|
427
443
|
size?: number | undefined;
|
|
428
444
|
}> | undefined;
|
|
445
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
429
446
|
schema: "network.xyo.module.config";
|
|
430
447
|
readonly security?: {
|
|
431
448
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -442,6 +459,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
442
459
|
readonly paging?: Record<string, {
|
|
443
460
|
size?: number | undefined;
|
|
444
461
|
}> | undefined;
|
|
462
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
445
463
|
schema: "network.xyo.module.config";
|
|
446
464
|
readonly security?: {
|
|
447
465
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -456,7 +474,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
456
474
|
};
|
|
457
475
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
458
476
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter?: import("@xyo-network/module-model").ModuleFilter<T_2> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_2> | undefined): import("@xylabs/promise").Promisable<T_2[]>;
|
|
459
|
-
resolve<T_3 extends ModuleInstance<import("@
|
|
477
|
+
resolve<T_3 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
460
478
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
461
479
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
462
480
|
readonly archivist?: string | undefined;
|
|
@@ -465,6 +483,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
465
483
|
readonly paging?: Record<string, {
|
|
466
484
|
size?: number | undefined;
|
|
467
485
|
}> | undefined;
|
|
486
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
468
487
|
schema: "network.xyo.module.config";
|
|
469
488
|
readonly security?: {
|
|
470
489
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -481,6 +500,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
481
500
|
readonly paging?: Record<string, {
|
|
482
501
|
size?: number | undefined;
|
|
483
502
|
}> | undefined;
|
|
503
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
484
504
|
schema: "network.xyo.module.config";
|
|
485
505
|
readonly security?: {
|
|
486
506
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -494,7 +514,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
494
514
|
schema: string;
|
|
495
515
|
};
|
|
496
516
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
497
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@
|
|
517
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
498
518
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
499
519
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
500
520
|
readonly archivist?: string | undefined;
|
|
@@ -503,6 +523,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
503
523
|
readonly paging?: Record<string, {
|
|
504
524
|
size?: number | undefined;
|
|
505
525
|
}> | undefined;
|
|
526
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
506
527
|
schema: "network.xyo.module.config";
|
|
507
528
|
readonly security?: {
|
|
508
529
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -519,6 +540,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
519
540
|
readonly paging?: Record<string, {
|
|
520
541
|
size?: number | undefined;
|
|
521
542
|
}> | undefined;
|
|
543
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
522
544
|
schema: "network.xyo.module.config";
|
|
523
545
|
readonly security?: {
|
|
524
546
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -533,7 +555,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
533
555
|
};
|
|
534
556
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
535
557
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddress: string, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_3> | undefined): import("@xylabs/promise").Promisable<T_3 | undefined>;
|
|
536
|
-
resolve<T_4 extends ModuleInstance<import("@
|
|
558
|
+
resolve<T_4 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
537
559
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
538
560
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
539
561
|
readonly archivist?: string | undefined;
|
|
@@ -542,6 +564,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
542
564
|
readonly paging?: Record<string, {
|
|
543
565
|
size?: number | undefined;
|
|
544
566
|
}> | undefined;
|
|
567
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
545
568
|
schema: "network.xyo.module.config";
|
|
546
569
|
readonly security?: {
|
|
547
570
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -558,6 +581,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
558
581
|
readonly paging?: Record<string, {
|
|
559
582
|
size?: number | undefined;
|
|
560
583
|
}> | undefined;
|
|
584
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
561
585
|
schema: "network.xyo.module.config";
|
|
562
586
|
readonly security?: {
|
|
563
587
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -571,7 +595,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
571
595
|
schema: string;
|
|
572
596
|
};
|
|
573
597
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
574
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@
|
|
598
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
575
599
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
576
600
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
577
601
|
readonly archivist?: string | undefined;
|
|
@@ -580,6 +604,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
580
604
|
readonly paging?: Record<string, {
|
|
581
605
|
size?: number | undefined;
|
|
582
606
|
}> | undefined;
|
|
607
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
583
608
|
schema: "network.xyo.module.config";
|
|
584
609
|
readonly security?: {
|
|
585
610
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -596,6 +621,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
596
621
|
readonly paging?: Record<string, {
|
|
597
622
|
size?: number | undefined;
|
|
598
623
|
}> | undefined;
|
|
624
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
599
625
|
schema: "network.xyo.module.config";
|
|
600
626
|
readonly security?: {
|
|
601
627
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -615,18 +641,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
615
641
|
schema: string;
|
|
616
642
|
} & object)[]>;
|
|
617
643
|
manifest: (maxDepth?: number | undefined, ignoreAddresses?: string[] | undefined) => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
618
|
-
/**
|
|
619
|
-
* @ignore Inherit from StatefulDiviner instead
|
|
620
|
-
* @param ModuleBase
|
|
621
|
-
* @returns
|
|
622
|
-
*/
|
|
623
644
|
schema: "network.xyo.module.manifest";
|
|
624
645
|
}) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
625
|
-
/**
|
|
626
|
-
* @ignore Inherit from StatefulDiviner instead
|
|
627
|
-
* @param ModuleBase
|
|
628
|
-
* @returns
|
|
629
|
-
*/
|
|
630
646
|
schema: "network.xyo.node.manifest";
|
|
631
647
|
})>;
|
|
632
648
|
moduleAddress: () => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & {
|