@xyo-network/sentinel-model 2.87.0 → 2.87.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/Instance.d.cts +4 -2
- package/dist/browser/Instance.d.cts.map +1 -1
- package/dist/browser/Instance.d.mts +4 -2
- package/dist/browser/Instance.d.mts.map +1 -1
- package/dist/browser/Instance.d.ts +4 -2
- package/dist/browser/Instance.d.ts.map +1 -1
- package/dist/browser/Module.d.cts +4 -2
- package/dist/browser/Module.d.cts.map +1 -1
- package/dist/browser/Module.d.mts +4 -2
- package/dist/browser/Module.d.mts.map +1 -1
- package/dist/browser/Module.d.ts +4 -2
- package/dist/browser/Module.d.ts.map +1 -1
- package/dist/browser/typeChecks.d.cts +664 -8
- package/dist/browser/typeChecks.d.cts.map +1 -1
- package/dist/browser/typeChecks.d.mts +664 -8
- package/dist/browser/typeChecks.d.mts.map +1 -1
- package/dist/browser/typeChecks.d.ts +664 -8
- package/dist/browser/typeChecks.d.ts.map +1 -1
- package/dist/node/Instance.d.cts +4 -2
- package/dist/node/Instance.d.cts.map +1 -1
- package/dist/node/Instance.d.mts +4 -2
- package/dist/node/Instance.d.mts.map +1 -1
- package/dist/node/Instance.d.ts +4 -2
- package/dist/node/Instance.d.ts.map +1 -1
- package/dist/node/Module.d.cts +4 -2
- package/dist/node/Module.d.cts.map +1 -1
- package/dist/node/Module.d.mts +4 -2
- package/dist/node/Module.d.mts.map +1 -1
- package/dist/node/Module.d.ts +4 -2
- package/dist/node/Module.d.ts.map +1 -1
- package/dist/node/typeChecks.d.cts +664 -8
- package/dist/node/typeChecks.d.cts.map +1 -1
- package/dist/node/typeChecks.d.mts +664 -8
- package/dist/node/typeChecks.d.mts.map +1 -1
- package/dist/node/typeChecks.d.ts +664 -8
- package/dist/node/typeChecks.d.ts.map +1 -1
- package/package.json +11 -11
- package/src/Instance.ts +10 -3
- package/src/Module.ts +4 -3
|
@@ -1,15 +1,671 @@
|
|
|
1
1
|
import { SentinelInstance } from './Instance';
|
|
2
2
|
import { SentinelModule } from './Module';
|
|
3
|
-
export declare const isSentinelInstance: import("@xyo-network/object").TypeCheck<SentinelInstance
|
|
4
|
-
|
|
3
|
+
export declare const isSentinelInstance: import("@xyo-network/object").TypeCheck<SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
4
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
5
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
6
|
+
readonly archivist?: string | undefined;
|
|
7
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
8
|
+
readonly name?: string | undefined;
|
|
9
|
+
readonly paging?: Record<string, {
|
|
10
|
+
size?: number | undefined;
|
|
11
|
+
}> | undefined;
|
|
12
|
+
schema: "network.xyo.sentinel.config";
|
|
13
|
+
readonly security?: {
|
|
14
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
17
|
+
} | undefined;
|
|
18
|
+
readonly sign?: boolean | undefined;
|
|
19
|
+
readonly storeQueries?: boolean | undefined;
|
|
20
|
+
readonly timestamp?: boolean | undefined;
|
|
21
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
+
readonly archivist?: string | undefined;
|
|
23
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
+
readonly name?: string | undefined;
|
|
25
|
+
readonly paging?: Record<string, {
|
|
26
|
+
size?: number | undefined;
|
|
27
|
+
}> | undefined;
|
|
28
|
+
schema: "network.xyo.sentinel.config";
|
|
29
|
+
readonly security?: {
|
|
30
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
31
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
32
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
33
|
+
} | undefined;
|
|
34
|
+
readonly sign?: boolean | undefined;
|
|
35
|
+
readonly storeQueries?: boolean | undefined;
|
|
36
|
+
readonly timestamp?: boolean | undefined;
|
|
37
|
+
} & {
|
|
38
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
39
|
+
schema: "network.xyo.sentinel.config";
|
|
40
|
+
synchronous?: boolean | undefined;
|
|
41
|
+
tasks: import("./Task").Task[];
|
|
42
|
+
throwErrors?: boolean | undefined;
|
|
43
|
+
}, "schema"> & {
|
|
44
|
+
schema: string;
|
|
45
|
+
};
|
|
46
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
47
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
48
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
49
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
50
|
+
readonly archivist?: string | undefined;
|
|
51
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
52
|
+
readonly name?: string | undefined;
|
|
53
|
+
readonly paging?: Record<string, {
|
|
54
|
+
size?: number | undefined;
|
|
55
|
+
}> | undefined;
|
|
56
|
+
schema: "network.xyo.module.config";
|
|
57
|
+
readonly security?: {
|
|
58
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
59
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
60
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
61
|
+
} | undefined;
|
|
62
|
+
readonly sign?: boolean | undefined;
|
|
63
|
+
readonly storeQueries?: boolean | undefined;
|
|
64
|
+
readonly timestamp?: boolean | undefined;
|
|
65
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
66
|
+
readonly archivist?: string | undefined;
|
|
67
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
68
|
+
readonly name?: string | undefined;
|
|
69
|
+
readonly paging?: Record<string, {
|
|
70
|
+
size?: number | undefined;
|
|
71
|
+
}> | undefined;
|
|
72
|
+
schema: "network.xyo.module.config";
|
|
73
|
+
readonly security?: {
|
|
74
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
75
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
76
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
77
|
+
} | undefined;
|
|
78
|
+
readonly sign?: boolean | undefined;
|
|
79
|
+
readonly storeQueries?: boolean | undefined;
|
|
80
|
+
readonly timestamp?: boolean | undefined;
|
|
81
|
+
}, "schema"> & {
|
|
82
|
+
schema: string;
|
|
83
|
+
};
|
|
84
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
85
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
86
|
+
export declare const isSentinelModule: import("@xyo-network/module-model").ModuleTypeCheck<SentinelModule<import("@xyo-network/object").BaseParamsFields & {
|
|
87
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
88
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
89
|
+
readonly archivist?: string | undefined;
|
|
90
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
91
|
+
readonly name?: string | undefined;
|
|
92
|
+
readonly paging?: Record<string, {
|
|
93
|
+
size?: number | undefined;
|
|
94
|
+
}> | undefined;
|
|
95
|
+
schema: "network.xyo.sentinel.config";
|
|
96
|
+
readonly security?: {
|
|
97
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
98
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
99
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
100
|
+
} | undefined;
|
|
101
|
+
readonly sign?: boolean | undefined;
|
|
102
|
+
readonly storeQueries?: boolean | undefined;
|
|
103
|
+
readonly timestamp?: boolean | undefined;
|
|
104
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
105
|
+
readonly archivist?: string | undefined;
|
|
106
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
107
|
+
readonly name?: string | undefined;
|
|
108
|
+
readonly paging?: Record<string, {
|
|
109
|
+
size?: number | undefined;
|
|
110
|
+
}> | undefined;
|
|
111
|
+
schema: "network.xyo.sentinel.config";
|
|
112
|
+
readonly security?: {
|
|
113
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
114
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
115
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
116
|
+
} | undefined;
|
|
117
|
+
readonly sign?: boolean | undefined;
|
|
118
|
+
readonly storeQueries?: boolean | undefined;
|
|
119
|
+
readonly timestamp?: boolean | undefined;
|
|
120
|
+
} & {
|
|
121
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
122
|
+
schema: "network.xyo.sentinel.config";
|
|
123
|
+
synchronous?: boolean | undefined;
|
|
124
|
+
tasks: import("./Task").Task[];
|
|
125
|
+
throwErrors?: boolean | undefined;
|
|
126
|
+
}, "schema"> & {
|
|
127
|
+
schema: string;
|
|
128
|
+
};
|
|
129
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
130
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
131
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
132
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
133
|
+
readonly archivist?: string | undefined;
|
|
134
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
135
|
+
readonly name?: string | undefined;
|
|
136
|
+
readonly paging?: Record<string, {
|
|
137
|
+
size?: number | undefined;
|
|
138
|
+
}> | undefined;
|
|
139
|
+
schema: "network.xyo.module.config";
|
|
140
|
+
readonly security?: {
|
|
141
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
144
|
+
} | undefined;
|
|
145
|
+
readonly sign?: boolean | undefined;
|
|
146
|
+
readonly storeQueries?: boolean | undefined;
|
|
147
|
+
readonly timestamp?: boolean | undefined;
|
|
148
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
149
|
+
readonly archivist?: string | undefined;
|
|
150
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
151
|
+
readonly name?: string | undefined;
|
|
152
|
+
readonly paging?: Record<string, {
|
|
153
|
+
size?: number | undefined;
|
|
154
|
+
}> | undefined;
|
|
155
|
+
schema: "network.xyo.module.config";
|
|
156
|
+
readonly security?: {
|
|
157
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
158
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
159
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
160
|
+
} | undefined;
|
|
161
|
+
readonly sign?: boolean | undefined;
|
|
162
|
+
readonly storeQueries?: boolean | undefined;
|
|
163
|
+
readonly timestamp?: boolean | undefined;
|
|
164
|
+
}, "schema"> & {
|
|
165
|
+
schema: string;
|
|
166
|
+
};
|
|
167
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
168
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>;
|
|
5
169
|
export declare const asSentinelModule: {
|
|
6
|
-
<TType extends SentinelModule
|
|
7
|
-
|
|
170
|
+
<TType extends SentinelModule<import("@xyo-network/object").BaseParamsFields & {
|
|
171
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
172
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
173
|
+
readonly archivist?: string | undefined;
|
|
174
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
175
|
+
readonly name?: string | undefined;
|
|
176
|
+
readonly paging?: Record<string, {
|
|
177
|
+
size?: number | undefined;
|
|
178
|
+
}> | undefined;
|
|
179
|
+
schema: "network.xyo.sentinel.config";
|
|
180
|
+
readonly security?: {
|
|
181
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
182
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
183
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
184
|
+
} | undefined;
|
|
185
|
+
readonly sign?: boolean | undefined;
|
|
186
|
+
readonly storeQueries?: boolean | undefined;
|
|
187
|
+
readonly timestamp?: boolean | undefined;
|
|
188
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
189
|
+
readonly archivist?: string | undefined;
|
|
190
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
191
|
+
readonly name?: string | undefined;
|
|
192
|
+
readonly paging?: Record<string, {
|
|
193
|
+
size?: number | undefined;
|
|
194
|
+
}> | undefined;
|
|
195
|
+
schema: "network.xyo.sentinel.config";
|
|
196
|
+
readonly security?: {
|
|
197
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
198
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
199
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
200
|
+
} | undefined;
|
|
201
|
+
readonly sign?: boolean | undefined;
|
|
202
|
+
readonly storeQueries?: boolean | undefined;
|
|
203
|
+
readonly timestamp?: boolean | undefined;
|
|
204
|
+
} & {
|
|
205
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
206
|
+
schema: "network.xyo.sentinel.config";
|
|
207
|
+
synchronous?: boolean | undefined;
|
|
208
|
+
tasks: import("./Task").Task[];
|
|
209
|
+
throwErrors?: boolean | undefined;
|
|
210
|
+
}, "schema"> & {
|
|
211
|
+
schema: string;
|
|
212
|
+
};
|
|
213
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
214
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
215
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
216
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
217
|
+
readonly archivist?: string | undefined;
|
|
218
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
219
|
+
readonly name?: string | undefined;
|
|
220
|
+
readonly paging?: Record<string, {
|
|
221
|
+
size?: number | undefined;
|
|
222
|
+
}> | undefined;
|
|
223
|
+
schema: "network.xyo.module.config";
|
|
224
|
+
readonly security?: {
|
|
225
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
226
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
227
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
228
|
+
} | undefined;
|
|
229
|
+
readonly sign?: boolean | undefined;
|
|
230
|
+
readonly storeQueries?: boolean | undefined;
|
|
231
|
+
readonly timestamp?: boolean | undefined;
|
|
232
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
233
|
+
readonly archivist?: string | undefined;
|
|
234
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
235
|
+
readonly name?: string | undefined;
|
|
236
|
+
readonly paging?: Record<string, {
|
|
237
|
+
size?: number | undefined;
|
|
238
|
+
}> | undefined;
|
|
239
|
+
schema: "network.xyo.module.config";
|
|
240
|
+
readonly security?: {
|
|
241
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
242
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
243
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
244
|
+
} | undefined;
|
|
245
|
+
readonly sign?: boolean | undefined;
|
|
246
|
+
readonly storeQueries?: boolean | undefined;
|
|
247
|
+
readonly timestamp?: boolean | undefined;
|
|
248
|
+
}, "schema"> & {
|
|
249
|
+
schema: string;
|
|
250
|
+
};
|
|
251
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
252
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType | undefined;
|
|
253
|
+
<TType_1 extends SentinelModule<import("@xyo-network/object").BaseParamsFields & {
|
|
254
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
255
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
256
|
+
readonly archivist?: string | undefined;
|
|
257
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
258
|
+
readonly name?: string | undefined;
|
|
259
|
+
readonly paging?: Record<string, {
|
|
260
|
+
size?: number | undefined;
|
|
261
|
+
}> | undefined;
|
|
262
|
+
schema: "network.xyo.sentinel.config";
|
|
263
|
+
readonly security?: {
|
|
264
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
265
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
266
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
267
|
+
} | undefined;
|
|
268
|
+
readonly sign?: boolean | undefined;
|
|
269
|
+
readonly storeQueries?: boolean | undefined;
|
|
270
|
+
readonly timestamp?: boolean | undefined;
|
|
271
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
272
|
+
readonly archivist?: string | undefined;
|
|
273
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
274
|
+
readonly name?: string | undefined;
|
|
275
|
+
readonly paging?: Record<string, {
|
|
276
|
+
size?: number | undefined;
|
|
277
|
+
}> | undefined;
|
|
278
|
+
schema: "network.xyo.sentinel.config";
|
|
279
|
+
readonly security?: {
|
|
280
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
281
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
282
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
283
|
+
} | undefined;
|
|
284
|
+
readonly sign?: boolean | undefined;
|
|
285
|
+
readonly storeQueries?: boolean | undefined;
|
|
286
|
+
readonly timestamp?: boolean | undefined;
|
|
287
|
+
} & {
|
|
288
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
289
|
+
schema: "network.xyo.sentinel.config";
|
|
290
|
+
synchronous?: boolean | undefined;
|
|
291
|
+
tasks: import("./Task").Task[];
|
|
292
|
+
throwErrors?: boolean | undefined;
|
|
293
|
+
}, "schema"> & {
|
|
294
|
+
schema: string;
|
|
295
|
+
};
|
|
296
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
297
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
298
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
299
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
300
|
+
readonly archivist?: string | undefined;
|
|
301
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
302
|
+
readonly name?: string | undefined;
|
|
303
|
+
readonly paging?: Record<string, {
|
|
304
|
+
size?: number | undefined;
|
|
305
|
+
}> | undefined;
|
|
306
|
+
schema: "network.xyo.module.config";
|
|
307
|
+
readonly security?: {
|
|
308
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
309
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
310
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
311
|
+
} | undefined;
|
|
312
|
+
readonly sign?: boolean | undefined;
|
|
313
|
+
readonly storeQueries?: boolean | undefined;
|
|
314
|
+
readonly timestamp?: boolean | undefined;
|
|
315
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
316
|
+
readonly archivist?: string | undefined;
|
|
317
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
318
|
+
readonly name?: string | undefined;
|
|
319
|
+
readonly paging?: Record<string, {
|
|
320
|
+
size?: number | undefined;
|
|
321
|
+
}> | undefined;
|
|
322
|
+
schema: "network.xyo.module.config";
|
|
323
|
+
readonly security?: {
|
|
324
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
325
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
326
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
327
|
+
} | undefined;
|
|
328
|
+
readonly sign?: boolean | undefined;
|
|
329
|
+
readonly storeQueries?: boolean | undefined;
|
|
330
|
+
readonly timestamp?: boolean | undefined;
|
|
331
|
+
}, "schema"> & {
|
|
332
|
+
schema: string;
|
|
333
|
+
};
|
|
334
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
335
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, assert: string | (() => string), config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType_1;
|
|
8
336
|
};
|
|
9
337
|
export declare const asSentinelInstance: {
|
|
10
|
-
<TType extends SentinelInstance
|
|
11
|
-
|
|
338
|
+
<TType extends SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
339
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
340
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
341
|
+
readonly archivist?: string | undefined;
|
|
342
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
343
|
+
readonly name?: string | undefined;
|
|
344
|
+
readonly paging?: Record<string, {
|
|
345
|
+
size?: number | undefined;
|
|
346
|
+
}> | undefined;
|
|
347
|
+
schema: "network.xyo.sentinel.config";
|
|
348
|
+
readonly security?: {
|
|
349
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
350
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
351
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
352
|
+
} | undefined;
|
|
353
|
+
readonly sign?: boolean | undefined;
|
|
354
|
+
readonly storeQueries?: boolean | undefined;
|
|
355
|
+
readonly timestamp?: boolean | undefined;
|
|
356
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
357
|
+
readonly archivist?: string | undefined;
|
|
358
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
359
|
+
readonly name?: string | undefined;
|
|
360
|
+
readonly paging?: Record<string, {
|
|
361
|
+
size?: number | undefined;
|
|
362
|
+
}> | undefined;
|
|
363
|
+
schema: "network.xyo.sentinel.config";
|
|
364
|
+
readonly security?: {
|
|
365
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
366
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
367
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
368
|
+
} | undefined;
|
|
369
|
+
readonly sign?: boolean | undefined;
|
|
370
|
+
readonly storeQueries?: boolean | undefined;
|
|
371
|
+
readonly timestamp?: boolean | undefined;
|
|
372
|
+
} & {
|
|
373
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
374
|
+
schema: "network.xyo.sentinel.config";
|
|
375
|
+
synchronous?: boolean | undefined;
|
|
376
|
+
tasks: import("./Task").Task[];
|
|
377
|
+
throwErrors?: boolean | undefined;
|
|
378
|
+
}, "schema"> & {
|
|
379
|
+
schema: string;
|
|
380
|
+
};
|
|
381
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
382
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
383
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
384
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
385
|
+
readonly archivist?: string | undefined;
|
|
386
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
387
|
+
readonly name?: string | undefined;
|
|
388
|
+
readonly paging?: Record<string, {
|
|
389
|
+
size?: number | undefined;
|
|
390
|
+
}> | undefined;
|
|
391
|
+
schema: "network.xyo.module.config";
|
|
392
|
+
readonly security?: {
|
|
393
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
394
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
395
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
396
|
+
} | undefined;
|
|
397
|
+
readonly sign?: boolean | undefined;
|
|
398
|
+
readonly storeQueries?: boolean | undefined;
|
|
399
|
+
readonly timestamp?: boolean | undefined;
|
|
400
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
401
|
+
readonly archivist?: string | undefined;
|
|
402
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
403
|
+
readonly name?: string | undefined;
|
|
404
|
+
readonly paging?: Record<string, {
|
|
405
|
+
size?: number | undefined;
|
|
406
|
+
}> | undefined;
|
|
407
|
+
schema: "network.xyo.module.config";
|
|
408
|
+
readonly security?: {
|
|
409
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
410
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
411
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
412
|
+
} | undefined;
|
|
413
|
+
readonly sign?: boolean | undefined;
|
|
414
|
+
readonly storeQueries?: boolean | undefined;
|
|
415
|
+
readonly timestamp?: boolean | undefined;
|
|
416
|
+
}, "schema"> & {
|
|
417
|
+
schema: string;
|
|
418
|
+
};
|
|
419
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
420
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType | undefined;
|
|
421
|
+
<TType_1 extends SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
422
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
423
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
424
|
+
readonly archivist?: string | undefined;
|
|
425
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
426
|
+
readonly name?: string | undefined;
|
|
427
|
+
readonly paging?: Record<string, {
|
|
428
|
+
size?: number | undefined;
|
|
429
|
+
}> | undefined;
|
|
430
|
+
schema: "network.xyo.sentinel.config";
|
|
431
|
+
readonly security?: {
|
|
432
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
433
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
434
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
435
|
+
} | undefined;
|
|
436
|
+
readonly sign?: boolean | undefined;
|
|
437
|
+
readonly storeQueries?: boolean | undefined;
|
|
438
|
+
readonly timestamp?: boolean | undefined;
|
|
439
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
440
|
+
readonly archivist?: string | undefined;
|
|
441
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
442
|
+
readonly name?: string | undefined;
|
|
443
|
+
readonly paging?: Record<string, {
|
|
444
|
+
size?: number | undefined;
|
|
445
|
+
}> | undefined;
|
|
446
|
+
schema: "network.xyo.sentinel.config";
|
|
447
|
+
readonly security?: {
|
|
448
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
449
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
450
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
451
|
+
} | undefined;
|
|
452
|
+
readonly sign?: boolean | undefined;
|
|
453
|
+
readonly storeQueries?: boolean | undefined;
|
|
454
|
+
readonly timestamp?: boolean | undefined;
|
|
455
|
+
} & {
|
|
456
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
457
|
+
schema: "network.xyo.sentinel.config";
|
|
458
|
+
synchronous?: boolean | undefined;
|
|
459
|
+
tasks: import("./Task").Task[];
|
|
460
|
+
throwErrors?: boolean | undefined;
|
|
461
|
+
}, "schema"> & {
|
|
462
|
+
schema: string;
|
|
463
|
+
};
|
|
464
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
465
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
466
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
467
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
468
|
+
readonly archivist?: string | undefined;
|
|
469
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
470
|
+
readonly name?: string | undefined;
|
|
471
|
+
readonly paging?: Record<string, {
|
|
472
|
+
size?: number | undefined;
|
|
473
|
+
}> | undefined;
|
|
474
|
+
schema: "network.xyo.module.config";
|
|
475
|
+
readonly security?: {
|
|
476
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
477
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
478
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
479
|
+
} | undefined;
|
|
480
|
+
readonly sign?: boolean | undefined;
|
|
481
|
+
readonly storeQueries?: boolean | undefined;
|
|
482
|
+
readonly timestamp?: boolean | undefined;
|
|
483
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
484
|
+
readonly archivist?: string | undefined;
|
|
485
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
486
|
+
readonly name?: string | undefined;
|
|
487
|
+
readonly paging?: Record<string, {
|
|
488
|
+
size?: number | undefined;
|
|
489
|
+
}> | undefined;
|
|
490
|
+
schema: "network.xyo.module.config";
|
|
491
|
+
readonly security?: {
|
|
492
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
493
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
494
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
495
|
+
} | undefined;
|
|
496
|
+
readonly sign?: boolean | undefined;
|
|
497
|
+
readonly storeQueries?: boolean | undefined;
|
|
498
|
+
readonly timestamp?: boolean | undefined;
|
|
499
|
+
}, "schema"> & {
|
|
500
|
+
schema: string;
|
|
501
|
+
};
|
|
502
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
503
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>(value: unknown, assert: string | (() => string), config?: import("@xyo-network/object").TypeCheckConfig | undefined): TType_1;
|
|
12
504
|
};
|
|
13
|
-
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule)
|
|
14
|
-
|
|
505
|
+
export declare const withSentinelModule: <R>(module: any, closure: (module: SentinelModule<import("@xyo-network/object").BaseParamsFields & {
|
|
506
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
507
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
508
|
+
readonly archivist?: string | undefined;
|
|
509
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
510
|
+
readonly name?: string | undefined;
|
|
511
|
+
readonly paging?: Record<string, {
|
|
512
|
+
size?: number | undefined;
|
|
513
|
+
}> | undefined;
|
|
514
|
+
schema: "network.xyo.sentinel.config";
|
|
515
|
+
readonly security?: {
|
|
516
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
517
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
518
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
519
|
+
} | undefined;
|
|
520
|
+
readonly sign?: boolean | undefined;
|
|
521
|
+
readonly storeQueries?: boolean | undefined;
|
|
522
|
+
readonly timestamp?: boolean | undefined;
|
|
523
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
524
|
+
readonly archivist?: string | undefined;
|
|
525
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
526
|
+
readonly name?: string | undefined;
|
|
527
|
+
readonly paging?: Record<string, {
|
|
528
|
+
size?: number | undefined;
|
|
529
|
+
}> | undefined;
|
|
530
|
+
schema: "network.xyo.sentinel.config";
|
|
531
|
+
readonly security?: {
|
|
532
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
533
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
534
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
535
|
+
} | undefined;
|
|
536
|
+
readonly sign?: boolean | undefined;
|
|
537
|
+
readonly storeQueries?: boolean | undefined;
|
|
538
|
+
readonly timestamp?: boolean | undefined;
|
|
539
|
+
} & {
|
|
540
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
541
|
+
schema: "network.xyo.sentinel.config";
|
|
542
|
+
synchronous?: boolean | undefined;
|
|
543
|
+
tasks: import("./Task").Task[];
|
|
544
|
+
throwErrors?: boolean | undefined;
|
|
545
|
+
}, "schema"> & {
|
|
546
|
+
schema: string;
|
|
547
|
+
};
|
|
548
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
549
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
550
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
551
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
552
|
+
readonly archivist?: string | undefined;
|
|
553
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
554
|
+
readonly name?: string | undefined;
|
|
555
|
+
readonly paging?: Record<string, {
|
|
556
|
+
size?: number | undefined;
|
|
557
|
+
}> | undefined;
|
|
558
|
+
schema: "network.xyo.module.config";
|
|
559
|
+
readonly security?: {
|
|
560
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
561
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
562
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
563
|
+
} | undefined;
|
|
564
|
+
readonly sign?: boolean | undefined;
|
|
565
|
+
readonly storeQueries?: boolean | undefined;
|
|
566
|
+
readonly timestamp?: boolean | undefined;
|
|
567
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
568
|
+
readonly archivist?: string | undefined;
|
|
569
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
570
|
+
readonly name?: string | undefined;
|
|
571
|
+
readonly paging?: Record<string, {
|
|
572
|
+
size?: number | undefined;
|
|
573
|
+
}> | undefined;
|
|
574
|
+
schema: "network.xyo.module.config";
|
|
575
|
+
readonly security?: {
|
|
576
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
577
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
578
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
579
|
+
} | undefined;
|
|
580
|
+
readonly sign?: boolean | undefined;
|
|
581
|
+
readonly storeQueries?: boolean | undefined;
|
|
582
|
+
readonly timestamp?: boolean | undefined;
|
|
583
|
+
}, "schema"> & {
|
|
584
|
+
schema: string;
|
|
585
|
+
};
|
|
586
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
587
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
588
|
+
export declare const withSentinelInstance: <R>(module: any, closure: (module: SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
589
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
590
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
591
|
+
readonly archivist?: string | undefined;
|
|
592
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
593
|
+
readonly name?: string | undefined;
|
|
594
|
+
readonly paging?: Record<string, {
|
|
595
|
+
size?: number | undefined;
|
|
596
|
+
}> | undefined;
|
|
597
|
+
schema: "network.xyo.sentinel.config";
|
|
598
|
+
readonly security?: {
|
|
599
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
600
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
601
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
602
|
+
} | undefined;
|
|
603
|
+
readonly sign?: boolean | undefined;
|
|
604
|
+
readonly storeQueries?: boolean | undefined;
|
|
605
|
+
readonly timestamp?: boolean | undefined;
|
|
606
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
607
|
+
readonly archivist?: string | undefined;
|
|
608
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
609
|
+
readonly name?: string | undefined;
|
|
610
|
+
readonly paging?: Record<string, {
|
|
611
|
+
size?: number | undefined;
|
|
612
|
+
}> | undefined;
|
|
613
|
+
schema: "network.xyo.sentinel.config";
|
|
614
|
+
readonly security?: {
|
|
615
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
616
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
617
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
618
|
+
} | undefined;
|
|
619
|
+
readonly sign?: boolean | undefined;
|
|
620
|
+
readonly storeQueries?: boolean | undefined;
|
|
621
|
+
readonly timestamp?: boolean | undefined;
|
|
622
|
+
} & {
|
|
623
|
+
automations?: import("./Automation").SentinelAutomationPayload[] | undefined;
|
|
624
|
+
schema: "network.xyo.sentinel.config";
|
|
625
|
+
synchronous?: boolean | undefined;
|
|
626
|
+
tasks: import("./Task").Task[];
|
|
627
|
+
throwErrors?: boolean | undefined;
|
|
628
|
+
}, "schema"> & {
|
|
629
|
+
schema: string;
|
|
630
|
+
};
|
|
631
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
632
|
+
}, import("./EventData").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
633
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
634
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
635
|
+
readonly archivist?: string | undefined;
|
|
636
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
637
|
+
readonly name?: string | undefined;
|
|
638
|
+
readonly paging?: Record<string, {
|
|
639
|
+
size?: number | undefined;
|
|
640
|
+
}> | undefined;
|
|
641
|
+
schema: "network.xyo.module.config";
|
|
642
|
+
readonly security?: {
|
|
643
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
644
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
645
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
646
|
+
} | undefined;
|
|
647
|
+
readonly sign?: boolean | undefined;
|
|
648
|
+
readonly storeQueries?: boolean | undefined;
|
|
649
|
+
readonly timestamp?: boolean | undefined;
|
|
650
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
651
|
+
readonly archivist?: string | undefined;
|
|
652
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
653
|
+
readonly name?: string | undefined;
|
|
654
|
+
readonly paging?: Record<string, {
|
|
655
|
+
size?: number | undefined;
|
|
656
|
+
}> | undefined;
|
|
657
|
+
schema: "network.xyo.module.config";
|
|
658
|
+
readonly security?: {
|
|
659
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
660
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
661
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
662
|
+
} | undefined;
|
|
663
|
+
readonly sign?: boolean | undefined;
|
|
664
|
+
readonly storeQueries?: boolean | undefined;
|
|
665
|
+
readonly timestamp?: boolean | undefined;
|
|
666
|
+
}, "schema"> & {
|
|
667
|
+
schema: string;
|
|
668
|
+
};
|
|
669
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
670
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>) => R) => R | undefined;
|
|
15
671
|
//# sourceMappingURL=typeChecks.d.ts.map
|