@xyo-network/diviner-stateful 2.84.15 → 2.84.18
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 +90 -740
- package/dist/browser/DivinerMixin.d.cts.map +1 -1
- package/dist/browser/DivinerMixin.d.mts +90 -740
- package/dist/browser/DivinerMixin.d.mts.map +1 -1
- package/dist/browser/DivinerMixin.d.ts +90 -740
- package/dist/browser/DivinerMixin.d.ts.map +1 -1
- package/dist/node/DivinerMixin.d.cts +90 -740
- package/dist/node/DivinerMixin.d.cts.map +1 -1
- package/dist/node/DivinerMixin.d.mts +90 -740
- package/dist/node/DivinerMixin.d.mts.map +1 -1
- package/dist/node/DivinerMixin.d.ts +90 -740
- package/dist/node/DivinerMixin.d.ts.map +1 -1
- package/package.json +18 -18
|
@@ -9,41 +9,15 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
9
9
|
*/
|
|
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
|
-
config:
|
|
12
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
13
13
|
accountDerivationPath?: string | undefined;
|
|
14
|
-
readonly archivist?:
|
|
14
|
+
readonly archivist?: string | undefined;
|
|
15
15
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
16
16
|
readonly name?: string | undefined;
|
|
17
17
|
readonly paging?: Record<string, {
|
|
18
18
|
size?: number | undefined;
|
|
19
19
|
}> | undefined;
|
|
20
|
-
readonly security?: {
|
|
21
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
22
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
23
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
24
|
-
} | undefined;
|
|
25
|
-
readonly sign?: boolean | undefined;
|
|
26
|
-
readonly storeQueries?: boolean | undefined;
|
|
27
|
-
readonly timestamp?: boolean | undefined;
|
|
28
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
29
20
|
schema: "network.xyo.diviner.stateful.config";
|
|
30
|
-
} & {
|
|
31
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
32
|
-
stateStore: {
|
|
33
|
-
archivist: string;
|
|
34
|
-
boundWitnessDiviner: string;
|
|
35
|
-
payloadDiviner: string;
|
|
36
|
-
};
|
|
37
|
-
}, "schema"> & {
|
|
38
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
39
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
40
|
-
accountDerivationPath?: string | undefined;
|
|
41
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
42
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
43
|
-
readonly name?: string | undefined;
|
|
44
|
-
readonly paging?: Record<string, {
|
|
45
|
-
size?: number | undefined;
|
|
46
|
-
}> | undefined;
|
|
47
21
|
readonly security?: {
|
|
48
22
|
readonly allowAnonymous?: boolean | undefined;
|
|
49
23
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -52,52 +26,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
52
26
|
readonly sign?: boolean | undefined;
|
|
53
27
|
readonly storeQueries?: boolean | undefined;
|
|
54
28
|
readonly timestamp?: boolean | undefined;
|
|
55
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
56
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
57
|
-
} & {
|
|
58
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
59
|
-
stateStore: {
|
|
60
|
-
archivist: string;
|
|
61
|
-
boundWitnessDiviner: string;
|
|
62
|
-
payloadDiviner: string;
|
|
63
|
-
};
|
|
64
|
-
}, "schema"> & {
|
|
65
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
66
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
29
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
67
30
|
accountDerivationPath?: string | undefined;
|
|
68
|
-
readonly archivist?:
|
|
31
|
+
readonly archivist?: string | undefined;
|
|
69
32
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
70
33
|
readonly name?: string | undefined;
|
|
71
34
|
readonly paging?: Record<string, {
|
|
72
35
|
size?: number | undefined;
|
|
73
36
|
}> | undefined;
|
|
74
|
-
readonly security?: {
|
|
75
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
78
|
-
} | undefined;
|
|
79
|
-
readonly sign?: boolean | undefined;
|
|
80
|
-
readonly storeQueries?: boolean | undefined;
|
|
81
|
-
readonly timestamp?: boolean | undefined;
|
|
82
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
83
37
|
schema: "network.xyo.diviner.stateful.config";
|
|
84
|
-
} & {
|
|
85
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
86
|
-
stateStore: {
|
|
87
|
-
archivist: string;
|
|
88
|
-
boundWitnessDiviner: string;
|
|
89
|
-
payloadDiviner: string;
|
|
90
|
-
};
|
|
91
|
-
}, "schema"> & {
|
|
92
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
93
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
94
|
-
accountDerivationPath?: string | undefined;
|
|
95
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
96
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
97
|
-
readonly name?: string | undefined;
|
|
98
|
-
readonly paging?: Record<string, {
|
|
99
|
-
size?: number | undefined;
|
|
100
|
-
}> | undefined;
|
|
101
38
|
readonly security?: {
|
|
102
39
|
readonly allowAnonymous?: boolean | undefined;
|
|
103
40
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -106,7 +43,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
106
43
|
readonly sign?: boolean | undefined;
|
|
107
44
|
readonly storeQueries?: boolean | undefined;
|
|
108
45
|
readonly timestamp?: boolean | undefined;
|
|
109
|
-
} &
|
|
46
|
+
} & {
|
|
110
47
|
schema: "network.xyo.diviner.stateful.config";
|
|
111
48
|
} & {
|
|
112
49
|
schema: "network.xyo.diviner.stateful.config";
|
|
@@ -116,47 +53,21 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
116
53
|
payloadDiviner: string;
|
|
117
54
|
};
|
|
118
55
|
}, "schema"> & {
|
|
119
|
-
schema:
|
|
120
|
-
}
|
|
56
|
+
schema: string;
|
|
57
|
+
};
|
|
121
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
122
59
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
123
60
|
} = import("@xyo-network/object").BaseParamsFields & {
|
|
124
61
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
125
|
-
config:
|
|
62
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
126
63
|
accountDerivationPath?: string | undefined;
|
|
127
|
-
readonly archivist?:
|
|
64
|
+
readonly archivist?: string | undefined;
|
|
128
65
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
129
66
|
readonly name?: string | undefined;
|
|
130
67
|
readonly paging?: Record<string, {
|
|
131
68
|
size?: number | undefined;
|
|
132
69
|
}> | undefined;
|
|
133
|
-
readonly security?: {
|
|
134
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
135
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
136
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
137
|
-
} | undefined;
|
|
138
|
-
readonly sign?: boolean | undefined;
|
|
139
|
-
readonly storeQueries?: boolean | undefined;
|
|
140
|
-
readonly timestamp?: boolean | undefined;
|
|
141
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
142
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
143
|
-
} & {
|
|
144
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
145
|
-
stateStore: {
|
|
146
|
-
archivist: string;
|
|
147
|
-
boundWitnessDiviner: string;
|
|
148
|
-
payloadDiviner: string;
|
|
149
|
-
};
|
|
150
|
-
}, "schema"> & {
|
|
151
70
|
schema: "network.xyo.diviner.stateful.config";
|
|
152
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
153
|
-
accountDerivationPath?: string | undefined;
|
|
154
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
155
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
156
|
-
readonly name?: string | undefined;
|
|
157
|
-
readonly paging?: Record<string, {
|
|
158
|
-
size?: number | undefined;
|
|
159
|
-
}> | undefined;
|
|
160
71
|
readonly security?: {
|
|
161
72
|
readonly allowAnonymous?: boolean | undefined;
|
|
162
73
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -165,52 +76,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
165
76
|
readonly sign?: boolean | undefined;
|
|
166
77
|
readonly storeQueries?: boolean | undefined;
|
|
167
78
|
readonly timestamp?: boolean | undefined;
|
|
168
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
169
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
170
|
-
} & {
|
|
171
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
172
|
-
stateStore: {
|
|
173
|
-
archivist: string;
|
|
174
|
-
boundWitnessDiviner: string;
|
|
175
|
-
payloadDiviner: string;
|
|
176
|
-
};
|
|
177
|
-
}, "schema"> & {
|
|
178
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
179
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
79
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
180
80
|
accountDerivationPath?: string | undefined;
|
|
181
|
-
readonly archivist?:
|
|
81
|
+
readonly archivist?: string | undefined;
|
|
182
82
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
183
83
|
readonly name?: string | undefined;
|
|
184
84
|
readonly paging?: Record<string, {
|
|
185
85
|
size?: number | undefined;
|
|
186
86
|
}> | undefined;
|
|
187
|
-
readonly security?: {
|
|
188
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
189
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
190
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
191
|
-
} | undefined;
|
|
192
|
-
readonly sign?: boolean | undefined;
|
|
193
|
-
readonly storeQueries?: boolean | undefined;
|
|
194
|
-
readonly timestamp?: boolean | undefined;
|
|
195
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
196
87
|
schema: "network.xyo.diviner.stateful.config";
|
|
197
|
-
} & {
|
|
198
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
199
|
-
stateStore: {
|
|
200
|
-
archivist: string;
|
|
201
|
-
boundWitnessDiviner: string;
|
|
202
|
-
payloadDiviner: string;
|
|
203
|
-
};
|
|
204
|
-
}, "schema"> & {
|
|
205
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
206
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
207
|
-
accountDerivationPath?: string | undefined;
|
|
208
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
209
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
210
|
-
readonly name?: string | undefined;
|
|
211
|
-
readonly paging?: Record<string, {
|
|
212
|
-
size?: number | undefined;
|
|
213
|
-
}> | undefined;
|
|
214
88
|
readonly security?: {
|
|
215
89
|
readonly allowAnonymous?: boolean | undefined;
|
|
216
90
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -219,7 +93,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
219
93
|
readonly sign?: boolean | undefined;
|
|
220
94
|
readonly storeQueries?: boolean | undefined;
|
|
221
95
|
readonly timestamp?: boolean | undefined;
|
|
222
|
-
} &
|
|
96
|
+
} & {
|
|
223
97
|
schema: "network.xyo.diviner.stateful.config";
|
|
224
98
|
} & {
|
|
225
99
|
schema: "network.xyo.diviner.stateful.config";
|
|
@@ -229,8 +103,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
229
103
|
payloadDiviner: string;
|
|
230
104
|
};
|
|
231
105
|
}, "schema"> & {
|
|
232
|
-
schema:
|
|
233
|
-
}
|
|
106
|
+
schema: string;
|
|
107
|
+
};
|
|
234
108
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
235
109
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
236
110
|
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
@@ -271,293 +145,27 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
271
145
|
params: TParams;
|
|
272
146
|
previousHash: () => import("@xylabs/promise").Promisable<string | undefined>;
|
|
273
147
|
queries: string[];
|
|
274
|
-
query: <T extends
|
|
275
|
-
query: string;
|
|
276
|
-
resultSet?: string | undefined;
|
|
277
|
-
schema: "network.xyo.boundwitness";
|
|
278
|
-
}, "schema"> & {
|
|
279
|
-
schema: "network.xyo.boundwitness";
|
|
280
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
281
|
-
query: string;
|
|
282
|
-
resultSet?: string | undefined;
|
|
283
|
-
schema: "network.xyo.boundwitness";
|
|
284
|
-
}, "schema"> & {
|
|
285
|
-
schema: "network.xyo.boundwitness";
|
|
286
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
287
|
-
query: string;
|
|
288
|
-
resultSet?: string | undefined;
|
|
289
|
-
schema: "network.xyo.boundwitness";
|
|
290
|
-
}, "schema"> & {
|
|
291
|
-
schema: "network.xyo.boundwitness";
|
|
292
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
293
|
-
query: string;
|
|
294
|
-
resultSet?: string | undefined;
|
|
295
|
-
schema: "network.xyo.boundwitness";
|
|
296
|
-
}, "schema"> & {
|
|
297
|
-
schema: "network.xyo.boundwitness";
|
|
298
|
-
}) = (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
299
|
-
query: string;
|
|
300
|
-
resultSet?: string | undefined;
|
|
301
|
-
schema: "network.xyo.boundwitness";
|
|
302
|
-
}, "schema"> & {
|
|
303
|
-
schema: "network.xyo.boundwitness";
|
|
304
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
148
|
+
query: <T extends import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
305
149
|
query: string;
|
|
306
150
|
resultSet?: string | undefined;
|
|
307
151
|
schema: "network.xyo.boundwitness";
|
|
308
152
|
}, "schema"> & {
|
|
309
153
|
schema: "network.xyo.boundwitness";
|
|
310
|
-
}
|
|
154
|
+
} = import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
311
155
|
query: string;
|
|
312
156
|
resultSet?: string | undefined;
|
|
313
|
-
schema: "network.xyo.boundwitness";
|
|
314
|
-
}, "schema"> & {
|
|
315
|
-
schema: "network.xyo.boundwitness";
|
|
316
|
-
}
|
|
317
|
-
query: string;
|
|
318
|
-
resultSet?: string | undefined;
|
|
319
|
-
schema: "network.xyo.boundwitness";
|
|
320
|
-
}, "schema"> & {
|
|
321
|
-
schema: "network.xyo.boundwitness";
|
|
322
|
-
}), TConf extends (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
323
|
-
accountDerivationPath?: string | undefined;
|
|
324
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
325
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
326
|
-
readonly name?: string | undefined;
|
|
327
|
-
readonly paging?: Record<string, {
|
|
328
|
-
size?: number | undefined;
|
|
329
|
-
}> | undefined;
|
|
330
|
-
readonly security?: {
|
|
331
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
332
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
333
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
334
|
-
} | undefined;
|
|
335
|
-
readonly sign?: boolean | undefined;
|
|
336
|
-
readonly storeQueries?: boolean | undefined;
|
|
337
|
-
readonly timestamp?: boolean | undefined;
|
|
338
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
339
|
-
schema: "network.xyo.module.config";
|
|
340
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
341
|
-
accountDerivationPath?: string | undefined;
|
|
342
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
343
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
344
|
-
readonly name?: string | undefined;
|
|
345
|
-
readonly paging?: Record<string, {
|
|
346
|
-
size?: number | undefined;
|
|
347
|
-
}> | undefined;
|
|
348
|
-
readonly security?: {
|
|
349
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
350
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
351
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
352
|
-
} | undefined;
|
|
353
|
-
readonly sign?: boolean | undefined;
|
|
354
|
-
readonly storeQueries?: boolean | undefined;
|
|
355
|
-
readonly timestamp?: boolean | undefined;
|
|
356
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
357
|
-
schema: "network.xyo.module.config";
|
|
358
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
359
|
-
accountDerivationPath?: string | undefined;
|
|
360
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
361
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
362
|
-
readonly name?: string | undefined;
|
|
363
|
-
readonly paging?: Record<string, {
|
|
364
|
-
size?: number | undefined;
|
|
365
|
-
}> | undefined;
|
|
366
|
-
readonly security?: {
|
|
367
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
368
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
369
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
370
|
-
} | undefined;
|
|
371
|
-
readonly sign?: boolean | undefined;
|
|
372
|
-
readonly storeQueries?: boolean | undefined;
|
|
373
|
-
readonly timestamp?: boolean | undefined;
|
|
374
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
375
|
-
schema: "network.xyo.module.config";
|
|
376
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
377
|
-
accountDerivationPath?: string | undefined;
|
|
378
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
379
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
380
|
-
readonly name?: string | undefined;
|
|
381
|
-
readonly paging?: Record<string, {
|
|
382
|
-
size?: number | undefined;
|
|
383
|
-
}> | undefined;
|
|
384
|
-
readonly security?: {
|
|
385
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
386
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
387
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
388
|
-
} | undefined;
|
|
389
|
-
readonly sign?: boolean | undefined;
|
|
390
|
-
readonly storeQueries?: boolean | undefined;
|
|
391
|
-
readonly timestamp?: boolean | undefined;
|
|
392
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
393
|
-
schema: "network.xyo.module.config";
|
|
394
|
-
}) = (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
395
|
-
accountDerivationPath?: string | undefined;
|
|
396
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
397
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
398
|
-
readonly name?: string | undefined;
|
|
399
|
-
readonly paging?: Record<string, {
|
|
400
|
-
size?: number | undefined;
|
|
401
|
-
}> | undefined;
|
|
402
|
-
readonly security?: {
|
|
403
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
404
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
405
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
406
|
-
} | undefined;
|
|
407
|
-
readonly sign?: boolean | undefined;
|
|
408
|
-
readonly storeQueries?: boolean | undefined;
|
|
409
|
-
readonly timestamp?: boolean | undefined;
|
|
410
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
411
|
-
schema: "network.xyo.module.config";
|
|
412
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
413
|
-
accountDerivationPath?: string | undefined;
|
|
414
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
415
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
416
|
-
readonly name?: string | undefined;
|
|
417
|
-
readonly paging?: Record<string, {
|
|
418
|
-
size?: number | undefined;
|
|
419
|
-
}> | undefined;
|
|
420
|
-
readonly security?: {
|
|
421
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
422
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
423
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
424
|
-
} | undefined;
|
|
425
|
-
readonly sign?: boolean | undefined;
|
|
426
|
-
readonly storeQueries?: boolean | undefined;
|
|
427
|
-
readonly timestamp?: boolean | undefined;
|
|
428
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
429
|
-
schema: "network.xyo.module.config";
|
|
430
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
431
|
-
accountDerivationPath?: string | undefined;
|
|
432
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
433
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
434
|
-
readonly name?: string | undefined;
|
|
435
|
-
readonly paging?: Record<string, {
|
|
436
|
-
size?: number | undefined;
|
|
437
|
-
}> | undefined;
|
|
438
|
-
readonly security?: {
|
|
439
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
440
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
441
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
442
|
-
} | undefined;
|
|
443
|
-
readonly sign?: boolean | undefined;
|
|
444
|
-
readonly storeQueries?: boolean | undefined;
|
|
445
|
-
readonly timestamp?: boolean | undefined;
|
|
446
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
447
|
-
schema: "network.xyo.module.config";
|
|
448
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
449
|
-
accountDerivationPath?: string | undefined;
|
|
450
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
451
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
452
|
-
readonly name?: string | undefined;
|
|
453
|
-
readonly paging?: Record<string, {
|
|
454
|
-
size?: number | undefined;
|
|
455
|
-
}> | undefined;
|
|
456
|
-
readonly security?: {
|
|
457
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
458
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
459
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
460
|
-
} | undefined;
|
|
461
|
-
readonly sign?: boolean | undefined;
|
|
462
|
-
readonly storeQueries?: boolean | undefined;
|
|
463
|
-
readonly timestamp?: boolean | undefined;
|
|
464
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
465
|
-
schema: "network.xyo.module.config";
|
|
466
|
-
})>(query: T, payloads?: ({
|
|
467
|
-
schema: string;
|
|
468
|
-
} & import("@xyo-network/payload-model").PayloadFields)[] | undefined, queryConfig?: TConf | undefined) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult>;
|
|
469
|
-
queryable: <T_1 extends (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
470
|
-
query: string;
|
|
471
|
-
resultSet?: string | undefined;
|
|
472
|
-
schema: "network.xyo.boundwitness";
|
|
473
|
-
}, "schema"> & {
|
|
474
|
-
schema: "network.xyo.boundwitness";
|
|
475
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
476
|
-
query: string;
|
|
477
|
-
resultSet?: string | undefined;
|
|
478
|
-
schema: "network.xyo.boundwitness";
|
|
479
|
-
}, "schema"> & {
|
|
480
|
-
schema: "network.xyo.boundwitness";
|
|
481
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
482
|
-
query: string;
|
|
483
|
-
resultSet?: string | undefined;
|
|
484
|
-
schema: "network.xyo.boundwitness";
|
|
485
|
-
}, "schema"> & {
|
|
486
|
-
schema: "network.xyo.boundwitness";
|
|
487
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
488
|
-
query: string;
|
|
489
|
-
resultSet?: string | undefined;
|
|
490
|
-
schema: "network.xyo.boundwitness";
|
|
491
|
-
}, "schema"> & {
|
|
492
|
-
schema: "network.xyo.boundwitness";
|
|
493
|
-
}) = (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
494
|
-
query: string;
|
|
495
|
-
resultSet?: string | undefined;
|
|
496
|
-
schema: "network.xyo.boundwitness";
|
|
497
|
-
}, "schema"> & {
|
|
498
|
-
schema: "network.xyo.boundwitness";
|
|
499
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
500
|
-
query: string;
|
|
501
|
-
resultSet?: string | undefined;
|
|
502
|
-
schema: "network.xyo.boundwitness";
|
|
503
|
-
}, "schema"> & {
|
|
504
|
-
schema: "network.xyo.boundwitness";
|
|
505
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
506
|
-
query: string;
|
|
507
|
-
resultSet?: string | undefined;
|
|
508
|
-
schema: "network.xyo.boundwitness";
|
|
509
|
-
}, "schema"> & {
|
|
510
|
-
schema: "network.xyo.boundwitness";
|
|
511
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
512
|
-
query: string;
|
|
513
|
-
resultSet?: string | undefined;
|
|
514
|
-
schema: "network.xyo.boundwitness";
|
|
515
|
-
}, "schema"> & {
|
|
516
|
-
schema: "network.xyo.boundwitness";
|
|
517
|
-
}), TConf_1 extends (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
518
|
-
accountDerivationPath?: string | undefined;
|
|
519
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
520
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
521
|
-
readonly name?: string | undefined;
|
|
522
|
-
readonly paging?: Record<string, {
|
|
523
|
-
size?: number | undefined;
|
|
524
|
-
}> | undefined;
|
|
525
|
-
readonly security?: {
|
|
526
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
527
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
528
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
529
|
-
} | undefined;
|
|
530
|
-
readonly sign?: boolean | undefined;
|
|
531
|
-
readonly storeQueries?: boolean | undefined;
|
|
532
|
-
readonly timestamp?: boolean | undefined;
|
|
533
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
534
|
-
schema: "network.xyo.module.config";
|
|
535
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
157
|
+
schema: "network.xyo.boundwitness";
|
|
158
|
+
}, "schema"> & {
|
|
159
|
+
schema: "network.xyo.boundwitness";
|
|
160
|
+
}, TConf extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
536
161
|
accountDerivationPath?: string | undefined;
|
|
537
|
-
readonly archivist?:
|
|
162
|
+
readonly archivist?: string | undefined;
|
|
538
163
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
539
164
|
readonly name?: string | undefined;
|
|
540
165
|
readonly paging?: Record<string, {
|
|
541
166
|
size?: number | undefined;
|
|
542
167
|
}> | undefined;
|
|
543
|
-
readonly security?: {
|
|
544
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
545
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
546
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
547
|
-
} | undefined;
|
|
548
|
-
readonly sign?: boolean | undefined;
|
|
549
|
-
readonly storeQueries?: boolean | undefined;
|
|
550
|
-
readonly timestamp?: boolean | undefined;
|
|
551
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
552
168
|
schema: "network.xyo.module.config";
|
|
553
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
554
|
-
accountDerivationPath?: string | undefined;
|
|
555
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
556
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
557
|
-
readonly name?: string | undefined;
|
|
558
|
-
readonly paging?: Record<string, {
|
|
559
|
-
size?: number | undefined;
|
|
560
|
-
}> | undefined;
|
|
561
169
|
readonly security?: {
|
|
562
170
|
readonly allowAnonymous?: boolean | undefined;
|
|
563
171
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -566,34 +174,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
566
174
|
readonly sign?: boolean | undefined;
|
|
567
175
|
readonly storeQueries?: boolean | undefined;
|
|
568
176
|
readonly timestamp?: boolean | undefined;
|
|
569
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
570
|
-
schema: "network.xyo.module.config";
|
|
571
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
177
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
572
178
|
accountDerivationPath?: string | undefined;
|
|
573
|
-
readonly archivist?:
|
|
179
|
+
readonly archivist?: string | undefined;
|
|
574
180
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
575
181
|
readonly name?: string | undefined;
|
|
576
182
|
readonly paging?: Record<string, {
|
|
577
183
|
size?: number | undefined;
|
|
578
184
|
}> | undefined;
|
|
579
|
-
readonly security?: {
|
|
580
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
581
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
582
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
583
|
-
} | undefined;
|
|
584
|
-
readonly sign?: boolean | undefined;
|
|
585
|
-
readonly storeQueries?: boolean | undefined;
|
|
586
|
-
readonly timestamp?: boolean | undefined;
|
|
587
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
588
185
|
schema: "network.xyo.module.config";
|
|
589
|
-
}) = (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
590
|
-
accountDerivationPath?: string | undefined;
|
|
591
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
592
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
593
|
-
readonly name?: string | undefined;
|
|
594
|
-
readonly paging?: Record<string, {
|
|
595
|
-
size?: number | undefined;
|
|
596
|
-
}> | undefined;
|
|
597
186
|
readonly security?: {
|
|
598
187
|
readonly allowAnonymous?: boolean | undefined;
|
|
599
188
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -602,34 +191,30 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
602
191
|
readonly sign?: boolean | undefined;
|
|
603
192
|
readonly storeQueries?: boolean | undefined;
|
|
604
193
|
readonly timestamp?: boolean | undefined;
|
|
605
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig
|
|
606
|
-
schema:
|
|
607
|
-
}) |
|
|
194
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig>(query: T, payloads?: ({
|
|
195
|
+
schema: string;
|
|
196
|
+
} & object)[] | undefined, queryConfig?: TConf | undefined) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult>;
|
|
197
|
+
queryable: <T_1 extends import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
198
|
+
query: string;
|
|
199
|
+
resultSet?: string | undefined;
|
|
200
|
+
schema: "network.xyo.boundwitness";
|
|
201
|
+
}, "schema"> & {
|
|
202
|
+
schema: "network.xyo.boundwitness";
|
|
203
|
+
} = import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
204
|
+
query: string;
|
|
205
|
+
resultSet?: string | undefined;
|
|
206
|
+
schema: "network.xyo.boundwitness";
|
|
207
|
+
}, "schema"> & {
|
|
208
|
+
schema: "network.xyo.boundwitness";
|
|
209
|
+
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
608
210
|
accountDerivationPath?: string | undefined;
|
|
609
|
-
readonly archivist?:
|
|
211
|
+
readonly archivist?: string | undefined;
|
|
610
212
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
611
213
|
readonly name?: string | undefined;
|
|
612
214
|
readonly paging?: Record<string, {
|
|
613
215
|
size?: number | undefined;
|
|
614
216
|
}> | undefined;
|
|
615
|
-
readonly security?: {
|
|
616
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
617
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
618
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
619
|
-
} | undefined;
|
|
620
|
-
readonly sign?: boolean | undefined;
|
|
621
|
-
readonly storeQueries?: boolean | undefined;
|
|
622
|
-
readonly timestamp?: boolean | undefined;
|
|
623
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
624
217
|
schema: "network.xyo.module.config";
|
|
625
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
626
|
-
accountDerivationPath?: string | undefined;
|
|
627
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
628
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
629
|
-
readonly name?: string | undefined;
|
|
630
|
-
readonly paging?: Record<string, {
|
|
631
|
-
size?: number | undefined;
|
|
632
|
-
}> | undefined;
|
|
633
218
|
readonly security?: {
|
|
634
219
|
readonly allowAnonymous?: boolean | undefined;
|
|
635
220
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -638,16 +223,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
638
223
|
readonly sign?: boolean | undefined;
|
|
639
224
|
readonly storeQueries?: boolean | undefined;
|
|
640
225
|
readonly timestamp?: boolean | undefined;
|
|
641
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
642
|
-
schema: "network.xyo.module.config";
|
|
643
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
226
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
644
227
|
accountDerivationPath?: string | undefined;
|
|
645
|
-
readonly archivist?:
|
|
228
|
+
readonly archivist?: string | undefined;
|
|
646
229
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
647
230
|
readonly name?: string | undefined;
|
|
648
231
|
readonly paging?: Record<string, {
|
|
649
232
|
size?: number | undefined;
|
|
650
233
|
}> | undefined;
|
|
234
|
+
schema: "network.xyo.module.config";
|
|
651
235
|
readonly security?: {
|
|
652
236
|
readonly allowAnonymous?: boolean | undefined;
|
|
653
237
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -656,11 +240,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
656
240
|
readonly sign?: boolean | undefined;
|
|
657
241
|
readonly storeQueries?: boolean | undefined;
|
|
658
242
|
readonly timestamp?: boolean | undefined;
|
|
659
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig
|
|
660
|
-
schema: "network.xyo.module.config";
|
|
661
|
-
})>(query: T_1, payloads?: ({
|
|
243
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig>(query: T_1, payloads?: ({
|
|
662
244
|
schema: string;
|
|
663
|
-
} &
|
|
245
|
+
} & object)[] | undefined, queryConfig?: TConf_1 | undefined) => import("@xylabs/promise").Promisable<boolean>;
|
|
664
246
|
start?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
665
247
|
stop?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
666
248
|
eventData: import("@xyo-network/module-model").ModuleEventData<object>;
|
|
@@ -675,32 +257,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
675
257
|
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;
|
|
676
258
|
resolve<T_2 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
677
259
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
678
|
-
config:
|
|
260
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
679
261
|
accountDerivationPath?: string | undefined;
|
|
680
|
-
readonly archivist?:
|
|
262
|
+
readonly archivist?: string | undefined;
|
|
681
263
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
682
264
|
readonly name?: string | undefined;
|
|
683
265
|
readonly paging?: Record<string, {
|
|
684
266
|
size?: number | undefined;
|
|
685
267
|
}> | undefined;
|
|
686
|
-
readonly security?: {
|
|
687
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
688
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
689
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
690
|
-
} | undefined;
|
|
691
|
-
readonly sign?: boolean | undefined;
|
|
692
|
-
readonly storeQueries?: boolean | undefined;
|
|
693
|
-
readonly timestamp?: boolean | undefined;
|
|
694
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
695
268
|
schema: "network.xyo.module.config";
|
|
696
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
697
|
-
accountDerivationPath?: string | undefined;
|
|
698
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
699
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
700
|
-
readonly name?: string | undefined;
|
|
701
|
-
readonly paging?: Record<string, {
|
|
702
|
-
size?: number | undefined;
|
|
703
|
-
}> | undefined;
|
|
704
269
|
readonly security?: {
|
|
705
270
|
readonly allowAnonymous?: boolean | undefined;
|
|
706
271
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -709,34 +274,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
709
274
|
readonly sign?: boolean | undefined;
|
|
710
275
|
readonly storeQueries?: boolean | undefined;
|
|
711
276
|
readonly timestamp?: boolean | undefined;
|
|
712
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
713
|
-
schema: "network.xyo.module.config";
|
|
714
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
277
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
715
278
|
accountDerivationPath?: string | undefined;
|
|
716
|
-
readonly archivist?:
|
|
279
|
+
readonly archivist?: string | undefined;
|
|
717
280
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
718
281
|
readonly name?: string | undefined;
|
|
719
282
|
readonly paging?: Record<string, {
|
|
720
283
|
size?: number | undefined;
|
|
721
284
|
}> | undefined;
|
|
722
|
-
readonly security?: {
|
|
723
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
724
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
725
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
726
|
-
} | undefined;
|
|
727
|
-
readonly sign?: boolean | undefined;
|
|
728
|
-
readonly storeQueries?: boolean | undefined;
|
|
729
|
-
readonly timestamp?: boolean | undefined;
|
|
730
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
731
285
|
schema: "network.xyo.module.config";
|
|
732
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
733
|
-
accountDerivationPath?: string | undefined;
|
|
734
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
735
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
736
|
-
readonly name?: string | undefined;
|
|
737
|
-
readonly paging?: Record<string, {
|
|
738
|
-
size?: number | undefined;
|
|
739
|
-
}> | undefined;
|
|
740
286
|
readonly security?: {
|
|
741
287
|
readonly allowAnonymous?: boolean | undefined;
|
|
742
288
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -745,39 +291,22 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
745
291
|
readonly sign?: boolean | undefined;
|
|
746
292
|
readonly storeQueries?: boolean | undefined;
|
|
747
293
|
readonly timestamp?: boolean | undefined;
|
|
748
|
-
}
|
|
749
|
-
schema:
|
|
750
|
-
}
|
|
294
|
+
}, "schema"> & {
|
|
295
|
+
schema: string;
|
|
296
|
+
};
|
|
751
297
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
752
298
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
753
299
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
754
300
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
755
|
-
config:
|
|
301
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
756
302
|
accountDerivationPath?: string | undefined;
|
|
757
|
-
readonly archivist?:
|
|
303
|
+
readonly archivist?: string | undefined;
|
|
758
304
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
759
305
|
readonly name?: string | undefined;
|
|
760
306
|
readonly paging?: Record<string, {
|
|
761
307
|
size?: number | undefined;
|
|
762
308
|
}> | undefined;
|
|
763
|
-
readonly security?: {
|
|
764
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
765
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
766
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
767
|
-
} | undefined;
|
|
768
|
-
readonly sign?: boolean | undefined;
|
|
769
|
-
readonly storeQueries?: boolean | undefined;
|
|
770
|
-
readonly timestamp?: boolean | undefined;
|
|
771
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
772
309
|
schema: "network.xyo.module.config";
|
|
773
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
774
|
-
accountDerivationPath?: string | undefined;
|
|
775
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
776
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
777
|
-
readonly name?: string | undefined;
|
|
778
|
-
readonly paging?: Record<string, {
|
|
779
|
-
size?: number | undefined;
|
|
780
|
-
}> | undefined;
|
|
781
310
|
readonly security?: {
|
|
782
311
|
readonly allowAnonymous?: boolean | undefined;
|
|
783
312
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -786,34 +315,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
786
315
|
readonly sign?: boolean | undefined;
|
|
787
316
|
readonly storeQueries?: boolean | undefined;
|
|
788
317
|
readonly timestamp?: boolean | undefined;
|
|
789
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
790
|
-
schema: "network.xyo.module.config";
|
|
791
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
318
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
792
319
|
accountDerivationPath?: string | undefined;
|
|
793
|
-
readonly archivist?:
|
|
320
|
+
readonly archivist?: string | undefined;
|
|
794
321
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
795
322
|
readonly name?: string | undefined;
|
|
796
323
|
readonly paging?: Record<string, {
|
|
797
324
|
size?: number | undefined;
|
|
798
325
|
}> | undefined;
|
|
799
|
-
readonly security?: {
|
|
800
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
801
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
802
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
803
|
-
} | undefined;
|
|
804
|
-
readonly sign?: boolean | undefined;
|
|
805
|
-
readonly storeQueries?: boolean | undefined;
|
|
806
|
-
readonly timestamp?: boolean | undefined;
|
|
807
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
808
326
|
schema: "network.xyo.module.config";
|
|
809
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
810
|
-
accountDerivationPath?: string | undefined;
|
|
811
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
812
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
813
|
-
readonly name?: string | undefined;
|
|
814
|
-
readonly paging?: Record<string, {
|
|
815
|
-
size?: number | undefined;
|
|
816
|
-
}> | undefined;
|
|
817
327
|
readonly security?: {
|
|
818
328
|
readonly allowAnonymous?: boolean | undefined;
|
|
819
329
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -822,40 +332,23 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
822
332
|
readonly sign?: boolean | undefined;
|
|
823
333
|
readonly storeQueries?: boolean | undefined;
|
|
824
334
|
readonly timestamp?: boolean | undefined;
|
|
825
|
-
}
|
|
826
|
-
schema:
|
|
827
|
-
}
|
|
335
|
+
}, "schema"> & {
|
|
336
|
+
schema: string;
|
|
337
|
+
};
|
|
828
338
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
829
339
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
830
340
|
}, 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[]>;
|
|
831
341
|
resolve<T_3 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
832
342
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
833
|
-
config:
|
|
343
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
834
344
|
accountDerivationPath?: string | undefined;
|
|
835
|
-
readonly archivist?:
|
|
345
|
+
readonly archivist?: string | undefined;
|
|
836
346
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
837
347
|
readonly name?: string | undefined;
|
|
838
348
|
readonly paging?: Record<string, {
|
|
839
349
|
size?: number | undefined;
|
|
840
350
|
}> | undefined;
|
|
841
|
-
readonly security?: {
|
|
842
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
843
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
844
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
845
|
-
} | undefined;
|
|
846
|
-
readonly sign?: boolean | undefined;
|
|
847
|
-
readonly storeQueries?: boolean | undefined;
|
|
848
|
-
readonly timestamp?: boolean | undefined;
|
|
849
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
850
351
|
schema: "network.xyo.module.config";
|
|
851
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
852
|
-
accountDerivationPath?: string | undefined;
|
|
853
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
854
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
855
|
-
readonly name?: string | undefined;
|
|
856
|
-
readonly paging?: Record<string, {
|
|
857
|
-
size?: number | undefined;
|
|
858
|
-
}> | undefined;
|
|
859
352
|
readonly security?: {
|
|
860
353
|
readonly allowAnonymous?: boolean | undefined;
|
|
861
354
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -864,34 +357,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
864
357
|
readonly sign?: boolean | undefined;
|
|
865
358
|
readonly storeQueries?: boolean | undefined;
|
|
866
359
|
readonly timestamp?: boolean | undefined;
|
|
867
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
868
|
-
schema: "network.xyo.module.config";
|
|
869
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
360
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
870
361
|
accountDerivationPath?: string | undefined;
|
|
871
|
-
readonly archivist?:
|
|
362
|
+
readonly archivist?: string | undefined;
|
|
872
363
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
873
364
|
readonly name?: string | undefined;
|
|
874
365
|
readonly paging?: Record<string, {
|
|
875
366
|
size?: number | undefined;
|
|
876
367
|
}> | undefined;
|
|
877
|
-
readonly security?: {
|
|
878
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
879
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
880
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
881
|
-
} | undefined;
|
|
882
|
-
readonly sign?: boolean | undefined;
|
|
883
|
-
readonly storeQueries?: boolean | undefined;
|
|
884
|
-
readonly timestamp?: boolean | undefined;
|
|
885
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
886
368
|
schema: "network.xyo.module.config";
|
|
887
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
888
|
-
accountDerivationPath?: string | undefined;
|
|
889
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
890
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
891
|
-
readonly name?: string | undefined;
|
|
892
|
-
readonly paging?: Record<string, {
|
|
893
|
-
size?: number | undefined;
|
|
894
|
-
}> | undefined;
|
|
895
369
|
readonly security?: {
|
|
896
370
|
readonly allowAnonymous?: boolean | undefined;
|
|
897
371
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -900,39 +374,22 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
900
374
|
readonly sign?: boolean | undefined;
|
|
901
375
|
readonly storeQueries?: boolean | undefined;
|
|
902
376
|
readonly timestamp?: boolean | undefined;
|
|
903
|
-
}
|
|
904
|
-
schema:
|
|
905
|
-
}
|
|
377
|
+
}, "schema"> & {
|
|
378
|
+
schema: string;
|
|
379
|
+
};
|
|
906
380
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
907
381
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
908
382
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
909
383
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
910
|
-
config:
|
|
384
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
911
385
|
accountDerivationPath?: string | undefined;
|
|
912
|
-
readonly archivist?:
|
|
386
|
+
readonly archivist?: string | undefined;
|
|
913
387
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
914
388
|
readonly name?: string | undefined;
|
|
915
389
|
readonly paging?: Record<string, {
|
|
916
390
|
size?: number | undefined;
|
|
917
391
|
}> | undefined;
|
|
918
|
-
readonly security?: {
|
|
919
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
920
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
921
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
922
|
-
} | undefined;
|
|
923
|
-
readonly sign?: boolean | undefined;
|
|
924
|
-
readonly storeQueries?: boolean | undefined;
|
|
925
|
-
readonly timestamp?: boolean | undefined;
|
|
926
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
927
392
|
schema: "network.xyo.module.config";
|
|
928
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
929
|
-
accountDerivationPath?: string | undefined;
|
|
930
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
931
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
932
|
-
readonly name?: string | undefined;
|
|
933
|
-
readonly paging?: Record<string, {
|
|
934
|
-
size?: number | undefined;
|
|
935
|
-
}> | undefined;
|
|
936
393
|
readonly security?: {
|
|
937
394
|
readonly allowAnonymous?: boolean | undefined;
|
|
938
395
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -941,34 +398,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
941
398
|
readonly sign?: boolean | undefined;
|
|
942
399
|
readonly storeQueries?: boolean | undefined;
|
|
943
400
|
readonly timestamp?: boolean | undefined;
|
|
944
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
945
|
-
schema: "network.xyo.module.config";
|
|
946
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
401
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
947
402
|
accountDerivationPath?: string | undefined;
|
|
948
|
-
readonly archivist?:
|
|
403
|
+
readonly archivist?: string | undefined;
|
|
949
404
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
950
405
|
readonly name?: string | undefined;
|
|
951
406
|
readonly paging?: Record<string, {
|
|
952
407
|
size?: number | undefined;
|
|
953
408
|
}> | undefined;
|
|
954
|
-
readonly security?: {
|
|
955
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
956
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
957
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
958
|
-
} | undefined;
|
|
959
|
-
readonly sign?: boolean | undefined;
|
|
960
|
-
readonly storeQueries?: boolean | undefined;
|
|
961
|
-
readonly timestamp?: boolean | undefined;
|
|
962
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
963
409
|
schema: "network.xyo.module.config";
|
|
964
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
965
|
-
accountDerivationPath?: string | undefined;
|
|
966
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
967
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
968
|
-
readonly name?: string | undefined;
|
|
969
|
-
readonly paging?: Record<string, {
|
|
970
|
-
size?: number | undefined;
|
|
971
|
-
}> | undefined;
|
|
972
410
|
readonly security?: {
|
|
973
411
|
readonly allowAnonymous?: boolean | undefined;
|
|
974
412
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -977,40 +415,23 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
977
415
|
readonly sign?: boolean | undefined;
|
|
978
416
|
readonly storeQueries?: boolean | undefined;
|
|
979
417
|
readonly timestamp?: boolean | undefined;
|
|
980
|
-
}
|
|
981
|
-
schema:
|
|
982
|
-
}
|
|
418
|
+
}, "schema"> & {
|
|
419
|
+
schema: string;
|
|
420
|
+
};
|
|
983
421
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
984
422
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
985
423
|
}, 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>;
|
|
986
424
|
resolve<T_4 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
987
425
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
988
|
-
config:
|
|
426
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
989
427
|
accountDerivationPath?: string | undefined;
|
|
990
|
-
readonly archivist?:
|
|
428
|
+
readonly archivist?: string | undefined;
|
|
991
429
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
992
430
|
readonly name?: string | undefined;
|
|
993
431
|
readonly paging?: Record<string, {
|
|
994
432
|
size?: number | undefined;
|
|
995
433
|
}> | undefined;
|
|
996
|
-
readonly security?: {
|
|
997
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
998
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
999
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1000
|
-
} | undefined;
|
|
1001
|
-
readonly sign?: boolean | undefined;
|
|
1002
|
-
readonly storeQueries?: boolean | undefined;
|
|
1003
|
-
readonly timestamp?: boolean | undefined;
|
|
1004
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1005
434
|
schema: "network.xyo.module.config";
|
|
1006
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1007
|
-
accountDerivationPath?: string | undefined;
|
|
1008
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1009
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1010
|
-
readonly name?: string | undefined;
|
|
1011
|
-
readonly paging?: Record<string, {
|
|
1012
|
-
size?: number | undefined;
|
|
1013
|
-
}> | undefined;
|
|
1014
435
|
readonly security?: {
|
|
1015
436
|
readonly allowAnonymous?: boolean | undefined;
|
|
1016
437
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -1019,34 +440,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
1019
440
|
readonly sign?: boolean | undefined;
|
|
1020
441
|
readonly storeQueries?: boolean | undefined;
|
|
1021
442
|
readonly timestamp?: boolean | undefined;
|
|
1022
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1023
|
-
schema: "network.xyo.module.config";
|
|
1024
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
443
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1025
444
|
accountDerivationPath?: string | undefined;
|
|
1026
|
-
readonly archivist?:
|
|
445
|
+
readonly archivist?: string | undefined;
|
|
1027
446
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1028
447
|
readonly name?: string | undefined;
|
|
1029
448
|
readonly paging?: Record<string, {
|
|
1030
449
|
size?: number | undefined;
|
|
1031
450
|
}> | undefined;
|
|
1032
|
-
readonly security?: {
|
|
1033
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
1034
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1035
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1036
|
-
} | undefined;
|
|
1037
|
-
readonly sign?: boolean | undefined;
|
|
1038
|
-
readonly storeQueries?: boolean | undefined;
|
|
1039
|
-
readonly timestamp?: boolean | undefined;
|
|
1040
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1041
451
|
schema: "network.xyo.module.config";
|
|
1042
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1043
|
-
accountDerivationPath?: string | undefined;
|
|
1044
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1045
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1046
|
-
readonly name?: string | undefined;
|
|
1047
|
-
readonly paging?: Record<string, {
|
|
1048
|
-
size?: number | undefined;
|
|
1049
|
-
}> | undefined;
|
|
1050
452
|
readonly security?: {
|
|
1051
453
|
readonly allowAnonymous?: boolean | undefined;
|
|
1052
454
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -1055,39 +457,22 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
1055
457
|
readonly sign?: boolean | undefined;
|
|
1056
458
|
readonly storeQueries?: boolean | undefined;
|
|
1057
459
|
readonly timestamp?: boolean | undefined;
|
|
1058
|
-
}
|
|
1059
|
-
schema:
|
|
1060
|
-
}
|
|
460
|
+
}, "schema"> & {
|
|
461
|
+
schema: string;
|
|
462
|
+
};
|
|
1061
463
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
1062
464
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
1063
465
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
1064
466
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
1065
|
-
config:
|
|
467
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1066
468
|
accountDerivationPath?: string | undefined;
|
|
1067
|
-
readonly archivist?:
|
|
469
|
+
readonly archivist?: string | undefined;
|
|
1068
470
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1069
471
|
readonly name?: string | undefined;
|
|
1070
472
|
readonly paging?: Record<string, {
|
|
1071
473
|
size?: number | undefined;
|
|
1072
474
|
}> | undefined;
|
|
1073
|
-
readonly security?: {
|
|
1074
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
1075
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1076
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1077
|
-
} | undefined;
|
|
1078
|
-
readonly sign?: boolean | undefined;
|
|
1079
|
-
readonly storeQueries?: boolean | undefined;
|
|
1080
|
-
readonly timestamp?: boolean | undefined;
|
|
1081
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1082
475
|
schema: "network.xyo.module.config";
|
|
1083
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1084
|
-
accountDerivationPath?: string | undefined;
|
|
1085
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1086
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1087
|
-
readonly name?: string | undefined;
|
|
1088
|
-
readonly paging?: Record<string, {
|
|
1089
|
-
size?: number | undefined;
|
|
1090
|
-
}> | undefined;
|
|
1091
476
|
readonly security?: {
|
|
1092
477
|
readonly allowAnonymous?: boolean | undefined;
|
|
1093
478
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -1096,34 +481,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
1096
481
|
readonly sign?: boolean | undefined;
|
|
1097
482
|
readonly storeQueries?: boolean | undefined;
|
|
1098
483
|
readonly timestamp?: boolean | undefined;
|
|
1099
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1100
|
-
schema: "network.xyo.module.config";
|
|
1101
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
484
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1102
485
|
accountDerivationPath?: string | undefined;
|
|
1103
|
-
readonly archivist?:
|
|
486
|
+
readonly archivist?: string | undefined;
|
|
1104
487
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1105
488
|
readonly name?: string | undefined;
|
|
1106
489
|
readonly paging?: Record<string, {
|
|
1107
490
|
size?: number | undefined;
|
|
1108
491
|
}> | undefined;
|
|
1109
|
-
readonly security?: {
|
|
1110
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
1111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1113
|
-
} | undefined;
|
|
1114
|
-
readonly sign?: boolean | undefined;
|
|
1115
|
-
readonly storeQueries?: boolean | undefined;
|
|
1116
|
-
readonly timestamp?: boolean | undefined;
|
|
1117
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1118
492
|
schema: "network.xyo.module.config";
|
|
1119
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1120
|
-
accountDerivationPath?: string | undefined;
|
|
1121
|
-
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1122
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1123
|
-
readonly name?: string | undefined;
|
|
1124
|
-
readonly paging?: Record<string, {
|
|
1125
|
-
size?: number | undefined;
|
|
1126
|
-
}> | undefined;
|
|
1127
493
|
readonly security?: {
|
|
1128
494
|
readonly allowAnonymous?: boolean | undefined;
|
|
1129
495
|
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
@@ -1132,42 +498,26 @@ export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/
|
|
|
1132
498
|
readonly sign?: boolean | undefined;
|
|
1133
499
|
readonly storeQueries?: boolean | undefined;
|
|
1134
500
|
readonly timestamp?: boolean | undefined;
|
|
1135
|
-
}
|
|
1136
|
-
schema:
|
|
1137
|
-
}
|
|
501
|
+
}, "schema"> & {
|
|
502
|
+
schema: string;
|
|
503
|
+
};
|
|
1138
504
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
1139
505
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
1140
506
|
}, 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>;
|
|
1141
507
|
describe: () => Promise<import("@xyo-network/module-model").ModuleDescription>;
|
|
1142
508
|
discover: () => import("@xylabs/promise").Promisable<({
|
|
1143
509
|
schema: string;
|
|
1144
|
-
} &
|
|
510
|
+
} & object)[]>;
|
|
1145
511
|
manifest: (maxDepth?: number | undefined, ignoreAddresses?: string[] | undefined) => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1146
512
|
schema: "network.xyo.module.manifest";
|
|
1147
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1148
|
-
schema: "network.xyo.module.manifest";
|
|
1149
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1150
|
-
schema: "network.xyo.module.manifest";
|
|
1151
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1152
|
-
schema: "network.xyo.module.manifest";
|
|
1153
513
|
}) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1154
514
|
schema: "network.xyo.node.manifest";
|
|
1155
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1156
|
-
schema: "network.xyo.node.manifest";
|
|
1157
|
-
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1158
|
-
schema: "network.xyo.node.manifest";
|
|
1159
|
-
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
1160
|
-
schema: "network.xyo.node.manifest";
|
|
1161
515
|
})>;
|
|
1162
|
-
moduleAddress: () => import("@xylabs/promise").Promisable<(
|
|
1163
|
-
address: string;
|
|
1164
|
-
previousHash?: string | undefined;
|
|
1165
|
-
schema: string;
|
|
1166
|
-
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
516
|
+
moduleAddress: () => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1167
517
|
address: string;
|
|
1168
518
|
previousHash?: string | undefined;
|
|
1169
519
|
schema: string;
|
|
1170
|
-
})
|
|
520
|
+
})[]>;
|
|
1171
521
|
readonly downResolver: Omit<import("@xyo-network/module-model").ModuleResolver, "resolve">;
|
|
1172
522
|
readonly upResolver: Omit<import("@xyo-network/module-model").ModuleResolver, "resolve">;
|
|
1173
523
|
}) & TModule;
|