@xyo-network/react-standard-node 2.67.5 → 2.67.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/browser/index.cjs +4 -4
  2. package/dist/browser/index.cjs.map +1 -1
  3. package/dist/browser/index.js +4 -4
  4. package/dist/browser/index.js.map +1 -1
  5. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts +44 -1194
  6. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
  7. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +44 -1194
  8. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
  9. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +44 -1194
  10. package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
  11. package/dist/browser/lib/Builders/SentinelBuilder.d.cts +42 -1614
  12. package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
  13. package/dist/browser/lib/Builders/SentinelBuilder.d.mts +42 -1614
  14. package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
  15. package/dist/browser/lib/Builders/SentinelBuilder.d.ts +42 -1614
  16. package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
  17. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +31 -1393
  18. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
  19. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +31 -1393
  20. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
  21. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +31 -1393
  22. package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
  23. package/dist/node/index.cjs +5 -5
  24. package/dist/node/index.cjs.map +1 -1
  25. package/dist/node/index.js +5 -5
  26. package/dist/node/index.js.map +1 -1
  27. package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +44 -1194
  28. package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
  29. package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +44 -1194
  30. package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
  31. package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +44 -1194
  32. package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
  33. package/dist/node/lib/Builders/SentinelBuilder.d.cts +42 -1614
  34. package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
  35. package/dist/node/lib/Builders/SentinelBuilder.d.mts +42 -1614
  36. package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
  37. package/dist/node/lib/Builders/SentinelBuilder.d.ts +42 -1614
  38. package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
  39. package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +31 -1393
  40. package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
  41. package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +31 -1393
  42. package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
  43. package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +31 -1393
  44. package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
  45. package/package.json +18 -18
  46. package/src/contexts/StandardRemoteNodes/Providers.tsx +1 -1
  47. package/src/lib/Builders/MemoryNodeBuilder.ts +1 -1
  48. package/src/lib/Builders/StorageArchivistBuilder.ts +1 -1
  49. package/src/lib/buildNodes.ts +1 -1
