@xyo-network/react-standard-node 2.70.5 → 2.70.7
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/lib/Builders/MemoryNodeBuilder.d.cts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +21 -21
|
@@ -7,132 +7,36 @@ export declare class SentinelBuilder {
|
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
8
|
get sentinel(): MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
11
|
-
readonly archivist?: string | undefined;
|
|
12
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
13
|
-
readonly name?: string | undefined;
|
|
14
|
-
readonly paging?: Record<string, {
|
|
15
|
-
size?: number | undefined;
|
|
16
|
-
}> | undefined;
|
|
17
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
18
|
-
schema: "network.xyo.sentinel.config";
|
|
19
|
-
readonly security?: {
|
|
20
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
21
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
22
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
23
|
-
} | undefined;
|
|
24
|
-
readonly sign?: boolean | undefined;
|
|
25
|
-
readonly storeQueries?: boolean | undefined;
|
|
26
|
-
readonly timestamp?: boolean | undefined;
|
|
27
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
28
|
-
readonly archivist?: string | undefined;
|
|
29
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
30
|
-
readonly name?: string | undefined;
|
|
31
|
-
readonly paging?: Record<string, {
|
|
32
|
-
size?: number | undefined;
|
|
33
|
-
}> | undefined;
|
|
34
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
35
|
-
schema: "network.xyo.sentinel.config";
|
|
36
|
-
readonly security?: {
|
|
37
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
38
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
40
|
-
} | undefined;
|
|
41
|
-
readonly sign?: boolean | undefined;
|
|
42
|
-
readonly storeQueries?: boolean | undefined;
|
|
43
|
-
readonly timestamp?: boolean | undefined;
|
|
44
|
-
} & {
|
|
10
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
45
11
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
46
12
|
schema: "network.xyo.sentinel.config";
|
|
47
13
|
synchronous?: boolean | undefined;
|
|
48
14
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
49
15
|
throwErrors?: boolean | undefined;
|
|
16
|
+
}, "schema"> & {
|
|
17
|
+
schema: "network.xyo.sentinel.config";
|
|
50
18
|
}, "schema"> & {
|
|
51
19
|
schema: string;
|
|
52
20
|
};
|
|
53
21
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
54
22
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
55
23
|
account?: AccountInstance | "random" | undefined;
|
|
56
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
57
|
-
readonly archivist?: string | undefined;
|
|
58
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
59
|
-
readonly name?: string | undefined;
|
|
60
|
-
readonly paging?: Record<string, {
|
|
61
|
-
size?: number | undefined;
|
|
62
|
-
}> | undefined;
|
|
63
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
64
|
-
schema: "network.xyo.sentinel.config";
|
|
65
|
-
readonly security?: {
|
|
66
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
67
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
68
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
69
|
-
} | undefined;
|
|
70
|
-
readonly sign?: boolean | undefined;
|
|
71
|
-
readonly storeQueries?: boolean | undefined;
|
|
72
|
-
readonly timestamp?: boolean | undefined;
|
|
73
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
74
|
-
readonly archivist?: string | undefined;
|
|
75
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
76
|
-
readonly name?: string | undefined;
|
|
77
|
-
readonly paging?: Record<string, {
|
|
78
|
-
size?: number | undefined;
|
|
79
|
-
}> | undefined;
|
|
80
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
81
|
-
schema: "network.xyo.sentinel.config";
|
|
82
|
-
readonly security?: {
|
|
83
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
84
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
85
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
86
|
-
} | undefined;
|
|
87
|
-
readonly sign?: boolean | undefined;
|
|
88
|
-
readonly storeQueries?: boolean | undefined;
|
|
89
|
-
readonly timestamp?: boolean | undefined;
|
|
90
|
-
} & {
|
|
24
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
91
25
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
92
26
|
schema: "network.xyo.sentinel.config";
|
|
93
27
|
synchronous?: boolean | undefined;
|
|
94
28
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
95
29
|
throwErrors?: boolean | undefined;
|
|
30
|
+
}, "schema"> & {
|
|
31
|
+
schema: "network.xyo.sentinel.config";
|
|
96
32
|
}, "schema"> & {
|
|
97
33
|
schema: string;
|
|
98
34
|
};
|
|
99
35
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
100
36
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
101
37
|
account?: AccountInstance | "random" | undefined;
|
|
102
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
103
|
-
readonly archivist?: string | undefined;
|
|
104
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
105
|
-
readonly name?: string | undefined;
|
|
106
|
-
readonly paging?: Record<string, {
|
|
107
|
-
size?: number | undefined;
|
|
108
|
-
}> | undefined;
|
|
109
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
110
|
-
schema: "network.xyo.module.config";
|
|
111
|
-
readonly security?: {
|
|
112
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
113
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
114
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
115
|
-
} | undefined;
|
|
116
|
-
readonly sign?: boolean | undefined;
|
|
117
|
-
readonly storeQueries?: boolean | undefined;
|
|
118
|
-
readonly timestamp?: boolean | undefined;
|
|
119
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
120
|
-
readonly archivist?: string | undefined;
|
|
121
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
122
|
-
readonly name?: string | undefined;
|
|
123
|
-
readonly paging?: Record<string, {
|
|
124
|
-
size?: number | undefined;
|
|
125
|
-
}> | undefined;
|
|
126
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
38
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
127
39
|
schema: "network.xyo.module.config";
|
|
128
|
-
readonly security?: {
|
|
129
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
130
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
131
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
132
|
-
} | undefined;
|
|
133
|
-
readonly sign?: boolean | undefined;
|
|
134
|
-
readonly storeQueries?: boolean | undefined;
|
|
135
|
-
readonly timestamp?: boolean | undefined;
|
|
136
40
|
}, "schema"> & {
|
|
137
41
|
schema: string;
|
|
138
42
|
};
|
|
@@ -141,132 +45,36 @@ export declare class SentinelBuilder {
|
|
|
141
45
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
142
46
|
buildSentinel(): Promise<MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
143
47
|
account?: AccountInstance | "random" | undefined;
|
|
144
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
145
|
-
readonly archivist?: string | undefined;
|
|
146
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
147
|
-
readonly name?: string | undefined;
|
|
148
|
-
readonly paging?: Record<string, {
|
|
149
|
-
size?: number | undefined;
|
|
150
|
-
}> | undefined;
|
|
151
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
152
|
-
schema: "network.xyo.sentinel.config";
|
|
153
|
-
readonly security?: {
|
|
154
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
155
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
156
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
157
|
-
} | undefined;
|
|
158
|
-
readonly sign?: boolean | undefined;
|
|
159
|
-
readonly storeQueries?: boolean | undefined;
|
|
160
|
-
readonly timestamp?: boolean | undefined;
|
|
161
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
162
|
-
readonly archivist?: string | undefined;
|
|
163
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
164
|
-
readonly name?: string | undefined;
|
|
165
|
-
readonly paging?: Record<string, {
|
|
166
|
-
size?: number | undefined;
|
|
167
|
-
}> | undefined;
|
|
168
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
169
|
-
schema: "network.xyo.sentinel.config";
|
|
170
|
-
readonly security?: {
|
|
171
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
172
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
174
|
-
} | undefined;
|
|
175
|
-
readonly sign?: boolean | undefined;
|
|
176
|
-
readonly storeQueries?: boolean | undefined;
|
|
177
|
-
readonly timestamp?: boolean | undefined;
|
|
178
|
-
} & {
|
|
48
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
179
49
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
180
50
|
schema: "network.xyo.sentinel.config";
|
|
181
51
|
synchronous?: boolean | undefined;
|
|
182
52
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
183
53
|
throwErrors?: boolean | undefined;
|
|
54
|
+
}, "schema"> & {
|
|
55
|
+
schema: "network.xyo.sentinel.config";
|
|
184
56
|
}, "schema"> & {
|
|
185
57
|
schema: string;
|
|
186
58
|
};
|
|
187
59
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
188
60
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
189
61
|
account?: AccountInstance | "random" | undefined;
|
|
190
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
191
|
-
readonly archivist?: string | undefined;
|
|
192
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
193
|
-
readonly name?: string | undefined;
|
|
194
|
-
readonly paging?: Record<string, {
|
|
195
|
-
size?: number | undefined;
|
|
196
|
-
}> | undefined;
|
|
197
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
198
|
-
schema: "network.xyo.sentinel.config";
|
|
199
|
-
readonly security?: {
|
|
200
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
201
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
202
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
203
|
-
} | undefined;
|
|
204
|
-
readonly sign?: boolean | undefined;
|
|
205
|
-
readonly storeQueries?: boolean | undefined;
|
|
206
|
-
readonly timestamp?: boolean | undefined;
|
|
207
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
208
|
-
readonly archivist?: string | undefined;
|
|
209
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
210
|
-
readonly name?: string | undefined;
|
|
211
|
-
readonly paging?: Record<string, {
|
|
212
|
-
size?: number | undefined;
|
|
213
|
-
}> | undefined;
|
|
214
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
215
|
-
schema: "network.xyo.sentinel.config";
|
|
216
|
-
readonly security?: {
|
|
217
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
218
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
219
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
220
|
-
} | undefined;
|
|
221
|
-
readonly sign?: boolean | undefined;
|
|
222
|
-
readonly storeQueries?: boolean | undefined;
|
|
223
|
-
readonly timestamp?: boolean | undefined;
|
|
224
|
-
} & {
|
|
62
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
225
63
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
226
64
|
schema: "network.xyo.sentinel.config";
|
|
227
65
|
synchronous?: boolean | undefined;
|
|
228
66
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
229
67
|
throwErrors?: boolean | undefined;
|
|
68
|
+
}, "schema"> & {
|
|
69
|
+
schema: "network.xyo.sentinel.config";
|
|
230
70
|
}, "schema"> & {
|
|
231
71
|
schema: string;
|
|
232
72
|
};
|
|
233
73
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
234
74
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
235
75
|
account?: AccountInstance | "random" | undefined;
|
|
236
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
237
|
-
readonly archivist?: string | undefined;
|
|
238
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
239
|
-
readonly name?: string | undefined;
|
|
240
|
-
readonly paging?: Record<string, {
|
|
241
|
-
size?: number | undefined;
|
|
242
|
-
}> | undefined;
|
|
243
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
244
|
-
schema: "network.xyo.module.config";
|
|
245
|
-
readonly security?: {
|
|
246
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
247
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
248
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
249
|
-
} | undefined;
|
|
250
|
-
readonly sign?: boolean | undefined;
|
|
251
|
-
readonly storeQueries?: boolean | undefined;
|
|
252
|
-
readonly timestamp?: boolean | undefined;
|
|
253
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
254
|
-
readonly archivist?: string | undefined;
|
|
255
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
256
|
-
readonly name?: string | undefined;
|
|
257
|
-
readonly paging?: Record<string, {
|
|
258
|
-
size?: number | undefined;
|
|
259
|
-
}> | undefined;
|
|
260
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
76
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
261
77
|
schema: "network.xyo.module.config";
|
|
262
|
-
readonly security?: {
|
|
263
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
264
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
265
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
266
|
-
} | undefined;
|
|
267
|
-
readonly sign?: boolean | undefined;
|
|
268
|
-
readonly storeQueries?: boolean | undefined;
|
|
269
|
-
readonly timestamp?: boolean | undefined;
|
|
270
78
|
}, "schema"> & {
|
|
271
79
|
schema: string;
|
|
272
80
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ
|
|
1
|
+
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
|
|
@@ -7,132 +7,36 @@ export declare class SentinelBuilder {
|
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
8
|
get sentinel(): MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
11
|
-
readonly archivist?: string | undefined;
|
|
12
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
13
|
-
readonly name?: string | undefined;
|
|
14
|
-
readonly paging?: Record<string, {
|
|
15
|
-
size?: number | undefined;
|
|
16
|
-
}> | undefined;
|
|
17
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
18
|
-
schema: "network.xyo.sentinel.config";
|
|
19
|
-
readonly security?: {
|
|
20
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
21
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
22
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
23
|
-
} | undefined;
|
|
24
|
-
readonly sign?: boolean | undefined;
|
|
25
|
-
readonly storeQueries?: boolean | undefined;
|
|
26
|
-
readonly timestamp?: boolean | undefined;
|
|
27
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
28
|
-
readonly archivist?: string | undefined;
|
|
29
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
30
|
-
readonly name?: string | undefined;
|
|
31
|
-
readonly paging?: Record<string, {
|
|
32
|
-
size?: number | undefined;
|
|
33
|
-
}> | undefined;
|
|
34
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
35
|
-
schema: "network.xyo.sentinel.config";
|
|
36
|
-
readonly security?: {
|
|
37
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
38
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
40
|
-
} | undefined;
|
|
41
|
-
readonly sign?: boolean | undefined;
|
|
42
|
-
readonly storeQueries?: boolean | undefined;
|
|
43
|
-
readonly timestamp?: boolean | undefined;
|
|
44
|
-
} & {
|
|
10
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
45
11
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
46
12
|
schema: "network.xyo.sentinel.config";
|
|
47
13
|
synchronous?: boolean | undefined;
|
|
48
14
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
49
15
|
throwErrors?: boolean | undefined;
|
|
16
|
+
}, "schema"> & {
|
|
17
|
+
schema: "network.xyo.sentinel.config";
|
|
50
18
|
}, "schema"> & {
|
|
51
19
|
schema: string;
|
|
52
20
|
};
|
|
53
21
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
54
22
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
55
23
|
account?: AccountInstance | "random" | undefined;
|
|
56
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
57
|
-
readonly archivist?: string | undefined;
|
|
58
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
59
|
-
readonly name?: string | undefined;
|
|
60
|
-
readonly paging?: Record<string, {
|
|
61
|
-
size?: number | undefined;
|
|
62
|
-
}> | undefined;
|
|
63
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
64
|
-
schema: "network.xyo.sentinel.config";
|
|
65
|
-
readonly security?: {
|
|
66
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
67
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
68
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
69
|
-
} | undefined;
|
|
70
|
-
readonly sign?: boolean | undefined;
|
|
71
|
-
readonly storeQueries?: boolean | undefined;
|
|
72
|
-
readonly timestamp?: boolean | undefined;
|
|
73
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
74
|
-
readonly archivist?: string | undefined;
|
|
75
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
76
|
-
readonly name?: string | undefined;
|
|
77
|
-
readonly paging?: Record<string, {
|
|
78
|
-
size?: number | undefined;
|
|
79
|
-
}> | undefined;
|
|
80
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
81
|
-
schema: "network.xyo.sentinel.config";
|
|
82
|
-
readonly security?: {
|
|
83
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
84
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
85
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
86
|
-
} | undefined;
|
|
87
|
-
readonly sign?: boolean | undefined;
|
|
88
|
-
readonly storeQueries?: boolean | undefined;
|
|
89
|
-
readonly timestamp?: boolean | undefined;
|
|
90
|
-
} & {
|
|
24
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
91
25
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
92
26
|
schema: "network.xyo.sentinel.config";
|
|
93
27
|
synchronous?: boolean | undefined;
|
|
94
28
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
95
29
|
throwErrors?: boolean | undefined;
|
|
30
|
+
}, "schema"> & {
|
|
31
|
+
schema: "network.xyo.sentinel.config";
|
|
96
32
|
}, "schema"> & {
|
|
97
33
|
schema: string;
|
|
98
34
|
};
|
|
99
35
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
100
36
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
101
37
|
account?: AccountInstance | "random" | undefined;
|
|
102
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
103
|
-
readonly archivist?: string | undefined;
|
|
104
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
105
|
-
readonly name?: string | undefined;
|
|
106
|
-
readonly paging?: Record<string, {
|
|
107
|
-
size?: number | undefined;
|
|
108
|
-
}> | undefined;
|
|
109
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
110
|
-
schema: "network.xyo.module.config";
|
|
111
|
-
readonly security?: {
|
|
112
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
113
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
114
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
115
|
-
} | undefined;
|
|
116
|
-
readonly sign?: boolean | undefined;
|
|
117
|
-
readonly storeQueries?: boolean | undefined;
|
|
118
|
-
readonly timestamp?: boolean | undefined;
|
|
119
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
120
|
-
readonly archivist?: string | undefined;
|
|
121
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
122
|
-
readonly name?: string | undefined;
|
|
123
|
-
readonly paging?: Record<string, {
|
|
124
|
-
size?: number | undefined;
|
|
125
|
-
}> | undefined;
|
|
126
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
38
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
127
39
|
schema: "network.xyo.module.config";
|
|
128
|
-
readonly security?: {
|
|
129
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
130
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
131
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
132
|
-
} | undefined;
|
|
133
|
-
readonly sign?: boolean | undefined;
|
|
134
|
-
readonly storeQueries?: boolean | undefined;
|
|
135
|
-
readonly timestamp?: boolean | undefined;
|
|
136
40
|
}, "schema"> & {
|
|
137
41
|
schema: string;
|
|
138
42
|
};
|
|
@@ -141,132 +45,36 @@ export declare class SentinelBuilder {
|
|
|
141
45
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
142
46
|
buildSentinel(): Promise<MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
143
47
|
account?: AccountInstance | "random" | undefined;
|
|
144
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
145
|
-
readonly archivist?: string | undefined;
|
|
146
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
147
|
-
readonly name?: string | undefined;
|
|
148
|
-
readonly paging?: Record<string, {
|
|
149
|
-
size?: number | undefined;
|
|
150
|
-
}> | undefined;
|
|
151
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
152
|
-
schema: "network.xyo.sentinel.config";
|
|
153
|
-
readonly security?: {
|
|
154
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
155
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
156
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
157
|
-
} | undefined;
|
|
158
|
-
readonly sign?: boolean | undefined;
|
|
159
|
-
readonly storeQueries?: boolean | undefined;
|
|
160
|
-
readonly timestamp?: boolean | undefined;
|
|
161
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
162
|
-
readonly archivist?: string | undefined;
|
|
163
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
164
|
-
readonly name?: string | undefined;
|
|
165
|
-
readonly paging?: Record<string, {
|
|
166
|
-
size?: number | undefined;
|
|
167
|
-
}> | undefined;
|
|
168
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
169
|
-
schema: "network.xyo.sentinel.config";
|
|
170
|
-
readonly security?: {
|
|
171
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
172
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
174
|
-
} | undefined;
|
|
175
|
-
readonly sign?: boolean | undefined;
|
|
176
|
-
readonly storeQueries?: boolean | undefined;
|
|
177
|
-
readonly timestamp?: boolean | undefined;
|
|
178
|
-
} & {
|
|
48
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
179
49
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
180
50
|
schema: "network.xyo.sentinel.config";
|
|
181
51
|
synchronous?: boolean | undefined;
|
|
182
52
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
183
53
|
throwErrors?: boolean | undefined;
|
|
54
|
+
}, "schema"> & {
|
|
55
|
+
schema: "network.xyo.sentinel.config";
|
|
184
56
|
}, "schema"> & {
|
|
185
57
|
schema: string;
|
|
186
58
|
};
|
|
187
59
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
188
60
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
189
61
|
account?: AccountInstance | "random" | undefined;
|
|
190
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
191
|
-
readonly archivist?: string | undefined;
|
|
192
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
193
|
-
readonly name?: string | undefined;
|
|
194
|
-
readonly paging?: Record<string, {
|
|
195
|
-
size?: number | undefined;
|
|
196
|
-
}> | undefined;
|
|
197
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
198
|
-
schema: "network.xyo.sentinel.config";
|
|
199
|
-
readonly security?: {
|
|
200
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
201
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
202
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
203
|
-
} | undefined;
|
|
204
|
-
readonly sign?: boolean | undefined;
|
|
205
|
-
readonly storeQueries?: boolean | undefined;
|
|
206
|
-
readonly timestamp?: boolean | undefined;
|
|
207
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
208
|
-
readonly archivist?: string | undefined;
|
|
209
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
210
|
-
readonly name?: string | undefined;
|
|
211
|
-
readonly paging?: Record<string, {
|
|
212
|
-
size?: number | undefined;
|
|
213
|
-
}> | undefined;
|
|
214
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
215
|
-
schema: "network.xyo.sentinel.config";
|
|
216
|
-
readonly security?: {
|
|
217
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
218
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
219
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
220
|
-
} | undefined;
|
|
221
|
-
readonly sign?: boolean | undefined;
|
|
222
|
-
readonly storeQueries?: boolean | undefined;
|
|
223
|
-
readonly timestamp?: boolean | undefined;
|
|
224
|
-
} & {
|
|
62
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
225
63
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
226
64
|
schema: "network.xyo.sentinel.config";
|
|
227
65
|
synchronous?: boolean | undefined;
|
|
228
66
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
229
67
|
throwErrors?: boolean | undefined;
|
|
68
|
+
}, "schema"> & {
|
|
69
|
+
schema: "network.xyo.sentinel.config";
|
|
230
70
|
}, "schema"> & {
|
|
231
71
|
schema: string;
|
|
232
72
|
};
|
|
233
73
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
234
74
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
235
75
|
account?: AccountInstance | "random" | undefined;
|
|
236
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
237
|
-
readonly archivist?: string | undefined;
|
|
238
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
239
|
-
readonly name?: string | undefined;
|
|
240
|
-
readonly paging?: Record<string, {
|
|
241
|
-
size?: number | undefined;
|
|
242
|
-
}> | undefined;
|
|
243
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
244
|
-
schema: "network.xyo.module.config";
|
|
245
|
-
readonly security?: {
|
|
246
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
247
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
248
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
249
|
-
} | undefined;
|
|
250
|
-
readonly sign?: boolean | undefined;
|
|
251
|
-
readonly storeQueries?: boolean | undefined;
|
|
252
|
-
readonly timestamp?: boolean | undefined;
|
|
253
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
254
|
-
readonly archivist?: string | undefined;
|
|
255
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
256
|
-
readonly name?: string | undefined;
|
|
257
|
-
readonly paging?: Record<string, {
|
|
258
|
-
size?: number | undefined;
|
|
259
|
-
}> | undefined;
|
|
260
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
76
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
261
77
|
schema: "network.xyo.module.config";
|
|
262
|
-
readonly security?: {
|
|
263
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
264
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
265
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
266
|
-
} | undefined;
|
|
267
|
-
readonly sign?: boolean | undefined;
|
|
268
|
-
readonly storeQueries?: boolean | undefined;
|
|
269
|
-
readonly timestamp?: boolean | undefined;
|
|
270
78
|
}, "schema"> & {
|
|
271
79
|
schema: string;
|
|
272
80
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ
|
|
1
|
+
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
|