@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.
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts +1198 -56
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +1198 -56
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +1198 -56
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +1599 -35
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +1599 -35
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +1599 -35
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +1343 -40
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +1343 -40
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +1343 -40
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +1198 -56
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +1198 -56
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +1198 -56
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +1599 -35
- package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +1599 -35
- package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +1599 -35
- package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +1343 -40
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +1343 -40
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +1343 -40
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +22 -22
- package/src/lib/Builders/MemoryNodeBuilder.ts +2 -2
|
@@ -5,9 +5,9 @@ export declare class SentinelBuilder {
|
|
|
5
5
|
private account;
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
|
-
get sentinel(): MemorySentinel<import("@xyo-network/
|
|
8
|
+
get sentinel(): MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
10
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
11
11
|
accountDerivationPath?: string | undefined;
|
|
12
12
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
13
13
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -23,7 +23,75 @@ export declare class SentinelBuilder {
|
|
|
23
23
|
readonly sign?: boolean | undefined;
|
|
24
24
|
readonly storeQueries?: boolean | undefined;
|
|
25
25
|
readonly timestamp?: boolean | undefined;
|
|
26
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
26
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
27
|
+
schema: string;
|
|
28
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
29
|
+
accountDerivationPath?: string | undefined;
|
|
30
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
31
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
32
|
+
readonly name?: string | undefined;
|
|
33
|
+
readonly paging?: Record<string, {
|
|
34
|
+
size?: number | undefined;
|
|
35
|
+
}> | undefined;
|
|
36
|
+
readonly security?: {
|
|
37
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
38
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
readonly sign?: boolean | undefined;
|
|
42
|
+
readonly storeQueries?: boolean | undefined;
|
|
43
|
+
readonly timestamp?: boolean | undefined;
|
|
44
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
45
|
+
synchronous?: boolean | undefined;
|
|
46
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
47
|
+
throwErrors?: boolean | undefined;
|
|
48
|
+
} & {
|
|
49
|
+
schema: "network.xyo.sentinel.config";
|
|
50
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
51
|
+
accountDerivationPath?: string | undefined;
|
|
52
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
53
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
54
|
+
readonly name?: string | undefined;
|
|
55
|
+
readonly paging?: Record<string, {
|
|
56
|
+
size?: number | undefined;
|
|
57
|
+
}> | undefined;
|
|
58
|
+
readonly security?: {
|
|
59
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
60
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
61
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
62
|
+
} | undefined;
|
|
63
|
+
readonly sign?: boolean | undefined;
|
|
64
|
+
readonly storeQueries?: boolean | undefined;
|
|
65
|
+
readonly timestamp?: boolean | undefined;
|
|
66
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
67
|
+
synchronous?: boolean | undefined;
|
|
68
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
69
|
+
throwErrors?: boolean | undefined;
|
|
70
|
+
} & {
|
|
71
|
+
schema: "network.xyo.sentinel.config";
|
|
72
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
73
|
+
accountDerivationPath?: string | undefined;
|
|
74
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
75
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
76
|
+
readonly name?: string | undefined;
|
|
77
|
+
readonly paging?: Record<string, {
|
|
78
|
+
size?: number | undefined;
|
|
79
|
+
}> | undefined;
|
|
80
|
+
readonly security?: {
|
|
81
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
82
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
83
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
84
|
+
} | undefined;
|
|
85
|
+
readonly sign?: boolean | undefined;
|
|
86
|
+
readonly storeQueries?: boolean | undefined;
|
|
87
|
+
readonly timestamp?: boolean | undefined;
|
|
88
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
89
|
+
synchronous?: boolean | undefined;
|
|
90
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
91
|
+
throwErrors?: boolean | undefined;
|
|
92
|
+
} & {
|
|
93
|
+
schema: "network.xyo.sentinel.config";
|
|
94
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
27
95
|
accountDerivationPath?: string | undefined;
|
|
28
96
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
29
97
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -42,18 +110,74 @@ export declare class SentinelBuilder {
|
|
|
42
110
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
43
111
|
synchronous?: boolean | undefined;
|
|
44
112
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
113
|
+
throwErrors?: boolean | undefined;
|
|
45
114
|
} & {
|
|
46
115
|
schema: "network.xyo.sentinel.config";
|
|
47
|
-
}, "schema"> & {
|
|
116
|
+
}), "schema">, "schema"> & {
|
|
48
117
|
schema: string;
|
|
49
|
-
}
|
|
118
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
119
|
+
accountDerivationPath?: string | undefined;
|
|
120
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
121
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
122
|
+
readonly name?: string | undefined;
|
|
123
|
+
readonly paging?: Record<string, {
|
|
124
|
+
size?: number | undefined;
|
|
125
|
+
}> | undefined;
|
|
126
|
+
readonly security?: {
|
|
127
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
128
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
130
|
+
} | undefined;
|
|
131
|
+
readonly sign?: boolean | undefined;
|
|
132
|
+
readonly storeQueries?: boolean | undefined;
|
|
133
|
+
readonly timestamp?: boolean | undefined;
|
|
134
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
50
135
|
schema: string;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
136
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
137
|
+
accountDerivationPath?: string | undefined;
|
|
138
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
139
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
140
|
+
readonly name?: string | undefined;
|
|
141
|
+
readonly paging?: Record<string, {
|
|
142
|
+
size?: number | undefined;
|
|
143
|
+
}> | undefined;
|
|
144
|
+
readonly security?: {
|
|
145
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
146
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
147
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
148
|
+
} | undefined;
|
|
149
|
+
readonly sign?: boolean | undefined;
|
|
150
|
+
readonly storeQueries?: boolean | undefined;
|
|
151
|
+
readonly timestamp?: boolean | undefined;
|
|
152
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
153
|
+
synchronous?: boolean | undefined;
|
|
154
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
155
|
+
throwErrors?: boolean | undefined;
|
|
156
|
+
} & {
|
|
157
|
+
schema: "network.xyo.sentinel.config";
|
|
158
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
159
|
+
accountDerivationPath?: string | undefined;
|
|
160
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
161
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
162
|
+
readonly name?: string | undefined;
|
|
163
|
+
readonly paging?: Record<string, {
|
|
164
|
+
size?: number | undefined;
|
|
165
|
+
}> | undefined;
|
|
166
|
+
readonly security?: {
|
|
167
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
170
|
+
} | undefined;
|
|
171
|
+
readonly sign?: boolean | undefined;
|
|
172
|
+
readonly storeQueries?: boolean | undefined;
|
|
173
|
+
readonly timestamp?: boolean | undefined;
|
|
174
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
175
|
+
synchronous?: boolean | undefined;
|
|
176
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
177
|
+
throwErrors?: boolean | undefined;
|
|
178
|
+
} & {
|
|
179
|
+
schema: "network.xyo.sentinel.config";
|
|
180
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
57
181
|
accountDerivationPath?: string | undefined;
|
|
58
182
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
59
183
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -69,7 +193,13 @@ export declare class SentinelBuilder {
|
|
|
69
193
|
readonly sign?: boolean | undefined;
|
|
70
194
|
readonly storeQueries?: boolean | undefined;
|
|
71
195
|
readonly timestamp?: boolean | undefined;
|
|
72
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
196
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
197
|
+
synchronous?: boolean | undefined;
|
|
198
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
199
|
+
throwErrors?: boolean | undefined;
|
|
200
|
+
} & {
|
|
201
|
+
schema: "network.xyo.sentinel.config";
|
|
202
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
73
203
|
accountDerivationPath?: string | undefined;
|
|
74
204
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
75
205
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -88,20 +218,74 @@ export declare class SentinelBuilder {
|
|
|
88
218
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
89
219
|
synchronous?: boolean | undefined;
|
|
90
220
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
221
|
+
throwErrors?: boolean | undefined;
|
|
91
222
|
} & {
|
|
92
223
|
schema: "network.xyo.sentinel.config";
|
|
93
|
-
}, "schema"> & {
|
|
224
|
+
}), "schema">, "schema"> & {
|
|
94
225
|
schema: string;
|
|
95
|
-
}
|
|
226
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
|
+
accountDerivationPath?: string | undefined;
|
|
228
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
229
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
230
|
+
readonly name?: string | undefined;
|
|
231
|
+
readonly paging?: Record<string, {
|
|
232
|
+
size?: number | undefined;
|
|
233
|
+
}> | undefined;
|
|
234
|
+
readonly security?: {
|
|
235
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
236
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
237
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
readonly sign?: boolean | undefined;
|
|
240
|
+
readonly storeQueries?: boolean | undefined;
|
|
241
|
+
readonly timestamp?: boolean | undefined;
|
|
242
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
96
243
|
schema: string;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
244
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
245
|
+
accountDerivationPath?: string | undefined;
|
|
246
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
247
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
248
|
+
readonly name?: string | undefined;
|
|
249
|
+
readonly paging?: Record<string, {
|
|
250
|
+
size?: number | undefined;
|
|
251
|
+
}> | undefined;
|
|
252
|
+
readonly security?: {
|
|
253
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
254
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
255
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
256
|
+
} | undefined;
|
|
257
|
+
readonly sign?: boolean | undefined;
|
|
258
|
+
readonly storeQueries?: boolean | undefined;
|
|
259
|
+
readonly timestamp?: boolean | undefined;
|
|
260
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
261
|
+
synchronous?: boolean | undefined;
|
|
262
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
263
|
+
throwErrors?: boolean | undefined;
|
|
264
|
+
} & {
|
|
265
|
+
schema: "network.xyo.sentinel.config";
|
|
266
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
267
|
+
accountDerivationPath?: string | undefined;
|
|
268
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
269
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
270
|
+
readonly name?: string | undefined;
|
|
271
|
+
readonly paging?: Record<string, {
|
|
272
|
+
size?: number | undefined;
|
|
273
|
+
}> | undefined;
|
|
274
|
+
readonly security?: {
|
|
275
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
276
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
277
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
278
|
+
} | undefined;
|
|
279
|
+
readonly sign?: boolean | undefined;
|
|
280
|
+
readonly storeQueries?: boolean | undefined;
|
|
281
|
+
readonly timestamp?: boolean | undefined;
|
|
282
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
283
|
+
synchronous?: boolean | undefined;
|
|
284
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
285
|
+
throwErrors?: boolean | undefined;
|
|
286
|
+
} & {
|
|
287
|
+
schema: "network.xyo.sentinel.config";
|
|
288
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
105
289
|
accountDerivationPath?: string | undefined;
|
|
106
290
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
107
291
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -117,7 +301,13 @@ export declare class SentinelBuilder {
|
|
|
117
301
|
readonly sign?: boolean | undefined;
|
|
118
302
|
readonly storeQueries?: boolean | undefined;
|
|
119
303
|
readonly timestamp?: boolean | undefined;
|
|
120
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
304
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
305
|
+
synchronous?: boolean | undefined;
|
|
306
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
307
|
+
throwErrors?: boolean | undefined;
|
|
308
|
+
} & {
|
|
309
|
+
schema: "network.xyo.sentinel.config";
|
|
310
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
121
311
|
accountDerivationPath?: string | undefined;
|
|
122
312
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
123
313
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -136,18 +326,74 @@ export declare class SentinelBuilder {
|
|
|
136
326
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
137
327
|
synchronous?: boolean | undefined;
|
|
138
328
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
329
|
+
throwErrors?: boolean | undefined;
|
|
139
330
|
} & {
|
|
140
331
|
schema: "network.xyo.sentinel.config";
|
|
141
|
-
}, "schema"> & {
|
|
332
|
+
}), "schema">, "schema"> & {
|
|
142
333
|
schema: string;
|
|
143
|
-
}
|
|
334
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
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 & {
|
|
144
351
|
schema: string;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
352
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
353
|
+
accountDerivationPath?: string | undefined;
|
|
354
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
355
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
356
|
+
readonly name?: string | undefined;
|
|
357
|
+
readonly paging?: Record<string, {
|
|
358
|
+
size?: number | undefined;
|
|
359
|
+
}> | undefined;
|
|
360
|
+
readonly security?: {
|
|
361
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
362
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
363
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
364
|
+
} | undefined;
|
|
365
|
+
readonly sign?: boolean | undefined;
|
|
366
|
+
readonly storeQueries?: boolean | undefined;
|
|
367
|
+
readonly timestamp?: boolean | undefined;
|
|
368
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
369
|
+
synchronous?: boolean | undefined;
|
|
370
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
371
|
+
throwErrors?: boolean | undefined;
|
|
372
|
+
} & {
|
|
373
|
+
schema: "network.xyo.sentinel.config";
|
|
374
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
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
|
+
synchronous?: boolean | undefined;
|
|
392
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
393
|
+
throwErrors?: boolean | undefined;
|
|
394
|
+
} & {
|
|
395
|
+
schema: "network.xyo.sentinel.config";
|
|
396
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
151
397
|
accountDerivationPath?: string | undefined;
|
|
152
398
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
153
399
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -163,7 +409,13 @@ export declare class SentinelBuilder {
|
|
|
163
409
|
readonly sign?: boolean | undefined;
|
|
164
410
|
readonly storeQueries?: boolean | undefined;
|
|
165
411
|
readonly timestamp?: boolean | undefined;
|
|
166
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
412
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
413
|
+
synchronous?: boolean | undefined;
|
|
414
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
415
|
+
throwErrors?: boolean | undefined;
|
|
416
|
+
} & {
|
|
417
|
+
schema: "network.xyo.sentinel.config";
|
|
418
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
167
419
|
accountDerivationPath?: string | undefined;
|
|
168
420
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
169
421
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -182,13 +434,1325 @@ export declare class SentinelBuilder {
|
|
|
182
434
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
183
435
|
synchronous?: boolean | undefined;
|
|
184
436
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
437
|
+
throwErrors?: boolean | undefined;
|
|
185
438
|
} & {
|
|
186
439
|
schema: "network.xyo.sentinel.config";
|
|
187
|
-
}, "schema"> & {
|
|
440
|
+
}), "schema">, "schema"> & {
|
|
188
441
|
schema: string;
|
|
189
|
-
}
|
|
442
|
+
});
|
|
443
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
444
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
445
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
446
|
+
account?: AccountInstance | "random" | undefined;
|
|
447
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
448
|
+
accountDerivationPath?: string | undefined;
|
|
449
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
450
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
451
|
+
readonly name?: string | undefined;
|
|
452
|
+
readonly paging?: Record<string, {
|
|
453
|
+
size?: number | undefined;
|
|
454
|
+
}> | undefined;
|
|
455
|
+
readonly security?: {
|
|
456
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
457
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
458
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
459
|
+
} | undefined;
|
|
460
|
+
readonly sign?: boolean | undefined;
|
|
461
|
+
readonly storeQueries?: boolean | undefined;
|
|
462
|
+
readonly timestamp?: boolean | undefined;
|
|
463
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
464
|
+
schema: string;
|
|
465
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
466
|
+
accountDerivationPath?: string | undefined;
|
|
467
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
468
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
469
|
+
readonly name?: string | undefined;
|
|
470
|
+
readonly paging?: Record<string, {
|
|
471
|
+
size?: number | undefined;
|
|
472
|
+
}> | undefined;
|
|
473
|
+
readonly security?: {
|
|
474
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
475
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
476
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
477
|
+
} | undefined;
|
|
478
|
+
readonly sign?: boolean | undefined;
|
|
479
|
+
readonly storeQueries?: boolean | undefined;
|
|
480
|
+
readonly timestamp?: boolean | undefined;
|
|
481
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
482
|
+
synchronous?: boolean | undefined;
|
|
483
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
484
|
+
throwErrors?: boolean | undefined;
|
|
485
|
+
} & {
|
|
486
|
+
schema: "network.xyo.sentinel.config";
|
|
487
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
488
|
+
accountDerivationPath?: string | undefined;
|
|
489
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
490
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
491
|
+
readonly name?: string | undefined;
|
|
492
|
+
readonly paging?: Record<string, {
|
|
493
|
+
size?: number | undefined;
|
|
494
|
+
}> | undefined;
|
|
495
|
+
readonly security?: {
|
|
496
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
497
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
498
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
499
|
+
} | undefined;
|
|
500
|
+
readonly sign?: boolean | undefined;
|
|
501
|
+
readonly storeQueries?: boolean | undefined;
|
|
502
|
+
readonly timestamp?: boolean | undefined;
|
|
503
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
504
|
+
synchronous?: boolean | undefined;
|
|
505
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
506
|
+
throwErrors?: boolean | undefined;
|
|
507
|
+
} & {
|
|
508
|
+
schema: "network.xyo.sentinel.config";
|
|
509
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
510
|
+
accountDerivationPath?: string | undefined;
|
|
511
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
512
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
513
|
+
readonly name?: string | undefined;
|
|
514
|
+
readonly paging?: Record<string, {
|
|
515
|
+
size?: number | undefined;
|
|
516
|
+
}> | undefined;
|
|
517
|
+
readonly security?: {
|
|
518
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
519
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
520
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
521
|
+
} | undefined;
|
|
522
|
+
readonly sign?: boolean | undefined;
|
|
523
|
+
readonly storeQueries?: boolean | undefined;
|
|
524
|
+
readonly timestamp?: boolean | undefined;
|
|
525
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
526
|
+
synchronous?: boolean | undefined;
|
|
527
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
528
|
+
throwErrors?: boolean | undefined;
|
|
529
|
+
} & {
|
|
530
|
+
schema: "network.xyo.sentinel.config";
|
|
531
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
532
|
+
accountDerivationPath?: string | undefined;
|
|
533
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
534
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
535
|
+
readonly name?: string | undefined;
|
|
536
|
+
readonly paging?: Record<string, {
|
|
537
|
+
size?: number | undefined;
|
|
538
|
+
}> | undefined;
|
|
539
|
+
readonly security?: {
|
|
540
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
541
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
542
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
543
|
+
} | undefined;
|
|
544
|
+
readonly sign?: boolean | undefined;
|
|
545
|
+
readonly storeQueries?: boolean | undefined;
|
|
546
|
+
readonly timestamp?: boolean | undefined;
|
|
547
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
548
|
+
synchronous?: boolean | undefined;
|
|
549
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
550
|
+
throwErrors?: boolean | undefined;
|
|
551
|
+
} & {
|
|
552
|
+
schema: "network.xyo.sentinel.config";
|
|
553
|
+
}), "schema">, "schema"> & {
|
|
554
|
+
schema: string;
|
|
555
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
556
|
+
accountDerivationPath?: string | undefined;
|
|
557
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
558
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
559
|
+
readonly name?: string | undefined;
|
|
560
|
+
readonly paging?: Record<string, {
|
|
561
|
+
size?: number | undefined;
|
|
562
|
+
}> | undefined;
|
|
563
|
+
readonly security?: {
|
|
564
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
565
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
566
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
567
|
+
} | undefined;
|
|
568
|
+
readonly sign?: boolean | undefined;
|
|
569
|
+
readonly storeQueries?: boolean | undefined;
|
|
570
|
+
readonly timestamp?: boolean | undefined;
|
|
571
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
572
|
+
schema: string;
|
|
573
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
574
|
+
accountDerivationPath?: string | undefined;
|
|
575
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
576
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
577
|
+
readonly name?: string | undefined;
|
|
578
|
+
readonly paging?: Record<string, {
|
|
579
|
+
size?: number | undefined;
|
|
580
|
+
}> | undefined;
|
|
581
|
+
readonly security?: {
|
|
582
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
583
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
584
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
585
|
+
} | undefined;
|
|
586
|
+
readonly sign?: boolean | undefined;
|
|
587
|
+
readonly storeQueries?: boolean | undefined;
|
|
588
|
+
readonly timestamp?: boolean | undefined;
|
|
589
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
590
|
+
synchronous?: boolean | undefined;
|
|
591
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
592
|
+
throwErrors?: boolean | undefined;
|
|
593
|
+
} & {
|
|
594
|
+
schema: "network.xyo.sentinel.config";
|
|
595
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
596
|
+
accountDerivationPath?: string | undefined;
|
|
597
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
598
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
599
|
+
readonly name?: string | undefined;
|
|
600
|
+
readonly paging?: Record<string, {
|
|
601
|
+
size?: number | undefined;
|
|
602
|
+
}> | undefined;
|
|
603
|
+
readonly security?: {
|
|
604
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
605
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
606
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
607
|
+
} | undefined;
|
|
608
|
+
readonly sign?: boolean | undefined;
|
|
609
|
+
readonly storeQueries?: boolean | undefined;
|
|
610
|
+
readonly timestamp?: boolean | undefined;
|
|
611
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
612
|
+
synchronous?: boolean | undefined;
|
|
613
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
614
|
+
throwErrors?: boolean | undefined;
|
|
615
|
+
} & {
|
|
616
|
+
schema: "network.xyo.sentinel.config";
|
|
617
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
618
|
+
accountDerivationPath?: string | undefined;
|
|
619
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
620
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
621
|
+
readonly name?: string | undefined;
|
|
622
|
+
readonly paging?: Record<string, {
|
|
623
|
+
size?: number | undefined;
|
|
624
|
+
}> | undefined;
|
|
625
|
+
readonly security?: {
|
|
626
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
627
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
628
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
629
|
+
} | undefined;
|
|
630
|
+
readonly sign?: boolean | undefined;
|
|
631
|
+
readonly storeQueries?: boolean | undefined;
|
|
632
|
+
readonly timestamp?: boolean | undefined;
|
|
633
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
634
|
+
synchronous?: boolean | undefined;
|
|
635
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
636
|
+
throwErrors?: boolean | undefined;
|
|
637
|
+
} & {
|
|
638
|
+
schema: "network.xyo.sentinel.config";
|
|
639
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
640
|
+
accountDerivationPath?: string | undefined;
|
|
641
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
642
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
643
|
+
readonly name?: string | undefined;
|
|
644
|
+
readonly paging?: Record<string, {
|
|
645
|
+
size?: number | undefined;
|
|
646
|
+
}> | undefined;
|
|
647
|
+
readonly security?: {
|
|
648
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
649
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
650
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
651
|
+
} | undefined;
|
|
652
|
+
readonly sign?: boolean | undefined;
|
|
653
|
+
readonly storeQueries?: boolean | undefined;
|
|
654
|
+
readonly timestamp?: boolean | undefined;
|
|
655
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
656
|
+
synchronous?: boolean | undefined;
|
|
657
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
658
|
+
throwErrors?: boolean | undefined;
|
|
659
|
+
} & {
|
|
660
|
+
schema: "network.xyo.sentinel.config";
|
|
661
|
+
}), "schema">, "schema"> & {
|
|
662
|
+
schema: string;
|
|
663
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & 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
|
+
schema: string;
|
|
681
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
682
|
+
accountDerivationPath?: string | undefined;
|
|
683
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
684
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
685
|
+
readonly name?: string | undefined;
|
|
686
|
+
readonly paging?: Record<string, {
|
|
687
|
+
size?: number | undefined;
|
|
688
|
+
}> | undefined;
|
|
689
|
+
readonly security?: {
|
|
690
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
691
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
692
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
693
|
+
} | undefined;
|
|
694
|
+
readonly sign?: boolean | undefined;
|
|
695
|
+
readonly storeQueries?: boolean | undefined;
|
|
696
|
+
readonly timestamp?: boolean | undefined;
|
|
697
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
698
|
+
synchronous?: boolean | undefined;
|
|
699
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
700
|
+
throwErrors?: boolean | undefined;
|
|
701
|
+
} & {
|
|
702
|
+
schema: "network.xyo.sentinel.config";
|
|
703
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
704
|
+
accountDerivationPath?: string | undefined;
|
|
705
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
706
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
707
|
+
readonly name?: string | undefined;
|
|
708
|
+
readonly paging?: Record<string, {
|
|
709
|
+
size?: number | undefined;
|
|
710
|
+
}> | undefined;
|
|
711
|
+
readonly security?: {
|
|
712
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
713
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
714
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
715
|
+
} | undefined;
|
|
716
|
+
readonly sign?: boolean | undefined;
|
|
717
|
+
readonly storeQueries?: boolean | undefined;
|
|
718
|
+
readonly timestamp?: boolean | undefined;
|
|
719
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
720
|
+
synchronous?: boolean | undefined;
|
|
721
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
722
|
+
throwErrors?: boolean | undefined;
|
|
723
|
+
} & {
|
|
724
|
+
schema: "network.xyo.sentinel.config";
|
|
725
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
726
|
+
accountDerivationPath?: string | undefined;
|
|
727
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
728
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
729
|
+
readonly name?: string | undefined;
|
|
730
|
+
readonly paging?: Record<string, {
|
|
731
|
+
size?: number | undefined;
|
|
732
|
+
}> | undefined;
|
|
733
|
+
readonly security?: {
|
|
734
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
735
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
736
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
737
|
+
} | undefined;
|
|
738
|
+
readonly sign?: boolean | undefined;
|
|
739
|
+
readonly storeQueries?: boolean | undefined;
|
|
740
|
+
readonly timestamp?: boolean | undefined;
|
|
741
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
742
|
+
synchronous?: boolean | undefined;
|
|
743
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
744
|
+
throwErrors?: boolean | undefined;
|
|
745
|
+
} & {
|
|
746
|
+
schema: "network.xyo.sentinel.config";
|
|
747
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
748
|
+
accountDerivationPath?: string | undefined;
|
|
749
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
750
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
751
|
+
readonly name?: string | undefined;
|
|
752
|
+
readonly paging?: Record<string, {
|
|
753
|
+
size?: number | undefined;
|
|
754
|
+
}> | undefined;
|
|
755
|
+
readonly security?: {
|
|
756
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
757
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
758
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
759
|
+
} | undefined;
|
|
760
|
+
readonly sign?: boolean | undefined;
|
|
761
|
+
readonly storeQueries?: boolean | undefined;
|
|
762
|
+
readonly timestamp?: boolean | undefined;
|
|
763
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
764
|
+
synchronous?: boolean | undefined;
|
|
765
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
766
|
+
throwErrors?: boolean | undefined;
|
|
767
|
+
} & {
|
|
768
|
+
schema: "network.xyo.sentinel.config";
|
|
769
|
+
}), "schema">, "schema"> & {
|
|
770
|
+
schema: string;
|
|
771
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
772
|
+
accountDerivationPath?: string | undefined;
|
|
773
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
774
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
775
|
+
readonly name?: string | undefined;
|
|
776
|
+
readonly paging?: Record<string, {
|
|
777
|
+
size?: number | undefined;
|
|
778
|
+
}> | undefined;
|
|
779
|
+
readonly security?: {
|
|
780
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
781
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
782
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
783
|
+
} | undefined;
|
|
784
|
+
readonly sign?: boolean | undefined;
|
|
785
|
+
readonly storeQueries?: boolean | undefined;
|
|
786
|
+
readonly timestamp?: boolean | undefined;
|
|
787
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
788
|
+
schema: string;
|
|
789
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
790
|
+
accountDerivationPath?: string | undefined;
|
|
791
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
792
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
793
|
+
readonly name?: string | undefined;
|
|
794
|
+
readonly paging?: Record<string, {
|
|
795
|
+
size?: number | undefined;
|
|
796
|
+
}> | undefined;
|
|
797
|
+
readonly security?: {
|
|
798
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
799
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
800
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
801
|
+
} | undefined;
|
|
802
|
+
readonly sign?: boolean | undefined;
|
|
803
|
+
readonly storeQueries?: boolean | undefined;
|
|
804
|
+
readonly timestamp?: boolean | undefined;
|
|
805
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
806
|
+
synchronous?: boolean | undefined;
|
|
807
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
808
|
+
throwErrors?: boolean | undefined;
|
|
809
|
+
} & {
|
|
810
|
+
schema: "network.xyo.sentinel.config";
|
|
811
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
812
|
+
accountDerivationPath?: string | undefined;
|
|
813
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
814
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
815
|
+
readonly name?: string | undefined;
|
|
816
|
+
readonly paging?: Record<string, {
|
|
817
|
+
size?: number | undefined;
|
|
818
|
+
}> | undefined;
|
|
819
|
+
readonly security?: {
|
|
820
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
821
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
822
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
823
|
+
} | undefined;
|
|
824
|
+
readonly sign?: boolean | undefined;
|
|
825
|
+
readonly storeQueries?: boolean | undefined;
|
|
826
|
+
readonly timestamp?: boolean | undefined;
|
|
827
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
828
|
+
synchronous?: boolean | undefined;
|
|
829
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
830
|
+
throwErrors?: boolean | undefined;
|
|
831
|
+
} & {
|
|
832
|
+
schema: "network.xyo.sentinel.config";
|
|
833
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
834
|
+
accountDerivationPath?: string | undefined;
|
|
835
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
836
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
837
|
+
readonly name?: string | undefined;
|
|
838
|
+
readonly paging?: Record<string, {
|
|
839
|
+
size?: number | undefined;
|
|
840
|
+
}> | undefined;
|
|
841
|
+
readonly security?: {
|
|
842
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
843
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
844
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
845
|
+
} | undefined;
|
|
846
|
+
readonly sign?: boolean | undefined;
|
|
847
|
+
readonly storeQueries?: boolean | undefined;
|
|
848
|
+
readonly timestamp?: boolean | undefined;
|
|
849
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
850
|
+
synchronous?: boolean | undefined;
|
|
851
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
852
|
+
throwErrors?: boolean | undefined;
|
|
853
|
+
} & {
|
|
854
|
+
schema: "network.xyo.sentinel.config";
|
|
855
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
856
|
+
accountDerivationPath?: string | undefined;
|
|
857
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
858
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
859
|
+
readonly name?: string | undefined;
|
|
860
|
+
readonly paging?: Record<string, {
|
|
861
|
+
size?: number | undefined;
|
|
862
|
+
}> | undefined;
|
|
863
|
+
readonly security?: {
|
|
864
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
865
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
866
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
867
|
+
} | undefined;
|
|
868
|
+
readonly sign?: boolean | undefined;
|
|
869
|
+
readonly storeQueries?: boolean | undefined;
|
|
870
|
+
readonly timestamp?: boolean | undefined;
|
|
871
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
872
|
+
synchronous?: boolean | undefined;
|
|
873
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
874
|
+
throwErrors?: boolean | undefined;
|
|
875
|
+
} & {
|
|
876
|
+
schema: "network.xyo.sentinel.config";
|
|
877
|
+
}), "schema">, "schema"> & {
|
|
878
|
+
schema: string;
|
|
879
|
+
});
|
|
880
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
881
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
882
|
+
}>>>;
|
|
883
|
+
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
884
|
+
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
885
|
+
account?: AccountInstance | "random" | undefined;
|
|
886
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
887
|
+
accountDerivationPath?: string | undefined;
|
|
888
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
889
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
890
|
+
readonly name?: string | undefined;
|
|
891
|
+
readonly paging?: Record<string, {
|
|
892
|
+
size?: number | undefined;
|
|
893
|
+
}> | undefined;
|
|
894
|
+
readonly security?: {
|
|
895
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
896
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
897
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
898
|
+
} | undefined;
|
|
899
|
+
readonly sign?: boolean | undefined;
|
|
900
|
+
readonly storeQueries?: boolean | undefined;
|
|
901
|
+
readonly timestamp?: boolean | undefined;
|
|
902
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
903
|
+
schema: string;
|
|
904
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
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
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
971
|
+
accountDerivationPath?: string | undefined;
|
|
972
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
973
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
974
|
+
readonly name?: string | undefined;
|
|
975
|
+
readonly paging?: Record<string, {
|
|
976
|
+
size?: number | undefined;
|
|
977
|
+
}> | undefined;
|
|
978
|
+
readonly security?: {
|
|
979
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
980
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
981
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
982
|
+
} | undefined;
|
|
983
|
+
readonly sign?: boolean | undefined;
|
|
984
|
+
readonly storeQueries?: boolean | undefined;
|
|
985
|
+
readonly timestamp?: boolean | undefined;
|
|
986
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
987
|
+
synchronous?: boolean | undefined;
|
|
988
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
989
|
+
throwErrors?: boolean | undefined;
|
|
990
|
+
} & {
|
|
991
|
+
schema: "network.xyo.sentinel.config";
|
|
992
|
+
}), "schema">, "schema"> & {
|
|
993
|
+
schema: string;
|
|
994
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
995
|
+
accountDerivationPath?: string | undefined;
|
|
996
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
997
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
998
|
+
readonly name?: string | undefined;
|
|
999
|
+
readonly paging?: Record<string, {
|
|
1000
|
+
size?: number | undefined;
|
|
1001
|
+
}> | undefined;
|
|
1002
|
+
readonly security?: {
|
|
1003
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1004
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1005
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1006
|
+
} | undefined;
|
|
1007
|
+
readonly sign?: boolean | undefined;
|
|
1008
|
+
readonly storeQueries?: boolean | undefined;
|
|
1009
|
+
readonly timestamp?: boolean | undefined;
|
|
1010
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1011
|
+
schema: string;
|
|
1012
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1035
|
+
accountDerivationPath?: string | undefined;
|
|
1036
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1037
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1038
|
+
readonly name?: string | undefined;
|
|
1039
|
+
readonly paging?: Record<string, {
|
|
1040
|
+
size?: number | undefined;
|
|
1041
|
+
}> | undefined;
|
|
1042
|
+
readonly security?: {
|
|
1043
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1044
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1045
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1046
|
+
} | undefined;
|
|
1047
|
+
readonly sign?: boolean | undefined;
|
|
1048
|
+
readonly storeQueries?: boolean | undefined;
|
|
1049
|
+
readonly timestamp?: boolean | undefined;
|
|
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
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1057
|
+
accountDerivationPath?: string | undefined;
|
|
1058
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1059
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1060
|
+
readonly name?: string | undefined;
|
|
1061
|
+
readonly paging?: Record<string, {
|
|
1062
|
+
size?: number | undefined;
|
|
1063
|
+
}> | undefined;
|
|
1064
|
+
readonly security?: {
|
|
1065
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1066
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1067
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1068
|
+
} | undefined;
|
|
1069
|
+
readonly sign?: boolean | undefined;
|
|
1070
|
+
readonly storeQueries?: boolean | undefined;
|
|
1071
|
+
readonly timestamp?: boolean | undefined;
|
|
1072
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1073
|
+
synchronous?: boolean | undefined;
|
|
1074
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1075
|
+
throwErrors?: boolean | undefined;
|
|
1076
|
+
} & {
|
|
1077
|
+
schema: "network.xyo.sentinel.config";
|
|
1078
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
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
|
+
synchronous?: boolean | undefined;
|
|
1096
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1097
|
+
throwErrors?: boolean | undefined;
|
|
1098
|
+
} & {
|
|
1099
|
+
schema: "network.xyo.sentinel.config";
|
|
1100
|
+
}), "schema">, "schema"> & {
|
|
1101
|
+
schema: string;
|
|
1102
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1103
|
+
accountDerivationPath?: string | undefined;
|
|
1104
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1105
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1106
|
+
readonly name?: string | undefined;
|
|
1107
|
+
readonly paging?: Record<string, {
|
|
1108
|
+
size?: number | undefined;
|
|
1109
|
+
}> | undefined;
|
|
1110
|
+
readonly security?: {
|
|
1111
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1112
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1113
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1114
|
+
} | undefined;
|
|
1115
|
+
readonly sign?: boolean | undefined;
|
|
1116
|
+
readonly storeQueries?: boolean | undefined;
|
|
1117
|
+
readonly timestamp?: boolean | undefined;
|
|
1118
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1119
|
+
schema: string;
|
|
1120
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1143
|
+
accountDerivationPath?: string | undefined;
|
|
1144
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1145
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1146
|
+
readonly name?: string | undefined;
|
|
1147
|
+
readonly paging?: Record<string, {
|
|
1148
|
+
size?: number | undefined;
|
|
1149
|
+
}> | undefined;
|
|
1150
|
+
readonly security?: {
|
|
1151
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1152
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1153
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1154
|
+
} | undefined;
|
|
1155
|
+
readonly sign?: boolean | undefined;
|
|
1156
|
+
readonly storeQueries?: boolean | undefined;
|
|
1157
|
+
readonly timestamp?: boolean | undefined;
|
|
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
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1165
|
+
accountDerivationPath?: string | undefined;
|
|
1166
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1167
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1168
|
+
readonly name?: string | undefined;
|
|
1169
|
+
readonly paging?: Record<string, {
|
|
1170
|
+
size?: number | undefined;
|
|
1171
|
+
}> | undefined;
|
|
1172
|
+
readonly security?: {
|
|
1173
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1174
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1175
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1176
|
+
} | undefined;
|
|
1177
|
+
readonly sign?: boolean | undefined;
|
|
1178
|
+
readonly storeQueries?: boolean | undefined;
|
|
1179
|
+
readonly timestamp?: boolean | undefined;
|
|
1180
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1181
|
+
synchronous?: boolean | undefined;
|
|
1182
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1183
|
+
throwErrors?: boolean | undefined;
|
|
1184
|
+
} & {
|
|
1185
|
+
schema: "network.xyo.sentinel.config";
|
|
1186
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1187
|
+
accountDerivationPath?: string | undefined;
|
|
1188
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1189
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1190
|
+
readonly name?: string | undefined;
|
|
1191
|
+
readonly paging?: Record<string, {
|
|
1192
|
+
size?: number | undefined;
|
|
1193
|
+
}> | undefined;
|
|
1194
|
+
readonly security?: {
|
|
1195
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1196
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1197
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1198
|
+
} | undefined;
|
|
1199
|
+
readonly sign?: boolean | undefined;
|
|
1200
|
+
readonly storeQueries?: boolean | undefined;
|
|
1201
|
+
readonly timestamp?: boolean | undefined;
|
|
1202
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1203
|
+
synchronous?: boolean | undefined;
|
|
1204
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1205
|
+
throwErrors?: boolean | undefined;
|
|
1206
|
+
} & {
|
|
1207
|
+
schema: "network.xyo.sentinel.config";
|
|
1208
|
+
}), "schema">, "schema"> & {
|
|
1209
|
+
schema: string;
|
|
1210
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1211
|
+
accountDerivationPath?: string | undefined;
|
|
1212
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1213
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1214
|
+
readonly name?: string | undefined;
|
|
1215
|
+
readonly paging?: Record<string, {
|
|
1216
|
+
size?: number | undefined;
|
|
1217
|
+
}> | undefined;
|
|
1218
|
+
readonly security?: {
|
|
1219
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1220
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1221
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1222
|
+
} | undefined;
|
|
1223
|
+
readonly sign?: boolean | undefined;
|
|
1224
|
+
readonly storeQueries?: boolean | undefined;
|
|
1225
|
+
readonly timestamp?: boolean | undefined;
|
|
1226
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1227
|
+
schema: string;
|
|
1228
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
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
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1295
|
+
accountDerivationPath?: string | undefined;
|
|
1296
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1297
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1298
|
+
readonly name?: string | undefined;
|
|
1299
|
+
readonly paging?: Record<string, {
|
|
1300
|
+
size?: number | undefined;
|
|
1301
|
+
}> | undefined;
|
|
1302
|
+
readonly security?: {
|
|
1303
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1304
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1305
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1306
|
+
} | undefined;
|
|
1307
|
+
readonly sign?: boolean | undefined;
|
|
1308
|
+
readonly storeQueries?: boolean | undefined;
|
|
1309
|
+
readonly timestamp?: boolean | undefined;
|
|
1310
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1311
|
+
synchronous?: boolean | undefined;
|
|
1312
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1313
|
+
throwErrors?: boolean | undefined;
|
|
1314
|
+
} & {
|
|
1315
|
+
schema: "network.xyo.sentinel.config";
|
|
1316
|
+
}), "schema">, "schema"> & {
|
|
1317
|
+
schema: string;
|
|
1318
|
+
});
|
|
1319
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
1320
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
1321
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
1322
|
+
account?: AccountInstance | "random" | undefined;
|
|
1323
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1324
|
+
accountDerivationPath?: string | undefined;
|
|
1325
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1326
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1327
|
+
readonly name?: string | undefined;
|
|
1328
|
+
readonly paging?: Record<string, {
|
|
1329
|
+
size?: number | undefined;
|
|
1330
|
+
}> | undefined;
|
|
1331
|
+
readonly security?: {
|
|
1332
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1333
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1334
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1335
|
+
} | undefined;
|
|
1336
|
+
readonly sign?: boolean | undefined;
|
|
1337
|
+
readonly storeQueries?: boolean | undefined;
|
|
1338
|
+
readonly timestamp?: boolean | undefined;
|
|
1339
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1340
|
+
schema: string;
|
|
1341
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1342
|
+
accountDerivationPath?: string | undefined;
|
|
1343
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1344
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1345
|
+
readonly name?: string | undefined;
|
|
1346
|
+
readonly paging?: Record<string, {
|
|
1347
|
+
size?: number | undefined;
|
|
1348
|
+
}> | undefined;
|
|
1349
|
+
readonly security?: {
|
|
1350
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1351
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1352
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1353
|
+
} | undefined;
|
|
1354
|
+
readonly sign?: boolean | undefined;
|
|
1355
|
+
readonly storeQueries?: boolean | undefined;
|
|
1356
|
+
readonly timestamp?: boolean | undefined;
|
|
1357
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1358
|
+
synchronous?: boolean | undefined;
|
|
1359
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1360
|
+
throwErrors?: boolean | undefined;
|
|
1361
|
+
} & {
|
|
1362
|
+
schema: "network.xyo.sentinel.config";
|
|
1363
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1364
|
+
accountDerivationPath?: string | undefined;
|
|
1365
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1366
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1367
|
+
readonly name?: string | undefined;
|
|
1368
|
+
readonly paging?: Record<string, {
|
|
1369
|
+
size?: number | undefined;
|
|
1370
|
+
}> | undefined;
|
|
1371
|
+
readonly security?: {
|
|
1372
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1373
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1374
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1375
|
+
} | undefined;
|
|
1376
|
+
readonly sign?: boolean | undefined;
|
|
1377
|
+
readonly storeQueries?: boolean | undefined;
|
|
1378
|
+
readonly timestamp?: boolean | undefined;
|
|
1379
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1380
|
+
synchronous?: boolean | undefined;
|
|
1381
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1382
|
+
throwErrors?: boolean | undefined;
|
|
1383
|
+
} & {
|
|
1384
|
+
schema: "network.xyo.sentinel.config";
|
|
1385
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1386
|
+
accountDerivationPath?: string | undefined;
|
|
1387
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1388
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1389
|
+
readonly name?: string | undefined;
|
|
1390
|
+
readonly paging?: Record<string, {
|
|
1391
|
+
size?: number | undefined;
|
|
1392
|
+
}> | undefined;
|
|
1393
|
+
readonly security?: {
|
|
1394
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1395
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1396
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1397
|
+
} | undefined;
|
|
1398
|
+
readonly sign?: boolean | undefined;
|
|
1399
|
+
readonly storeQueries?: boolean | undefined;
|
|
1400
|
+
readonly timestamp?: boolean | undefined;
|
|
1401
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1402
|
+
synchronous?: boolean | undefined;
|
|
1403
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1404
|
+
throwErrors?: boolean | undefined;
|
|
1405
|
+
} & {
|
|
1406
|
+
schema: "network.xyo.sentinel.config";
|
|
1407
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1408
|
+
accountDerivationPath?: string | undefined;
|
|
1409
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1410
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1411
|
+
readonly name?: string | undefined;
|
|
1412
|
+
readonly paging?: Record<string, {
|
|
1413
|
+
size?: number | undefined;
|
|
1414
|
+
}> | undefined;
|
|
1415
|
+
readonly security?: {
|
|
1416
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1417
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1418
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1419
|
+
} | undefined;
|
|
1420
|
+
readonly sign?: boolean | undefined;
|
|
1421
|
+
readonly storeQueries?: boolean | undefined;
|
|
1422
|
+
readonly timestamp?: boolean | undefined;
|
|
1423
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1424
|
+
synchronous?: boolean | undefined;
|
|
1425
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1426
|
+
throwErrors?: boolean | undefined;
|
|
1427
|
+
} & {
|
|
1428
|
+
schema: "network.xyo.sentinel.config";
|
|
1429
|
+
}), "schema">, "schema"> & {
|
|
1430
|
+
schema: string;
|
|
1431
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1432
|
+
accountDerivationPath?: string | undefined;
|
|
1433
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1434
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1435
|
+
readonly name?: string | undefined;
|
|
1436
|
+
readonly paging?: Record<string, {
|
|
1437
|
+
size?: number | undefined;
|
|
1438
|
+
}> | undefined;
|
|
1439
|
+
readonly security?: {
|
|
1440
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1441
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1442
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1443
|
+
} | undefined;
|
|
1444
|
+
readonly sign?: boolean | undefined;
|
|
1445
|
+
readonly storeQueries?: boolean | undefined;
|
|
1446
|
+
readonly timestamp?: boolean | undefined;
|
|
1447
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1448
|
+
schema: string;
|
|
1449
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1450
|
+
accountDerivationPath?: string | undefined;
|
|
1451
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1452
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1453
|
+
readonly name?: string | undefined;
|
|
1454
|
+
readonly paging?: Record<string, {
|
|
1455
|
+
size?: number | undefined;
|
|
1456
|
+
}> | undefined;
|
|
1457
|
+
readonly security?: {
|
|
1458
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1459
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1460
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1461
|
+
} | undefined;
|
|
1462
|
+
readonly sign?: boolean | undefined;
|
|
1463
|
+
readonly storeQueries?: boolean | undefined;
|
|
1464
|
+
readonly timestamp?: boolean | undefined;
|
|
1465
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1466
|
+
synchronous?: boolean | undefined;
|
|
1467
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1468
|
+
throwErrors?: boolean | undefined;
|
|
1469
|
+
} & {
|
|
1470
|
+
schema: "network.xyo.sentinel.config";
|
|
1471
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1472
|
+
accountDerivationPath?: string | undefined;
|
|
1473
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1474
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1475
|
+
readonly name?: string | undefined;
|
|
1476
|
+
readonly paging?: Record<string, {
|
|
1477
|
+
size?: number | undefined;
|
|
1478
|
+
}> | undefined;
|
|
1479
|
+
readonly security?: {
|
|
1480
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1481
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1482
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1483
|
+
} | undefined;
|
|
1484
|
+
readonly sign?: boolean | undefined;
|
|
1485
|
+
readonly storeQueries?: boolean | undefined;
|
|
1486
|
+
readonly timestamp?: boolean | undefined;
|
|
1487
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1488
|
+
synchronous?: boolean | undefined;
|
|
1489
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1490
|
+
throwErrors?: boolean | undefined;
|
|
1491
|
+
} & {
|
|
1492
|
+
schema: "network.xyo.sentinel.config";
|
|
1493
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1494
|
+
accountDerivationPath?: string | undefined;
|
|
1495
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1496
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1497
|
+
readonly name?: string | undefined;
|
|
1498
|
+
readonly paging?: Record<string, {
|
|
1499
|
+
size?: number | undefined;
|
|
1500
|
+
}> | undefined;
|
|
1501
|
+
readonly security?: {
|
|
1502
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1503
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1504
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1505
|
+
} | undefined;
|
|
1506
|
+
readonly sign?: boolean | undefined;
|
|
1507
|
+
readonly storeQueries?: boolean | undefined;
|
|
1508
|
+
readonly timestamp?: boolean | undefined;
|
|
1509
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1510
|
+
synchronous?: boolean | undefined;
|
|
1511
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1512
|
+
throwErrors?: boolean | undefined;
|
|
1513
|
+
} & {
|
|
1514
|
+
schema: "network.xyo.sentinel.config";
|
|
1515
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1516
|
+
accountDerivationPath?: string | undefined;
|
|
1517
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1518
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1519
|
+
readonly name?: string | undefined;
|
|
1520
|
+
readonly paging?: Record<string, {
|
|
1521
|
+
size?: number | undefined;
|
|
1522
|
+
}> | undefined;
|
|
1523
|
+
readonly security?: {
|
|
1524
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1525
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1526
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1527
|
+
} | undefined;
|
|
1528
|
+
readonly sign?: boolean | undefined;
|
|
1529
|
+
readonly storeQueries?: boolean | undefined;
|
|
1530
|
+
readonly timestamp?: boolean | undefined;
|
|
1531
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1532
|
+
synchronous?: boolean | undefined;
|
|
1533
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1534
|
+
throwErrors?: boolean | undefined;
|
|
1535
|
+
} & {
|
|
1536
|
+
schema: "network.xyo.sentinel.config";
|
|
1537
|
+
}), "schema">, "schema"> & {
|
|
1538
|
+
schema: string;
|
|
1539
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1540
|
+
accountDerivationPath?: string | undefined;
|
|
1541
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1542
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1543
|
+
readonly name?: string | undefined;
|
|
1544
|
+
readonly paging?: Record<string, {
|
|
1545
|
+
size?: number | undefined;
|
|
1546
|
+
}> | undefined;
|
|
1547
|
+
readonly security?: {
|
|
1548
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1549
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1550
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1551
|
+
} | undefined;
|
|
1552
|
+
readonly sign?: boolean | undefined;
|
|
1553
|
+
readonly storeQueries?: boolean | undefined;
|
|
1554
|
+
readonly timestamp?: boolean | undefined;
|
|
1555
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1556
|
+
schema: string;
|
|
1557
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1558
|
+
accountDerivationPath?: string | undefined;
|
|
1559
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1560
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1561
|
+
readonly name?: string | undefined;
|
|
1562
|
+
readonly paging?: Record<string, {
|
|
1563
|
+
size?: number | undefined;
|
|
1564
|
+
}> | undefined;
|
|
1565
|
+
readonly security?: {
|
|
1566
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1567
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1568
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1569
|
+
} | undefined;
|
|
1570
|
+
readonly sign?: boolean | undefined;
|
|
1571
|
+
readonly storeQueries?: boolean | undefined;
|
|
1572
|
+
readonly timestamp?: boolean | undefined;
|
|
1573
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1574
|
+
synchronous?: boolean | undefined;
|
|
1575
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1576
|
+
throwErrors?: boolean | undefined;
|
|
1577
|
+
} & {
|
|
1578
|
+
schema: "network.xyo.sentinel.config";
|
|
1579
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1580
|
+
accountDerivationPath?: string | undefined;
|
|
1581
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1582
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1583
|
+
readonly name?: string | undefined;
|
|
1584
|
+
readonly paging?: Record<string, {
|
|
1585
|
+
size?: number | undefined;
|
|
1586
|
+
}> | undefined;
|
|
1587
|
+
readonly security?: {
|
|
1588
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1589
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1590
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1591
|
+
} | undefined;
|
|
1592
|
+
readonly sign?: boolean | undefined;
|
|
1593
|
+
readonly storeQueries?: boolean | undefined;
|
|
1594
|
+
readonly timestamp?: boolean | undefined;
|
|
1595
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1596
|
+
synchronous?: boolean | undefined;
|
|
1597
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1598
|
+
throwErrors?: boolean | undefined;
|
|
1599
|
+
} & {
|
|
1600
|
+
schema: "network.xyo.sentinel.config";
|
|
1601
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1602
|
+
accountDerivationPath?: string | undefined;
|
|
1603
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1604
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1605
|
+
readonly name?: string | undefined;
|
|
1606
|
+
readonly paging?: Record<string, {
|
|
1607
|
+
size?: number | undefined;
|
|
1608
|
+
}> | undefined;
|
|
1609
|
+
readonly security?: {
|
|
1610
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1611
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1612
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1613
|
+
} | undefined;
|
|
1614
|
+
readonly sign?: boolean | undefined;
|
|
1615
|
+
readonly storeQueries?: boolean | undefined;
|
|
1616
|
+
readonly timestamp?: boolean | undefined;
|
|
1617
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1618
|
+
synchronous?: boolean | undefined;
|
|
1619
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1620
|
+
throwErrors?: boolean | undefined;
|
|
1621
|
+
} & {
|
|
1622
|
+
schema: "network.xyo.sentinel.config";
|
|
1623
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1624
|
+
accountDerivationPath?: string | undefined;
|
|
1625
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1626
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1627
|
+
readonly name?: string | undefined;
|
|
1628
|
+
readonly paging?: Record<string, {
|
|
1629
|
+
size?: number | undefined;
|
|
1630
|
+
}> | undefined;
|
|
1631
|
+
readonly security?: {
|
|
1632
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1633
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1634
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1635
|
+
} | undefined;
|
|
1636
|
+
readonly sign?: boolean | undefined;
|
|
1637
|
+
readonly storeQueries?: boolean | undefined;
|
|
1638
|
+
readonly timestamp?: boolean | undefined;
|
|
1639
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1640
|
+
synchronous?: boolean | undefined;
|
|
1641
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1642
|
+
throwErrors?: boolean | undefined;
|
|
1643
|
+
} & {
|
|
1644
|
+
schema: "network.xyo.sentinel.config";
|
|
1645
|
+
}), "schema">, "schema"> & {
|
|
1646
|
+
schema: string;
|
|
1647
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1648
|
+
accountDerivationPath?: string | undefined;
|
|
1649
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1650
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1651
|
+
readonly name?: string | undefined;
|
|
1652
|
+
readonly paging?: Record<string, {
|
|
1653
|
+
size?: number | undefined;
|
|
1654
|
+
}> | undefined;
|
|
1655
|
+
readonly security?: {
|
|
1656
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1657
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1658
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1659
|
+
} | undefined;
|
|
1660
|
+
readonly sign?: boolean | undefined;
|
|
1661
|
+
readonly storeQueries?: boolean | undefined;
|
|
1662
|
+
readonly timestamp?: boolean | undefined;
|
|
1663
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1664
|
+
schema: string;
|
|
1665
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1666
|
+
accountDerivationPath?: string | undefined;
|
|
1667
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1668
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1669
|
+
readonly name?: string | undefined;
|
|
1670
|
+
readonly paging?: Record<string, {
|
|
1671
|
+
size?: number | undefined;
|
|
1672
|
+
}> | undefined;
|
|
1673
|
+
readonly security?: {
|
|
1674
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1675
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1676
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1677
|
+
} | undefined;
|
|
1678
|
+
readonly sign?: boolean | undefined;
|
|
1679
|
+
readonly storeQueries?: boolean | undefined;
|
|
1680
|
+
readonly timestamp?: boolean | undefined;
|
|
1681
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1682
|
+
synchronous?: boolean | undefined;
|
|
1683
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1684
|
+
throwErrors?: boolean | undefined;
|
|
1685
|
+
} & {
|
|
1686
|
+
schema: "network.xyo.sentinel.config";
|
|
1687
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1688
|
+
accountDerivationPath?: string | undefined;
|
|
1689
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1690
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1691
|
+
readonly name?: string | undefined;
|
|
1692
|
+
readonly paging?: Record<string, {
|
|
1693
|
+
size?: number | undefined;
|
|
1694
|
+
}> | undefined;
|
|
1695
|
+
readonly security?: {
|
|
1696
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1697
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1698
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1699
|
+
} | undefined;
|
|
1700
|
+
readonly sign?: boolean | undefined;
|
|
1701
|
+
readonly storeQueries?: boolean | undefined;
|
|
1702
|
+
readonly timestamp?: boolean | undefined;
|
|
1703
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1704
|
+
synchronous?: boolean | undefined;
|
|
1705
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1706
|
+
throwErrors?: boolean | undefined;
|
|
1707
|
+
} & {
|
|
1708
|
+
schema: "network.xyo.sentinel.config";
|
|
1709
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1710
|
+
accountDerivationPath?: string | undefined;
|
|
1711
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1712
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1713
|
+
readonly name?: string | undefined;
|
|
1714
|
+
readonly paging?: Record<string, {
|
|
1715
|
+
size?: number | undefined;
|
|
1716
|
+
}> | undefined;
|
|
1717
|
+
readonly security?: {
|
|
1718
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1719
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1720
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1721
|
+
} | undefined;
|
|
1722
|
+
readonly sign?: boolean | undefined;
|
|
1723
|
+
readonly storeQueries?: boolean | undefined;
|
|
1724
|
+
readonly timestamp?: boolean | undefined;
|
|
1725
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1726
|
+
synchronous?: boolean | undefined;
|
|
1727
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1728
|
+
throwErrors?: boolean | undefined;
|
|
1729
|
+
} & {
|
|
1730
|
+
schema: "network.xyo.sentinel.config";
|
|
1731
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1732
|
+
accountDerivationPath?: string | undefined;
|
|
1733
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1734
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1735
|
+
readonly name?: string | undefined;
|
|
1736
|
+
readonly paging?: Record<string, {
|
|
1737
|
+
size?: number | undefined;
|
|
1738
|
+
}> | undefined;
|
|
1739
|
+
readonly security?: {
|
|
1740
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1741
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1742
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1743
|
+
} | undefined;
|
|
1744
|
+
readonly sign?: boolean | undefined;
|
|
1745
|
+
readonly storeQueries?: boolean | undefined;
|
|
1746
|
+
readonly timestamp?: boolean | undefined;
|
|
1747
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1748
|
+
synchronous?: boolean | undefined;
|
|
1749
|
+
tasks: import("@xyo-network/sentinel").Task[];
|
|
1750
|
+
throwErrors?: boolean | undefined;
|
|
1751
|
+
} & {
|
|
1752
|
+
schema: "network.xyo.sentinel.config";
|
|
1753
|
+
}), "schema">, "schema"> & {
|
|
190
1754
|
schema: string;
|
|
191
|
-
};
|
|
1755
|
+
});
|
|
192
1756
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
193
1757
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
194
1758
|
}>>>>;
|