@xyo-network/react-standard-node 4.2.14 → 4.3.0-rc.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/lib/Builders/MemoryNodeBuilder.d.ts +258 -34
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +444 -54
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +171 -49
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +20 -19
|
@@ -15,13 +15,42 @@ export declare class MemoryNodeBuilder {
|
|
|
15
15
|
addToResolvers?: boolean;
|
|
16
16
|
additionalSigners?: AccountInstance[];
|
|
17
17
|
allowNameResolution?: boolean;
|
|
18
|
-
config: import("@
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
18
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
19
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
20
|
+
readonly archiving?: {
|
|
21
|
+
readonly archivists?: string[] | undefined;
|
|
22
|
+
readonly queries?: string[] | undefined;
|
|
23
|
+
} | undefined;
|
|
24
|
+
readonly allowedQueries?: string[] | undefined;
|
|
25
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
26
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
27
|
+
readonly labels?: {
|
|
28
|
+
[x: string]: string | undefined;
|
|
29
|
+
} | undefined;
|
|
30
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
31
|
+
readonly paging?: {
|
|
32
|
+
[x: string]: {
|
|
33
|
+
size?: number | undefined;
|
|
34
|
+
};
|
|
35
|
+
} | undefined;
|
|
36
|
+
readonly retry?: {
|
|
37
|
+
backoff?: number | undefined;
|
|
38
|
+
interval?: number | undefined;
|
|
39
|
+
retries?: number | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
readonly security?: {
|
|
42
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
+
readonly allowed?: {
|
|
44
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
45
|
+
} | undefined;
|
|
46
|
+
readonly disallowed?: {
|
|
47
|
+
[x: string]: Lowercase<string>[];
|
|
48
|
+
} | undefined;
|
|
49
|
+
} | undefined;
|
|
50
|
+
readonly sign?: boolean | undefined;
|
|
51
|
+
readonly storeQueries?: boolean | undefined;
|
|
52
|
+
readonly timestamp?: boolean | undefined;
|
|
53
|
+
}>;
|
|
25
54
|
ephemeralQueryAccountEnabled?: boolean;
|
|
26
55
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
27
56
|
}, import("@xyo-network/node-model").NodeModuleEventData>;
|
|
@@ -36,17 +65,99 @@ export declare class MemoryNodeBuilder {
|
|
|
36
65
|
addToResolvers?: boolean;
|
|
37
66
|
additionalSigners?: AccountInstance[];
|
|
38
67
|
allowNameResolution?: boolean;
|
|
39
|
-
config: import("@
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
68
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
69
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
70
|
+
readonly archiving?: {
|
|
71
|
+
readonly archivists?: string[] | undefined;
|
|
72
|
+
readonly queries?: string[] | undefined;
|
|
73
|
+
} | undefined;
|
|
74
|
+
readonly allowedQueries?: string[] | undefined;
|
|
75
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
76
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
77
|
+
readonly labels?: {
|
|
78
|
+
[x: string]: string | undefined;
|
|
79
|
+
} | undefined;
|
|
80
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
81
|
+
readonly paging?: {
|
|
82
|
+
[x: string]: {
|
|
83
|
+
size?: number | undefined;
|
|
84
|
+
};
|
|
85
|
+
} | undefined;
|
|
86
|
+
readonly retry?: {
|
|
87
|
+
backoff?: number | undefined;
|
|
88
|
+
interval?: number | undefined;
|
|
89
|
+
retries?: number | undefined;
|
|
90
|
+
} | undefined;
|
|
91
|
+
readonly security?: {
|
|
92
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
+
readonly allowed?: {
|
|
94
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
95
|
+
} | undefined;
|
|
96
|
+
readonly disallowed?: {
|
|
97
|
+
[x: string]: Lowercase<string>[];
|
|
98
|
+
} | undefined;
|
|
99
|
+
} | undefined;
|
|
100
|
+
readonly sign?: boolean | undefined;
|
|
101
|
+
readonly storeQueries?: boolean | undefined;
|
|
102
|
+
readonly timestamp?: boolean | undefined;
|
|
103
|
+
automations?: ({
|
|
104
|
+
schema: "network.xyo.automation.interval";
|
|
105
|
+
type: "interval";
|
|
106
|
+
end?: number | undefined;
|
|
107
|
+
frequency?: number | undefined;
|
|
108
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
109
|
+
remaining?: number | undefined;
|
|
110
|
+
start: number;
|
|
111
|
+
} | {
|
|
112
|
+
schema: "network.xyo.automation.event";
|
|
113
|
+
type: "interval";
|
|
114
|
+
end?: number | undefined;
|
|
115
|
+
frequency?: number | undefined;
|
|
116
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
117
|
+
remaining?: number | undefined;
|
|
118
|
+
start: number;
|
|
119
|
+
} | {
|
|
120
|
+
schema: "network.xyo.automation";
|
|
121
|
+
type: "interval";
|
|
122
|
+
end?: number | undefined;
|
|
123
|
+
frequency?: number | undefined;
|
|
124
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
125
|
+
remaining?: number | undefined;
|
|
126
|
+
start: number;
|
|
127
|
+
} | {
|
|
128
|
+
schema: "network.xyo.automation.interval";
|
|
129
|
+
type: "event";
|
|
130
|
+
} | {
|
|
131
|
+
schema: "network.xyo.automation.event";
|
|
132
|
+
type: "event";
|
|
133
|
+
} | {
|
|
134
|
+
schema: "network.xyo.automation";
|
|
135
|
+
type: "event";
|
|
136
|
+
})[] | undefined;
|
|
137
|
+
synchronous?: boolean | undefined;
|
|
138
|
+
tasks: ({
|
|
139
|
+
endPoint?: "observe" | undefined;
|
|
140
|
+
input?: string | boolean | string[] | undefined;
|
|
141
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
142
|
+
required?: boolean | undefined;
|
|
143
|
+
} | {
|
|
144
|
+
endPoint?: "divine" | undefined;
|
|
145
|
+
input?: string | boolean | string[] | undefined;
|
|
146
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
147
|
+
required?: boolean | undefined;
|
|
148
|
+
} | {
|
|
149
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
150
|
+
input?: string | boolean | string[] | undefined;
|
|
151
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
152
|
+
required?: boolean | undefined;
|
|
153
|
+
} | {
|
|
154
|
+
endPoint?: string | undefined;
|
|
155
|
+
input?: string | boolean | string[] | undefined;
|
|
156
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
157
|
+
required?: boolean | undefined;
|
|
158
|
+
})[];
|
|
159
|
+
throwErrors?: boolean | undefined;
|
|
160
|
+
}>;
|
|
50
161
|
ephemeralQueryAccountEnabled?: boolean;
|
|
51
162
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
52
163
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/sentinel-model").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -54,17 +165,99 @@ export declare class MemoryNodeBuilder {
|
|
|
54
165
|
addToResolvers?: boolean;
|
|
55
166
|
additionalSigners?: AccountInstance[];
|
|
56
167
|
allowNameResolution?: boolean;
|
|
57
|
-
config: import("@
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
168
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
169
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
170
|
+
readonly archiving?: {
|
|
171
|
+
readonly archivists?: string[] | undefined;
|
|
172
|
+
readonly queries?: string[] | undefined;
|
|
173
|
+
} | undefined;
|
|
174
|
+
readonly allowedQueries?: string[] | undefined;
|
|
175
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
176
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
177
|
+
readonly labels?: {
|
|
178
|
+
[x: string]: string | undefined;
|
|
179
|
+
} | undefined;
|
|
180
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
181
|
+
readonly paging?: {
|
|
182
|
+
[x: string]: {
|
|
183
|
+
size?: number | undefined;
|
|
184
|
+
};
|
|
185
|
+
} | undefined;
|
|
186
|
+
readonly retry?: {
|
|
187
|
+
backoff?: number | undefined;
|
|
188
|
+
interval?: number | undefined;
|
|
189
|
+
retries?: number | undefined;
|
|
190
|
+
} | undefined;
|
|
191
|
+
readonly security?: {
|
|
192
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
193
|
+
readonly allowed?: {
|
|
194
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
195
|
+
} | undefined;
|
|
196
|
+
readonly disallowed?: {
|
|
197
|
+
[x: string]: Lowercase<string>[];
|
|
198
|
+
} | undefined;
|
|
199
|
+
} | undefined;
|
|
200
|
+
readonly sign?: boolean | undefined;
|
|
201
|
+
readonly storeQueries?: boolean | undefined;
|
|
202
|
+
readonly timestamp?: boolean | undefined;
|
|
203
|
+
automations?: ({
|
|
204
|
+
schema: "network.xyo.automation.interval";
|
|
205
|
+
type: "interval";
|
|
206
|
+
end?: number | undefined;
|
|
207
|
+
frequency?: number | undefined;
|
|
208
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
209
|
+
remaining?: number | undefined;
|
|
210
|
+
start: number;
|
|
211
|
+
} | {
|
|
212
|
+
schema: "network.xyo.automation.event";
|
|
213
|
+
type: "interval";
|
|
214
|
+
end?: number | undefined;
|
|
215
|
+
frequency?: number | undefined;
|
|
216
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
217
|
+
remaining?: number | undefined;
|
|
218
|
+
start: number;
|
|
219
|
+
} | {
|
|
220
|
+
schema: "network.xyo.automation";
|
|
221
|
+
type: "interval";
|
|
222
|
+
end?: number | undefined;
|
|
223
|
+
frequency?: number | undefined;
|
|
224
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
225
|
+
remaining?: number | undefined;
|
|
226
|
+
start: number;
|
|
227
|
+
} | {
|
|
228
|
+
schema: "network.xyo.automation.interval";
|
|
229
|
+
type: "event";
|
|
230
|
+
} | {
|
|
231
|
+
schema: "network.xyo.automation.event";
|
|
232
|
+
type: "event";
|
|
233
|
+
} | {
|
|
234
|
+
schema: "network.xyo.automation";
|
|
235
|
+
type: "event";
|
|
236
|
+
})[] | undefined;
|
|
237
|
+
synchronous?: boolean | undefined;
|
|
238
|
+
tasks: ({
|
|
239
|
+
endPoint?: "observe" | undefined;
|
|
240
|
+
input?: string | boolean | string[] | undefined;
|
|
241
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
242
|
+
required?: boolean | undefined;
|
|
243
|
+
} | {
|
|
244
|
+
endPoint?: "divine" | undefined;
|
|
245
|
+
input?: string | boolean | string[] | undefined;
|
|
246
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
247
|
+
required?: boolean | undefined;
|
|
248
|
+
} | {
|
|
249
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
250
|
+
input?: string | boolean | string[] | undefined;
|
|
251
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
252
|
+
required?: boolean | undefined;
|
|
253
|
+
} | {
|
|
254
|
+
endPoint?: string | undefined;
|
|
255
|
+
input?: string | boolean | string[] | undefined;
|
|
256
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
257
|
+
required?: boolean | undefined;
|
|
258
|
+
})[];
|
|
259
|
+
throwErrors?: boolean | undefined;
|
|
260
|
+
}>;
|
|
68
261
|
ephemeralQueryAccountEnabled?: boolean;
|
|
69
262
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
70
263
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -72,11 +265,42 @@ export declare class MemoryNodeBuilder {
|
|
|
72
265
|
addToResolvers?: boolean;
|
|
73
266
|
additionalSigners?: AccountInstance[];
|
|
74
267
|
allowNameResolution?: boolean;
|
|
75
|
-
config: import("@
|
|
76
|
-
schema: "network.
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
268
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
269
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
270
|
+
readonly archiving?: {
|
|
271
|
+
readonly archivists?: string[] | undefined;
|
|
272
|
+
readonly queries?: string[] | undefined;
|
|
273
|
+
} | undefined;
|
|
274
|
+
readonly allowedQueries?: string[] | undefined;
|
|
275
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
276
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
277
|
+
readonly labels?: {
|
|
278
|
+
[x: string]: string | undefined;
|
|
279
|
+
} | undefined;
|
|
280
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
281
|
+
readonly paging?: {
|
|
282
|
+
[x: string]: {
|
|
283
|
+
size?: number | undefined;
|
|
284
|
+
};
|
|
285
|
+
} | undefined;
|
|
286
|
+
readonly retry?: {
|
|
287
|
+
backoff?: number | undefined;
|
|
288
|
+
interval?: number | undefined;
|
|
289
|
+
retries?: number | undefined;
|
|
290
|
+
} | undefined;
|
|
291
|
+
readonly security?: {
|
|
292
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
293
|
+
readonly allowed?: {
|
|
294
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
295
|
+
} | undefined;
|
|
296
|
+
readonly disallowed?: {
|
|
297
|
+
[x: string]: Lowercase<string>[];
|
|
298
|
+
} | undefined;
|
|
299
|
+
} | undefined;
|
|
300
|
+
readonly sign?: boolean | undefined;
|
|
301
|
+
readonly storeQueries?: boolean | undefined;
|
|
302
|
+
readonly timestamp?: boolean | undefined;
|
|
303
|
+
}>;
|
|
80
304
|
ephemeralQueryAccountEnabled?: boolean;
|
|
81
305
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
82
306
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAIjE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAA;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAC9E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,KAAK,EAAE,yBAAyB,EAAiB,MAAM,4BAA4B,CAAA;AAK1F,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI
|
|
1
|
+
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAIjE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAA;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAC9E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AACjE,OAAO,KAAK,EAAE,yBAAyB,EAAiB,MAAM,4BAA4B,CAAA;AAK1F,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAWnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAcvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,yBAAyB,CAAC,CAAC,EAAO;IAkBtH,MAAM,CAAC,GAAG,EAAE,wBAAwB,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgBtE,cAAc;CAM7B"}
|
|
@@ -11,17 +11,99 @@ export declare class SentinelBuilder {
|
|
|
11
11
|
addToResolvers?: boolean;
|
|
12
12
|
additionalSigners?: AccountInstance[];
|
|
13
13
|
allowNameResolution?: boolean;
|
|
14
|
-
config: import("@
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
14
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
15
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
16
|
+
readonly archiving?: {
|
|
17
|
+
readonly archivists?: string[] | undefined;
|
|
18
|
+
readonly queries?: string[] | undefined;
|
|
19
|
+
} | undefined;
|
|
20
|
+
readonly allowedQueries?: string[] | undefined;
|
|
21
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
22
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
23
|
+
readonly labels?: {
|
|
24
|
+
[x: string]: string | undefined;
|
|
25
|
+
} | undefined;
|
|
26
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
27
|
+
readonly paging?: {
|
|
28
|
+
[x: string]: {
|
|
29
|
+
size?: number | undefined;
|
|
30
|
+
};
|
|
31
|
+
} | undefined;
|
|
32
|
+
readonly retry?: {
|
|
33
|
+
backoff?: number | undefined;
|
|
34
|
+
interval?: number | undefined;
|
|
35
|
+
retries?: number | undefined;
|
|
36
|
+
} | undefined;
|
|
37
|
+
readonly security?: {
|
|
38
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
39
|
+
readonly allowed?: {
|
|
40
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
41
|
+
} | undefined;
|
|
42
|
+
readonly disallowed?: {
|
|
43
|
+
[x: string]: Lowercase<string>[];
|
|
44
|
+
} | undefined;
|
|
45
|
+
} | undefined;
|
|
46
|
+
readonly sign?: boolean | undefined;
|
|
47
|
+
readonly storeQueries?: boolean | undefined;
|
|
48
|
+
readonly timestamp?: boolean | undefined;
|
|
49
|
+
automations?: ({
|
|
50
|
+
schema: "network.xyo.automation.interval";
|
|
51
|
+
type: "interval";
|
|
52
|
+
end?: number | undefined;
|
|
53
|
+
frequency?: number | undefined;
|
|
54
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
55
|
+
remaining?: number | undefined;
|
|
56
|
+
start: number;
|
|
57
|
+
} | {
|
|
58
|
+
schema: "network.xyo.automation.event";
|
|
59
|
+
type: "interval";
|
|
60
|
+
end?: number | undefined;
|
|
61
|
+
frequency?: number | undefined;
|
|
62
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
63
|
+
remaining?: number | undefined;
|
|
64
|
+
start: number;
|
|
65
|
+
} | {
|
|
66
|
+
schema: "network.xyo.automation";
|
|
67
|
+
type: "interval";
|
|
68
|
+
end?: number | undefined;
|
|
69
|
+
frequency?: number | undefined;
|
|
70
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
71
|
+
remaining?: number | undefined;
|
|
72
|
+
start: number;
|
|
73
|
+
} | {
|
|
74
|
+
schema: "network.xyo.automation.interval";
|
|
75
|
+
type: "event";
|
|
76
|
+
} | {
|
|
77
|
+
schema: "network.xyo.automation.event";
|
|
78
|
+
type: "event";
|
|
79
|
+
} | {
|
|
80
|
+
schema: "network.xyo.automation";
|
|
81
|
+
type: "event";
|
|
82
|
+
})[] | undefined;
|
|
83
|
+
synchronous?: boolean | undefined;
|
|
84
|
+
tasks: ({
|
|
85
|
+
endPoint?: "observe" | undefined;
|
|
86
|
+
input?: string | boolean | string[] | undefined;
|
|
87
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
88
|
+
required?: boolean | undefined;
|
|
89
|
+
} | {
|
|
90
|
+
endPoint?: "divine" | undefined;
|
|
91
|
+
input?: string | boolean | string[] | undefined;
|
|
92
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
93
|
+
required?: boolean | undefined;
|
|
94
|
+
} | {
|
|
95
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
96
|
+
input?: string | boolean | string[] | undefined;
|
|
97
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
98
|
+
required?: boolean | undefined;
|
|
99
|
+
} | {
|
|
100
|
+
endPoint?: string | undefined;
|
|
101
|
+
input?: string | boolean | string[] | undefined;
|
|
102
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
103
|
+
required?: boolean | undefined;
|
|
104
|
+
})[];
|
|
105
|
+
throwErrors?: boolean | undefined;
|
|
106
|
+
}>;
|
|
25
107
|
ephemeralQueryAccountEnabled?: boolean;
|
|
26
108
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
27
109
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/sentinel-model").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -29,17 +111,99 @@ export declare class SentinelBuilder {
|
|
|
29
111
|
addToResolvers?: boolean;
|
|
30
112
|
additionalSigners?: AccountInstance[];
|
|
31
113
|
allowNameResolution?: boolean;
|
|
32
|
-
config: import("@
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
114
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
115
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
116
|
+
readonly archiving?: {
|
|
117
|
+
readonly archivists?: string[] | undefined;
|
|
118
|
+
readonly queries?: string[] | undefined;
|
|
119
|
+
} | undefined;
|
|
120
|
+
readonly allowedQueries?: string[] | undefined;
|
|
121
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
122
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
123
|
+
readonly labels?: {
|
|
124
|
+
[x: string]: string | undefined;
|
|
125
|
+
} | undefined;
|
|
126
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
127
|
+
readonly paging?: {
|
|
128
|
+
[x: string]: {
|
|
129
|
+
size?: number | undefined;
|
|
130
|
+
};
|
|
131
|
+
} | undefined;
|
|
132
|
+
readonly retry?: {
|
|
133
|
+
backoff?: number | undefined;
|
|
134
|
+
interval?: number | undefined;
|
|
135
|
+
retries?: number | undefined;
|
|
136
|
+
} | undefined;
|
|
137
|
+
readonly security?: {
|
|
138
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
+
readonly allowed?: {
|
|
140
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
141
|
+
} | undefined;
|
|
142
|
+
readonly disallowed?: {
|
|
143
|
+
[x: string]: Lowercase<string>[];
|
|
144
|
+
} | undefined;
|
|
145
|
+
} | undefined;
|
|
146
|
+
readonly sign?: boolean | undefined;
|
|
147
|
+
readonly storeQueries?: boolean | undefined;
|
|
148
|
+
readonly timestamp?: boolean | undefined;
|
|
149
|
+
automations?: ({
|
|
150
|
+
schema: "network.xyo.automation.interval";
|
|
151
|
+
type: "interval";
|
|
152
|
+
end?: number | undefined;
|
|
153
|
+
frequency?: number | undefined;
|
|
154
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
155
|
+
remaining?: number | undefined;
|
|
156
|
+
start: number;
|
|
157
|
+
} | {
|
|
158
|
+
schema: "network.xyo.automation.event";
|
|
159
|
+
type: "interval";
|
|
160
|
+
end?: number | undefined;
|
|
161
|
+
frequency?: number | undefined;
|
|
162
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
163
|
+
remaining?: number | undefined;
|
|
164
|
+
start: number;
|
|
165
|
+
} | {
|
|
166
|
+
schema: "network.xyo.automation";
|
|
167
|
+
type: "interval";
|
|
168
|
+
end?: number | undefined;
|
|
169
|
+
frequency?: number | undefined;
|
|
170
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
171
|
+
remaining?: number | undefined;
|
|
172
|
+
start: number;
|
|
173
|
+
} | {
|
|
174
|
+
schema: "network.xyo.automation.interval";
|
|
175
|
+
type: "event";
|
|
176
|
+
} | {
|
|
177
|
+
schema: "network.xyo.automation.event";
|
|
178
|
+
type: "event";
|
|
179
|
+
} | {
|
|
180
|
+
schema: "network.xyo.automation";
|
|
181
|
+
type: "event";
|
|
182
|
+
})[] | undefined;
|
|
183
|
+
synchronous?: boolean | undefined;
|
|
184
|
+
tasks: ({
|
|
185
|
+
endPoint?: "observe" | undefined;
|
|
186
|
+
input?: string | boolean | string[] | undefined;
|
|
187
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
188
|
+
required?: boolean | undefined;
|
|
189
|
+
} | {
|
|
190
|
+
endPoint?: "divine" | undefined;
|
|
191
|
+
input?: string | boolean | string[] | undefined;
|
|
192
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
193
|
+
required?: boolean | undefined;
|
|
194
|
+
} | {
|
|
195
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
196
|
+
input?: string | boolean | string[] | undefined;
|
|
197
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
198
|
+
required?: boolean | undefined;
|
|
199
|
+
} | {
|
|
200
|
+
endPoint?: string | undefined;
|
|
201
|
+
input?: string | boolean | string[] | undefined;
|
|
202
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
203
|
+
required?: boolean | undefined;
|
|
204
|
+
})[];
|
|
205
|
+
throwErrors?: boolean | undefined;
|
|
206
|
+
}>;
|
|
43
207
|
ephemeralQueryAccountEnabled?: boolean;
|
|
44
208
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
45
209
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -47,11 +211,42 @@ export declare class SentinelBuilder {
|
|
|
47
211
|
addToResolvers?: boolean;
|
|
48
212
|
additionalSigners?: AccountInstance[];
|
|
49
213
|
allowNameResolution?: boolean;
|
|
50
|
-
config: import("@
|
|
51
|
-
schema: "network.
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
214
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
215
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
216
|
+
readonly archiving?: {
|
|
217
|
+
readonly archivists?: string[] | undefined;
|
|
218
|
+
readonly queries?: string[] | undefined;
|
|
219
|
+
} | undefined;
|
|
220
|
+
readonly allowedQueries?: string[] | undefined;
|
|
221
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
222
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
223
|
+
readonly labels?: {
|
|
224
|
+
[x: string]: string | undefined;
|
|
225
|
+
} | undefined;
|
|
226
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
227
|
+
readonly paging?: {
|
|
228
|
+
[x: string]: {
|
|
229
|
+
size?: number | undefined;
|
|
230
|
+
};
|
|
231
|
+
} | undefined;
|
|
232
|
+
readonly retry?: {
|
|
233
|
+
backoff?: number | undefined;
|
|
234
|
+
interval?: number | undefined;
|
|
235
|
+
retries?: number | undefined;
|
|
236
|
+
} | undefined;
|
|
237
|
+
readonly security?: {
|
|
238
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
239
|
+
readonly allowed?: {
|
|
240
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
241
|
+
} | undefined;
|
|
242
|
+
readonly disallowed?: {
|
|
243
|
+
[x: string]: Lowercase<string>[];
|
|
244
|
+
} | undefined;
|
|
245
|
+
} | undefined;
|
|
246
|
+
readonly sign?: boolean | undefined;
|
|
247
|
+
readonly storeQueries?: boolean | undefined;
|
|
248
|
+
readonly timestamp?: boolean | undefined;
|
|
249
|
+
}>;
|
|
55
250
|
ephemeralQueryAccountEnabled?: boolean;
|
|
56
251
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
57
252
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
|
|
@@ -61,17 +256,99 @@ export declare class SentinelBuilder {
|
|
|
61
256
|
addToResolvers?: boolean;
|
|
62
257
|
additionalSigners?: AccountInstance[];
|
|
63
258
|
allowNameResolution?: boolean;
|
|
64
|
-
config: import("@
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
259
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
260
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
261
|
+
readonly archiving?: {
|
|
262
|
+
readonly archivists?: string[] | undefined;
|
|
263
|
+
readonly queries?: string[] | undefined;
|
|
264
|
+
} | undefined;
|
|
265
|
+
readonly allowedQueries?: string[] | undefined;
|
|
266
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
267
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
268
|
+
readonly labels?: {
|
|
269
|
+
[x: string]: string | undefined;
|
|
270
|
+
} | undefined;
|
|
271
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
272
|
+
readonly paging?: {
|
|
273
|
+
[x: string]: {
|
|
274
|
+
size?: number | undefined;
|
|
275
|
+
};
|
|
276
|
+
} | undefined;
|
|
277
|
+
readonly retry?: {
|
|
278
|
+
backoff?: number | undefined;
|
|
279
|
+
interval?: number | undefined;
|
|
280
|
+
retries?: number | undefined;
|
|
281
|
+
} | undefined;
|
|
282
|
+
readonly security?: {
|
|
283
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
284
|
+
readonly allowed?: {
|
|
285
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
286
|
+
} | undefined;
|
|
287
|
+
readonly disallowed?: {
|
|
288
|
+
[x: string]: Lowercase<string>[];
|
|
289
|
+
} | undefined;
|
|
290
|
+
} | undefined;
|
|
291
|
+
readonly sign?: boolean | undefined;
|
|
292
|
+
readonly storeQueries?: boolean | undefined;
|
|
293
|
+
readonly timestamp?: boolean | undefined;
|
|
294
|
+
automations?: ({
|
|
295
|
+
schema: "network.xyo.automation.interval";
|
|
296
|
+
type: "interval";
|
|
297
|
+
end?: number | undefined;
|
|
298
|
+
frequency?: number | undefined;
|
|
299
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
300
|
+
remaining?: number | undefined;
|
|
301
|
+
start: number;
|
|
302
|
+
} | {
|
|
303
|
+
schema: "network.xyo.automation.event";
|
|
304
|
+
type: "interval";
|
|
305
|
+
end?: number | undefined;
|
|
306
|
+
frequency?: number | undefined;
|
|
307
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
308
|
+
remaining?: number | undefined;
|
|
309
|
+
start: number;
|
|
310
|
+
} | {
|
|
311
|
+
schema: "network.xyo.automation";
|
|
312
|
+
type: "interval";
|
|
313
|
+
end?: number | undefined;
|
|
314
|
+
frequency?: number | undefined;
|
|
315
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
316
|
+
remaining?: number | undefined;
|
|
317
|
+
start: number;
|
|
318
|
+
} | {
|
|
319
|
+
schema: "network.xyo.automation.interval";
|
|
320
|
+
type: "event";
|
|
321
|
+
} | {
|
|
322
|
+
schema: "network.xyo.automation.event";
|
|
323
|
+
type: "event";
|
|
324
|
+
} | {
|
|
325
|
+
schema: "network.xyo.automation";
|
|
326
|
+
type: "event";
|
|
327
|
+
})[] | undefined;
|
|
328
|
+
synchronous?: boolean | undefined;
|
|
329
|
+
tasks: ({
|
|
330
|
+
endPoint?: "observe" | undefined;
|
|
331
|
+
input?: string | boolean | string[] | undefined;
|
|
332
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
333
|
+
required?: boolean | undefined;
|
|
334
|
+
} | {
|
|
335
|
+
endPoint?: "divine" | undefined;
|
|
336
|
+
input?: string | boolean | string[] | undefined;
|
|
337
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
338
|
+
required?: boolean | undefined;
|
|
339
|
+
} | {
|
|
340
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
341
|
+
input?: string | boolean | string[] | undefined;
|
|
342
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
343
|
+
required?: boolean | undefined;
|
|
344
|
+
} | {
|
|
345
|
+
endPoint?: string | undefined;
|
|
346
|
+
input?: string | boolean | string[] | undefined;
|
|
347
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
348
|
+
required?: boolean | undefined;
|
|
349
|
+
})[];
|
|
350
|
+
throwErrors?: boolean | undefined;
|
|
351
|
+
}>;
|
|
75
352
|
ephemeralQueryAccountEnabled?: boolean;
|
|
76
353
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
77
354
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/sentinel-model").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -79,17 +356,99 @@ export declare class SentinelBuilder {
|
|
|
79
356
|
addToResolvers?: boolean;
|
|
80
357
|
additionalSigners?: AccountInstance[];
|
|
81
358
|
allowNameResolution?: boolean;
|
|
82
|
-
config: import("@
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
359
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
360
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
361
|
+
readonly archiving?: {
|
|
362
|
+
readonly archivists?: string[] | undefined;
|
|
363
|
+
readonly queries?: string[] | undefined;
|
|
364
|
+
} | undefined;
|
|
365
|
+
readonly allowedQueries?: string[] | undefined;
|
|
366
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
367
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
368
|
+
readonly labels?: {
|
|
369
|
+
[x: string]: string | undefined;
|
|
370
|
+
} | undefined;
|
|
371
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
372
|
+
readonly paging?: {
|
|
373
|
+
[x: string]: {
|
|
374
|
+
size?: number | undefined;
|
|
375
|
+
};
|
|
376
|
+
} | undefined;
|
|
377
|
+
readonly retry?: {
|
|
378
|
+
backoff?: number | undefined;
|
|
379
|
+
interval?: number | undefined;
|
|
380
|
+
retries?: number | undefined;
|
|
381
|
+
} | undefined;
|
|
382
|
+
readonly security?: {
|
|
383
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
384
|
+
readonly allowed?: {
|
|
385
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
386
|
+
} | undefined;
|
|
387
|
+
readonly disallowed?: {
|
|
388
|
+
[x: string]: Lowercase<string>[];
|
|
389
|
+
} | undefined;
|
|
390
|
+
} | undefined;
|
|
391
|
+
readonly sign?: boolean | undefined;
|
|
392
|
+
readonly storeQueries?: boolean | undefined;
|
|
393
|
+
readonly timestamp?: boolean | undefined;
|
|
394
|
+
automations?: ({
|
|
395
|
+
schema: "network.xyo.automation.interval";
|
|
396
|
+
type: "interval";
|
|
397
|
+
end?: number | undefined;
|
|
398
|
+
frequency?: number | undefined;
|
|
399
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
400
|
+
remaining?: number | undefined;
|
|
401
|
+
start: number;
|
|
402
|
+
} | {
|
|
403
|
+
schema: "network.xyo.automation.event";
|
|
404
|
+
type: "interval";
|
|
405
|
+
end?: number | undefined;
|
|
406
|
+
frequency?: number | undefined;
|
|
407
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
408
|
+
remaining?: number | undefined;
|
|
409
|
+
start: number;
|
|
410
|
+
} | {
|
|
411
|
+
schema: "network.xyo.automation";
|
|
412
|
+
type: "interval";
|
|
413
|
+
end?: number | undefined;
|
|
414
|
+
frequency?: number | undefined;
|
|
415
|
+
frequencyUnits?: "second" | "minute" | "hour" | "day" | undefined;
|
|
416
|
+
remaining?: number | undefined;
|
|
417
|
+
start: number;
|
|
418
|
+
} | {
|
|
419
|
+
schema: "network.xyo.automation.interval";
|
|
420
|
+
type: "event";
|
|
421
|
+
} | {
|
|
422
|
+
schema: "network.xyo.automation.event";
|
|
423
|
+
type: "event";
|
|
424
|
+
} | {
|
|
425
|
+
schema: "network.xyo.automation";
|
|
426
|
+
type: "event";
|
|
427
|
+
})[] | undefined;
|
|
428
|
+
synchronous?: boolean | undefined;
|
|
429
|
+
tasks: ({
|
|
430
|
+
endPoint?: "observe" | undefined;
|
|
431
|
+
input?: string | boolean | string[] | undefined;
|
|
432
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
433
|
+
required?: boolean | undefined;
|
|
434
|
+
} | {
|
|
435
|
+
endPoint?: "divine" | undefined;
|
|
436
|
+
input?: string | boolean | string[] | undefined;
|
|
437
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
438
|
+
required?: boolean | undefined;
|
|
439
|
+
} | {
|
|
440
|
+
endPoint?: "all" | "clear" | "commit" | "delete" | "get" | "insert" | undefined;
|
|
441
|
+
input?: string | boolean | string[] | undefined;
|
|
442
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
443
|
+
required?: boolean | undefined;
|
|
444
|
+
} | {
|
|
445
|
+
endPoint?: string | undefined;
|
|
446
|
+
input?: string | boolean | string[] | undefined;
|
|
447
|
+
mod: import("@xyo-network/module-model").ModuleIdentifier;
|
|
448
|
+
required?: boolean | undefined;
|
|
449
|
+
})[];
|
|
450
|
+
throwErrors?: boolean | undefined;
|
|
451
|
+
}>;
|
|
93
452
|
ephemeralQueryAccountEnabled?: boolean;
|
|
94
453
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
95
454
|
}, import("@xyo-network/sentinel-model").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
@@ -97,11 +456,42 @@ export declare class SentinelBuilder {
|
|
|
97
456
|
addToResolvers?: boolean;
|
|
98
457
|
additionalSigners?: AccountInstance[];
|
|
99
458
|
allowNameResolution?: boolean;
|
|
100
|
-
config: import("@
|
|
101
|
-
schema: "network.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
459
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
460
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
461
|
+
readonly archiving?: {
|
|
462
|
+
readonly archivists?: string[] | undefined;
|
|
463
|
+
readonly queries?: string[] | undefined;
|
|
464
|
+
} | undefined;
|
|
465
|
+
readonly allowedQueries?: string[] | undefined;
|
|
466
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
467
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
468
|
+
readonly labels?: {
|
|
469
|
+
[x: string]: string | undefined;
|
|
470
|
+
} | undefined;
|
|
471
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
472
|
+
readonly paging?: {
|
|
473
|
+
[x: string]: {
|
|
474
|
+
size?: number | undefined;
|
|
475
|
+
};
|
|
476
|
+
} | undefined;
|
|
477
|
+
readonly retry?: {
|
|
478
|
+
backoff?: number | undefined;
|
|
479
|
+
interval?: number | undefined;
|
|
480
|
+
retries?: number | undefined;
|
|
481
|
+
} | undefined;
|
|
482
|
+
readonly security?: {
|
|
483
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
484
|
+
readonly allowed?: {
|
|
485
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
486
|
+
} | undefined;
|
|
487
|
+
readonly disallowed?: {
|
|
488
|
+
[x: string]: Lowercase<string>[];
|
|
489
|
+
} | undefined;
|
|
490
|
+
} | undefined;
|
|
491
|
+
readonly sign?: boolean | undefined;
|
|
492
|
+
readonly storeQueries?: boolean | undefined;
|
|
493
|
+
readonly timestamp?: boolean | undefined;
|
|
494
|
+
}>;
|
|
105
495
|
ephemeralQueryAccountEnabled?: boolean;
|
|
106
496
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
107
497
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAEjE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAEjE,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":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAEjE,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAEjE,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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AccountInstance } from '@xyo-network/account-model';
|
|
2
2
|
import type { StorageArchivistConfig } from '@xyo-network/archivist-storage';
|
|
3
|
-
import { StorageArchivist
|
|
3
|
+
import { StorageArchivist } from '@xyo-network/archivist-storage';
|
|
4
4
|
import type { MemoryNode } from '@xyo-network/node-memory';
|
|
5
5
|
export interface ArchivistBuilderConfig {
|
|
6
6
|
name?: string;
|
|
@@ -18,23 +18,63 @@ export declare class StorageArchivistBuilder {
|
|
|
18
18
|
addToResolvers?: boolean;
|
|
19
19
|
additionalSigners?: AccountInstance[];
|
|
20
20
|
allowNameResolution?: boolean;
|
|
21
|
-
config: import("@
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
21
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
22
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
23
|
+
readonly archiving?: {
|
|
24
|
+
readonly archivists?: string[] | undefined;
|
|
25
|
+
readonly queries?: string[] | undefined;
|
|
26
|
+
} | undefined;
|
|
27
|
+
readonly allowedQueries?: string[] | undefined;
|
|
28
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
29
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
30
|
+
readonly labels?: {
|
|
31
|
+
[x: string]: string | undefined;
|
|
32
|
+
} | undefined;
|
|
33
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
34
|
+
readonly paging?: {
|
|
35
|
+
[x: string]: {
|
|
36
|
+
size?: number | undefined;
|
|
37
|
+
};
|
|
38
|
+
} | undefined;
|
|
39
|
+
readonly retry?: {
|
|
40
|
+
backoff?: number | undefined;
|
|
41
|
+
interval?: number | undefined;
|
|
42
|
+
retries?: number | undefined;
|
|
43
|
+
} | undefined;
|
|
44
|
+
readonly security?: {
|
|
45
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
46
|
+
readonly allowed?: {
|
|
47
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
48
|
+
} | undefined;
|
|
49
|
+
readonly disallowed?: {
|
|
50
|
+
[x: string]: Lowercase<string>[];
|
|
51
|
+
} | undefined;
|
|
52
|
+
} | undefined;
|
|
53
|
+
readonly sign?: boolean | undefined;
|
|
54
|
+
readonly storeQueries?: boolean | undefined;
|
|
55
|
+
readonly timestamp?: boolean | undefined;
|
|
56
|
+
type?: "local" | "session" | "page" | undefined;
|
|
57
|
+
parents?: {
|
|
58
|
+
commit?: Lowercase<string>[] | undefined;
|
|
59
|
+
read?: Lowercase<string>[] | undefined;
|
|
60
|
+
write?: Lowercase<string>[] | undefined;
|
|
61
|
+
} | undefined;
|
|
62
|
+
requireAllParents?: boolean | undefined;
|
|
63
|
+
storage?: {
|
|
64
|
+
indexes?: {
|
|
65
|
+
key: {
|
|
66
|
+
[x: string]: import("@xyo-network/archivist-model").IndexDirection;
|
|
67
|
+
};
|
|
68
|
+
multiEntry?: boolean | undefined;
|
|
69
|
+
name?: string | undefined;
|
|
70
|
+
unique?: boolean | undefined;
|
|
71
|
+
}[] | undefined;
|
|
72
|
+
} | undefined;
|
|
73
|
+
storeParentReads?: boolean | undefined;
|
|
74
|
+
maxEntries?: number | undefined;
|
|
75
|
+
maxEntrySize?: number | undefined;
|
|
76
|
+
namespace?: string | undefined;
|
|
77
|
+
}>;
|
|
38
78
|
ephemeralQueryAccountEnabled?: boolean;
|
|
39
79
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
40
80
|
}, import("@xyo-network/archivist-model").ArchivistModuleEventData>;
|
|
@@ -44,23 +84,63 @@ export declare class StorageArchivistBuilder {
|
|
|
44
84
|
addToResolvers?: boolean;
|
|
45
85
|
additionalSigners?: AccountInstance[];
|
|
46
86
|
allowNameResolution?: boolean;
|
|
47
|
-
config: import("@
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
87
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
88
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
89
|
+
readonly archiving?: {
|
|
90
|
+
readonly archivists?: string[] | undefined;
|
|
91
|
+
readonly queries?: string[] | undefined;
|
|
92
|
+
} | undefined;
|
|
93
|
+
readonly allowedQueries?: string[] | undefined;
|
|
94
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
95
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
96
|
+
readonly labels?: {
|
|
97
|
+
[x: string]: string | undefined;
|
|
98
|
+
} | undefined;
|
|
99
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
100
|
+
readonly paging?: {
|
|
101
|
+
[x: string]: {
|
|
102
|
+
size?: number | undefined;
|
|
103
|
+
};
|
|
104
|
+
} | undefined;
|
|
105
|
+
readonly retry?: {
|
|
106
|
+
backoff?: number | undefined;
|
|
107
|
+
interval?: number | undefined;
|
|
108
|
+
retries?: number | undefined;
|
|
109
|
+
} | undefined;
|
|
110
|
+
readonly security?: {
|
|
111
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
112
|
+
readonly allowed?: {
|
|
113
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
114
|
+
} | undefined;
|
|
115
|
+
readonly disallowed?: {
|
|
116
|
+
[x: string]: Lowercase<string>[];
|
|
117
|
+
} | undefined;
|
|
118
|
+
} | undefined;
|
|
119
|
+
readonly sign?: boolean | undefined;
|
|
120
|
+
readonly storeQueries?: boolean | undefined;
|
|
121
|
+
readonly timestamp?: boolean | undefined;
|
|
122
|
+
type?: "local" | "session" | "page" | undefined;
|
|
123
|
+
parents?: {
|
|
124
|
+
commit?: Lowercase<string>[] | undefined;
|
|
125
|
+
read?: Lowercase<string>[] | undefined;
|
|
126
|
+
write?: Lowercase<string>[] | undefined;
|
|
127
|
+
} | undefined;
|
|
128
|
+
requireAllParents?: boolean | undefined;
|
|
129
|
+
storage?: {
|
|
130
|
+
indexes?: {
|
|
131
|
+
key: {
|
|
132
|
+
[x: string]: import("@xyo-network/archivist-model").IndexDirection;
|
|
133
|
+
};
|
|
134
|
+
multiEntry?: boolean | undefined;
|
|
135
|
+
name?: string | undefined;
|
|
136
|
+
unique?: boolean | undefined;
|
|
137
|
+
}[] | undefined;
|
|
138
|
+
} | undefined;
|
|
139
|
+
storeParentReads?: boolean | undefined;
|
|
140
|
+
maxEntries?: number | undefined;
|
|
141
|
+
maxEntrySize?: number | undefined;
|
|
142
|
+
namespace?: string | undefined;
|
|
143
|
+
}>;
|
|
64
144
|
ephemeralQueryAccountEnabled?: boolean;
|
|
65
145
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
66
146
|
}, import("@xyo-network/archivist-model").ArchivistModuleEventData>>;
|
|
@@ -70,21 +150,63 @@ export declare class StorageArchivistBuilder {
|
|
|
70
150
|
addToResolvers?: boolean;
|
|
71
151
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
72
152
|
allowNameResolution?: boolean;
|
|
73
|
-
config: import("@
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
153
|
+
config: import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
154
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
155
|
+
parents?: {
|
|
156
|
+
commit?: Lowercase<string>[] | undefined;
|
|
157
|
+
read?: Lowercase<string>[] | undefined;
|
|
158
|
+
write?: Lowercase<string>[] | undefined;
|
|
159
|
+
} | undefined;
|
|
160
|
+
requireAllParents?: boolean | undefined;
|
|
161
|
+
storage?: {
|
|
162
|
+
indexes?: {
|
|
163
|
+
key: {
|
|
164
|
+
[x: string]: import("@xyo-network/archivist-model").IndexDirection;
|
|
165
|
+
};
|
|
166
|
+
multiEntry?: boolean | undefined;
|
|
167
|
+
name?: string | undefined;
|
|
168
|
+
unique?: boolean | undefined;
|
|
169
|
+
}[] | undefined;
|
|
170
|
+
} | undefined;
|
|
171
|
+
storeParentReads?: boolean | undefined;
|
|
172
|
+
readonly archiving?: {
|
|
173
|
+
readonly archivists?: string[] | undefined;
|
|
174
|
+
readonly queries?: string[] | undefined;
|
|
175
|
+
} | undefined;
|
|
176
|
+
readonly allowedQueries?: string[] | undefined;
|
|
177
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
178
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
179
|
+
readonly labels?: {
|
|
180
|
+
[x: string]: string | undefined;
|
|
181
|
+
} | undefined;
|
|
182
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
183
|
+
readonly paging?: {
|
|
184
|
+
[x: string]: {
|
|
185
|
+
size?: number | undefined;
|
|
186
|
+
};
|
|
187
|
+
} | undefined;
|
|
188
|
+
readonly retry?: {
|
|
189
|
+
backoff?: number | undefined;
|
|
190
|
+
interval?: number | undefined;
|
|
191
|
+
retries?: number | undefined;
|
|
192
|
+
} | undefined;
|
|
193
|
+
readonly security?: {
|
|
194
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
195
|
+
readonly allowed?: {
|
|
196
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
197
|
+
} | undefined;
|
|
198
|
+
readonly disallowed?: {
|
|
199
|
+
[x: string]: Lowercase<string>[];
|
|
200
|
+
} | undefined;
|
|
201
|
+
} | undefined;
|
|
202
|
+
readonly sign?: boolean | undefined;
|
|
203
|
+
readonly storeQueries?: boolean | undefined;
|
|
204
|
+
readonly timestamp?: boolean | undefined;
|
|
205
|
+
}>;
|
|
84
206
|
ephemeralQueryAccountEnabled?: boolean;
|
|
85
207
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
86
|
-
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, {
|
|
87
|
-
schema:
|
|
88
|
-
}
|
|
208
|
+
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, import("@xylabs/object").DeepRestrictToStringKeys<{
|
|
209
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
210
|
+
}>> | undefined>;
|
|
89
211
|
}
|
|
90
212
|
//# sourceMappingURL=StorageArchivistBuilder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageArchivistBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/StorageArchivistBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAGjE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAA;AAC5E,OAAO,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"StorageArchivistBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/StorageArchivistBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAGjE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAA;AAC5E,OAAO,EAAE,gBAAgB,EAAgC,MAAM,gCAAgC,CAAA;AAC/F,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAG1D,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAKhC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,IAAI,CAAC;IANf,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aACC,MAAM,EAAE,sBAAsB,EAC9B,OAAO,EAAE,eAAe,EACxB,IAAI,CAAC,EAAE,UAAU,YAAA;IAG3B,IAAI,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEZ;WAEY,MAAM,CAAC,MAAM,EAAE,sBAAsB,EAAE,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAO3H,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKpB,WAAW,IAAI,sBAAsB;IAc/B,mBAAmB;yBAayvY,4BAA4B;;mCAAmG,4BAA4B;;uBAAmF,gBAAgB;2BAAwD,4BAA4B;mBAA6B,CAAC;sBAA0B,CAAC;oBAAuD,CAAC;qBAAwD,CAAC;;6BAA2F,CAAC;mBAA0C,CAAC;uBAA2B,CAAC;;4CAA2E,8BAAuB;;8BAAuE,CAAC;wBAA+C,CAAC;0BAAgD,CAAC;;;4BAA+G,CAAC;8BAAqD,CAAC;mCAAuC,CAAC;gCAAwD,CAAC;;mCAAsF,CAAC;8BAAsD,CAAC,SAAS,2BAA2B;kCAAkE,CAAC,SAAS,gBAAgB;2BAAmD,CAAC;;;yBAAyG,CAAC,SAAS,2BAA2B;2BAAqD,CAAC;;wBAA2D,CAAC;;;0BAA8F,CAAC;uBAA2B,CAAC;wBAA8C,CAAC;uBAA6C,CAAC;;6BAA8E,CAAC;uCAA2C,CAAC;gCAAuD,CAAC;;;mCAAoJ,CAAC;;;;yBAA6I,CAAC;iCAAwD,CAAC;8BAAqD,CAAC;;;8CAAiI,2BAA2B;;uBAAsK,4BAA4B;;CADjoe"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/react-standard-node",
|
|
3
|
-
"version": "4.2
|
|
3
|
+
"version": "4.3.0-rc.2",
|
|
4
4
|
"description": "Common React library for all XYO projects that use React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xyo",
|
|
@@ -49,23 +49,23 @@
|
|
|
49
49
|
"@xylabs/react-hooks": "^5.3.13",
|
|
50
50
|
"@xylabs/react-promise": "^5.3.13",
|
|
51
51
|
"@xylabs/react-shared": "^5.3.13",
|
|
52
|
-
"@xyo-network/account-model": "^3.
|
|
53
|
-
"@xyo-network/archivist-memory": "^3.
|
|
54
|
-
"@xyo-network/archivist-model": "^3.
|
|
55
|
-
"@xyo-network/archivist-storage": "^3.
|
|
56
|
-
"@xyo-network/bridge-http": "^3.
|
|
57
|
-
"@xyo-network/module-model": "^3.
|
|
58
|
-
"@xyo-network/node-memory": "^3.
|
|
59
|
-
"@xyo-network/node-model": "^3.
|
|
60
|
-
"@xyo-network/payloadset-plugin": "^3.
|
|
61
|
-
"@xyo-network/react-network": "^4.2
|
|
62
|
-
"@xyo-network/react-node": "^4.2
|
|
63
|
-
"@xyo-network/react-shared": "^4.2
|
|
64
|
-
"@xyo-network/react-wallet": "^4.2
|
|
65
|
-
"@xyo-network/sentinel-memory": "^3.
|
|
66
|
-
"@xyo-network/sentinel-model": "^3.
|
|
67
|
-
"@xyo-network/wallet-model": "^3.
|
|
68
|
-
"@xyo-network/witness-model": "^3.
|
|
52
|
+
"@xyo-network/account-model": "^3.6.0-rc.14",
|
|
53
|
+
"@xyo-network/archivist-memory": "^3.6.0-rc.14",
|
|
54
|
+
"@xyo-network/archivist-model": "^3.6.0-rc.14",
|
|
55
|
+
"@xyo-network/archivist-storage": "^3.6.0-rc.14",
|
|
56
|
+
"@xyo-network/bridge-http": "^3.6.0-rc.14",
|
|
57
|
+
"@xyo-network/module-model": "^3.6.0-rc.14",
|
|
58
|
+
"@xyo-network/node-memory": "^3.6.0-rc.14",
|
|
59
|
+
"@xyo-network/node-model": "^3.6.0-rc.14",
|
|
60
|
+
"@xyo-network/payloadset-plugin": "^3.6.0-rc.14",
|
|
61
|
+
"@xyo-network/react-network": "^4.3.0-rc.2",
|
|
62
|
+
"@xyo-network/react-node": "^4.3.0-rc.2",
|
|
63
|
+
"@xyo-network/react-shared": "^4.3.0-rc.2",
|
|
64
|
+
"@xyo-network/react-wallet": "^4.3.0-rc.2",
|
|
65
|
+
"@xyo-network/sentinel-memory": "^3.6.0-rc.14",
|
|
66
|
+
"@xyo-network/sentinel-model": "^3.6.0-rc.14",
|
|
67
|
+
"@xyo-network/wallet-model": "^3.6.0-rc.14",
|
|
68
|
+
"@xyo-network/witness-model": "^3.6.0-rc.14"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@mui/icons-material": "^6.2.1",
|
|
@@ -91,5 +91,6 @@
|
|
|
91
91
|
"publishConfig": {
|
|
92
92
|
"access": "public"
|
|
93
93
|
},
|
|
94
|
-
"docs": "dist/docs.json"
|
|
94
|
+
"docs": "dist/docs.json",
|
|
95
|
+
"stableVersion": "4.2.14"
|
|
95
96
|
}
|