@xyo-network/react-standard-node 2.66.5 → 2.67.1

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