@xyo-network/sentinel-model 3.7.2 → 3.8.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/neutral/index.d.ts +2051 -15
- package/package.json +11 -11
- package/dist/neutral/Automation.d.ts +0 -49
- package/dist/neutral/Automation.d.ts.map +0 -1
- package/dist/neutral/Config.d.ts +0 -15
- package/dist/neutral/Config.d.ts.map +0 -1
- package/dist/neutral/EventData.d.ts +0 -5
- package/dist/neutral/EventData.d.ts.map +0 -1
- package/dist/neutral/EventsModels/JobEnd.d.ts +0 -12
- package/dist/neutral/EventsModels/JobEnd.d.ts.map +0 -1
- package/dist/neutral/EventsModels/JobStart.d.ts +0 -10
- package/dist/neutral/EventsModels/JobStart.d.ts.map +0 -1
- package/dist/neutral/EventsModels/ReportEnd.d.ts +0 -13
- package/dist/neutral/EventsModels/ReportEnd.d.ts.map +0 -1
- package/dist/neutral/EventsModels/ReportStart.d.ts +0 -10
- package/dist/neutral/EventsModels/ReportStart.d.ts.map +0 -1
- package/dist/neutral/EventsModels/TaskEnd.d.ts +0 -14
- package/dist/neutral/EventsModels/TaskEnd.d.ts.map +0 -1
- package/dist/neutral/EventsModels/TaskStart.d.ts +0 -13
- package/dist/neutral/EventsModels/TaskStart.d.ts.map +0 -1
- package/dist/neutral/EventsModels/index.d.ts +0 -7
- package/dist/neutral/EventsModels/index.d.ts.map +0 -1
- package/dist/neutral/Instance.d.ts +0 -10
- package/dist/neutral/Instance.d.ts.map +0 -1
- package/dist/neutral/Job.d.ts +0 -5
- package/dist/neutral/Job.d.ts.map +0 -1
- package/dist/neutral/Module.d.ts +0 -8
- package/dist/neutral/Module.d.ts.map +0 -1
- package/dist/neutral/Params.d.ts +0 -5
- package/dist/neutral/Params.d.ts.map +0 -1
- package/dist/neutral/Queries/Report.d.ts +0 -7
- package/dist/neutral/Queries/Report.d.ts.map +0 -1
- package/dist/neutral/Queries/index.d.ts +0 -6
- package/dist/neutral/Queries/index.d.ts.map +0 -1
- package/dist/neutral/ResolvedTask.d.ts +0 -14
- package/dist/neutral/ResolvedTask.d.ts.map +0 -1
- package/dist/neutral/Sentinel.d.ts +0 -9
- package/dist/neutral/Sentinel.d.ts.map +0 -1
- package/dist/neutral/Task.d.ts +0 -15
- package/dist/neutral/Task.d.ts.map +0 -1
- package/dist/neutral/attachable/AttachableInstance.d.ts +0 -13
- package/dist/neutral/attachable/AttachableInstance.d.ts.map +0 -1
- package/dist/neutral/attachable/asAttachableInstance.d.ts +0 -434
- package/dist/neutral/attachable/asAttachableInstance.d.ts.map +0 -1
- package/dist/neutral/attachable/index.d.ts +0 -4
- package/dist/neutral/attachable/index.d.ts.map +0 -1
- package/dist/neutral/attachable/isAttachableInstance.d.ts +0 -6
- package/dist/neutral/attachable/isAttachableInstance.d.ts.map +0 -1
- package/dist/neutral/index.d.ts.map +0 -1
- package/dist/neutral/typeChecks.d.ts +0 -1445
- package/dist/neutral/typeChecks.d.ts.map +0 -1
|
@@ -1,434 +0,0 @@
|
|
|
1
|
-
export declare const asAttachableSentinelInstance: {
|
|
2
|
-
<TType extends import("./AttachableInstance.ts").AttachableSentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
3
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
4
|
-
addToResolvers?: boolean;
|
|
5
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
6
|
-
allowNameResolution?: boolean;
|
|
7
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
8
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
9
|
-
readonly archiving?: {
|
|
10
|
-
readonly archivists?: string[] | undefined;
|
|
11
|
-
readonly queries?: string[] | undefined;
|
|
12
|
-
} | undefined;
|
|
13
|
-
readonly allowedQueries?: string[] | undefined;
|
|
14
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
15
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
16
|
-
readonly labels?: {
|
|
17
|
-
[x: string]: string | undefined;
|
|
18
|
-
} | undefined;
|
|
19
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
20
|
-
readonly paging?: {
|
|
21
|
-
[x: string]: {
|
|
22
|
-
size?: number | undefined;
|
|
23
|
-
};
|
|
24
|
-
} | undefined;
|
|
25
|
-
readonly retry?: {
|
|
26
|
-
backoff?: number | undefined;
|
|
27
|
-
interval?: number | undefined;
|
|
28
|
-
retries?: number | undefined;
|
|
29
|
-
} | undefined;
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: {
|
|
33
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly disallowed?: {
|
|
36
|
-
[x: string]: Lowercase<string>[];
|
|
37
|
-
} | undefined;
|
|
38
|
-
} | undefined;
|
|
39
|
-
readonly sign?: boolean | undefined;
|
|
40
|
-
readonly storeQueries?: boolean | undefined;
|
|
41
|
-
readonly timestamp?: boolean | undefined;
|
|
42
|
-
automations?: ({
|
|
43
|
-
schema: "network.xyo.automation";
|
|
44
|
-
type: "interval";
|
|
45
|
-
end?: number | undefined;
|
|
46
|
-
frequency?: number | undefined;
|
|
47
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
48
|
-
remaining?: number | undefined;
|
|
49
|
-
start: number;
|
|
50
|
-
} | {
|
|
51
|
-
schema: "network.xyo.automation.interval";
|
|
52
|
-
type: "interval";
|
|
53
|
-
end?: number | undefined;
|
|
54
|
-
frequency?: number | undefined;
|
|
55
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
56
|
-
remaining?: number | undefined;
|
|
57
|
-
start: number;
|
|
58
|
-
} | {
|
|
59
|
-
schema: "network.xyo.automation.event";
|
|
60
|
-
type: "interval";
|
|
61
|
-
end?: number | undefined;
|
|
62
|
-
frequency?: number | undefined;
|
|
63
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
64
|
-
remaining?: number | undefined;
|
|
65
|
-
start: number;
|
|
66
|
-
} | {
|
|
67
|
-
schema: "network.xyo.automation";
|
|
68
|
-
type: "event";
|
|
69
|
-
} | {
|
|
70
|
-
schema: "network.xyo.automation.interval";
|
|
71
|
-
type: "event";
|
|
72
|
-
} | {
|
|
73
|
-
schema: "network.xyo.automation.event";
|
|
74
|
-
type: "event";
|
|
75
|
-
})[] | undefined;
|
|
76
|
-
synchronous?: boolean | undefined;
|
|
77
|
-
tasks: ({
|
|
78
|
-
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
79
|
-
input?: string | boolean | string[] | undefined;
|
|
80
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
81
|
-
required?: boolean | undefined;
|
|
82
|
-
} | {
|
|
83
|
-
endPoint?: "divine" | undefined;
|
|
84
|
-
input?: string | boolean | string[] | undefined;
|
|
85
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
86
|
-
required?: boolean | undefined;
|
|
87
|
-
} | {
|
|
88
|
-
endPoint?: "observe" | undefined;
|
|
89
|
-
input?: string | boolean | string[] | undefined;
|
|
90
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
91
|
-
required?: boolean | undefined;
|
|
92
|
-
} | {
|
|
93
|
-
endPoint?: string | undefined;
|
|
94
|
-
input?: string | boolean | string[] | undefined;
|
|
95
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
96
|
-
required?: boolean | undefined;
|
|
97
|
-
})[];
|
|
98
|
-
throwErrors?: boolean | undefined;
|
|
99
|
-
}>;
|
|
100
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
101
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
102
|
-
}, import("../EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
103
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
104
|
-
addToResolvers?: boolean;
|
|
105
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
106
|
-
allowNameResolution?: boolean;
|
|
107
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
108
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
109
|
-
readonly archiving?: {
|
|
110
|
-
readonly archivists?: string[] | undefined;
|
|
111
|
-
readonly queries?: string[] | undefined;
|
|
112
|
-
} | undefined;
|
|
113
|
-
readonly allowedQueries?: string[] | undefined;
|
|
114
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
115
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
116
|
-
readonly labels?: {
|
|
117
|
-
[x: string]: string | undefined;
|
|
118
|
-
} | undefined;
|
|
119
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
120
|
-
readonly paging?: {
|
|
121
|
-
[x: string]: {
|
|
122
|
-
size?: number | undefined;
|
|
123
|
-
};
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly retry?: {
|
|
126
|
-
backoff?: number | undefined;
|
|
127
|
-
interval?: number | undefined;
|
|
128
|
-
retries?: number | undefined;
|
|
129
|
-
} | undefined;
|
|
130
|
-
readonly security?: {
|
|
131
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
132
|
-
readonly allowed?: {
|
|
133
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
134
|
-
} | undefined;
|
|
135
|
-
readonly disallowed?: {
|
|
136
|
-
[x: string]: Lowercase<string>[];
|
|
137
|
-
} | undefined;
|
|
138
|
-
} | undefined;
|
|
139
|
-
readonly sign?: boolean | undefined;
|
|
140
|
-
readonly storeQueries?: boolean | undefined;
|
|
141
|
-
readonly timestamp?: boolean | undefined;
|
|
142
|
-
}>;
|
|
143
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
144
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
145
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: import("@xylabs/promise").AnyNonPromise, config?: import("@xylabs/object").TypeCheckConfig): TType | undefined;
|
|
146
|
-
<TType extends import("./AttachableInstance.ts").AttachableSentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
147
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
148
|
-
addToResolvers?: boolean;
|
|
149
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
150
|
-
allowNameResolution?: boolean;
|
|
151
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
152
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
153
|
-
readonly archiving?: {
|
|
154
|
-
readonly archivists?: string[] | undefined;
|
|
155
|
-
readonly queries?: string[] | undefined;
|
|
156
|
-
} | undefined;
|
|
157
|
-
readonly allowedQueries?: string[] | undefined;
|
|
158
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
159
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
160
|
-
readonly labels?: {
|
|
161
|
-
[x: string]: string | undefined;
|
|
162
|
-
} | undefined;
|
|
163
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
164
|
-
readonly paging?: {
|
|
165
|
-
[x: string]: {
|
|
166
|
-
size?: number | undefined;
|
|
167
|
-
};
|
|
168
|
-
} | undefined;
|
|
169
|
-
readonly retry?: {
|
|
170
|
-
backoff?: number | undefined;
|
|
171
|
-
interval?: number | undefined;
|
|
172
|
-
retries?: number | undefined;
|
|
173
|
-
} | undefined;
|
|
174
|
-
readonly security?: {
|
|
175
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
176
|
-
readonly allowed?: {
|
|
177
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
178
|
-
} | undefined;
|
|
179
|
-
readonly disallowed?: {
|
|
180
|
-
[x: string]: Lowercase<string>[];
|
|
181
|
-
} | undefined;
|
|
182
|
-
} | undefined;
|
|
183
|
-
readonly sign?: boolean | undefined;
|
|
184
|
-
readonly storeQueries?: boolean | undefined;
|
|
185
|
-
readonly timestamp?: boolean | undefined;
|
|
186
|
-
automations?: ({
|
|
187
|
-
schema: "network.xyo.automation";
|
|
188
|
-
type: "interval";
|
|
189
|
-
end?: number | undefined;
|
|
190
|
-
frequency?: number | undefined;
|
|
191
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
192
|
-
remaining?: number | undefined;
|
|
193
|
-
start: number;
|
|
194
|
-
} | {
|
|
195
|
-
schema: "network.xyo.automation.interval";
|
|
196
|
-
type: "interval";
|
|
197
|
-
end?: number | undefined;
|
|
198
|
-
frequency?: number | undefined;
|
|
199
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
200
|
-
remaining?: number | undefined;
|
|
201
|
-
start: number;
|
|
202
|
-
} | {
|
|
203
|
-
schema: "network.xyo.automation.event";
|
|
204
|
-
type: "interval";
|
|
205
|
-
end?: number | undefined;
|
|
206
|
-
frequency?: number | undefined;
|
|
207
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
208
|
-
remaining?: number | undefined;
|
|
209
|
-
start: number;
|
|
210
|
-
} | {
|
|
211
|
-
schema: "network.xyo.automation";
|
|
212
|
-
type: "event";
|
|
213
|
-
} | {
|
|
214
|
-
schema: "network.xyo.automation.interval";
|
|
215
|
-
type: "event";
|
|
216
|
-
} | {
|
|
217
|
-
schema: "network.xyo.automation.event";
|
|
218
|
-
type: "event";
|
|
219
|
-
})[] | undefined;
|
|
220
|
-
synchronous?: boolean | undefined;
|
|
221
|
-
tasks: ({
|
|
222
|
-
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
223
|
-
input?: string | boolean | string[] | undefined;
|
|
224
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
225
|
-
required?: boolean | undefined;
|
|
226
|
-
} | {
|
|
227
|
-
endPoint?: "divine" | undefined;
|
|
228
|
-
input?: string | boolean | string[] | undefined;
|
|
229
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
230
|
-
required?: boolean | undefined;
|
|
231
|
-
} | {
|
|
232
|
-
endPoint?: "observe" | undefined;
|
|
233
|
-
input?: string | boolean | string[] | undefined;
|
|
234
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
235
|
-
required?: boolean | undefined;
|
|
236
|
-
} | {
|
|
237
|
-
endPoint?: string | undefined;
|
|
238
|
-
input?: string | boolean | string[] | undefined;
|
|
239
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
240
|
-
required?: boolean | undefined;
|
|
241
|
-
})[];
|
|
242
|
-
throwErrors?: boolean | undefined;
|
|
243
|
-
}>;
|
|
244
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
245
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
246
|
-
}, import("../EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
247
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
248
|
-
addToResolvers?: boolean;
|
|
249
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
250
|
-
allowNameResolution?: boolean;
|
|
251
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
252
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
253
|
-
readonly archiving?: {
|
|
254
|
-
readonly archivists?: string[] | undefined;
|
|
255
|
-
readonly queries?: string[] | undefined;
|
|
256
|
-
} | undefined;
|
|
257
|
-
readonly allowedQueries?: string[] | undefined;
|
|
258
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
259
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
260
|
-
readonly labels?: {
|
|
261
|
-
[x: string]: string | undefined;
|
|
262
|
-
} | undefined;
|
|
263
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
264
|
-
readonly paging?: {
|
|
265
|
-
[x: string]: {
|
|
266
|
-
size?: number | undefined;
|
|
267
|
-
};
|
|
268
|
-
} | undefined;
|
|
269
|
-
readonly retry?: {
|
|
270
|
-
backoff?: number | undefined;
|
|
271
|
-
interval?: number | undefined;
|
|
272
|
-
retries?: number | undefined;
|
|
273
|
-
} | undefined;
|
|
274
|
-
readonly security?: {
|
|
275
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
276
|
-
readonly allowed?: {
|
|
277
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
278
|
-
} | undefined;
|
|
279
|
-
readonly disallowed?: {
|
|
280
|
-
[x: string]: Lowercase<string>[];
|
|
281
|
-
} | undefined;
|
|
282
|
-
} | undefined;
|
|
283
|
-
readonly sign?: boolean | undefined;
|
|
284
|
-
readonly storeQueries?: boolean | undefined;
|
|
285
|
-
readonly timestamp?: boolean | undefined;
|
|
286
|
-
}>;
|
|
287
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
288
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
289
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: import("@xylabs/promise").AnyNonPromise, assert: import("@xylabs/object").StringOrAlertFunction<import("./AttachableInstance.ts").AttachableSentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
290
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
291
|
-
addToResolvers?: boolean;
|
|
292
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
293
|
-
allowNameResolution?: boolean;
|
|
294
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
295
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
296
|
-
readonly archiving?: {
|
|
297
|
-
readonly archivists?: string[] | undefined;
|
|
298
|
-
readonly queries?: string[] | undefined;
|
|
299
|
-
} | undefined;
|
|
300
|
-
readonly allowedQueries?: string[] | undefined;
|
|
301
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
302
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
303
|
-
readonly labels?: {
|
|
304
|
-
[x: string]: string | undefined;
|
|
305
|
-
} | undefined;
|
|
306
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
307
|
-
readonly paging?: {
|
|
308
|
-
[x: string]: {
|
|
309
|
-
size?: number | undefined;
|
|
310
|
-
};
|
|
311
|
-
} | undefined;
|
|
312
|
-
readonly retry?: {
|
|
313
|
-
backoff?: number | undefined;
|
|
314
|
-
interval?: number | undefined;
|
|
315
|
-
retries?: number | undefined;
|
|
316
|
-
} | undefined;
|
|
317
|
-
readonly security?: {
|
|
318
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
319
|
-
readonly allowed?: {
|
|
320
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
321
|
-
} | undefined;
|
|
322
|
-
readonly disallowed?: {
|
|
323
|
-
[x: string]: Lowercase<string>[];
|
|
324
|
-
} | undefined;
|
|
325
|
-
} | undefined;
|
|
326
|
-
readonly sign?: boolean | undefined;
|
|
327
|
-
readonly storeQueries?: boolean | undefined;
|
|
328
|
-
readonly timestamp?: boolean | undefined;
|
|
329
|
-
automations?: ({
|
|
330
|
-
schema: "network.xyo.automation";
|
|
331
|
-
type: "interval";
|
|
332
|
-
end?: number | undefined;
|
|
333
|
-
frequency?: number | undefined;
|
|
334
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
335
|
-
remaining?: number | undefined;
|
|
336
|
-
start: number;
|
|
337
|
-
} | {
|
|
338
|
-
schema: "network.xyo.automation.interval";
|
|
339
|
-
type: "interval";
|
|
340
|
-
end?: number | undefined;
|
|
341
|
-
frequency?: number | undefined;
|
|
342
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
343
|
-
remaining?: number | undefined;
|
|
344
|
-
start: number;
|
|
345
|
-
} | {
|
|
346
|
-
schema: "network.xyo.automation.event";
|
|
347
|
-
type: "interval";
|
|
348
|
-
end?: number | undefined;
|
|
349
|
-
frequency?: number | undefined;
|
|
350
|
-
frequencyUnits?: "second" | "minute" | "hour" | "day" | "millis" | undefined;
|
|
351
|
-
remaining?: number | undefined;
|
|
352
|
-
start: number;
|
|
353
|
-
} | {
|
|
354
|
-
schema: "network.xyo.automation";
|
|
355
|
-
type: "event";
|
|
356
|
-
} | {
|
|
357
|
-
schema: "network.xyo.automation.interval";
|
|
358
|
-
type: "event";
|
|
359
|
-
} | {
|
|
360
|
-
schema: "network.xyo.automation.event";
|
|
361
|
-
type: "event";
|
|
362
|
-
})[] | undefined;
|
|
363
|
-
synchronous?: boolean | undefined;
|
|
364
|
-
tasks: ({
|
|
365
|
-
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
366
|
-
input?: string | boolean | string[] | undefined;
|
|
367
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
368
|
-
required?: boolean | undefined;
|
|
369
|
-
} | {
|
|
370
|
-
endPoint?: "divine" | undefined;
|
|
371
|
-
input?: string | boolean | string[] | undefined;
|
|
372
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
373
|
-
required?: boolean | undefined;
|
|
374
|
-
} | {
|
|
375
|
-
endPoint?: "observe" | undefined;
|
|
376
|
-
input?: string | boolean | string[] | undefined;
|
|
377
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
378
|
-
required?: boolean | undefined;
|
|
379
|
-
} | {
|
|
380
|
-
endPoint?: string | undefined;
|
|
381
|
-
input?: string | boolean | string[] | undefined;
|
|
382
|
-
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
383
|
-
required?: boolean | undefined;
|
|
384
|
-
})[];
|
|
385
|
-
throwErrors?: boolean | undefined;
|
|
386
|
-
}>;
|
|
387
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
388
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
389
|
-
}, import("../EventData.ts").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
390
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
391
|
-
addToResolvers?: boolean;
|
|
392
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
393
|
-
allowNameResolution?: boolean;
|
|
394
|
-
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
395
|
-
schema: import("@xyo-network/payload-model").Schema;
|
|
396
|
-
readonly archiving?: {
|
|
397
|
-
readonly archivists?: string[] | undefined;
|
|
398
|
-
readonly queries?: string[] | undefined;
|
|
399
|
-
} | undefined;
|
|
400
|
-
readonly allowedQueries?: string[] | undefined;
|
|
401
|
-
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
402
|
-
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
403
|
-
readonly labels?: {
|
|
404
|
-
[x: string]: string | undefined;
|
|
405
|
-
} | undefined;
|
|
406
|
-
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
407
|
-
readonly paging?: {
|
|
408
|
-
[x: string]: {
|
|
409
|
-
size?: number | undefined;
|
|
410
|
-
};
|
|
411
|
-
} | undefined;
|
|
412
|
-
readonly retry?: {
|
|
413
|
-
backoff?: number | undefined;
|
|
414
|
-
interval?: number | undefined;
|
|
415
|
-
retries?: number | undefined;
|
|
416
|
-
} | undefined;
|
|
417
|
-
readonly security?: {
|
|
418
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
419
|
-
readonly allowed?: {
|
|
420
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
421
|
-
} | undefined;
|
|
422
|
-
readonly disallowed?: {
|
|
423
|
-
[x: string]: Lowercase<string>[];
|
|
424
|
-
} | undefined;
|
|
425
|
-
} | undefined;
|
|
426
|
-
readonly sign?: boolean | undefined;
|
|
427
|
-
readonly storeQueries?: boolean | undefined;
|
|
428
|
-
readonly timestamp?: boolean | undefined;
|
|
429
|
-
}>;
|
|
430
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
431
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
432
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>, config?: import("@xylabs/object").TypeCheckConfig): TType;
|
|
433
|
-
};
|
|
434
|
-
//# sourceMappingURL=asAttachableInstance.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"asAttachableInstance.d.ts","sourceRoot":"","sources":["../../../src/attachable/asAttachableInstance.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qFACZ,iBAAiB,iCAAiC,gBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qFAA+E,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wFAAgG,gBAAoB;CADvN,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/attachable/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA;AACzC,cAAc,yBAAyB,CAAA;AACvC,cAAc,2BAA2B,CAAA"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { TypeCheck } from '@xylabs/object';
|
|
2
|
-
import type { ObjectTypeShape } from '@xylabs/typeof';
|
|
3
|
-
import type { AttachableSentinelInstance } from './AttachableInstance.ts';
|
|
4
|
-
export declare const requiredAttachableSentinelInstanceFunctions: ObjectTypeShape;
|
|
5
|
-
export declare const isAttachableSentinelInstance: TypeCheck<AttachableSentinelInstance>;
|
|
6
|
-
//# sourceMappingURL=isAttachableInstance.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isAttachableInstance.d.ts","sourceRoot":"","sources":["../../../src/attachable/isAttachableInstance.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAE/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAIrD,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,yBAAyB,CAAA;AAEzE,eAAO,MAAM,2CAA2C,EAAE,eAAoB,CAAA;AAK9E,eAAO,MAAM,4BAA4B,EAAE,SAAS,CAAC,0BAA0B,CAG7E,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA;AACrC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,yBAAyB,CAAA;AACvC,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,cAAc,mBAAmB,CAAA;AACjC,cAAc,eAAe,CAAA;AAC7B,cAAc,WAAW,CAAA;AACzB,cAAc,iBAAiB,CAAA"}
|