@@ -13,1107 +13,14 @@ export declare class StorageArchivistBuilder {
13
13
  private remoteArchivist;
14
14
  protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xyo-network/object").BaseParamsFields & {
15
15
  account?: AccountInstance | "random" | undefined;
16
- config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
17
- accountDerivationPath?: string | undefined;
18
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
19
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
20
- readonly name?: string | undefined;
21
- readonly paging?: Record<string, {
22
- size?: number | undefined;
23
- }> | undefined;
24
- readonly security?: {
25
- readonly allowAnonymous?: boolean | undefined;
26
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
27
- readonly disallowed?: Record<string, string[]> | undefined;
28
- } | undefined;
29
- readonly sign?: boolean | undefined;
30
- readonly storeQueries?: boolean | undefined;
31
- readonly timestamp?: boolean | undefined;
32
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
33
- schema: string;
34
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
35
- accountDerivationPath?: string | undefined;
36
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
37
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
38
- readonly name?: string | undefined;
39
- readonly paging?: Record<string, {
40
- size?: number | undefined;
41
- }> | undefined;
42
- readonly security?: {
43
- readonly allowAnonymous?: boolean | undefined;
44
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
45
- readonly disallowed?: Record<string, string[]> | undefined;
46
- } | undefined;
47
- readonly sign?: boolean | undefined;
48
- readonly storeQueries?: boolean | undefined;
49
- readonly timestamp?: boolean | undefined;
50
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
51
- archivist?: string | undefined;
52
- } & {
53
- schema: "network.xyo.node.config";
54
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
55
- accountDerivationPath?: string | undefined;
56
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
57
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
58
- readonly name?: string | undefined;
59
- readonly paging?: Record<string, {
60
- size?: number | undefined;
61
- }> | undefined;
62
- readonly security?: {
63
- readonly allowAnonymous?: boolean | undefined;
64
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
65
- readonly disallowed?: Record<string, string[]> | undefined;
66
- } | undefined;
67
- readonly sign?: boolean | undefined;
68
- readonly storeQueries?: boolean | undefined;
69
- readonly timestamp?: boolean | undefined;
70
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
71
- archivist?: string | undefined;
72
- } & {
73
- schema: "network.xyo.node.config";
74
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
75
- accountDerivationPath?: string | undefined;
76
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
77
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
78
- readonly name?: string | undefined;
79
- readonly paging?: Record<string, {
80
- size?: number | undefined;
81
- }> | undefined;
82
- readonly security?: {
83
- readonly allowAnonymous?: boolean | undefined;
84
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
85
- readonly disallowed?: Record<string, string[]> | undefined;
86
- } | undefined;
87
- readonly sign?: boolean | undefined;
88
- readonly storeQueries?: boolean | undefined;
89
- readonly timestamp?: boolean | undefined;
90
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
91
- archivist?: string | undefined;
92
- } & {
93
- schema: "network.xyo.node.config";
94
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
95
- accountDerivationPath?: string | undefined;
96
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
97
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
98
- readonly name?: string | undefined;
99
- readonly paging?: Record<string, {
100
- size?: number | undefined;
101
- }> | undefined;
102
- readonly security?: {
103
- readonly allowAnonymous?: boolean | undefined;
104
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
105
- readonly disallowed?: Record<string, string[]> | undefined;
106
- } | undefined;
107
- readonly sign?: boolean | undefined;
108
- readonly storeQueries?: boolean | undefined;
109
- readonly timestamp?: boolean | undefined;
110
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
111
- archivist?: string | undefined;
112
- } & {
113
- schema: "network.xyo.node.config";
114
- }), "schema">, "schema"> & {
115
- schema: string;
116
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
117
- accountDerivationPath?: string | undefined;
118
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
119
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
120
- readonly name?: string | undefined;
121
- readonly paging?: Record<string, {
122
- size?: number | undefined;
123
- }> | undefined;
124
- readonly security?: {
125
- readonly allowAnonymous?: boolean | undefined;
126
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
127
- readonly disallowed?: Record<string, string[]> | undefined;
128
- } | undefined;
129
- readonly sign?: boolean | undefined;
130
- readonly storeQueries?: boolean | undefined;
131
- readonly timestamp?: boolean | undefined;
132
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
133
- schema: string;
134
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
135
- accountDerivationPath?: string | undefined;
136
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
137
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
138
- readonly name?: string | undefined;
139
- readonly paging?: Record<string, {
140
- size?: number | undefined;
141
- }> | undefined;
142
- readonly security?: {
143
- readonly allowAnonymous?: boolean | undefined;
144
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
145
- readonly disallowed?: Record<string, string[]> | undefined;
146
- } | undefined;
147
- readonly sign?: boolean | undefined;
148
- readonly storeQueries?: boolean | undefined;
149
- readonly timestamp?: boolean | undefined;
150
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
151
- archivist?: string | undefined;
152
- } & {
153
- schema: "network.xyo.node.config";
154
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
155
- accountDerivationPath?: string | undefined;
156
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
157
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
158
- readonly name?: string | undefined;
159
- readonly paging?: Record<string, {
160
- size?: number | undefined;
161
- }> | undefined;
162
- readonly security?: {
163
- readonly allowAnonymous?: boolean | undefined;
164
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
165
- readonly disallowed?: Record<string, string[]> | undefined;
166
- } | undefined;
167
- readonly sign?: boolean | undefined;
168
- readonly storeQueries?: boolean | undefined;
169
- readonly timestamp?: boolean | undefined;
170
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
171
- archivist?: string | undefined;
172
- } & {
173
- schema: "network.xyo.node.config";
174
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
175
- accountDerivationPath?: string | undefined;
176
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
177
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
178
- readonly name?: string | undefined;
179
- readonly paging?: Record<string, {
180
- size?: number | undefined;
181
- }> | undefined;
182
- readonly security?: {
183
- readonly allowAnonymous?: boolean | undefined;
184
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
185
- readonly disallowed?: Record<string, string[]> | undefined;
186
- } | undefined;
187
- readonly sign?: boolean | undefined;
188
- readonly storeQueries?: boolean | undefined;
189
- readonly timestamp?: boolean | undefined;
190
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
191
- archivist?: string | undefined;
192
- } & {
193
- schema: "network.xyo.node.config";
194
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
195
- accountDerivationPath?: string | undefined;
196
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
197
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
198
- readonly name?: string | undefined;
199
- readonly paging?: Record<string, {
200
- size?: number | undefined;
201
- }> | undefined;
202
- readonly security?: {
203
- readonly allowAnonymous?: boolean | undefined;
204
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
205
- readonly disallowed?: Record<string, string[]> | undefined;
206
- } | undefined;
207
- readonly sign?: boolean | undefined;
208
- readonly storeQueries?: boolean | undefined;
209
- readonly timestamp?: boolean | undefined;
210
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
211
- archivist?: string | undefined;
212
- } & {
213
- schema: "network.xyo.node.config";
214
- }), "schema">, "schema"> & {
215
- schema: string;
216
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
217
- accountDerivationPath?: string | undefined;
218
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
219
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
220
- readonly name?: string | undefined;
221
- readonly paging?: Record<string, {
222
- size?: number | undefined;
223
- }> | undefined;
224
- readonly security?: {
225
- readonly allowAnonymous?: boolean | undefined;
226
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
227
- readonly disallowed?: Record<string, string[]> | undefined;
228
- } | undefined;
229
- readonly sign?: boolean | undefined;
230
- readonly storeQueries?: boolean | undefined;
231
- readonly timestamp?: boolean | undefined;
232
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
233
- schema: string;
234
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
235
- accountDerivationPath?: string | undefined;
236
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
237
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
238
- readonly name?: string | undefined;
239
- readonly paging?: Record<string, {
240
- size?: number | undefined;
241
- }> | undefined;
242
- readonly security?: {
243
- readonly allowAnonymous?: boolean | undefined;
244
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
245
- readonly disallowed?: Record<string, string[]> | undefined;
246
- } | undefined;
247
- readonly sign?: boolean | undefined;
248
- readonly storeQueries?: boolean | undefined;
249
- readonly timestamp?: boolean | undefined;
250
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
251
- archivist?: string | undefined;
252
- } & {
253
- schema: "network.xyo.node.config";
254
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
255
- accountDerivationPath?: string | undefined;
256
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
257
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
258
- readonly name?: string | undefined;
259
- readonly paging?: Record<string, {
260
- size?: number | undefined;
261
- }> | undefined;
262
- readonly security?: {
263
- readonly allowAnonymous?: boolean | undefined;
264
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
265
- readonly disallowed?: Record<string, string[]> | undefined;
266
- } | undefined;
267
- readonly sign?: boolean | undefined;
268
- readonly storeQueries?: boolean | undefined;
269
- readonly timestamp?: boolean | undefined;
270
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
271
- archivist?: string | undefined;
272
- } & {
273
- schema: "network.xyo.node.config";
274
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
275
- accountDerivationPath?: string | undefined;
276
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
277
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
278
- readonly name?: string | undefined;
279
- readonly paging?: Record<string, {
280
- size?: number | undefined;
281
- }> | undefined;
282
- readonly security?: {
283
- readonly allowAnonymous?: boolean | undefined;
284
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
285
- readonly disallowed?: Record<string, string[]> | undefined;
286
- } | undefined;
287
- readonly sign?: boolean | undefined;
288
- readonly storeQueries?: boolean | undefined;
289
- readonly timestamp?: boolean | undefined;
290
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
291
- archivist?: string | undefined;
292
- } & {
293
- schema: "network.xyo.node.config";
294
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
295
- accountDerivationPath?: string | undefined;
296
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
297
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
298
- readonly name?: string | undefined;
299
- readonly paging?: Record<string, {
300
- size?: number | undefined;
301
- }> | undefined;
302
- readonly security?: {
303
- readonly allowAnonymous?: boolean | undefined;
304
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
305
- readonly disallowed?: Record<string, string[]> | undefined;
306
- } | undefined;
307
- readonly sign?: boolean | undefined;
308
- readonly storeQueries?: boolean | undefined;
309
- readonly timestamp?: boolean | undefined;
310
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
311
- archivist?: string | undefined;
312
- } & {
313
- schema: "network.xyo.node.config";
314
- }), "schema">, "schema"> & {
315
- schema: string;
316
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
317
- accountDerivationPath?: string | undefined;
318
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
319
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
320
- readonly name?: string | undefined;
321
- readonly paging?: Record<string, {
322
- size?: number | undefined;
323
- }> | undefined;
324
- readonly security?: {
325
- readonly allowAnonymous?: boolean | undefined;
326
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
327
- readonly disallowed?: Record<string, string[]> | undefined;
328
- } | undefined;
329
- readonly sign?: boolean | undefined;
330
- readonly storeQueries?: boolean | undefined;
331
- readonly timestamp?: boolean | undefined;
332
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
333
- schema: string;
334
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
335
- accountDerivationPath?: string | undefined;
336
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
337
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
338
- readonly name?: string | undefined;
339
- readonly paging?: Record<string, {
340
- size?: number | undefined;
341
- }> | undefined;
342
- readonly security?: {
343
- readonly allowAnonymous?: boolean | undefined;
344
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
345
- readonly disallowed?: Record<string, string[]> | undefined;
346
- } | undefined;
347
- readonly sign?: boolean | undefined;
348
- readonly storeQueries?: boolean | undefined;
349
- readonly timestamp?: boolean | undefined;
350
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
351
- archivist?: string | undefined;
352
- } & {
353
- schema: "network.xyo.node.config";
354
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
355
- accountDerivationPath?: string | undefined;
356
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
357
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
358
- readonly name?: string | undefined;
359
- readonly paging?: Record<string, {
360
- size?: number | undefined;
361
- }> | undefined;
362
- readonly security?: {
363
- readonly allowAnonymous?: boolean | undefined;
364
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
365
- readonly disallowed?: Record<string, string[]> | undefined;
366
- } | undefined;
367
- readonly sign?: boolean | undefined;
368
- readonly storeQueries?: boolean | undefined;
369
- readonly timestamp?: boolean | undefined;
370
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
371
- archivist?: string | undefined;
372
- } & {
373
- schema: "network.xyo.node.config";
374
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
375
- accountDerivationPath?: string | undefined;
376
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
377
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
378
- readonly name?: string | undefined;
379
- readonly paging?: Record<string, {
380
- size?: number | undefined;
381
- }> | undefined;
382
- readonly security?: {
383
- readonly allowAnonymous?: boolean | undefined;
384
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
385
- readonly disallowed?: Record<string, string[]> | undefined;
386
- } | undefined;
387
- readonly sign?: boolean | undefined;
388
- readonly storeQueries?: boolean | undefined;
389
- readonly timestamp?: boolean | undefined;
390
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
391
- archivist?: string | undefined;
392
- } & {
393
- schema: "network.xyo.node.config";
394
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
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
- archivist?: string | undefined;
412
- } & {
413
- schema: "network.xyo.node.config";
414
- }), "schema">, "schema"> & {
415
- schema: string;
416
- });
417
- ephemeralQueryAccountEnabled?: boolean | undefined;
418
- wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
419
- }, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
420
- get archivist(): StorageArchivist<import("@xyo-network/object").BaseParamsFields & {
421
- account?: AccountInstance | "random" | undefined;
422
- config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
423
- accountDerivationPath?: string | undefined;
424
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
425
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
426
- readonly name?: string | undefined;
427
- readonly paging?: Record<string, {
428
- size?: number | undefined;
429
- }> | undefined;
430
- readonly security?: {
431
- readonly allowAnonymous?: boolean | undefined;
432
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
433
- readonly disallowed?: Record<string, string[]> | undefined;
434
- } | undefined;
435
- readonly sign?: boolean | undefined;
436
- readonly storeQueries?: boolean | undefined;
437
- readonly timestamp?: boolean | undefined;
438
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
439
- schema: string;
440
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
441
- accountDerivationPath?: string | undefined;
442
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
443
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
444
- readonly name?: string | undefined;
445
- readonly paging?: Record<string, {
446
- size?: number | undefined;
447
- }> | undefined;
448
- readonly security?: {
449
- readonly allowAnonymous?: boolean | undefined;
450
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
451
- readonly disallowed?: Record<string, string[]> | undefined;
452
- } | undefined;
453
- readonly sign?: boolean | undefined;
454
- readonly storeQueries?: boolean | undefined;
455
- readonly timestamp?: boolean | undefined;
456
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
457
- maxEntries?: number | undefined;
458
- maxEntrySize?: number | undefined;
459
- namespace?: string | undefined;
460
- persistAccount?: boolean | undefined;
461
- schema: "network.xyo.archivist.storage.config";
462
- type?: "local" | "session" | "page" | undefined;
463
- } & {
464
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
465
- requireAllParents?: boolean | undefined;
466
- storeParentReads?: boolean | undefined;
467
- }, "schema"> & {
468
- schema: "network.xyo.archivist.storage.config";
469
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
470
- accountDerivationPath?: string | undefined;
471
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
472
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
473
- readonly name?: string | undefined;
474
- readonly paging?: Record<string, {
475
- size?: number | undefined;
476
- }> | undefined;
477
- readonly security?: {
478
- readonly allowAnonymous?: boolean | undefined;
479
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
480
- readonly disallowed?: Record<string, string[]> | undefined;
481
- } | undefined;
482
- readonly sign?: boolean | undefined;
483
- readonly storeQueries?: boolean | undefined;
484
- readonly timestamp?: boolean | undefined;
485
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
486
- maxEntries?: number | undefined;
487
- maxEntrySize?: number | undefined;
488
- namespace?: string | undefined;
489
- persistAccount?: boolean | undefined;
490
- schema: "network.xyo.archivist.storage.config";
491
- type?: "local" | "session" | "page" | undefined;
492
- } & {
493
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
494
- requireAllParents?: boolean | undefined;
495
- storeParentReads?: boolean | undefined;
496
- }, "schema"> & {
497
- schema: "network.xyo.archivist.storage.config";
498
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
499
- accountDerivationPath?: string | undefined;
500
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | 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 security?: {
507
- readonly allowAnonymous?: boolean | undefined;
508
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
509
- readonly disallowed?: Record<string, string[]> | undefined;
510
- } | undefined;
511
- readonly sign?: boolean | undefined;
512
- readonly storeQueries?: boolean | undefined;
513
- readonly timestamp?: boolean | undefined;
514
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
515
- maxEntries?: number | undefined;
516
- maxEntrySize?: number | undefined;
517
- namespace?: string | undefined;
518
- persistAccount?: boolean | undefined;
519
- schema: "network.xyo.archivist.storage.config";
520
- type?: "local" | "session" | "page" | undefined;
521
- } & {
522
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
523
- requireAllParents?: boolean | undefined;
524
- storeParentReads?: boolean | undefined;
525
- }, "schema"> & {
526
- schema: "network.xyo.archivist.storage.config";
527
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
528
- accountDerivationPath?: string | undefined;
529
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
530
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
531
- readonly name?: string | undefined;
532
- readonly paging?: Record<string, {
533
- size?: number | undefined;
534
- }> | undefined;
535
- readonly security?: {
536
- readonly allowAnonymous?: boolean | undefined;
537
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
538
- readonly disallowed?: Record<string, string[]> | undefined;
539
- } | undefined;
540
- readonly sign?: boolean | undefined;
541
- readonly storeQueries?: boolean | undefined;
542
- readonly timestamp?: boolean | undefined;
543
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
544
- maxEntries?: number | undefined;
545
- maxEntrySize?: number | undefined;
546
- namespace?: string | undefined;
547
- persistAccount?: boolean | undefined;
548
- schema: "network.xyo.archivist.storage.config";
549
- type?: "local" | "session" | "page" | undefined;
550
- } & {
551
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
552
- requireAllParents?: boolean | undefined;
553
- storeParentReads?: boolean | undefined;
554
- }, "schema"> & {
555
- schema: "network.xyo.archivist.storage.config";
556
- }), "schema">, "schema"> & {
557
- schema: string;
558
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
559
- accountDerivationPath?: string | undefined;
560
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
561
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
562
- readonly name?: string | undefined;
563
- readonly paging?: Record<string, {
564
- size?: number | undefined;
565
- }> | undefined;
566
- readonly security?: {
567
- readonly allowAnonymous?: boolean | undefined;
568
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
569
- readonly disallowed?: Record<string, string[]> | undefined;
570
- } | undefined;
571
- readonly sign?: boolean | undefined;
572
- readonly storeQueries?: boolean | undefined;
573
- readonly timestamp?: boolean | undefined;
574
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
575
- schema: string;
576
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
577
- accountDerivationPath?: string | undefined;
578
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
579
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
580
- readonly name?: string | undefined;
581
- readonly paging?: Record<string, {
582
- size?: number | undefined;
583
- }> | undefined;
584
- readonly security?: {
585
- readonly allowAnonymous?: boolean | undefined;
586
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
587
- readonly disallowed?: Record<string, string[]> | undefined;
588
- } | undefined;
589
- readonly sign?: boolean | undefined;
590
- readonly storeQueries?: boolean | undefined;
591
- readonly timestamp?: boolean | undefined;
592
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
593
- maxEntries?: number | undefined;
594
- maxEntrySize?: number | undefined;
595
- namespace?: string | undefined;
596
- persistAccount?: boolean | undefined;
597
- schema: "network.xyo.archivist.storage.config";
598
- type?: "local" | "session" | "page" | undefined;
599
- } & {
600
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
601
- requireAllParents?: boolean | undefined;
602
- storeParentReads?: boolean | undefined;
603
- }, "schema"> & {
604
- schema: "network.xyo.archivist.storage.config";
605
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
606
- accountDerivationPath?: string | undefined;
607
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
608
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
609
- readonly name?: string | undefined;
610
- readonly paging?: Record<string, {
611
- size?: number | undefined;
612
- }> | undefined;
613
- readonly security?: {
614
- readonly allowAnonymous?: boolean | undefined;
615
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
616
- readonly disallowed?: Record<string, string[]> | undefined;
617
- } | undefined;
618
- readonly sign?: boolean | undefined;
619
- readonly storeQueries?: boolean | undefined;
620
- readonly timestamp?: boolean | undefined;
621
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
622
- maxEntries?: number | undefined;
623
- maxEntrySize?: number | undefined;
624
- namespace?: string | undefined;
625
- persistAccount?: boolean | undefined;
626
- schema: "network.xyo.archivist.storage.config";
627
- type?: "local" | "session" | "page" | undefined;
628
- } & {
629
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
630
- requireAllParents?: boolean | undefined;
631
- storeParentReads?: boolean | undefined;
632
- }, "schema"> & {
633
- schema: "network.xyo.archivist.storage.config";
634
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
635
- accountDerivationPath?: string | undefined;
636
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
637
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
638
- readonly name?: string | undefined;
639
- readonly paging?: Record<string, {
640
- size?: number | undefined;
641
- }> | undefined;
642
- readonly security?: {
643
- readonly allowAnonymous?: boolean | undefined;
644
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
645
- readonly disallowed?: Record<string, string[]> | undefined;
646
- } | undefined;
647
- readonly sign?: boolean | undefined;
648
- readonly storeQueries?: boolean | undefined;
649
- readonly timestamp?: boolean | undefined;
650
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
651
- maxEntries?: number | undefined;
652
- maxEntrySize?: number | undefined;
653
- namespace?: string | undefined;
654
- persistAccount?: boolean | undefined;
655
- schema: "network.xyo.archivist.storage.config";
656
- type?: "local" | "session" | "page" | undefined;
657
- } & {
658
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
659
- requireAllParents?: boolean | undefined;
660
- storeParentReads?: boolean | undefined;
661
- }, "schema"> & {
662
- schema: "network.xyo.archivist.storage.config";
663
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
664
- accountDerivationPath?: string | undefined;
665
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
666
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
667
- readonly name?: string | undefined;
668
- readonly paging?: Record<string, {
669
- size?: number | undefined;
670
- }> | undefined;
671
- readonly security?: {
672
- readonly allowAnonymous?: boolean | undefined;
673
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
674
- readonly disallowed?: Record<string, string[]> | undefined;
675
- } | undefined;
676
- readonly sign?: boolean | undefined;
677
- readonly storeQueries?: boolean | undefined;
678
- readonly timestamp?: boolean | undefined;
679
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
680
- maxEntries?: number | undefined;
681
- maxEntrySize?: number | undefined;
682
- namespace?: string | undefined;
683
- persistAccount?: boolean | undefined;
684
- schema: "network.xyo.archivist.storage.config";
685
- type?: "local" | "session" | "page" | undefined;
686
- } & {
687
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
688
- requireAllParents?: boolean | undefined;
689
- storeParentReads?: boolean | undefined;
690
- }, "schema"> & {
691
- schema: "network.xyo.archivist.storage.config";
692
- }), "schema">, "schema"> & {
693
- schema: string;
694
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
695
- accountDerivationPath?: string | undefined;
696
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
697
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
698
- readonly name?: string | undefined;
699
- readonly paging?: Record<string, {
700
- size?: number | undefined;
701
- }> | undefined;
702
- readonly security?: {
703
- readonly allowAnonymous?: boolean | undefined;
704
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
705
- readonly disallowed?: Record<string, string[]> | undefined;
706
- } | undefined;
707
- readonly sign?: boolean | undefined;
708
- readonly storeQueries?: boolean | undefined;
709
- readonly timestamp?: boolean | undefined;
710
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
711
- schema: string;
712
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
713
- accountDerivationPath?: string | undefined;
714
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
715
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
716
- readonly name?: string | undefined;
717
- readonly paging?: Record<string, {
718
- size?: number | undefined;
719
- }> | undefined;
720
- readonly security?: {
721
- readonly allowAnonymous?: boolean | undefined;
722
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
723
- readonly disallowed?: Record<string, string[]> | undefined;
724
- } | undefined;
725
- readonly sign?: boolean | undefined;
726
- readonly storeQueries?: boolean | undefined;
727
- readonly timestamp?: boolean | undefined;
728
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
729
- maxEntries?: number | undefined;
730
- maxEntrySize?: number | undefined;
731
- namespace?: string | undefined;
732
- persistAccount?: boolean | undefined;
733
- schema: "network.xyo.archivist.storage.config";
734
- type?: "local" | "session" | "page" | undefined;
735
- } & {
736
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
737
- requireAllParents?: boolean | undefined;
738
- storeParentReads?: boolean | undefined;
739
- }, "schema"> & {
740
- schema: "network.xyo.archivist.storage.config";
741
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
742
- accountDerivationPath?: string | undefined;
743
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
744
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
745
- readonly name?: string | undefined;
746
- readonly paging?: Record<string, {
747
- size?: number | undefined;
748
- }> | undefined;
749
- readonly security?: {
750
- readonly allowAnonymous?: boolean | undefined;
751
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
752
- readonly disallowed?: Record<string, string[]> | undefined;
753
- } | undefined;
754
- readonly sign?: boolean | undefined;
755
- readonly storeQueries?: boolean | undefined;
756
- readonly timestamp?: boolean | undefined;
757
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
758
- maxEntries?: number | undefined;
759
- maxEntrySize?: number | undefined;
760
- namespace?: string | undefined;
761
- persistAccount?: boolean | undefined;
762
- schema: "network.xyo.archivist.storage.config";
763
- type?: "local" | "session" | "page" | undefined;
764
- } & {
765
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
766
- requireAllParents?: boolean | undefined;
767
- storeParentReads?: boolean | undefined;
768
- }, "schema"> & {
769
- schema: "network.xyo.archivist.storage.config";
770
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
771
- accountDerivationPath?: string | undefined;
772
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
773
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
774
- readonly name?: string | undefined;
775
- readonly paging?: Record<string, {
776
- size?: number | undefined;
777
- }> | undefined;
778
- readonly security?: {
779
- readonly allowAnonymous?: boolean | undefined;
780
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
781
- readonly disallowed?: Record<string, string[]> | undefined;
782
- } | undefined;
783
- readonly sign?: boolean | undefined;
784
- readonly storeQueries?: boolean | undefined;
785
- readonly timestamp?: boolean | undefined;
786
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
787
- maxEntries?: number | undefined;
788
- maxEntrySize?: number | undefined;
789
- namespace?: string | undefined;
790
- persistAccount?: boolean | undefined;
791
- schema: "network.xyo.archivist.storage.config";
792
- type?: "local" | "session" | "page" | undefined;
793
- } & {
794
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
795
- requireAllParents?: boolean | undefined;
796
- storeParentReads?: boolean | undefined;
797
- }, "schema"> & {
798
- schema: "network.xyo.archivist.storage.config";
799
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
800
- accountDerivationPath?: string | undefined;
801
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
802
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
803
- readonly name?: string | undefined;
804
- readonly paging?: Record<string, {
805
- size?: number | undefined;
806
- }> | undefined;
807
- readonly security?: {
808
- readonly allowAnonymous?: boolean | undefined;
809
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
810
- readonly disallowed?: Record<string, string[]> | undefined;
811
- } | undefined;
812
- readonly sign?: boolean | undefined;
813
- readonly storeQueries?: boolean | undefined;
814
- readonly timestamp?: boolean | undefined;
815
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
816
- maxEntries?: number | undefined;
817
- maxEntrySize?: number | undefined;
818
- namespace?: string | undefined;
819
- persistAccount?: boolean | undefined;
820
- schema: "network.xyo.archivist.storage.config";
821
- type?: "local" | "session" | "page" | undefined;
822
- } & {
823
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
824
- requireAllParents?: boolean | undefined;
825
- storeParentReads?: boolean | undefined;
826
- }, "schema"> & {
827
- schema: "network.xyo.archivist.storage.config";
828
- }), "schema">, "schema"> & {
829
- schema: string;
830
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
831
- accountDerivationPath?: string | undefined;
832
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
833
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
834
- readonly name?: string | undefined;
835
- readonly paging?: Record<string, {
836
- size?: number | undefined;
837
- }> | undefined;
838
- readonly security?: {
839
- readonly allowAnonymous?: boolean | undefined;
840
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
841
- readonly disallowed?: Record<string, string[]> | undefined;
842
- } | undefined;
843
- readonly sign?: boolean | undefined;
844
- readonly storeQueries?: boolean | undefined;
845
- readonly timestamp?: boolean | undefined;
846
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
847
- schema: string;
848
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
849
- accountDerivationPath?: string | undefined;
850
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
851
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
852
- readonly name?: string | undefined;
853
- readonly paging?: Record<string, {
854
- size?: number | undefined;
855
- }> | undefined;
856
- readonly security?: {
857
- readonly allowAnonymous?: boolean | undefined;
858
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
859
- readonly disallowed?: Record<string, string[]> | undefined;
860
- } | undefined;
861
- readonly sign?: boolean | undefined;
862
- readonly storeQueries?: boolean | undefined;
863
- readonly timestamp?: boolean | undefined;
864
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
865
- maxEntries?: number | undefined;
866
- maxEntrySize?: number | undefined;
867
- namespace?: string | undefined;
868
- persistAccount?: boolean | undefined;
869
- schema: "network.xyo.archivist.storage.config";
870
- type?: "local" | "session" | "page" | undefined;
871
- } & {
872
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
873
- requireAllParents?: boolean | undefined;
874
- storeParentReads?: boolean | undefined;
875
- }, "schema"> & {
876
- schema: "network.xyo.archivist.storage.config";
877
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
878
- accountDerivationPath?: string | undefined;
879
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
880
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
881
- readonly name?: string | undefined;
882
- readonly paging?: Record<string, {
883
- size?: number | undefined;
884
- }> | undefined;
885
- readonly security?: {
886
- readonly allowAnonymous?: boolean | undefined;
887
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
888
- readonly disallowed?: Record<string, string[]> | undefined;
889
- } | undefined;
890
- readonly sign?: boolean | undefined;
891
- readonly storeQueries?: boolean | undefined;
892
- readonly timestamp?: boolean | undefined;
893
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
894
- maxEntries?: number | undefined;
895
- maxEntrySize?: number | undefined;
896
- namespace?: string | undefined;
897
- persistAccount?: boolean | undefined;
898
- schema: "network.xyo.archivist.storage.config";
899
- type?: "local" | "session" | "page" | undefined;
900
- } & {
901
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
902
- requireAllParents?: boolean | undefined;
903
- storeParentReads?: boolean | undefined;
904
- }, "schema"> & {
905
- schema: "network.xyo.archivist.storage.config";
906
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
907
- accountDerivationPath?: string | undefined;
908
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
909
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
910
- readonly name?: string | undefined;
911
- readonly paging?: Record<string, {
912
- size?: number | undefined;
913
- }> | undefined;
914
- readonly security?: {
915
- readonly allowAnonymous?: boolean | undefined;
916
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
917
- readonly disallowed?: Record<string, string[]> | undefined;
918
- } | undefined;
919
- readonly sign?: boolean | undefined;
920
- readonly storeQueries?: boolean | undefined;
921
- readonly timestamp?: boolean | undefined;
922
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
923
- maxEntries?: number | undefined;
924
- maxEntrySize?: number | undefined;
925
- namespace?: string | undefined;
926
- persistAccount?: boolean | undefined;
927
- schema: "network.xyo.archivist.storage.config";
928
- type?: "local" | "session" | "page" | undefined;
929
- } & {
930
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
931
- requireAllParents?: boolean | undefined;
932
- storeParentReads?: boolean | undefined;
933
- }, "schema"> & {
934
- schema: "network.xyo.archivist.storage.config";
935
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
936
- accountDerivationPath?: string | undefined;
937
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
938
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
939
- readonly name?: string | undefined;
940
- readonly paging?: Record<string, {
941
- size?: number | undefined;
942
- }> | undefined;
943
- readonly security?: {
944
- readonly allowAnonymous?: boolean | undefined;
945
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
946
- readonly disallowed?: Record<string, string[]> | undefined;
947
- } | undefined;
948
- readonly sign?: boolean | undefined;
949
- readonly storeQueries?: boolean | undefined;
950
- readonly timestamp?: boolean | undefined;
951
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
952
- maxEntries?: number | undefined;
953
- maxEntrySize?: number | undefined;
954
- namespace?: string | undefined;
955
- persistAccount?: boolean | undefined;
956
- schema: "network.xyo.archivist.storage.config";
957
- type?: "local" | "session" | "page" | undefined;
958
- } & {
959
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
960
- requireAllParents?: boolean | undefined;
961
- storeParentReads?: boolean | undefined;
962
- }, "schema"> & {
963
- schema: "network.xyo.archivist.storage.config";
964
- }), "schema">, "schema"> & {
965
- schema: string;
966
- });
967
- ephemeralQueryAccountEnabled?: boolean | undefined;
968
- wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
969
- }, import("@xyo-network/archivist").ArchivistModuleEventData>;
970
- static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
971
- buildArchivist(): Promise<StorageArchivist<import("@xyo-network/object").BaseParamsFields & {
972
- account?: AccountInstance | "random" | undefined;
973
- config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
974
- accountDerivationPath?: string | undefined;
975
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
976
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
977
- readonly name?: string | undefined;
978
- readonly paging?: Record<string, {
979
- size?: number | undefined;
980
- }> | undefined;
981
- readonly security?: {
982
- readonly allowAnonymous?: boolean | undefined;
983
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
984
- readonly disallowed?: Record<string, string[]> | undefined;
985
- } | undefined;
986
- readonly sign?: boolean | undefined;
987
- readonly storeQueries?: boolean | undefined;
988
- readonly timestamp?: boolean | undefined;
989
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
990
- schema: string;
991
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
992
- accountDerivationPath?: string | undefined;
993
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
994
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
995
- readonly name?: string | undefined;
996
- readonly paging?: Record<string, {
997
- size?: number | undefined;
998
- }> | undefined;
999
- readonly security?: {
1000
- readonly allowAnonymous?: boolean | undefined;
1001
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1002
- readonly disallowed?: Record<string, string[]> | undefined;
1003
- } | undefined;
1004
- readonly sign?: boolean | undefined;
1005
- readonly storeQueries?: boolean | undefined;
1006
- readonly timestamp?: boolean | undefined;
1007
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1008
- maxEntries?: number | undefined;
1009
- maxEntrySize?: number | undefined;
1010
- namespace?: string | undefined;
1011
- persistAccount?: boolean | undefined;
1012
- schema: "network.xyo.archivist.storage.config";
1013
- type?: "local" | "session" | "page" | undefined;
1014
- } & {
1015
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1016
- requireAllParents?: boolean | undefined;
1017
- storeParentReads?: boolean | undefined;
1018
- }, "schema"> & {
1019
- schema: "network.xyo.archivist.storage.config";
1020
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1021
- accountDerivationPath?: string | undefined;
1022
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1023
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1024
- readonly name?: string | undefined;
1025
- readonly paging?: Record<string, {
1026
- size?: number | undefined;
1027
- }> | undefined;
1028
- readonly security?: {
1029
- readonly allowAnonymous?: boolean | undefined;
1030
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1031
- readonly disallowed?: Record<string, string[]> | undefined;
1032
- } | undefined;
1033
- readonly sign?: boolean | undefined;
1034
- readonly storeQueries?: boolean | undefined;
1035
- readonly timestamp?: boolean | undefined;
1036
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1037
- maxEntries?: number | undefined;
1038
- maxEntrySize?: number | undefined;
1039
- namespace?: string | undefined;
1040
- persistAccount?: boolean | undefined;
1041
- schema: "network.xyo.archivist.storage.config";
1042
- type?: "local" | "session" | "page" | undefined;
1043
- } & {
1044
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1045
- requireAllParents?: boolean | undefined;
1046
- storeParentReads?: boolean | undefined;
1047
- }, "schema"> & {
1048
- schema: "network.xyo.archivist.storage.config";
1049
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1050
- accountDerivationPath?: string | undefined;
1051
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1052
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1053
- readonly name?: string | undefined;
1054
- readonly paging?: Record<string, {
1055
- size?: number | undefined;
1056
- }> | undefined;
1057
- readonly security?: {
1058
- readonly allowAnonymous?: boolean | undefined;
1059
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1060
- readonly disallowed?: Record<string, string[]> | undefined;
1061
- } | undefined;
1062
- readonly sign?: boolean | undefined;
1063
- readonly storeQueries?: boolean | undefined;
1064
- readonly timestamp?: boolean | undefined;
1065
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1066
- maxEntries?: number | undefined;
1067
- maxEntrySize?: number | undefined;
1068
- namespace?: string | undefined;
1069
- persistAccount?: boolean | undefined;
1070
- schema: "network.xyo.archivist.storage.config";
1071
- type?: "local" | "session" | "page" | undefined;
1072
- } & {
1073
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1074
- requireAllParents?: boolean | undefined;
1075
- storeParentReads?: boolean | undefined;
1076
- }, "schema"> & {
1077
- schema: "network.xyo.archivist.storage.config";
1078
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1079
- accountDerivationPath?: string | undefined;
1080
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1081
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1082
- readonly name?: string | undefined;
1083
- readonly paging?: Record<string, {
1084
- size?: number | undefined;
1085
- }> | undefined;
1086
- readonly security?: {
1087
- readonly allowAnonymous?: boolean | undefined;
1088
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1089
- readonly disallowed?: Record<string, string[]> | undefined;
1090
- } | undefined;
1091
- readonly sign?: boolean | undefined;
1092
- readonly storeQueries?: boolean | undefined;
1093
- readonly timestamp?: boolean | undefined;
1094
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1095
- maxEntries?: number | undefined;
1096
- maxEntrySize?: number | undefined;
1097
- namespace?: string | undefined;
1098
- persistAccount?: boolean | undefined;
1099
- schema: "network.xyo.archivist.storage.config";
1100
- type?: "local" | "session" | "page" | undefined;
1101
- } & {
1102
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1103
- requireAllParents?: boolean | undefined;
1104
- storeParentReads?: boolean | undefined;
1105
- }, "schema"> & {
1106
- schema: "network.xyo.archivist.storage.config";
1107
- }), "schema">, "schema"> & {
1108
- schema: string;
1109
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1110
- accountDerivationPath?: string | undefined;
1111
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
16
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
17
+ readonly archivist?: string | undefined;
1112
18
  readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1113
19
  readonly name?: string | undefined;
1114
20
  readonly paging?: Record<string, {
1115
21
  size?: number | undefined;
1116
22
  }> | undefined;
23
+ schema: "network.xyo.node.config";
1117
24
  readonly security?: {
1118
25
  readonly allowAnonymous?: boolean | undefined;
1119
26
  readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
@@ -1122,16 +29,14 @@ export declare class StorageArchivistBuilder {
1122
29
  readonly sign?: boolean | undefined;
1123
30
  readonly storeQueries?: boolean | undefined;
1124
31
  readonly timestamp?: boolean | undefined;
1125
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1126
- schema: string;
1127
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1128
- accountDerivationPath?: string | undefined;
1129
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
32
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
33
+ readonly archivist?: string | undefined;
1130
34
  readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1131
35
  readonly name?: string | undefined;
1132
36
  readonly paging?: Record<string, {
1133
37
  size?: number | undefined;
1134
38
  }> | undefined;
39
+ schema: "network.xyo.node.config";
1135
40
  readonly security?: {
1136
41
  readonly allowAnonymous?: boolean | undefined;
1137
42
  readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
@@ -1140,56 +45,24 @@ export declare class StorageArchivistBuilder {
1140
45
  readonly sign?: boolean | undefined;
1141
46
  readonly storeQueries?: boolean | undefined;
1142
47
  readonly timestamp?: boolean | undefined;
1143
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1144
- maxEntries?: number | undefined;
1145
- maxEntrySize?: number | undefined;
1146
- namespace?: string | undefined;
1147
- persistAccount?: boolean | undefined;
1148
- schema: "network.xyo.archivist.storage.config";
1149
- type?: "local" | "session" | "page" | undefined;
1150
48
  } & {
1151
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1152
- requireAllParents?: boolean | undefined;
1153
- storeParentReads?: boolean | undefined;
49
+ archivist?: string | undefined;
50
+ schema: "network.xyo.node.config";
1154
51
  }, "schema"> & {
1155
- schema: "network.xyo.archivist.storage.config";
1156
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1157
- accountDerivationPath?: string | undefined;
1158
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
52
+ schema: string;
53
+ };
54
+ ephemeralQueryAccountEnabled?: boolean | undefined;
55
+ }, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
56
+ get archivist(): StorageArchivist<import("@xyo-network/object").BaseParamsFields & {
57
+ account?: AccountInstance | "random" | undefined;
58
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
59
+ readonly archivist?: string | undefined;
1159
60
  readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1160
61
  readonly name?: string | undefined;
1161
62
  readonly paging?: Record<string, {
1162
63
  size?: number | undefined;
1163
64
  }> | undefined;
1164
- readonly security?: {
1165
- readonly allowAnonymous?: boolean | undefined;
1166
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1167
- readonly disallowed?: Record<string, string[]> | undefined;
1168
- } | undefined;
1169
- readonly sign?: boolean | undefined;
1170
- readonly storeQueries?: boolean | undefined;
1171
- readonly timestamp?: boolean | undefined;
1172
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1173
- maxEntries?: number | undefined;
1174
- maxEntrySize?: number | undefined;
1175
- namespace?: string | undefined;
1176
- persistAccount?: boolean | undefined;
1177
- schema: "network.xyo.archivist.storage.config";
1178
- type?: "local" | "session" | "page" | undefined;
1179
- } & {
1180
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1181
- requireAllParents?: boolean | undefined;
1182
- storeParentReads?: boolean | undefined;
1183
- }, "schema"> & {
1184
65
  schema: "network.xyo.archivist.storage.config";
1185
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1186
- accountDerivationPath?: string | undefined;
1187
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1188
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1189
- readonly name?: string | undefined;
1190
- readonly paging?: Record<string, {
1191
- size?: number | undefined;
1192
- }> | undefined;
1193
66
  readonly security?: {
1194
67
  readonly allowAnonymous?: boolean | undefined;
1195
68
  readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
@@ -1198,76 +71,14 @@ export declare class StorageArchivistBuilder {
1198
71
  readonly sign?: boolean | undefined;
1199
72
  readonly storeQueries?: boolean | undefined;
1200
73
  readonly timestamp?: boolean | undefined;
1201
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1202
- maxEntries?: number | undefined;
1203
- maxEntrySize?: number | undefined;
1204
- namespace?: string | undefined;
1205
- persistAccount?: boolean | undefined;
1206
- schema: "network.xyo.archivist.storage.config";
1207
- type?: "local" | "session" | "page" | undefined;
1208
- } & {
1209
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1210
- requireAllParents?: boolean | undefined;
1211
- storeParentReads?: boolean | undefined;
1212
- }, "schema"> & {
1213
- schema: "network.xyo.archivist.storage.config";
1214
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1215
- accountDerivationPath?: string | undefined;
1216
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
74
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
75
+ readonly archivist?: string | undefined;
1217
76
  readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1218
77
  readonly name?: string | undefined;
1219
78
  readonly paging?: Record<string, {
1220
79
  size?: number | undefined;
1221
80
  }> | undefined;
1222
- readonly security?: {
1223
- readonly allowAnonymous?: boolean | undefined;
1224
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1225
- readonly disallowed?: Record<string, string[]> | undefined;
1226
- } | undefined;
1227
- readonly sign?: boolean | undefined;
1228
- readonly storeQueries?: boolean | undefined;
1229
- readonly timestamp?: boolean | undefined;
1230
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1231
- maxEntries?: number | undefined;
1232
- maxEntrySize?: number | undefined;
1233
- namespace?: string | undefined;
1234
- persistAccount?: boolean | undefined;
1235
- schema: "network.xyo.archivist.storage.config";
1236
- type?: "local" | "session" | "page" | undefined;
1237
- } & {
1238
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1239
- requireAllParents?: boolean | undefined;
1240
- storeParentReads?: boolean | undefined;
1241
- }, "schema"> & {
1242
81
  schema: "network.xyo.archivist.storage.config";
1243
- }), "schema">, "schema"> & {
1244
- schema: string;
1245
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1246
- accountDerivationPath?: string | undefined;
1247
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1248
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1249
- readonly name?: string | undefined;
1250
- readonly paging?: Record<string, {
1251
- size?: number | undefined;
1252
- }> | undefined;
1253
- readonly security?: {
1254
- readonly allowAnonymous?: boolean | undefined;
1255
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1256
- readonly disallowed?: Record<string, string[]> | undefined;
1257
- } | undefined;
1258
- readonly sign?: boolean | undefined;
1259
- readonly storeQueries?: boolean | undefined;
1260
- readonly timestamp?: boolean | undefined;
1261
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1262
- schema: string;
1263
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1264
- accountDerivationPath?: string | undefined;
1265
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1266
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1267
- readonly name?: string | undefined;
1268
- readonly paging?: Record<string, {
1269
- size?: number | undefined;
1270
- }> | undefined;
1271
82
  readonly security?: {
1272
83
  readonly allowAnonymous?: boolean | undefined;
1273
84
  readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
@@ -1276,116 +87,34 @@ export declare class StorageArchivistBuilder {
1276
87
  readonly sign?: boolean | undefined;
1277
88
  readonly storeQueries?: boolean | undefined;
1278
89
  readonly timestamp?: boolean | undefined;
1279
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1280
- maxEntries?: number | undefined;
1281
- maxEntrySize?: number | undefined;
1282
- namespace?: string | undefined;
1283
- persistAccount?: boolean | undefined;
1284
- schema: "network.xyo.archivist.storage.config";
1285
- type?: "local" | "session" | "page" | undefined;
1286
90
  } & {
1287
91
  parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1288
92
  requireAllParents?: boolean | undefined;
1289
- storeParentReads?: boolean | undefined;
1290
- }, "schema"> & {
1291
- schema: "network.xyo.archivist.storage.config";
1292
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1293
- accountDerivationPath?: string | undefined;
1294
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1295
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1296
- readonly name?: string | undefined;
1297
- readonly paging?: Record<string, {
1298
- size?: number | undefined;
1299
- }> | undefined;
1300
- readonly security?: {
1301
- readonly allowAnonymous?: boolean | undefined;
1302
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1303
- readonly disallowed?: Record<string, string[]> | undefined;
1304
- } | undefined;
1305
- readonly sign?: boolean | undefined;
1306
- readonly storeQueries?: boolean | undefined;
1307
- readonly timestamp?: boolean | undefined;
1308
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1309
- maxEntries?: number | undefined;
1310
- maxEntrySize?: number | undefined;
1311
- namespace?: string | undefined;
1312
- persistAccount?: boolean | undefined;
1313
93
  schema: "network.xyo.archivist.storage.config";
1314
- type?: "local" | "session" | "page" | undefined;
1315
- } & {
1316
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1317
- requireAllParents?: boolean | undefined;
1318
94
  storeParentReads?: boolean | undefined;
1319
- }, "schema"> & {
1320
- schema: "network.xyo.archivist.storage.config";
1321
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1322
- accountDerivationPath?: string | undefined;
1323
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1324
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1325
- readonly name?: string | undefined;
1326
- readonly paging?: Record<string, {
1327
- size?: number | undefined;
1328
- }> | undefined;
1329
- readonly security?: {
1330
- readonly allowAnonymous?: boolean | undefined;
1331
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1332
- readonly disallowed?: Record<string, string[]> | undefined;
1333
- } | undefined;
1334
- readonly sign?: boolean | undefined;
1335
- readonly storeQueries?: boolean | undefined;
1336
- readonly timestamp?: boolean | undefined;
1337
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1338
- maxEntries?: number | undefined;
1339
- maxEntrySize?: number | undefined;
1340
- namespace?: string | undefined;
1341
- persistAccount?: boolean | undefined;
1342
- schema: "network.xyo.archivist.storage.config";
1343
- type?: "local" | "session" | "page" | undefined;
1344
95
  } & {
1345
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1346
- requireAllParents?: boolean | undefined;
1347
- storeParentReads?: boolean | undefined;
1348
- }, "schema"> & {
1349
- schema: "network.xyo.archivist.storage.config";
1350
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1351
- accountDerivationPath?: string | undefined;
1352
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1353
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1354
- readonly name?: string | undefined;
1355
- readonly paging?: Record<string, {
1356
- size?: number | undefined;
1357
- }> | undefined;
1358
- readonly security?: {
1359
- readonly allowAnonymous?: boolean | undefined;
1360
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1361
- readonly disallowed?: Record<string, string[]> | undefined;
1362
- } | undefined;
1363
- readonly sign?: boolean | undefined;
1364
- readonly storeQueries?: boolean | undefined;
1365
- readonly timestamp?: boolean | undefined;
1366
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1367
96
  maxEntries?: number | undefined;
1368
97
  maxEntrySize?: number | undefined;
1369
98
  namespace?: string | undefined;
1370
99
  persistAccount?: boolean | undefined;
1371
100
  schema: "network.xyo.archivist.storage.config";
1372
101
  type?: "local" | "session" | "page" | undefined;
1373
- } & {
1374
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1375
- requireAllParents?: boolean | undefined;
1376
- storeParentReads?: boolean | undefined;
1377
102
  }, "schema"> & {
1378
- schema: "network.xyo.archivist.storage.config";
1379
- }), "schema">, "schema"> & {
1380
103
  schema: string;
1381
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1382
- accountDerivationPath?: string | undefined;
1383
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
104
+ };
105
+ ephemeralQueryAccountEnabled?: boolean | undefined;
106
+ }, import("@xyo-network/archivist").ArchivistModuleEventData>;
107
+ static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
108
+ buildArchivist(): Promise<StorageArchivist<import("@xyo-network/object").BaseParamsFields & {
109
+ account?: AccountInstance | "random" | undefined;
110
+ config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
111
+ readonly archivist?: string | undefined;
1384
112
  readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1385
113
  readonly name?: string | undefined;
1386
114
  readonly paging?: Record<string, {
1387
115
  size?: number | undefined;
1388
116
  }> | undefined;
117
+ schema: "network.xyo.archivist.storage.config";
1389
118
  readonly security?: {
1390
119
  readonly allowAnonymous?: boolean | undefined;
1391
120
  readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
@@ -1394,45 +123,14 @@ export declare class StorageArchivistBuilder {
1394
123
  readonly sign?: boolean | undefined;
1395
124
  readonly storeQueries?: boolean | undefined;
1396
125
  readonly timestamp?: boolean | undefined;
1397
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1398
- schema: string;
1399
- } & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1400
- accountDerivationPath?: string | undefined;
1401
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
126
+ } & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
127
+ readonly archivist?: string | undefined;
1402
128
  readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1403
129
  readonly name?: string | undefined;
1404
130
  readonly paging?: Record<string, {
1405
131
  size?: number | undefined;
1406
132
  }> | undefined;
1407
- readonly security?: {
1408
- readonly allowAnonymous?: boolean | undefined;
1409
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1410
- readonly disallowed?: Record<string, string[]> | undefined;
1411
- } | undefined;
1412
- readonly sign?: boolean | undefined;
1413
- readonly storeQueries?: boolean | undefined;
1414
- readonly timestamp?: boolean | undefined;
1415
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1416
- maxEntries?: number | undefined;
1417
- maxEntrySize?: number | undefined;
1418
- namespace?: string | undefined;
1419
- persistAccount?: boolean | undefined;
1420
- schema: "network.xyo.archivist.storage.config";
1421
- type?: "local" | "session" | "page" | undefined;
1422
- } & {
1423
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1424
- requireAllParents?: boolean | undefined;
1425
- storeParentReads?: boolean | undefined;
1426
- }, "schema"> & {
1427
133
  schema: "network.xyo.archivist.storage.config";
1428
- }) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1429
- accountDerivationPath?: string | undefined;
1430
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1431
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1432
- readonly name?: string | undefined;
1433
- readonly paging?: Record<string, {
1434
- size?: number | undefined;
1435
- }> | undefined;
1436
134
  readonly security?: {
1437
135
  readonly allowAnonymous?: boolean | undefined;
1438
136
  readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
@@ -1441,82 +139,22 @@ export declare class StorageArchivistBuilder {
1441
139
  readonly sign?: boolean | undefined;
1442
140
  readonly storeQueries?: boolean | undefined;
1443
141
  readonly timestamp?: boolean | undefined;
1444
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1445
- maxEntries?: number | undefined;
1446
- maxEntrySize?: number | undefined;
1447
- namespace?: string | undefined;
1448
- persistAccount?: boolean | undefined;
1449
- schema: "network.xyo.archivist.storage.config";
1450
- type?: "local" | "session" | "page" | undefined;
1451
142
  } & {
1452
143
  parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1453
144
  requireAllParents?: boolean | undefined;
1454
- storeParentReads?: boolean | undefined;
1455
- }, "schema"> & {
1456
- schema: "network.xyo.archivist.storage.config";
1457
- } & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
1458
- accountDerivationPath?: string | undefined;
1459
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1460
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1461
- readonly name?: string | undefined;
1462
- readonly paging?: Record<string, {
1463
- size?: number | undefined;
1464
- }> | undefined;
1465
- readonly security?: {
1466
- readonly allowAnonymous?: boolean | undefined;
1467
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1468
- readonly disallowed?: Record<string, string[]> | undefined;
1469
- } | undefined;
1470
- readonly sign?: boolean | undefined;
1471
- readonly storeQueries?: boolean | undefined;
1472
- readonly timestamp?: boolean | undefined;
1473
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
1474
- maxEntries?: number | undefined;
1475
- maxEntrySize?: number | undefined;
1476
- namespace?: string | undefined;
1477
- persistAccount?: boolean | undefined;
1478
145
  schema: "network.xyo.archivist.storage.config";
1479
- type?: "local" | "session" | "page" | undefined;
1480
- } & {
1481
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1482
- requireAllParents?: boolean | undefined;
1483
146
  storeParentReads?: boolean | undefined;
1484
- }, "schema"> & {
1485
- schema: "network.xyo.archivist.storage.config";
1486
- } & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
1487
- accountDerivationPath?: string | undefined;
1488
- readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
1489
- readonly labels?: import("@xyo-network/module-model").Labels | undefined;
1490
- readonly name?: string | undefined;
1491
- readonly paging?: Record<string, {
1492
- size?: number | undefined;
1493
- }> | undefined;
1494
- readonly security?: {
1495
- readonly allowAnonymous?: boolean | undefined;
1496
- readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
1497
- readonly disallowed?: Record<string, string[]> | undefined;
1498
- } | undefined;
1499
- readonly sign?: boolean | undefined;
1500
- readonly storeQueries?: boolean | undefined;
1501
- readonly timestamp?: boolean | undefined;
1502
- } & import("@xyo-network/module-model").ArchivingModuleConfig & {
147
+ } & {
1503
148
  maxEntries?: number | undefined;
1504
149
  maxEntrySize?: number | undefined;
1505
150
  namespace?: string | undefined;
1506
151
  persistAccount?: boolean | undefined;
1507
152
  schema: "network.xyo.archivist.storage.config";
1508
153
  type?: "local" | "session" | "page" | undefined;
1509
- } & {
1510
- parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
1511
- requireAllParents?: boolean | undefined;
1512
- storeParentReads?: boolean | undefined;
1513
154
  }, "schema"> & {
1514
- schema: "network.xyo.archivist.storage.config";
1515
- }), "schema">, "schema"> & {
1516
155
  schema: string;
1517
- });
156
+ };
1518
157
  ephemeralQueryAccountEnabled?: boolean | undefined;
1519
- wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
1520
158
  }, import("@xyo-network/archivist").ArchivistModuleEventData>>;
1521
159
  buildConfig(): StorageArchivistConfig;
1522
160
  findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance | undefined>;