@xyo-network/diviner-stateful 2.84.19 → 2.85.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.
- package/dist/browser/DivinerMixin.d.cts +0 -28
- package/dist/browser/DivinerMixin.d.cts.map +1 -1
- package/dist/browser/DivinerMixin.d.mts +0 -28
- package/dist/browser/DivinerMixin.d.mts.map +1 -1
- package/dist/browser/DivinerMixin.d.ts +0 -28
- package/dist/browser/DivinerMixin.d.ts.map +1 -1
- package/dist/browser/index.cjs +100 -71
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +103 -75
- package/dist/browser/index.js.map +1 -1
- package/dist/node/DivinerMixin.d.cts +0 -28
- package/dist/node/DivinerMixin.d.cts.map +1 -1
- package/dist/node/DivinerMixin.d.mts +0 -28
- package/dist/node/DivinerMixin.d.mts.map +1 -1
- package/dist/node/DivinerMixin.d.ts +0 -28
- package/dist/node/DivinerMixin.d.ts.map +1 -1
- package/dist/node/index.cjs +116 -85
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +119 -89
- package/dist/node/index.js.map +1 -1
- package/package.json +18 -18
|
@@ -10,7 +10,6 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
10
10
|
export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/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
|
-
accountDerivationPath?: string | undefined;
|
|
14
13
|
readonly archivist?: string | undefined;
|
|
15
14
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
16
15
|
readonly name?: string | undefined;
|
|
@@ -27,7 +26,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
27
26
|
readonly storeQueries?: boolean | undefined;
|
|
28
27
|
readonly timestamp?: boolean | undefined;
|
|
29
28
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
30
|
-
accountDerivationPath?: string | undefined;
|
|
31
29
|
readonly archivist?: string | undefined;
|
|
32
30
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
33
31
|
readonly name?: string | undefined;
|
|
@@ -56,11 +54,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
56
54
|
schema: string;
|
|
57
55
|
};
|
|
58
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
59
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
60
57
|
} = import("@xyo-network/object").BaseParamsFields & {
|
|
61
58
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
62
59
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
63
|
-
accountDerivationPath?: string | undefined;
|
|
64
60
|
readonly archivist?: string | undefined;
|
|
65
61
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
66
62
|
readonly name?: string | undefined;
|
|
@@ -77,7 +73,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
77
73
|
readonly storeQueries?: boolean | undefined;
|
|
78
74
|
readonly timestamp?: boolean | undefined;
|
|
79
75
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
80
|
-
accountDerivationPath?: string | undefined;
|
|
81
76
|
readonly archivist?: string | undefined;
|
|
82
77
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
83
78
|
readonly name?: string | undefined;
|
|
@@ -106,7 +101,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
106
101
|
schema: string;
|
|
107
102
|
};
|
|
108
103
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
110
104
|
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
111
105
|
_lastState?: ModuleState<TState> | undefined;
|
|
112
106
|
/**
|
|
@@ -158,7 +152,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
158
152
|
}, "schema"> & {
|
|
159
153
|
schema: "network.xyo.boundwitness";
|
|
160
154
|
}, TConf extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
161
|
-
accountDerivationPath?: string | undefined;
|
|
162
155
|
readonly archivist?: string | undefined;
|
|
163
156
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
164
157
|
readonly name?: string | undefined;
|
|
@@ -175,7 +168,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
175
168
|
readonly storeQueries?: boolean | undefined;
|
|
176
169
|
readonly timestamp?: boolean | undefined;
|
|
177
170
|
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
178
|
-
accountDerivationPath?: string | undefined;
|
|
179
171
|
readonly archivist?: string | undefined;
|
|
180
172
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
181
173
|
readonly name?: string | undefined;
|
|
@@ -207,7 +199,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
207
199
|
}, "schema"> & {
|
|
208
200
|
schema: "network.xyo.boundwitness";
|
|
209
201
|
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
210
|
-
accountDerivationPath?: string | undefined;
|
|
211
202
|
readonly archivist?: string | undefined;
|
|
212
203
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
213
204
|
readonly name?: string | undefined;
|
|
@@ -224,7 +215,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
224
215
|
readonly storeQueries?: boolean | undefined;
|
|
225
216
|
readonly timestamp?: boolean | undefined;
|
|
226
217
|
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
227
|
-
accountDerivationPath?: string | undefined;
|
|
228
218
|
readonly archivist?: string | undefined;
|
|
229
219
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
230
220
|
readonly name?: string | undefined;
|
|
@@ -258,7 +248,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
258
248
|
resolve<T_2 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
259
249
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
260
250
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
261
|
-
accountDerivationPath?: string | undefined;
|
|
262
251
|
readonly archivist?: string | undefined;
|
|
263
252
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
264
253
|
readonly name?: string | undefined;
|
|
@@ -275,7 +264,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
275
264
|
readonly storeQueries?: boolean | undefined;
|
|
276
265
|
readonly timestamp?: boolean | undefined;
|
|
277
266
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
278
|
-
accountDerivationPath?: string | undefined;
|
|
279
267
|
readonly archivist?: string | undefined;
|
|
280
268
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
281
269
|
readonly name?: string | undefined;
|
|
@@ -295,11 +283,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
295
283
|
schema: string;
|
|
296
284
|
};
|
|
297
285
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
298
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
299
286
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
300
287
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
301
288
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
302
|
-
accountDerivationPath?: string | undefined;
|
|
303
289
|
readonly archivist?: string | undefined;
|
|
304
290
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
305
291
|
readonly name?: string | undefined;
|
|
@@ -316,7 +302,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
316
302
|
readonly storeQueries?: boolean | undefined;
|
|
317
303
|
readonly timestamp?: boolean | undefined;
|
|
318
304
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
319
|
-
accountDerivationPath?: string | undefined;
|
|
320
305
|
readonly archivist?: string | undefined;
|
|
321
306
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
322
307
|
readonly name?: string | undefined;
|
|
@@ -336,12 +321,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
336
321
|
schema: string;
|
|
337
322
|
};
|
|
338
323
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
339
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
340
324
|
}, 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[]>;
|
|
341
325
|
resolve<T_3 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
342
326
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
343
327
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
344
|
-
accountDerivationPath?: string | undefined;
|
|
345
328
|
readonly archivist?: string | undefined;
|
|
346
329
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
347
330
|
readonly name?: string | undefined;
|
|
@@ -358,7 +341,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
358
341
|
readonly storeQueries?: boolean | undefined;
|
|
359
342
|
readonly timestamp?: boolean | undefined;
|
|
360
343
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
361
|
-
accountDerivationPath?: string | undefined;
|
|
362
344
|
readonly archivist?: string | undefined;
|
|
363
345
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
364
346
|
readonly name?: string | undefined;
|
|
@@ -378,11 +360,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
378
360
|
schema: string;
|
|
379
361
|
};
|
|
380
362
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
381
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
382
363
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
383
364
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
384
365
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
385
|
-
accountDerivationPath?: string | undefined;
|
|
386
366
|
readonly archivist?: string | undefined;
|
|
387
367
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
388
368
|
readonly name?: string | undefined;
|
|
@@ -399,7 +379,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
399
379
|
readonly storeQueries?: boolean | undefined;
|
|
400
380
|
readonly timestamp?: boolean | undefined;
|
|
401
381
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
402
|
-
accountDerivationPath?: string | undefined;
|
|
403
382
|
readonly archivist?: string | undefined;
|
|
404
383
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
405
384
|
readonly name?: string | undefined;
|
|
@@ -419,12 +398,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
419
398
|
schema: string;
|
|
420
399
|
};
|
|
421
400
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
422
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
423
401
|
}, 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>;
|
|
424
402
|
resolve<T_4 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
425
403
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
426
404
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
427
|
-
accountDerivationPath?: string | undefined;
|
|
428
405
|
readonly archivist?: string | undefined;
|
|
429
406
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
430
407
|
readonly name?: string | undefined;
|
|
@@ -441,7 +418,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
441
418
|
readonly storeQueries?: boolean | undefined;
|
|
442
419
|
readonly timestamp?: boolean | undefined;
|
|
443
420
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
444
|
-
accountDerivationPath?: string | undefined;
|
|
445
421
|
readonly archivist?: string | undefined;
|
|
446
422
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
447
423
|
readonly name?: string | undefined;
|
|
@@ -461,11 +437,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
461
437
|
schema: string;
|
|
462
438
|
};
|
|
463
439
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
464
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
465
440
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
466
441
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
467
442
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
468
|
-
accountDerivationPath?: string | undefined;
|
|
469
443
|
readonly archivist?: string | undefined;
|
|
470
444
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
471
445
|
readonly name?: string | undefined;
|
|
@@ -482,7 +456,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
482
456
|
readonly storeQueries?: boolean | undefined;
|
|
483
457
|
readonly timestamp?: boolean | undefined;
|
|
484
458
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
485
|
-
accountDerivationPath?: string | undefined;
|
|
486
459
|
readonly archivist?: string | undefined;
|
|
487
460
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
488
461
|
readonly name?: string | undefined;
|
|
@@ -502,7 +475,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
502
475
|
schema: string;
|
|
503
476
|
};
|
|
504
477
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
505
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
506
478
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddressOrFilter?: string | import("@xyo-network/module-model").ModuleFilter<T_4> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_4> | undefined): import("@xylabs/promise").Promisable<T_4 | T_4[] | undefined>;
|
|
507
479
|
describe: () => Promise<import("@xyo-network/module-model").ModuleDescription>;
|
|
508
480
|
discover: () => import("@xylabs/promise").Promisable<({
|
|
@@ -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"}
|
|
@@ -10,7 +10,6 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
10
10
|
export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/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
|
-
accountDerivationPath?: string | undefined;
|
|
14
13
|
readonly archivist?: string | undefined;
|
|
15
14
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
16
15
|
readonly name?: string | undefined;
|
|
@@ -27,7 +26,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
27
26
|
readonly storeQueries?: boolean | undefined;
|
|
28
27
|
readonly timestamp?: boolean | undefined;
|
|
29
28
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
30
|
-
accountDerivationPath?: string | undefined;
|
|
31
29
|
readonly archivist?: string | undefined;
|
|
32
30
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
33
31
|
readonly name?: string | undefined;
|
|
@@ -56,11 +54,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
56
54
|
schema: string;
|
|
57
55
|
};
|
|
58
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
59
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
60
57
|
} = import("@xyo-network/object").BaseParamsFields & {
|
|
61
58
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
62
59
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
63
|
-
accountDerivationPath?: string | undefined;
|
|
64
60
|
readonly archivist?: string | undefined;
|
|
65
61
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
66
62
|
readonly name?: string | undefined;
|
|
@@ -77,7 +73,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
77
73
|
readonly storeQueries?: boolean | undefined;
|
|
78
74
|
readonly timestamp?: boolean | undefined;
|
|
79
75
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
80
|
-
accountDerivationPath?: string | undefined;
|
|
81
76
|
readonly archivist?: string | undefined;
|
|
82
77
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
83
78
|
readonly name?: string | undefined;
|
|
@@ -106,7 +101,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
106
101
|
schema: string;
|
|
107
102
|
};
|
|
108
103
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
110
104
|
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
111
105
|
_lastState?: ModuleState<TState> | undefined;
|
|
112
106
|
/**
|
|
@@ -158,7 +152,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
158
152
|
}, "schema"> & {
|
|
159
153
|
schema: "network.xyo.boundwitness";
|
|
160
154
|
}, TConf extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
161
|
-
accountDerivationPath?: string | undefined;
|
|
162
155
|
readonly archivist?: string | undefined;
|
|
163
156
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
164
157
|
readonly name?: string | undefined;
|
|
@@ -175,7 +168,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
175
168
|
readonly storeQueries?: boolean | undefined;
|
|
176
169
|
readonly timestamp?: boolean | undefined;
|
|
177
170
|
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
178
|
-
accountDerivationPath?: string | undefined;
|
|
179
171
|
readonly archivist?: string | undefined;
|
|
180
172
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
181
173
|
readonly name?: string | undefined;
|
|
@@ -207,7 +199,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
207
199
|
}, "schema"> & {
|
|
208
200
|
schema: "network.xyo.boundwitness";
|
|
209
201
|
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
210
|
-
accountDerivationPath?: string | undefined;
|
|
211
202
|
readonly archivist?: string | undefined;
|
|
212
203
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
213
204
|
readonly name?: string | undefined;
|
|
@@ -224,7 +215,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
224
215
|
readonly storeQueries?: boolean | undefined;
|
|
225
216
|
readonly timestamp?: boolean | undefined;
|
|
226
217
|
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
227
|
-
accountDerivationPath?: string | undefined;
|
|
228
218
|
readonly archivist?: string | undefined;
|
|
229
219
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
230
220
|
readonly name?: string | undefined;
|
|
@@ -258,7 +248,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
258
248
|
resolve<T_2 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
259
249
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
260
250
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
261
|
-
accountDerivationPath?: string | undefined;
|
|
262
251
|
readonly archivist?: string | undefined;
|
|
263
252
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
264
253
|
readonly name?: string | undefined;
|
|
@@ -275,7 +264,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
275
264
|
readonly storeQueries?: boolean | undefined;
|
|
276
265
|
readonly timestamp?: boolean | undefined;
|
|
277
266
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
278
|
-
accountDerivationPath?: string | undefined;
|
|
279
267
|
readonly archivist?: string | undefined;
|
|
280
268
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
281
269
|
readonly name?: string | undefined;
|
|
@@ -295,11 +283,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
295
283
|
schema: string;
|
|
296
284
|
};
|
|
297
285
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
298
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
299
286
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
300
287
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
301
288
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
302
|
-
accountDerivationPath?: string | undefined;
|
|
303
289
|
readonly archivist?: string | undefined;
|
|
304
290
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
305
291
|
readonly name?: string | undefined;
|
|
@@ -316,7 +302,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
316
302
|
readonly storeQueries?: boolean | undefined;
|
|
317
303
|
readonly timestamp?: boolean | undefined;
|
|
318
304
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
319
|
-
accountDerivationPath?: string | undefined;
|
|
320
305
|
readonly archivist?: string | undefined;
|
|
321
306
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
322
307
|
readonly name?: string | undefined;
|
|
@@ -336,12 +321,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
336
321
|
schema: string;
|
|
337
322
|
};
|
|
338
323
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
339
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
340
324
|
}, 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[]>;
|
|
341
325
|
resolve<T_3 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
342
326
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
343
327
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
344
|
-
accountDerivationPath?: string | undefined;
|
|
345
328
|
readonly archivist?: string | undefined;
|
|
346
329
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
347
330
|
readonly name?: string | undefined;
|
|
@@ -358,7 +341,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
358
341
|
readonly storeQueries?: boolean | undefined;
|
|
359
342
|
readonly timestamp?: boolean | undefined;
|
|
360
343
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
361
|
-
accountDerivationPath?: string | undefined;
|
|
362
344
|
readonly archivist?: string | undefined;
|
|
363
345
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
364
346
|
readonly name?: string | undefined;
|
|
@@ -378,11 +360,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
378
360
|
schema: string;
|
|
379
361
|
};
|
|
380
362
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
381
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
382
363
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
383
364
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
384
365
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
385
|
-
accountDerivationPath?: string | undefined;
|
|
386
366
|
readonly archivist?: string | undefined;
|
|
387
367
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
388
368
|
readonly name?: string | undefined;
|
|
@@ -399,7 +379,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
399
379
|
readonly storeQueries?: boolean | undefined;
|
|
400
380
|
readonly timestamp?: boolean | undefined;
|
|
401
381
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
402
|
-
accountDerivationPath?: string | undefined;
|
|
403
382
|
readonly archivist?: string | undefined;
|
|
404
383
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
405
384
|
readonly name?: string | undefined;
|
|
@@ -419,12 +398,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
419
398
|
schema: string;
|
|
420
399
|
};
|
|
421
400
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
422
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
423
401
|
}, 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>;
|
|
424
402
|
resolve<T_4 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
425
403
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
426
404
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
427
|
-
accountDerivationPath?: string | undefined;
|
|
428
405
|
readonly archivist?: string | undefined;
|
|
429
406
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
430
407
|
readonly name?: string | undefined;
|
|
@@ -441,7 +418,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
441
418
|
readonly storeQueries?: boolean | undefined;
|
|
442
419
|
readonly timestamp?: boolean | undefined;
|
|
443
420
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
444
|
-
accountDerivationPath?: string | undefined;
|
|
445
421
|
readonly archivist?: string | undefined;
|
|
446
422
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
447
423
|
readonly name?: string | undefined;
|
|
@@ -461,11 +437,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
461
437
|
schema: string;
|
|
462
438
|
};
|
|
463
439
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
464
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
465
440
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
466
441
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
467
442
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
468
|
-
accountDerivationPath?: string | undefined;
|
|
469
443
|
readonly archivist?: string | undefined;
|
|
470
444
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
471
445
|
readonly name?: string | undefined;
|
|
@@ -482,7 +456,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
482
456
|
readonly storeQueries?: boolean | undefined;
|
|
483
457
|
readonly timestamp?: boolean | undefined;
|
|
484
458
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
485
|
-
accountDerivationPath?: string | undefined;
|
|
486
459
|
readonly archivist?: string | undefined;
|
|
487
460
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
488
461
|
readonly name?: string | undefined;
|
|
@@ -502,7 +475,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
502
475
|
schema: string;
|
|
503
476
|
};
|
|
504
477
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
505
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
506
478
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddressOrFilter?: string | import("@xyo-network/module-model").ModuleFilter<T_4> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_4> | undefined): import("@xylabs/promise").Promisable<T_4 | T_4[] | undefined>;
|
|
507
479
|
describe: () => Promise<import("@xyo-network/module-model").ModuleDescription>;
|
|
508
480
|
discover: () => import("@xylabs/promise").Promisable<({
|
|
@@ -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"}
|
|
@@ -10,7 +10,6 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
10
10
|
export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/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
|
-
accountDerivationPath?: string | undefined;
|
|
14
13
|
readonly archivist?: string | undefined;
|
|
15
14
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
16
15
|
readonly name?: string | undefined;
|
|
@@ -27,7 +26,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
27
26
|
readonly storeQueries?: boolean | undefined;
|
|
28
27
|
readonly timestamp?: boolean | undefined;
|
|
29
28
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
30
|
-
accountDerivationPath?: string | undefined;
|
|
31
29
|
readonly archivist?: string | undefined;
|
|
32
30
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
33
31
|
readonly name?: string | undefined;
|
|
@@ -56,11 +54,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
56
54
|
schema: string;
|
|
57
55
|
};
|
|
58
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
59
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
60
57
|
} = import("@xyo-network/object").BaseParamsFields & {
|
|
61
58
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
62
59
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
63
|
-
accountDerivationPath?: string | undefined;
|
|
64
60
|
readonly archivist?: string | undefined;
|
|
65
61
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
66
62
|
readonly name?: string | undefined;
|
|
@@ -77,7 +73,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
77
73
|
readonly storeQueries?: boolean | undefined;
|
|
78
74
|
readonly timestamp?: boolean | undefined;
|
|
79
75
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
80
|
-
accountDerivationPath?: string | undefined;
|
|
81
76
|
readonly archivist?: string | undefined;
|
|
82
77
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
83
78
|
readonly name?: string | undefined;
|
|
@@ -106,7 +101,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
106
101
|
schema: string;
|
|
107
102
|
};
|
|
108
103
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
110
104
|
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
111
105
|
_lastState?: ModuleState<TState> | undefined;
|
|
112
106
|
/**
|
|
@@ -158,7 +152,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
158
152
|
}, "schema"> & {
|
|
159
153
|
schema: "network.xyo.boundwitness";
|
|
160
154
|
}, TConf extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
161
|
-
accountDerivationPath?: string | undefined;
|
|
162
155
|
readonly archivist?: string | undefined;
|
|
163
156
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
164
157
|
readonly name?: string | undefined;
|
|
@@ -175,7 +168,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
175
168
|
readonly storeQueries?: boolean | undefined;
|
|
176
169
|
readonly timestamp?: boolean | undefined;
|
|
177
170
|
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
178
|
-
accountDerivationPath?: string | undefined;
|
|
179
171
|
readonly archivist?: string | undefined;
|
|
180
172
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
181
173
|
readonly name?: string | undefined;
|
|
@@ -207,7 +199,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
207
199
|
}, "schema"> & {
|
|
208
200
|
schema: "network.xyo.boundwitness";
|
|
209
201
|
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
210
|
-
accountDerivationPath?: string | undefined;
|
|
211
202
|
readonly archivist?: string | undefined;
|
|
212
203
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
213
204
|
readonly name?: string | undefined;
|
|
@@ -224,7 +215,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
224
215
|
readonly storeQueries?: boolean | undefined;
|
|
225
216
|
readonly timestamp?: boolean | undefined;
|
|
226
217
|
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
227
|
-
accountDerivationPath?: string | undefined;
|
|
228
218
|
readonly archivist?: string | undefined;
|
|
229
219
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
230
220
|
readonly name?: string | undefined;
|
|
@@ -258,7 +248,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
258
248
|
resolve<T_2 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
259
249
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
260
250
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
261
|
-
accountDerivationPath?: string | undefined;
|
|
262
251
|
readonly archivist?: string | undefined;
|
|
263
252
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
264
253
|
readonly name?: string | undefined;
|
|
@@ -275,7 +264,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
275
264
|
readonly storeQueries?: boolean | undefined;
|
|
276
265
|
readonly timestamp?: boolean | undefined;
|
|
277
266
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
278
|
-
accountDerivationPath?: string | undefined;
|
|
279
267
|
readonly archivist?: string | undefined;
|
|
280
268
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
281
269
|
readonly name?: string | undefined;
|
|
@@ -295,11 +283,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
295
283
|
schema: string;
|
|
296
284
|
};
|
|
297
285
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
298
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
299
286
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
300
287
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
301
288
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
302
|
-
accountDerivationPath?: string | undefined;
|
|
303
289
|
readonly archivist?: string | undefined;
|
|
304
290
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
305
291
|
readonly name?: string | undefined;
|
|
@@ -316,7 +302,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
316
302
|
readonly storeQueries?: boolean | undefined;
|
|
317
303
|
readonly timestamp?: boolean | undefined;
|
|
318
304
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
319
|
-
accountDerivationPath?: string | undefined;
|
|
320
305
|
readonly archivist?: string | undefined;
|
|
321
306
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
322
307
|
readonly name?: string | undefined;
|
|
@@ -336,12 +321,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
336
321
|
schema: string;
|
|
337
322
|
};
|
|
338
323
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
339
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
340
324
|
}, 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[]>;
|
|
341
325
|
resolve<T_3 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
342
326
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
343
327
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
344
|
-
accountDerivationPath?: string | undefined;
|
|
345
328
|
readonly archivist?: string | undefined;
|
|
346
329
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
347
330
|
readonly name?: string | undefined;
|
|
@@ -358,7 +341,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
358
341
|
readonly storeQueries?: boolean | undefined;
|
|
359
342
|
readonly timestamp?: boolean | undefined;
|
|
360
343
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
361
|
-
accountDerivationPath?: string | undefined;
|
|
362
344
|
readonly archivist?: string | undefined;
|
|
363
345
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
364
346
|
readonly name?: string | undefined;
|
|
@@ -378,11 +360,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
378
360
|
schema: string;
|
|
379
361
|
};
|
|
380
362
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
381
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
382
363
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
383
364
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
384
365
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
385
|
-
accountDerivationPath?: string | undefined;
|
|
386
366
|
readonly archivist?: string | undefined;
|
|
387
367
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
388
368
|
readonly name?: string | undefined;
|
|
@@ -399,7 +379,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
399
379
|
readonly storeQueries?: boolean | undefined;
|
|
400
380
|
readonly timestamp?: boolean | undefined;
|
|
401
381
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
402
|
-
accountDerivationPath?: string | undefined;
|
|
403
382
|
readonly archivist?: string | undefined;
|
|
404
383
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
405
384
|
readonly name?: string | undefined;
|
|
@@ -419,12 +398,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
419
398
|
schema: string;
|
|
420
399
|
};
|
|
421
400
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
422
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
423
401
|
}, 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>;
|
|
424
402
|
resolve<T_4 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
425
403
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
426
404
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
427
|
-
accountDerivationPath?: string | undefined;
|
|
428
405
|
readonly archivist?: string | undefined;
|
|
429
406
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
430
407
|
readonly name?: string | undefined;
|
|
@@ -441,7 +418,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
441
418
|
readonly storeQueries?: boolean | undefined;
|
|
442
419
|
readonly timestamp?: boolean | undefined;
|
|
443
420
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
444
|
-
accountDerivationPath?: string | undefined;
|
|
445
421
|
readonly archivist?: string | undefined;
|
|
446
422
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
447
423
|
readonly name?: string | undefined;
|
|
@@ -461,11 +437,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
461
437
|
schema: string;
|
|
462
438
|
};
|
|
463
439
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
464
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
465
440
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
466
441
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
467
442
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
468
|
-
accountDerivationPath?: string | undefined;
|
|
469
443
|
readonly archivist?: string | undefined;
|
|
470
444
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
471
445
|
readonly name?: string | undefined;
|
|
@@ -482,7 +456,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
482
456
|
readonly storeQueries?: boolean | undefined;
|
|
483
457
|
readonly timestamp?: boolean | undefined;
|
|
484
458
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
485
|
-
accountDerivationPath?: string | undefined;
|
|
486
459
|
readonly archivist?: string | undefined;
|
|
487
460
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
488
461
|
readonly name?: string | undefined;
|
|
@@ -502,7 +475,6 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
502
475
|
schema: string;
|
|
503
476
|
};
|
|
504
477
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
505
|
-
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
506
478
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddressOrFilter?: string | import("@xyo-network/module-model").ModuleFilter<T_4> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_4> | undefined): import("@xylabs/promise").Promisable<T_4 | T_4[] | undefined>;
|
|
507
479
|
describe: () => Promise<import("@xyo-network/module-model").ModuleDescription>;
|
|
508
480
|
discover: () => import("@xylabs/promise").Promisable<({
|
|
@@ -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"}
|