@xyo-network/diviner-stateful 2.92.0 → 2.92.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/Diviner.d.cts +7 -103
- package/dist/browser/Diviner.d.cts.map +1 -1
- package/dist/browser/Diviner.d.mts +7 -103
- package/dist/browser/Diviner.d.mts.map +1 -1
- package/dist/browser/Diviner.d.ts +7 -103
- package/dist/browser/Diviner.d.ts.map +1 -1
- package/dist/browser/DivinerMixin.d.cts +27 -503
- package/dist/browser/DivinerMixin.d.cts.map +1 -1
- package/dist/browser/DivinerMixin.d.mts +27 -503
- package/dist/browser/DivinerMixin.d.mts.map +1 -1
- package/dist/browser/DivinerMixin.d.ts +27 -503
- package/dist/browser/DivinerMixin.d.ts.map +1 -1
- package/dist/node/Diviner.d.cts +7 -103
- package/dist/node/Diviner.d.cts.map +1 -1
- package/dist/node/Diviner.d.mts +7 -103
- package/dist/node/Diviner.d.mts.map +1 -1
- package/dist/node/Diviner.d.ts +7 -103
- package/dist/node/Diviner.d.ts.map +1 -1
- package/dist/node/DivinerMixin.d.cts +27 -503
- package/dist/node/DivinerMixin.d.cts.map +1 -1
- package/dist/node/DivinerMixin.d.mts +27 -503
- package/dist/node/DivinerMixin.d.mts.map +1 -1
- package/dist/node/DivinerMixin.d.ts +27 -503
- package/dist/node/DivinerMixin.d.ts.map +1 -1
- package/package.json +23 -23
|
@@ -10,41 +10,7 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const StatefulModuleMixin: <TParams extends import("@xylabs/object").BaseParamsFields & {
|
|
12
12
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
13
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
14
|
-
readonly archivist?: string | undefined;
|
|
15
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
16
|
-
readonly name?: string | undefined;
|
|
17
|
-
readonly paging?: Record<string, {
|
|
18
|
-
size?: number | undefined;
|
|
19
|
-
}> | undefined;
|
|
20
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
21
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
22
|
-
readonly security?: {
|
|
23
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
24
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
25
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
26
|
-
} | undefined;
|
|
27
|
-
readonly sign?: boolean | undefined;
|
|
28
|
-
readonly storeQueries?: boolean | undefined;
|
|
29
|
-
readonly timestamp?: boolean | undefined;
|
|
30
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
31
|
-
readonly archivist?: string | undefined;
|
|
32
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
33
|
-
readonly name?: string | undefined;
|
|
34
|
-
readonly paging?: Record<string, {
|
|
35
|
-
size?: number | undefined;
|
|
36
|
-
}> | undefined;
|
|
37
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
38
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
39
|
-
readonly security?: {
|
|
40
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
41
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
42
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
43
|
-
} | undefined;
|
|
44
|
-
readonly sign?: boolean | undefined;
|
|
45
|
-
readonly storeQueries?: boolean | undefined;
|
|
46
|
-
readonly timestamp?: boolean | undefined;
|
|
47
|
-
} & {
|
|
13
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
48
14
|
schema: "network.xyo.diviner.stateful.config";
|
|
49
15
|
} & {
|
|
50
16
|
schema: "network.xyo.diviner.stateful.config";
|
|
@@ -53,47 +19,15 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
53
19
|
boundWitnessDiviner: string;
|
|
54
20
|
payloadDiviner: string;
|
|
55
21
|
};
|
|
22
|
+
}, "schema"> & {
|
|
23
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
56
24
|
}, "schema"> & {
|
|
57
25
|
schema: string;
|
|
58
26
|
};
|
|
59
27
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
60
28
|
} = import("@xylabs/object").BaseParamsFields & {
|
|
61
29
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
62
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
63
|
-
readonly archivist?: string | undefined;
|
|
64
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
65
|
-
readonly name?: string | undefined;
|
|
66
|
-
readonly paging?: Record<string, {
|
|
67
|
-
size?: number | undefined;
|
|
68
|
-
}> | undefined;
|
|
69
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
70
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
71
|
-
readonly security?: {
|
|
72
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
73
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
74
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
75
|
-
} | undefined;
|
|
76
|
-
readonly sign?: boolean | undefined;
|
|
77
|
-
readonly storeQueries?: boolean | undefined;
|
|
78
|
-
readonly timestamp?: boolean | undefined;
|
|
79
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
80
|
-
readonly archivist?: string | undefined;
|
|
81
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
82
|
-
readonly name?: string | undefined;
|
|
83
|
-
readonly paging?: Record<string, {
|
|
84
|
-
size?: number | undefined;
|
|
85
|
-
}> | undefined;
|
|
86
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
87
|
-
schema: "network.xyo.diviner.stateful.config";
|
|
88
|
-
readonly security?: {
|
|
89
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
90
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
91
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
92
|
-
} | undefined;
|
|
93
|
-
readonly sign?: boolean | undefined;
|
|
94
|
-
readonly storeQueries?: boolean | undefined;
|
|
95
|
-
readonly timestamp?: boolean | undefined;
|
|
96
|
-
} & {
|
|
30
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
97
31
|
schema: "network.xyo.diviner.stateful.config";
|
|
98
32
|
} & {
|
|
99
33
|
schema: "network.xyo.diviner.stateful.config";
|
|
@@ -102,6 +36,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
102
36
|
boundWitnessDiviner: string;
|
|
103
37
|
payloadDiviner: string;
|
|
104
38
|
};
|
|
39
|
+
}, "schema"> & {
|
|
40
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
105
41
|
}, "schema"> & {
|
|
106
42
|
schema: string;
|
|
107
43
|
};
|
|
@@ -123,45 +59,13 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
123
59
|
*/
|
|
124
60
|
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
125
61
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
126
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
127
|
-
readonly archivist?: string | undefined;
|
|
128
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
129
|
-
readonly name?: string | undefined;
|
|
130
|
-
readonly paging?: Record<string, {
|
|
131
|
-
size?: number | undefined;
|
|
132
|
-
}> | undefined;
|
|
133
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
134
|
-
schema: "network.xyo.archivist.config";
|
|
135
|
-
readonly security?: {
|
|
136
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
137
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
138
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
139
|
-
} | undefined;
|
|
140
|
-
readonly sign?: boolean | undefined;
|
|
141
|
-
readonly storeQueries?: boolean | undefined;
|
|
142
|
-
readonly timestamp?: boolean | undefined;
|
|
143
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
144
|
-
readonly archivist?: string | undefined;
|
|
145
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
146
|
-
readonly name?: string | undefined;
|
|
147
|
-
readonly paging?: Record<string, {
|
|
148
|
-
size?: number | undefined;
|
|
149
|
-
}> | undefined;
|
|
150
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
151
|
-
schema: "network.xyo.archivist.config";
|
|
152
|
-
readonly security?: {
|
|
153
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
154
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
155
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
156
|
-
} | undefined;
|
|
157
|
-
readonly sign?: boolean | undefined;
|
|
158
|
-
readonly storeQueries?: boolean | undefined;
|
|
159
|
-
readonly timestamp?: boolean | undefined;
|
|
160
|
-
} & {
|
|
62
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
161
63
|
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
162
64
|
requireAllParents?: boolean | undefined;
|
|
163
65
|
schema: "network.xyo.archivist.config";
|
|
164
66
|
storeParentReads?: boolean | undefined;
|
|
67
|
+
}, "schema"> & {
|
|
68
|
+
schema: "network.xyo.archivist.config";
|
|
165
69
|
}, "schema"> & {
|
|
166
70
|
schema: string;
|
|
167
71
|
};
|
|
@@ -176,41 +80,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
176
80
|
*/
|
|
177
81
|
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
178
82
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
179
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
180
|
-
readonly archivist?: string | undefined;
|
|
181
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
182
|
-
readonly name?: string | undefined;
|
|
183
|
-
readonly paging?: Record<string, {
|
|
184
|
-
size?: number | undefined;
|
|
185
|
-
}> | undefined;
|
|
186
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
187
|
-
schema: "network.xyo.diviner.config";
|
|
188
|
-
readonly security?: {
|
|
189
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
190
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
191
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
192
|
-
} | undefined;
|
|
193
|
-
readonly sign?: boolean | undefined;
|
|
194
|
-
readonly storeQueries?: boolean | undefined;
|
|
195
|
-
readonly timestamp?: boolean | undefined;
|
|
196
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
197
|
-
readonly archivist?: string | undefined;
|
|
198
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
199
|
-
readonly name?: string | undefined;
|
|
200
|
-
readonly paging?: Record<string, {
|
|
201
|
-
size?: number | undefined;
|
|
202
|
-
}> | undefined;
|
|
203
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
83
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
204
84
|
schema: "network.xyo.diviner.config";
|
|
205
|
-
|
|
206
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
207
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
208
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
209
|
-
} | undefined;
|
|
210
|
-
readonly sign?: boolean | undefined;
|
|
211
|
-
readonly storeQueries?: boolean | undefined;
|
|
212
|
-
readonly timestamp?: boolean | undefined;
|
|
213
|
-
} & {
|
|
85
|
+
}, "schema"> & {
|
|
214
86
|
schema: "network.xyo.diviner.config";
|
|
215
87
|
}, "schema"> & {
|
|
216
88
|
schema: string;
|
|
@@ -228,41 +100,9 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
228
100
|
*/
|
|
229
101
|
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
230
102
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
231
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
232
|
-
readonly archivist?: string | undefined;
|
|
233
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
234
|
-
readonly name?: string | undefined;
|
|
235
|
-
readonly paging?: Record<string, {
|
|
236
|
-
size?: number | undefined;
|
|
237
|
-
}> | undefined;
|
|
238
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
239
|
-
schema: "network.xyo.diviner.config";
|
|
240
|
-
readonly security?: {
|
|
241
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
242
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
243
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
244
|
-
} | undefined;
|
|
245
|
-
readonly sign?: boolean | undefined;
|
|
246
|
-
readonly storeQueries?: boolean | undefined;
|
|
247
|
-
readonly timestamp?: boolean | undefined;
|
|
248
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
249
|
-
readonly archivist?: string | undefined;
|
|
250
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
251
|
-
readonly name?: string | undefined;
|
|
252
|
-
readonly paging?: Record<string, {
|
|
253
|
-
size?: number | undefined;
|
|
254
|
-
}> | undefined;
|
|
255
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
103
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
256
104
|
schema: "network.xyo.diviner.config";
|
|
257
|
-
|
|
258
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
259
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
260
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
261
|
-
} | undefined;
|
|
262
|
-
readonly sign?: boolean | undefined;
|
|
263
|
-
readonly storeQueries?: boolean | undefined;
|
|
264
|
-
readonly timestamp?: boolean | undefined;
|
|
265
|
-
} & {
|
|
105
|
+
}, "schema"> & {
|
|
266
106
|
schema: "network.xyo.diviner.config";
|
|
267
107
|
}, "schema"> & {
|
|
268
108
|
schema: string;
|
|
@@ -280,40 +120,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
280
120
|
retrieveState(): Promise<WithMeta<ModuleState<TState>> | undefined>;
|
|
281
121
|
readonly downResolver: Omit<import("@xyo-network/module-model").ObjectResolverInstance<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
282
122
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
283
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
284
|
-
readonly archivist?: string | undefined;
|
|
285
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
286
|
-
readonly name?: string | undefined;
|
|
287
|
-
readonly paging?: Record<string, {
|
|
288
|
-
size?: number | undefined;
|
|
289
|
-
}> | undefined;
|
|
290
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
291
|
-
schema: "network.xyo.module.config";
|
|
292
|
-
readonly security?: {
|
|
293
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
294
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
295
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
296
|
-
} | undefined;
|
|
297
|
-
readonly sign?: boolean | undefined;
|
|
298
|
-
readonly storeQueries?: boolean | undefined;
|
|
299
|
-
readonly timestamp?: boolean | undefined;
|
|
300
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
301
|
-
readonly archivist?: string | undefined;
|
|
302
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
303
|
-
readonly name?: string | undefined;
|
|
304
|
-
readonly paging?: Record<string, {
|
|
305
|
-
size?: number | undefined;
|
|
306
|
-
}> | undefined;
|
|
307
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
123
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
308
124
|
schema: "network.xyo.module.config";
|
|
309
|
-
readonly security?: {
|
|
310
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
311
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
312
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
313
|
-
} | undefined;
|
|
314
|
-
readonly sign?: boolean | undefined;
|
|
315
|
-
readonly storeQueries?: boolean | undefined;
|
|
316
|
-
readonly timestamp?: boolean | undefined;
|
|
317
125
|
}, "schema"> & {
|
|
318
126
|
schema: string;
|
|
319
127
|
};
|
|
@@ -322,40 +130,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
322
130
|
readonly pipeline?: "one-to-one" | "one-to-many" | "many-to-one" | "many-to-many" | undefined;
|
|
323
131
|
readonly upResolver: Omit<import("@xyo-network/module-model").ObjectResolverInstance<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
324
132
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
325
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
326
|
-
readonly archivist?: string | undefined;
|
|
327
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
328
|
-
readonly name?: string | undefined;
|
|
329
|
-
readonly paging?: Record<string, {
|
|
330
|
-
size?: number | undefined;
|
|
331
|
-
}> | undefined;
|
|
332
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
333
|
-
schema: "network.xyo.module.config";
|
|
334
|
-
readonly security?: {
|
|
335
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
336
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
337
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
338
|
-
} | undefined;
|
|
339
|
-
readonly sign?: boolean | undefined;
|
|
340
|
-
readonly storeQueries?: boolean | undefined;
|
|
341
|
-
readonly timestamp?: boolean | undefined;
|
|
342
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
343
|
-
readonly archivist?: string | undefined;
|
|
344
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
345
|
-
readonly name?: string | undefined;
|
|
346
|
-
readonly paging?: Record<string, {
|
|
347
|
-
size?: number | undefined;
|
|
348
|
-
}> | undefined;
|
|
349
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
133
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
350
134
|
schema: "network.xyo.module.config";
|
|
351
|
-
readonly security?: {
|
|
352
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
353
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
354
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
355
|
-
} | undefined;
|
|
356
|
-
readonly sign?: boolean | undefined;
|
|
357
|
-
readonly storeQueries?: boolean | undefined;
|
|
358
|
-
readonly timestamp?: boolean | undefined;
|
|
359
135
|
}, "schema"> & {
|
|
360
136
|
schema: string;
|
|
361
137
|
};
|
|
@@ -379,41 +155,11 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
379
155
|
schema: "network.xyo.boundwitness";
|
|
380
156
|
}, "schema"> & {
|
|
381
157
|
schema: "network.xyo.boundwitness";
|
|
382
|
-
}, TConf extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
383
|
-
readonly archivist?: string | undefined;
|
|
384
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
385
|
-
readonly name?: string | undefined;
|
|
386
|
-
readonly paging?: Record<string, {
|
|
387
|
-
size?: number | undefined;
|
|
388
|
-
}> | undefined;
|
|
389
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
158
|
+
}, TConf extends import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
390
159
|
schema: "network.xyo.module.config";
|
|
391
|
-
|
|
392
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
393
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
394
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
395
|
-
} | undefined;
|
|
396
|
-
readonly sign?: boolean | undefined;
|
|
397
|
-
readonly storeQueries?: boolean | undefined;
|
|
398
|
-
readonly timestamp?: boolean | undefined;
|
|
399
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
400
|
-
readonly archivist?: string | undefined;
|
|
401
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
402
|
-
readonly name?: string | undefined;
|
|
403
|
-
readonly paging?: Record<string, {
|
|
404
|
-
size?: number | undefined;
|
|
405
|
-
}> | undefined;
|
|
406
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
160
|
+
} = import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
407
161
|
schema: "network.xyo.module.config";
|
|
408
|
-
|
|
409
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
410
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
411
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
412
|
-
} | undefined;
|
|
413
|
-
readonly sign?: boolean | undefined;
|
|
414
|
-
readonly storeQueries?: boolean | undefined;
|
|
415
|
-
readonly timestamp?: boolean | undefined;
|
|
416
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig>(query: T, payloads?: ({
|
|
162
|
+
}>(query: T, payloads?: ({
|
|
417
163
|
schema: string;
|
|
418
164
|
} & object)[] | undefined, queryConfig?: TConf | undefined) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult>;
|
|
419
165
|
queryable: <T_1 extends import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
@@ -428,41 +174,11 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
428
174
|
schema: "network.xyo.boundwitness";
|
|
429
175
|
}, "schema"> & {
|
|
430
176
|
schema: "network.xyo.boundwitness";
|
|
431
|
-
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & object & {
|
|
432
|
-
readonly archivist?: string | 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 retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
177
|
+
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
439
178
|
schema: "network.xyo.module.config";
|
|
440
|
-
|
|
441
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
442
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
443
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
444
|
-
} | undefined;
|
|
445
|
-
readonly sign?: boolean | undefined;
|
|
446
|
-
readonly storeQueries?: boolean | undefined;
|
|
447
|
-
readonly timestamp?: boolean | undefined;
|
|
448
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig = import("@xyo-network/payload-model").SchemaFields & object & {
|
|
449
|
-
readonly archivist?: string | undefined;
|
|
450
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
451
|
-
readonly name?: string | undefined;
|
|
452
|
-
readonly paging?: Record<string, {
|
|
453
|
-
size?: number | undefined;
|
|
454
|
-
}> | undefined;
|
|
455
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
179
|
+
} = import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
456
180
|
schema: "network.xyo.module.config";
|
|
457
|
-
|
|
458
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
459
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
460
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
461
|
-
} | undefined;
|
|
462
|
-
readonly sign?: boolean | undefined;
|
|
463
|
-
readonly storeQueries?: boolean | undefined;
|
|
464
|
-
readonly timestamp?: boolean | undefined;
|
|
465
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig>(query: T_1, payloads?: ({
|
|
181
|
+
}>(query: T_1, payloads?: ({
|
|
466
182
|
schema: string;
|
|
467
183
|
} & object)[] | undefined, queryConfig?: TConf_1 | undefined) => import("@xylabs/promise").Promisable<boolean>;
|
|
468
184
|
start?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
@@ -479,80 +195,16 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
479
195
|
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;
|
|
480
196
|
resolve<T_2 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
481
197
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
482
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
483
|
-
readonly archivist?: string | undefined;
|
|
484
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
485
|
-
readonly name?: string | undefined;
|
|
486
|
-
readonly paging?: Record<string, {
|
|
487
|
-
size?: number | undefined;
|
|
488
|
-
}> | undefined;
|
|
489
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
198
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
490
199
|
schema: "network.xyo.module.config";
|
|
491
|
-
readonly security?: {
|
|
492
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
493
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
494
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
495
|
-
} | undefined;
|
|
496
|
-
readonly sign?: boolean | undefined;
|
|
497
|
-
readonly storeQueries?: boolean | undefined;
|
|
498
|
-
readonly timestamp?: boolean | undefined;
|
|
499
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
500
|
-
readonly archivist?: string | undefined;
|
|
501
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
502
|
-
readonly name?: string | undefined;
|
|
503
|
-
readonly paging?: Record<string, {
|
|
504
|
-
size?: number | undefined;
|
|
505
|
-
}> | undefined;
|
|
506
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
507
|
-
schema: "network.xyo.module.config";
|
|
508
|
-
readonly security?: {
|
|
509
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
510
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
511
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
512
|
-
} | undefined;
|
|
513
|
-
readonly sign?: boolean | undefined;
|
|
514
|
-
readonly storeQueries?: boolean | undefined;
|
|
515
|
-
readonly timestamp?: boolean | undefined;
|
|
516
200
|
}, "schema"> & {
|
|
517
201
|
schema: string;
|
|
518
202
|
};
|
|
519
203
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
520
204
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
521
205
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
522
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
523
|
-
readonly archivist?: string | undefined;
|
|
524
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
525
|
-
readonly name?: string | undefined;
|
|
526
|
-
readonly paging?: Record<string, {
|
|
527
|
-
size?: number | undefined;
|
|
528
|
-
}> | undefined;
|
|
529
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
530
|
-
schema: "network.xyo.module.config";
|
|
531
|
-
readonly security?: {
|
|
532
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
533
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
534
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
535
|
-
} | undefined;
|
|
536
|
-
readonly sign?: boolean | undefined;
|
|
537
|
-
readonly storeQueries?: boolean | undefined;
|
|
538
|
-
readonly timestamp?: boolean | undefined;
|
|
539
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
540
|
-
readonly archivist?: string | undefined;
|
|
541
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
542
|
-
readonly name?: string | undefined;
|
|
543
|
-
readonly paging?: Record<string, {
|
|
544
|
-
size?: number | undefined;
|
|
545
|
-
}> | undefined;
|
|
546
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
206
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
547
207
|
schema: "network.xyo.module.config";
|
|
548
|
-
readonly security?: {
|
|
549
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
550
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
551
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
552
|
-
} | undefined;
|
|
553
|
-
readonly sign?: boolean | undefined;
|
|
554
|
-
readonly storeQueries?: boolean | undefined;
|
|
555
|
-
readonly timestamp?: boolean | undefined;
|
|
556
208
|
}, "schema"> & {
|
|
557
209
|
schema: string;
|
|
558
210
|
};
|
|
@@ -560,80 +212,16 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
560
212
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter?: import("@xyo-network/module-model").ObjectFilter<T_2> | undefined, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_2> | undefined): import("@xylabs/promise").Promisable<T_2[]>;
|
|
561
213
|
resolve<T_3 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
562
214
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
563
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
564
|
-
readonly archivist?: string | undefined;
|
|
565
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
566
|
-
readonly name?: string | undefined;
|
|
567
|
-
readonly paging?: Record<string, {
|
|
568
|
-
size?: number | undefined;
|
|
569
|
-
}> | undefined;
|
|
570
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
571
|
-
schema: "network.xyo.module.config";
|
|
572
|
-
readonly security?: {
|
|
573
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
574
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
575
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
576
|
-
} | undefined;
|
|
577
|
-
readonly sign?: boolean | undefined;
|
|
578
|
-
readonly storeQueries?: boolean | undefined;
|
|
579
|
-
readonly timestamp?: boolean | undefined;
|
|
580
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
581
|
-
readonly archivist?: string | undefined;
|
|
582
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
583
|
-
readonly name?: string | undefined;
|
|
584
|
-
readonly paging?: Record<string, {
|
|
585
|
-
size?: number | undefined;
|
|
586
|
-
}> | undefined;
|
|
587
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
215
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
588
216
|
schema: "network.xyo.module.config";
|
|
589
|
-
readonly security?: {
|
|
590
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
591
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
592
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
593
|
-
} | undefined;
|
|
594
|
-
readonly sign?: boolean | undefined;
|
|
595
|
-
readonly storeQueries?: boolean | undefined;
|
|
596
|
-
readonly timestamp?: boolean | undefined;
|
|
597
217
|
}, "schema"> & {
|
|
598
218
|
schema: string;
|
|
599
219
|
};
|
|
600
220
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
601
221
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
602
222
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
603
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
604
|
-
readonly archivist?: string | undefined;
|
|
605
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
606
|
-
readonly name?: string | undefined;
|
|
607
|
-
readonly paging?: Record<string, {
|
|
608
|
-
size?: number | undefined;
|
|
609
|
-
}> | undefined;
|
|
610
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
223
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
611
224
|
schema: "network.xyo.module.config";
|
|
612
|
-
readonly security?: {
|
|
613
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
614
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
615
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
616
|
-
} | undefined;
|
|
617
|
-
readonly sign?: boolean | undefined;
|
|
618
|
-
readonly storeQueries?: boolean | undefined;
|
|
619
|
-
readonly timestamp?: boolean | undefined;
|
|
620
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
621
|
-
readonly archivist?: string | undefined;
|
|
622
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
623
|
-
readonly name?: string | undefined;
|
|
624
|
-
readonly paging?: Record<string, {
|
|
625
|
-
size?: number | undefined;
|
|
626
|
-
}> | undefined;
|
|
627
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
628
|
-
schema: "network.xyo.module.config";
|
|
629
|
-
readonly security?: {
|
|
630
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
631
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
632
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
633
|
-
} | undefined;
|
|
634
|
-
readonly sign?: boolean | undefined;
|
|
635
|
-
readonly storeQueries?: boolean | undefined;
|
|
636
|
-
readonly timestamp?: boolean | undefined;
|
|
637
225
|
}, "schema"> & {
|
|
638
226
|
schema: string;
|
|
639
227
|
};
|
|
@@ -641,80 +229,16 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
641
229
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddress: string, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_3> | undefined): import("@xylabs/promise").Promisable<T_3 | undefined>;
|
|
642
230
|
resolve<T_4 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
643
231
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
644
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
645
|
-
readonly archivist?: string | undefined;
|
|
646
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
647
|
-
readonly name?: string | undefined;
|
|
648
|
-
readonly paging?: Record<string, {
|
|
649
|
-
size?: number | undefined;
|
|
650
|
-
}> | undefined;
|
|
651
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
652
|
-
schema: "network.xyo.module.config";
|
|
653
|
-
readonly security?: {
|
|
654
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
655
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
656
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
657
|
-
} | undefined;
|
|
658
|
-
readonly sign?: boolean | undefined;
|
|
659
|
-
readonly storeQueries?: boolean | undefined;
|
|
660
|
-
readonly timestamp?: boolean | undefined;
|
|
661
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
662
|
-
readonly archivist?: string | undefined;
|
|
663
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
664
|
-
readonly name?: string | undefined;
|
|
665
|
-
readonly paging?: Record<string, {
|
|
666
|
-
size?: number | undefined;
|
|
667
|
-
}> | undefined;
|
|
668
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
232
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
669
233
|
schema: "network.xyo.module.config";
|
|
670
|
-
readonly security?: {
|
|
671
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
672
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
673
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
674
|
-
} | undefined;
|
|
675
|
-
readonly sign?: boolean | undefined;
|
|
676
|
-
readonly storeQueries?: boolean | undefined;
|
|
677
|
-
readonly timestamp?: boolean | undefined;
|
|
678
234
|
}, "schema"> & {
|
|
679
235
|
schema: string;
|
|
680
236
|
};
|
|
681
237
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
682
238
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
683
239
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
684
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
685
|
-
readonly archivist?: string | undefined;
|
|
686
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
687
|
-
readonly name?: string | undefined;
|
|
688
|
-
readonly paging?: Record<string, {
|
|
689
|
-
size?: number | undefined;
|
|
690
|
-
}> | undefined;
|
|
691
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
692
|
-
schema: "network.xyo.module.config";
|
|
693
|
-
readonly security?: {
|
|
694
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
695
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
696
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
697
|
-
} | undefined;
|
|
698
|
-
readonly sign?: boolean | undefined;
|
|
699
|
-
readonly storeQueries?: boolean | undefined;
|
|
700
|
-
readonly timestamp?: boolean | undefined;
|
|
701
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
702
|
-
readonly archivist?: string | undefined;
|
|
703
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
704
|
-
readonly name?: string | undefined;
|
|
705
|
-
readonly paging?: Record<string, {
|
|
706
|
-
size?: number | undefined;
|
|
707
|
-
}> | undefined;
|
|
708
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
240
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
709
241
|
schema: "network.xyo.module.config";
|
|
710
|
-
readonly security?: {
|
|
711
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
712
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
713
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
714
|
-
} | undefined;
|
|
715
|
-
readonly sign?: boolean | undefined;
|
|
716
|
-
readonly storeQueries?: boolean | undefined;
|
|
717
|
-
readonly timestamp?: boolean | undefined;
|
|
718
242
|
}, "schema"> & {
|
|
719
243
|
schema: string;
|
|
720
244
|
};
|