@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"}
|
|
@@ -13,43 +13,11 @@ export declare class StorageArchivistBuilder {
|
|
|
13
13
|
private remoteArchivist;
|
|
14
14
|
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
15
15
|
account?: AccountInstance | "random" | undefined;
|
|
16
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
17
|
-
readonly archivist?: string | undefined;
|
|
18
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
19
|
-
readonly name?: string | undefined;
|
|
20
|
-
readonly paging?: Record<string, {
|
|
21
|
-
size?: number | undefined;
|
|
22
|
-
}> | undefined;
|
|
23
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
24
|
-
schema: "network.xyo.node.config";
|
|
25
|
-
readonly security?: {
|
|
26
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
27
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
29
|
-
} | undefined;
|
|
30
|
-
readonly sign?: boolean | undefined;
|
|
31
|
-
readonly storeQueries?: boolean | undefined;
|
|
32
|
-
readonly timestamp?: boolean | undefined;
|
|
33
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
34
|
-
readonly archivist?: string | undefined;
|
|
35
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
36
|
-
readonly name?: string | undefined;
|
|
37
|
-
readonly paging?: Record<string, {
|
|
38
|
-
size?: number | undefined;
|
|
39
|
-
}> | undefined;
|
|
40
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
41
|
-
schema: "network.xyo.node.config";
|
|
42
|
-
readonly security?: {
|
|
43
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
46
|
-
} | undefined;
|
|
47
|
-
readonly sign?: boolean | undefined;
|
|
48
|
-
readonly storeQueries?: boolean | undefined;
|
|
49
|
-
readonly timestamp?: boolean | undefined;
|
|
50
|
-
} & {
|
|
16
|
+
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 & {
|
|
51
17
|
archivist?: string | undefined;
|
|
52
18
|
schema: "network.xyo.node.config";
|
|
19
|
+
}, "schema"> & {
|
|
20
|
+
schema: "network.xyo.node.config";
|
|
53
21
|
}, "schema"> & {
|
|
54
22
|
schema: string;
|
|
55
23
|
};
|
|
@@ -57,41 +25,7 @@ export declare class StorageArchivistBuilder {
|
|
|
57
25
|
}, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
|
|
58
26
|
get archivist(): StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
59
27
|
account?: AccountInstance | "random" | undefined;
|
|
60
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
61
|
-
readonly archivist?: string | undefined;
|
|
62
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
63
|
-
readonly name?: string | undefined;
|
|
64
|
-
readonly paging?: Record<string, {
|
|
65
|
-
size?: number | undefined;
|
|
66
|
-
}> | undefined;
|
|
67
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
68
|
-
schema: "network.xyo.archivist.storage.config";
|
|
69
|
-
readonly security?: {
|
|
70
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
71
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
73
|
-
} | undefined;
|
|
74
|
-
readonly sign?: boolean | undefined;
|
|
75
|
-
readonly storeQueries?: boolean | undefined;
|
|
76
|
-
readonly timestamp?: boolean | undefined;
|
|
77
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
78
|
-
readonly archivist?: string | undefined;
|
|
79
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
80
|
-
readonly name?: string | undefined;
|
|
81
|
-
readonly paging?: Record<string, {
|
|
82
|
-
size?: number | undefined;
|
|
83
|
-
}> | undefined;
|
|
84
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
85
|
-
schema: "network.xyo.archivist.storage.config";
|
|
86
|
-
readonly security?: {
|
|
87
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
90
|
-
} | undefined;
|
|
91
|
-
readonly sign?: boolean | undefined;
|
|
92
|
-
readonly storeQueries?: boolean | undefined;
|
|
93
|
-
readonly timestamp?: boolean | undefined;
|
|
94
|
-
} & {
|
|
28
|
+
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 & {
|
|
95
29
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
96
30
|
requireAllParents?: boolean | undefined;
|
|
97
31
|
schema: "network.xyo.archivist.storage.config";
|
|
@@ -103,6 +37,8 @@ export declare class StorageArchivistBuilder {
|
|
|
103
37
|
persistAccount?: boolean | undefined;
|
|
104
38
|
schema: "network.xyo.archivist.storage.config";
|
|
105
39
|
type?: "local" | "session" | "page" | undefined;
|
|
40
|
+
}, "schema"> & {
|
|
41
|
+
schema: "network.xyo.archivist.storage.config";
|
|
106
42
|
}, "schema"> & {
|
|
107
43
|
schema: string;
|
|
108
44
|
};
|
|
@@ -111,41 +47,7 @@ export declare class StorageArchivistBuilder {
|
|
|
111
47
|
static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
|
|
112
48
|
buildArchivist(): Promise<StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
113
49
|
account?: AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
115
|
-
readonly archivist?: string | undefined;
|
|
116
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
117
|
-
readonly name?: string | undefined;
|
|
118
|
-
readonly paging?: Record<string, {
|
|
119
|
-
size?: number | undefined;
|
|
120
|
-
}> | undefined;
|
|
121
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
122
|
-
schema: "network.xyo.archivist.storage.config";
|
|
123
|
-
readonly security?: {
|
|
124
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
125
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
127
|
-
} | undefined;
|
|
128
|
-
readonly sign?: boolean | undefined;
|
|
129
|
-
readonly storeQueries?: boolean | undefined;
|
|
130
|
-
readonly timestamp?: boolean | undefined;
|
|
131
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
132
|
-
readonly archivist?: string | undefined;
|
|
133
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
134
|
-
readonly name?: string | undefined;
|
|
135
|
-
readonly paging?: Record<string, {
|
|
136
|
-
size?: number | undefined;
|
|
137
|
-
}> | undefined;
|
|
138
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
139
|
-
schema: "network.xyo.archivist.storage.config";
|
|
140
|
-
readonly security?: {
|
|
141
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
144
|
-
} | undefined;
|
|
145
|
-
readonly sign?: boolean | undefined;
|
|
146
|
-
readonly storeQueries?: boolean | undefined;
|
|
147
|
-
readonly timestamp?: boolean | undefined;
|
|
148
|
-
} & {
|
|
50
|
+
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 & {
|
|
149
51
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
150
52
|
requireAllParents?: boolean | undefined;
|
|
151
53
|
schema: "network.xyo.archivist.storage.config";
|
|
@@ -157,6 +59,8 @@ export declare class StorageArchivistBuilder {
|
|
|
157
59
|
persistAccount?: boolean | undefined;
|
|
158
60
|
schema: "network.xyo.archivist.storage.config";
|
|
159
61
|
type?: "local" | "session" | "page" | undefined;
|
|
62
|
+
}, "schema"> & {
|
|
63
|
+
schema: "network.xyo.archivist.storage.config";
|
|
160
64
|
}, "schema"> & {
|
|
161
65
|
schema: string;
|
|
162
66
|
};
|
|
@@ -165,45 +69,13 @@ export declare class StorageArchivistBuilder {
|
|
|
165
69
|
buildConfig(): StorageArchivistConfig;
|
|
166
70
|
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
167
71
|
account?: AccountInstance | "random" | undefined;
|
|
168
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
169
|
-
readonly archivist?: string | undefined;
|
|
170
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
171
|
-
readonly name?: string | undefined;
|
|
172
|
-
readonly paging?: Record<string, {
|
|
173
|
-
size?: number | undefined;
|
|
174
|
-
}> | undefined;
|
|
175
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
176
|
-
schema: "network.xyo.archivist.config";
|
|
177
|
-
readonly security?: {
|
|
178
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
|
-
} | undefined;
|
|
182
|
-
readonly sign?: boolean | undefined;
|
|
183
|
-
readonly storeQueries?: boolean | undefined;
|
|
184
|
-
readonly timestamp?: boolean | undefined;
|
|
185
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
186
|
-
readonly archivist?: string | undefined;
|
|
187
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
188
|
-
readonly name?: string | undefined;
|
|
189
|
-
readonly paging?: Record<string, {
|
|
190
|
-
size?: number | undefined;
|
|
191
|
-
}> | undefined;
|
|
192
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
|
-
schema: "network.xyo.archivist.config";
|
|
194
|
-
readonly security?: {
|
|
195
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
|
-
} | undefined;
|
|
199
|
-
readonly sign?: boolean | undefined;
|
|
200
|
-
readonly storeQueries?: boolean | undefined;
|
|
201
|
-
readonly timestamp?: boolean | undefined;
|
|
202
|
-
} & {
|
|
72
|
+
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 & {
|
|
203
73
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
204
74
|
requireAllParents?: boolean | undefined;
|
|
205
75
|
schema: "network.xyo.archivist.config";
|
|
206
76
|
storeParentReads?: boolean | undefined;
|
|
77
|
+
}, "schema"> & {
|
|
78
|
+
schema: "network.xyo.archivist.config";
|
|
207
79
|
}, "schema"> & {
|
|
208
80
|
schema: string;
|
|
209
81
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageArchivistBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/StorageArchivistBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EAAwC,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AACrJ,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIrD,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
|
|
1
|
+
{"version":3,"file":"StorageArchivistBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/StorageArchivistBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EAAwC,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AACrJ,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIrD,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;;;;;;;;;;;yEAAY;IAG3B,IAAI,SAAS;;;;;;;;;;;;;;;;;;;;kEAEZ;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;;;;;;;;;;;;;;;;CAY1B"}
|