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