@xyo-network/react-standard-node 2.67.18 → 2.68.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts +20 -12
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +20 -12
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +20 -12
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +18 -6
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +18 -6
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +18 -6
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +12 -4
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +12 -4
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +12 -4
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +20 -12
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +20 -12
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +20 -12
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +18 -6
- package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +18 -6
- package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +18 -6
- package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +12 -4
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +12 -4
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +12 -4
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +18 -17
|
@@ -5,7 +5,7 @@ export declare class SentinelBuilder {
|
|
|
5
5
|
private account;
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
|
-
get sentinel(): MemorySentinel<import("@
|
|
8
|
+
get sentinel(): MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
10
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
11
11
|
readonly archivist?: string | undefined;
|
|
@@ -14,6 +14,7 @@ export declare class SentinelBuilder {
|
|
|
14
14
|
readonly paging?: Record<string, {
|
|
15
15
|
size?: number | undefined;
|
|
16
16
|
}> | undefined;
|
|
17
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
17
18
|
schema: "network.xyo.sentinel.config";
|
|
18
19
|
readonly security?: {
|
|
19
20
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -30,6 +31,7 @@ export declare class SentinelBuilder {
|
|
|
30
31
|
readonly paging?: Record<string, {
|
|
31
32
|
size?: number | undefined;
|
|
32
33
|
}> | undefined;
|
|
34
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
33
35
|
schema: "network.xyo.sentinel.config";
|
|
34
36
|
readonly security?: {
|
|
35
37
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -49,7 +51,7 @@ export declare class SentinelBuilder {
|
|
|
49
51
|
schema: string;
|
|
50
52
|
};
|
|
51
53
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@
|
|
54
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
53
55
|
account?: AccountInstance | "random" | undefined;
|
|
54
56
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
55
57
|
readonly archivist?: string | undefined;
|
|
@@ -58,6 +60,7 @@ export declare class SentinelBuilder {
|
|
|
58
60
|
readonly paging?: Record<string, {
|
|
59
61
|
size?: number | undefined;
|
|
60
62
|
}> | undefined;
|
|
63
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
61
64
|
schema: "network.xyo.sentinel.config";
|
|
62
65
|
readonly security?: {
|
|
63
66
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -74,6 +77,7 @@ export declare class SentinelBuilder {
|
|
|
74
77
|
readonly paging?: Record<string, {
|
|
75
78
|
size?: number | undefined;
|
|
76
79
|
}> | undefined;
|
|
80
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
77
81
|
schema: "network.xyo.sentinel.config";
|
|
78
82
|
readonly security?: {
|
|
79
83
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -93,7 +97,7 @@ export declare class SentinelBuilder {
|
|
|
93
97
|
schema: string;
|
|
94
98
|
};
|
|
95
99
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
96
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@
|
|
100
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
97
101
|
account?: AccountInstance | "random" | undefined;
|
|
98
102
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
99
103
|
readonly archivist?: string | undefined;
|
|
@@ -102,6 +106,7 @@ export declare class SentinelBuilder {
|
|
|
102
106
|
readonly paging?: Record<string, {
|
|
103
107
|
size?: number | undefined;
|
|
104
108
|
}> | undefined;
|
|
109
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
105
110
|
schema: "network.xyo.module.config";
|
|
106
111
|
readonly security?: {
|
|
107
112
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -118,6 +123,7 @@ export declare class SentinelBuilder {
|
|
|
118
123
|
readonly paging?: Record<string, {
|
|
119
124
|
size?: number | undefined;
|
|
120
125
|
}> | undefined;
|
|
126
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
121
127
|
schema: "network.xyo.module.config";
|
|
122
128
|
readonly security?: {
|
|
123
129
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -133,7 +139,7 @@ export declare class SentinelBuilder {
|
|
|
133
139
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
134
140
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
|
|
135
141
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
136
|
-
buildSentinel(): Promise<MemorySentinel<import("@
|
|
142
|
+
buildSentinel(): Promise<MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
137
143
|
account?: AccountInstance | "random" | undefined;
|
|
138
144
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
139
145
|
readonly archivist?: string | undefined;
|
|
@@ -142,6 +148,7 @@ export declare class SentinelBuilder {
|
|
|
142
148
|
readonly paging?: Record<string, {
|
|
143
149
|
size?: number | undefined;
|
|
144
150
|
}> | undefined;
|
|
151
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
145
152
|
schema: "network.xyo.sentinel.config";
|
|
146
153
|
readonly security?: {
|
|
147
154
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -158,6 +165,7 @@ export declare class SentinelBuilder {
|
|
|
158
165
|
readonly paging?: Record<string, {
|
|
159
166
|
size?: number | undefined;
|
|
160
167
|
}> | undefined;
|
|
168
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
161
169
|
schema: "network.xyo.sentinel.config";
|
|
162
170
|
readonly security?: {
|
|
163
171
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -177,7 +185,7 @@ export declare class SentinelBuilder {
|
|
|
177
185
|
schema: string;
|
|
178
186
|
};
|
|
179
187
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
180
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@
|
|
188
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
181
189
|
account?: AccountInstance | "random" | undefined;
|
|
182
190
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
183
191
|
readonly archivist?: string | undefined;
|
|
@@ -186,6 +194,7 @@ export declare class SentinelBuilder {
|
|
|
186
194
|
readonly paging?: Record<string, {
|
|
187
195
|
size?: number | undefined;
|
|
188
196
|
}> | undefined;
|
|
197
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
189
198
|
schema: "network.xyo.sentinel.config";
|
|
190
199
|
readonly security?: {
|
|
191
200
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -202,6 +211,7 @@ export declare class SentinelBuilder {
|
|
|
202
211
|
readonly paging?: Record<string, {
|
|
203
212
|
size?: number | undefined;
|
|
204
213
|
}> | undefined;
|
|
214
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
205
215
|
schema: "network.xyo.sentinel.config";
|
|
206
216
|
readonly security?: {
|
|
207
217
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -221,7 +231,7 @@ export declare class SentinelBuilder {
|
|
|
221
231
|
schema: string;
|
|
222
232
|
};
|
|
223
233
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
224
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@
|
|
234
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
225
235
|
account?: AccountInstance | "random" | undefined;
|
|
226
236
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
237
|
readonly archivist?: string | undefined;
|
|
@@ -230,6 +240,7 @@ export declare class SentinelBuilder {
|
|
|
230
240
|
readonly paging?: Record<string, {
|
|
231
241
|
size?: number | undefined;
|
|
232
242
|
}> | undefined;
|
|
243
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
233
244
|
schema: "network.xyo.module.config";
|
|
234
245
|
readonly security?: {
|
|
235
246
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -246,6 +257,7 @@ export declare class SentinelBuilder {
|
|
|
246
257
|
readonly paging?: Record<string, {
|
|
247
258
|
size?: number | undefined;
|
|
248
259
|
}> | undefined;
|
|
260
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
249
261
|
schema: "network.xyo.module.config";
|
|
250
262
|
readonly security?: {
|
|
251
263
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -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"}
|
|
@@ -5,7 +5,7 @@ export declare class SentinelBuilder {
|
|
|
5
5
|
private account;
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
|
-
get sentinel(): MemorySentinel<import("@
|
|
8
|
+
get sentinel(): MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
10
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
11
11
|
readonly archivist?: string | undefined;
|
|
@@ -14,6 +14,7 @@ export declare class SentinelBuilder {
|
|
|
14
14
|
readonly paging?: Record<string, {
|
|
15
15
|
size?: number | undefined;
|
|
16
16
|
}> | undefined;
|
|
17
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
17
18
|
schema: "network.xyo.sentinel.config";
|
|
18
19
|
readonly security?: {
|
|
19
20
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -30,6 +31,7 @@ export declare class SentinelBuilder {
|
|
|
30
31
|
readonly paging?: Record<string, {
|
|
31
32
|
size?: number | undefined;
|
|
32
33
|
}> | undefined;
|
|
34
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
33
35
|
schema: "network.xyo.sentinel.config";
|
|
34
36
|
readonly security?: {
|
|
35
37
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -49,7 +51,7 @@ export declare class SentinelBuilder {
|
|
|
49
51
|
schema: string;
|
|
50
52
|
};
|
|
51
53
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
52
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@
|
|
54
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
53
55
|
account?: AccountInstance | "random" | undefined;
|
|
54
56
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
55
57
|
readonly archivist?: string | undefined;
|
|
@@ -58,6 +60,7 @@ export declare class SentinelBuilder {
|
|
|
58
60
|
readonly paging?: Record<string, {
|
|
59
61
|
size?: number | undefined;
|
|
60
62
|
}> | undefined;
|
|
63
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
61
64
|
schema: "network.xyo.sentinel.config";
|
|
62
65
|
readonly security?: {
|
|
63
66
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -74,6 +77,7 @@ export declare class SentinelBuilder {
|
|
|
74
77
|
readonly paging?: Record<string, {
|
|
75
78
|
size?: number | undefined;
|
|
76
79
|
}> | undefined;
|
|
80
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
77
81
|
schema: "network.xyo.sentinel.config";
|
|
78
82
|
readonly security?: {
|
|
79
83
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -93,7 +97,7 @@ export declare class SentinelBuilder {
|
|
|
93
97
|
schema: string;
|
|
94
98
|
};
|
|
95
99
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
96
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@
|
|
100
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
97
101
|
account?: AccountInstance | "random" | undefined;
|
|
98
102
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
99
103
|
readonly archivist?: string | undefined;
|
|
@@ -102,6 +106,7 @@ export declare class SentinelBuilder {
|
|
|
102
106
|
readonly paging?: Record<string, {
|
|
103
107
|
size?: number | undefined;
|
|
104
108
|
}> | undefined;
|
|
109
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
105
110
|
schema: "network.xyo.module.config";
|
|
106
111
|
readonly security?: {
|
|
107
112
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -118,6 +123,7 @@ export declare class SentinelBuilder {
|
|
|
118
123
|
readonly paging?: Record<string, {
|
|
119
124
|
size?: number | undefined;
|
|
120
125
|
}> | undefined;
|
|
126
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
121
127
|
schema: "network.xyo.module.config";
|
|
122
128
|
readonly security?: {
|
|
123
129
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -133,7 +139,7 @@ export declare class SentinelBuilder {
|
|
|
133
139
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
134
140
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
|
|
135
141
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
136
|
-
buildSentinel(): Promise<MemorySentinel<import("@
|
|
142
|
+
buildSentinel(): Promise<MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
137
143
|
account?: AccountInstance | "random" | undefined;
|
|
138
144
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
139
145
|
readonly archivist?: string | undefined;
|
|
@@ -142,6 +148,7 @@ export declare class SentinelBuilder {
|
|
|
142
148
|
readonly paging?: Record<string, {
|
|
143
149
|
size?: number | undefined;
|
|
144
150
|
}> | undefined;
|
|
151
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
145
152
|
schema: "network.xyo.sentinel.config";
|
|
146
153
|
readonly security?: {
|
|
147
154
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -158,6 +165,7 @@ export declare class SentinelBuilder {
|
|
|
158
165
|
readonly paging?: Record<string, {
|
|
159
166
|
size?: number | undefined;
|
|
160
167
|
}> | undefined;
|
|
168
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
161
169
|
schema: "network.xyo.sentinel.config";
|
|
162
170
|
readonly security?: {
|
|
163
171
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -177,7 +185,7 @@ export declare class SentinelBuilder {
|
|
|
177
185
|
schema: string;
|
|
178
186
|
};
|
|
179
187
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
180
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@
|
|
188
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
181
189
|
account?: AccountInstance | "random" | undefined;
|
|
182
190
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
183
191
|
readonly archivist?: string | undefined;
|
|
@@ -186,6 +194,7 @@ export declare class SentinelBuilder {
|
|
|
186
194
|
readonly paging?: Record<string, {
|
|
187
195
|
size?: number | undefined;
|
|
188
196
|
}> | undefined;
|
|
197
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
189
198
|
schema: "network.xyo.sentinel.config";
|
|
190
199
|
readonly security?: {
|
|
191
200
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -202,6 +211,7 @@ export declare class SentinelBuilder {
|
|
|
202
211
|
readonly paging?: Record<string, {
|
|
203
212
|
size?: number | undefined;
|
|
204
213
|
}> | undefined;
|
|
214
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
205
215
|
schema: "network.xyo.sentinel.config";
|
|
206
216
|
readonly security?: {
|
|
207
217
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -221,7 +231,7 @@ export declare class SentinelBuilder {
|
|
|
221
231
|
schema: string;
|
|
222
232
|
};
|
|
223
233
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
224
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@
|
|
234
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
225
235
|
account?: AccountInstance | "random" | undefined;
|
|
226
236
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
237
|
readonly archivist?: string | undefined;
|
|
@@ -230,6 +240,7 @@ export declare class SentinelBuilder {
|
|
|
230
240
|
readonly paging?: Record<string, {
|
|
231
241
|
size?: number | undefined;
|
|
232
242
|
}> | undefined;
|
|
243
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
233
244
|
schema: "network.xyo.module.config";
|
|
234
245
|
readonly security?: {
|
|
235
246
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -246,6 +257,7 @@ export declare class SentinelBuilder {
|
|
|
246
257
|
readonly paging?: Record<string, {
|
|
247
258
|
size?: number | undefined;
|
|
248
259
|
}> | undefined;
|
|
260
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
249
261
|
schema: "network.xyo.module.config";
|
|
250
262
|
readonly security?: {
|
|
251
263
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -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"}
|
|
@@ -11,7 +11,7 @@ export declare class StorageArchivistBuilder {
|
|
|
11
11
|
private node?;
|
|
12
12
|
private _archivist;
|
|
13
13
|
private remoteArchivist;
|
|
14
|
-
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@
|
|
14
|
+
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
15
15
|
account?: AccountInstance | "random" | undefined;
|
|
16
16
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
17
17
|
readonly archivist?: string | undefined;
|
|
@@ -20,6 +20,7 @@ export declare class StorageArchivistBuilder {
|
|
|
20
20
|
readonly paging?: Record<string, {
|
|
21
21
|
size?: number | undefined;
|
|
22
22
|
}> | undefined;
|
|
23
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
24
|
schema: "network.xyo.node.config";
|
|
24
25
|
readonly security?: {
|
|
25
26
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -36,6 +37,7 @@ export declare class StorageArchivistBuilder {
|
|
|
36
37
|
readonly paging?: Record<string, {
|
|
37
38
|
size?: number | undefined;
|
|
38
39
|
}> | undefined;
|
|
40
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
39
41
|
schema: "network.xyo.node.config";
|
|
40
42
|
readonly security?: {
|
|
41
43
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -53,7 +55,7 @@ export declare class StorageArchivistBuilder {
|
|
|
53
55
|
};
|
|
54
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
55
57
|
}, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
|
|
56
|
-
get archivist(): StorageArchivist<import("@
|
|
58
|
+
get archivist(): StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
57
59
|
account?: AccountInstance | "random" | undefined;
|
|
58
60
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
59
61
|
readonly archivist?: string | undefined;
|
|
@@ -62,6 +64,7 @@ export declare class StorageArchivistBuilder {
|
|
|
62
64
|
readonly paging?: Record<string, {
|
|
63
65
|
size?: number | undefined;
|
|
64
66
|
}> | undefined;
|
|
67
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
65
68
|
schema: "network.xyo.archivist.storage.config";
|
|
66
69
|
readonly security?: {
|
|
67
70
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -78,6 +81,7 @@ export declare class StorageArchivistBuilder {
|
|
|
78
81
|
readonly paging?: Record<string, {
|
|
79
82
|
size?: number | undefined;
|
|
80
83
|
}> | undefined;
|
|
84
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
81
85
|
schema: "network.xyo.archivist.storage.config";
|
|
82
86
|
readonly security?: {
|
|
83
87
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -105,7 +109,7 @@ export declare class StorageArchivistBuilder {
|
|
|
105
109
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
106
110
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>;
|
|
107
111
|
static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
|
|
108
|
-
buildArchivist(): Promise<StorageArchivist<import("@
|
|
112
|
+
buildArchivist(): Promise<StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
109
113
|
account?: AccountInstance | "random" | undefined;
|
|
110
114
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
111
115
|
readonly archivist?: string | undefined;
|
|
@@ -114,6 +118,7 @@ export declare class StorageArchivistBuilder {
|
|
|
114
118
|
readonly paging?: Record<string, {
|
|
115
119
|
size?: number | undefined;
|
|
116
120
|
}> | undefined;
|
|
121
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
117
122
|
schema: "network.xyo.archivist.storage.config";
|
|
118
123
|
readonly security?: {
|
|
119
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -130,6 +135,7 @@ export declare class StorageArchivistBuilder {
|
|
|
130
135
|
readonly paging?: Record<string, {
|
|
131
136
|
size?: number | undefined;
|
|
132
137
|
}> | undefined;
|
|
138
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
133
139
|
schema: "network.xyo.archivist.storage.config";
|
|
134
140
|
readonly security?: {
|
|
135
141
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -157,7 +163,7 @@ export declare class StorageArchivistBuilder {
|
|
|
157
163
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
158
164
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>>;
|
|
159
165
|
buildConfig(): StorageArchivistConfig;
|
|
160
|
-
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@
|
|
166
|
+
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
161
167
|
account?: AccountInstance | "random" | undefined;
|
|
162
168
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
163
169
|
readonly archivist?: string | undefined;
|
|
@@ -166,6 +172,7 @@ export declare class StorageArchivistBuilder {
|
|
|
166
172
|
readonly paging?: Record<string, {
|
|
167
173
|
size?: number | undefined;
|
|
168
174
|
}> | undefined;
|
|
175
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
169
176
|
schema: "network.xyo.archivist.config";
|
|
170
177
|
readonly security?: {
|
|
171
178
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -182,6 +189,7 @@ export declare class StorageArchivistBuilder {
|
|
|
182
189
|
readonly paging?: Record<string, {
|
|
183
190
|
size?: number | undefined;
|
|
184
191
|
}> | undefined;
|
|
192
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
185
193
|
schema: "network.xyo.archivist.config";
|
|
186
194
|
readonly security?: {
|
|
187
195
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -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"}
|
|
@@ -11,7 +11,7 @@ export declare class StorageArchivistBuilder {
|
|
|
11
11
|
private node?;
|
|
12
12
|
private _archivist;
|
|
13
13
|
private remoteArchivist;
|
|
14
|
-
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@
|
|
14
|
+
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
15
15
|
account?: AccountInstance | "random" | undefined;
|
|
16
16
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
17
17
|
readonly archivist?: string | undefined;
|
|
@@ -20,6 +20,7 @@ export declare class StorageArchivistBuilder {
|
|
|
20
20
|
readonly paging?: Record<string, {
|
|
21
21
|
size?: number | undefined;
|
|
22
22
|
}> | undefined;
|
|
23
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
24
|
schema: "network.xyo.node.config";
|
|
24
25
|
readonly security?: {
|
|
25
26
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -36,6 +37,7 @@ export declare class StorageArchivistBuilder {
|
|
|
36
37
|
readonly paging?: Record<string, {
|
|
37
38
|
size?: number | undefined;
|
|
38
39
|
}> | undefined;
|
|
40
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
39
41
|
schema: "network.xyo.node.config";
|
|
40
42
|
readonly security?: {
|
|
41
43
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -53,7 +55,7 @@ export declare class StorageArchivistBuilder {
|
|
|
53
55
|
};
|
|
54
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
55
57
|
}, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
|
|
56
|
-
get archivist(): StorageArchivist<import("@
|
|
58
|
+
get archivist(): StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
57
59
|
account?: AccountInstance | "random" | undefined;
|
|
58
60
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
59
61
|
readonly archivist?: string | undefined;
|
|
@@ -62,6 +64,7 @@ export declare class StorageArchivistBuilder {
|
|
|
62
64
|
readonly paging?: Record<string, {
|
|
63
65
|
size?: number | undefined;
|
|
64
66
|
}> | undefined;
|
|
67
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
65
68
|
schema: "network.xyo.archivist.storage.config";
|
|
66
69
|
readonly security?: {
|
|
67
70
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -78,6 +81,7 @@ export declare class StorageArchivistBuilder {
|
|
|
78
81
|
readonly paging?: Record<string, {
|
|
79
82
|
size?: number | undefined;
|
|
80
83
|
}> | undefined;
|
|
84
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
81
85
|
schema: "network.xyo.archivist.storage.config";
|
|
82
86
|
readonly security?: {
|
|
83
87
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -105,7 +109,7 @@ export declare class StorageArchivistBuilder {
|
|
|
105
109
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
106
110
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>;
|
|
107
111
|
static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
|
|
108
|
-
buildArchivist(): Promise<StorageArchivist<import("@
|
|
112
|
+
buildArchivist(): Promise<StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
109
113
|
account?: AccountInstance | "random" | undefined;
|
|
110
114
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
111
115
|
readonly archivist?: string | undefined;
|
|
@@ -114,6 +118,7 @@ export declare class StorageArchivistBuilder {
|
|
|
114
118
|
readonly paging?: Record<string, {
|
|
115
119
|
size?: number | undefined;
|
|
116
120
|
}> | undefined;
|
|
121
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
117
122
|
schema: "network.xyo.archivist.storage.config";
|
|
118
123
|
readonly security?: {
|
|
119
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -130,6 +135,7 @@ export declare class StorageArchivistBuilder {
|
|
|
130
135
|
readonly paging?: Record<string, {
|
|
131
136
|
size?: number | undefined;
|
|
132
137
|
}> | undefined;
|
|
138
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
133
139
|
schema: "network.xyo.archivist.storage.config";
|
|
134
140
|
readonly security?: {
|
|
135
141
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -157,7 +163,7 @@ export declare class StorageArchivistBuilder {
|
|
|
157
163
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
158
164
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>>;
|
|
159
165
|
buildConfig(): StorageArchivistConfig;
|
|
160
|
-
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@
|
|
166
|
+
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
161
167
|
account?: AccountInstance | "random" | undefined;
|
|
162
168
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
163
169
|
readonly archivist?: string | undefined;
|
|
@@ -166,6 +172,7 @@ export declare class StorageArchivistBuilder {
|
|
|
166
172
|
readonly paging?: Record<string, {
|
|
167
173
|
size?: number | undefined;
|
|
168
174
|
}> | undefined;
|
|
175
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
169
176
|
schema: "network.xyo.archivist.config";
|
|
170
177
|
readonly security?: {
|
|
171
178
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -182,6 +189,7 @@ export declare class StorageArchivistBuilder {
|
|
|
182
189
|
readonly paging?: Record<string, {
|
|
183
190
|
size?: number | undefined;
|
|
184
191
|
}> | undefined;
|
|
192
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
185
193
|
schema: "network.xyo.archivist.config";
|
|
186
194
|
readonly security?: {
|
|
187
195
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -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"}
|
|
@@ -11,7 +11,7 @@ export declare class StorageArchivistBuilder {
|
|
|
11
11
|
private node?;
|
|
12
12
|
private _archivist;
|
|
13
13
|
private remoteArchivist;
|
|
14
|
-
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@
|
|
14
|
+
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
15
15
|
account?: AccountInstance | "random" | undefined;
|
|
16
16
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
17
17
|
readonly archivist?: string | undefined;
|
|
@@ -20,6 +20,7 @@ export declare class StorageArchivistBuilder {
|
|
|
20
20
|
readonly paging?: Record<string, {
|
|
21
21
|
size?: number | undefined;
|
|
22
22
|
}> | undefined;
|
|
23
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
24
|
schema: "network.xyo.node.config";
|
|
24
25
|
readonly security?: {
|
|
25
26
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -36,6 +37,7 @@ export declare class StorageArchivistBuilder {
|
|
|
36
37
|
readonly paging?: Record<string, {
|
|
37
38
|
size?: number | undefined;
|
|
38
39
|
}> | undefined;
|
|
40
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
39
41
|
schema: "network.xyo.node.config";
|
|
40
42
|
readonly security?: {
|
|
41
43
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -53,7 +55,7 @@ export declare class StorageArchivistBuilder {
|
|
|
53
55
|
};
|
|
54
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
55
57
|
}, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
|
|
56
|
-
get archivist(): StorageArchivist<import("@
|
|
58
|
+
get archivist(): StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
57
59
|
account?: AccountInstance | "random" | undefined;
|
|
58
60
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
59
61
|
readonly archivist?: string | undefined;
|
|
@@ -62,6 +64,7 @@ export declare class StorageArchivistBuilder {
|
|
|
62
64
|
readonly paging?: Record<string, {
|
|
63
65
|
size?: number | undefined;
|
|
64
66
|
}> | undefined;
|
|
67
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
65
68
|
schema: "network.xyo.archivist.storage.config";
|
|
66
69
|
readonly security?: {
|
|
67
70
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -78,6 +81,7 @@ export declare class StorageArchivistBuilder {
|
|
|
78
81
|
readonly paging?: Record<string, {
|
|
79
82
|
size?: number | undefined;
|
|
80
83
|
}> | undefined;
|
|
84
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
81
85
|
schema: "network.xyo.archivist.storage.config";
|
|
82
86
|
readonly security?: {
|
|
83
87
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -105,7 +109,7 @@ export declare class StorageArchivistBuilder {
|
|
|
105
109
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
106
110
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>;
|
|
107
111
|
static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
|
|
108
|
-
buildArchivist(): Promise<StorageArchivist<import("@
|
|
112
|
+
buildArchivist(): Promise<StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
109
113
|
account?: AccountInstance | "random" | undefined;
|
|
110
114
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
111
115
|
readonly archivist?: string | undefined;
|
|
@@ -114,6 +118,7 @@ export declare class StorageArchivistBuilder {
|
|
|
114
118
|
readonly paging?: Record<string, {
|
|
115
119
|
size?: number | undefined;
|
|
116
120
|
}> | undefined;
|
|
121
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
117
122
|
schema: "network.xyo.archivist.storage.config";
|
|
118
123
|
readonly security?: {
|
|
119
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -130,6 +135,7 @@ export declare class StorageArchivistBuilder {
|
|
|
130
135
|
readonly paging?: Record<string, {
|
|
131
136
|
size?: number | undefined;
|
|
132
137
|
}> | undefined;
|
|
138
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
133
139
|
schema: "network.xyo.archivist.storage.config";
|
|
134
140
|
readonly security?: {
|
|
135
141
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -157,7 +163,7 @@ export declare class StorageArchivistBuilder {
|
|
|
157
163
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
158
164
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>>;
|
|
159
165
|
buildConfig(): StorageArchivistConfig;
|
|
160
|
-
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@
|
|
166
|
+
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
161
167
|
account?: AccountInstance | "random" | undefined;
|
|
162
168
|
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
163
169
|
readonly archivist?: string | undefined;
|
|
@@ -166,6 +172,7 @@ export declare class StorageArchivistBuilder {
|
|
|
166
172
|
readonly paging?: Record<string, {
|
|
167
173
|
size?: number | undefined;
|
|
168
174
|
}> | undefined;
|
|
175
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
169
176
|
schema: "network.xyo.archivist.config";
|
|
170
177
|
readonly security?: {
|
|
171
178
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -182,6 +189,7 @@ export declare class StorageArchivistBuilder {
|
|
|
182
189
|
readonly paging?: Record<string, {
|
|
183
190
|
size?: number | undefined;
|
|
184
191
|
}> | undefined;
|
|
192
|
+
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
185
193
|
schema: "network.xyo.archivist.config";
|
|
186
194
|
readonly security?: {
|
|
187
195
|
readonly allowAnonymous?: boolean | undefined;
|
|
@@ -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"}
|