@xyo-network/archivist-model 2.90.23 → 2.91.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/Archivist.d.cts +11 -2
- package/dist/browser/Archivist.d.cts.map +1 -1
- package/dist/browser/Archivist.d.mts +11 -2
- package/dist/browser/Archivist.d.mts.map +1 -1
- package/dist/browser/Archivist.d.ts +11 -2
- package/dist/browser/Archivist.d.ts.map +1 -1
- package/dist/browser/Queries/Delete.d.cts +2 -1
- package/dist/browser/Queries/Delete.d.cts.map +1 -1
- package/dist/browser/Queries/Delete.d.mts +2 -1
- package/dist/browser/Queries/Delete.d.mts.map +1 -1
- package/dist/browser/Queries/Delete.d.ts +2 -1
- package/dist/browser/Queries/Delete.d.ts.map +1 -1
- package/dist/browser/Queries/Get.d.cts +2 -1
- package/dist/browser/Queries/Get.d.cts.map +1 -1
- package/dist/browser/Queries/Get.d.mts +2 -1
- package/dist/browser/Queries/Get.d.mts.map +1 -1
- package/dist/browser/Queries/Get.d.ts +2 -1
- package/dist/browser/Queries/Get.d.ts.map +1 -1
- package/dist/browser/Queries/Next.d.cts +6 -0
- package/dist/browser/Queries/Next.d.cts.map +1 -0
- package/dist/browser/Queries/Next.d.mts +6 -0
- package/dist/browser/Queries/Next.d.mts.map +1 -0
- package/dist/browser/Queries/Next.d.ts +6 -0
- package/dist/browser/Queries/Next.d.ts.map +1 -0
- package/dist/browser/Queries/index.d.cts +5 -10
- package/dist/browser/Queries/index.d.cts.map +1 -1
- package/dist/browser/Queries/index.d.mts +5 -10
- package/dist/browser/Queries/index.d.mts.map +1 -1
- package/dist/browser/Queries/index.d.ts +5 -10
- package/dist/browser/Queries/index.d.ts.map +1 -1
- package/dist/browser/index.cjs +4 -0
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +4 -0
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/typeChecks.d.cts +32 -32
- package/dist/browser/typeChecks.d.mts +32 -32
- package/dist/browser/typeChecks.d.ts +32 -32
- package/dist/node/Archivist.d.cts +11 -2
- package/dist/node/Archivist.d.cts.map +1 -1
- package/dist/node/Archivist.d.mts +11 -2
- package/dist/node/Archivist.d.mts.map +1 -1
- package/dist/node/Archivist.d.ts +11 -2
- package/dist/node/Archivist.d.ts.map +1 -1
- package/dist/node/Queries/Delete.d.cts +2 -1
- package/dist/node/Queries/Delete.d.cts.map +1 -1
- package/dist/node/Queries/Delete.d.mts +2 -1
- package/dist/node/Queries/Delete.d.mts.map +1 -1
- package/dist/node/Queries/Delete.d.ts +2 -1
- package/dist/node/Queries/Delete.d.ts.map +1 -1
- package/dist/node/Queries/Get.d.cts +2 -1
- package/dist/node/Queries/Get.d.cts.map +1 -1
- package/dist/node/Queries/Get.d.mts +2 -1
- package/dist/node/Queries/Get.d.mts.map +1 -1
- package/dist/node/Queries/Get.d.ts +2 -1
- package/dist/node/Queries/Get.d.ts.map +1 -1
- package/dist/node/Queries/Next.d.cts +6 -0
- package/dist/node/Queries/Next.d.cts.map +1 -0
- package/dist/node/Queries/Next.d.mts +6 -0
- package/dist/node/Queries/Next.d.mts.map +1 -0
- package/dist/node/Queries/Next.d.ts +6 -0
- package/dist/node/Queries/Next.d.ts.map +1 -0
- package/dist/node/Queries/index.d.cts +5 -10
- package/dist/node/Queries/index.d.cts.map +1 -1
- package/dist/node/Queries/index.d.mts +5 -10
- package/dist/node/Queries/index.d.mts.map +1 -1
- package/dist/node/Queries/index.d.ts +5 -10
- package/dist/node/Queries/index.d.ts.map +1 -1
- package/dist/node/index.cjs +5 -0
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +4 -0
- package/dist/node/index.js.map +1 -1
- package/dist/node/typeChecks.d.cts +32 -32
- package/dist/node/typeChecks.d.mts +32 -32
- package/dist/node/typeChecks.d.ts +32 -32
- package/package.json +9 -9
- package/src/Archivist.ts +12 -2
- package/src/Queries/Delete.ts +2 -1
- package/src/Queries/Get.ts +2 -1
- package/src/Queries/Next.ts +8 -0
- package/src/Queries/index.ts +6 -11
|
@@ -13,8 +13,8 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
13
|
schema: "network.xyo.archivist.config";
|
|
14
14
|
readonly security?: {
|
|
15
15
|
readonly allowAnonymous?: boolean | undefined;
|
|
16
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
16
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
18
18
|
} | undefined;
|
|
19
19
|
readonly sign?: boolean | undefined;
|
|
20
20
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -30,8 +30,8 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
30
30
|
schema: "network.xyo.archivist.config";
|
|
31
31
|
readonly security?: {
|
|
32
32
|
readonly allowAnonymous?: boolean | undefined;
|
|
33
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
34
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
33
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
34
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
35
35
|
} | undefined;
|
|
36
36
|
readonly sign?: boolean | undefined;
|
|
37
37
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -61,8 +61,8 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
61
61
|
schema: "network.xyo.archivist.config";
|
|
62
62
|
readonly security?: {
|
|
63
63
|
readonly allowAnonymous?: boolean | undefined;
|
|
64
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
64
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
66
66
|
} | undefined;
|
|
67
67
|
readonly sign?: boolean | undefined;
|
|
68
68
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -78,8 +78,8 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
78
78
|
schema: "network.xyo.archivist.config";
|
|
79
79
|
readonly security?: {
|
|
80
80
|
readonly allowAnonymous?: boolean | undefined;
|
|
81
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
81
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
83
83
|
} | undefined;
|
|
84
84
|
readonly sign?: boolean | undefined;
|
|
85
85
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -108,8 +108,8 @@ export declare const asArchivistModule: {
|
|
|
108
108
|
schema: "network.xyo.archivist.config";
|
|
109
109
|
readonly security?: {
|
|
110
110
|
readonly allowAnonymous?: boolean | undefined;
|
|
111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
111
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
readonly sign?: boolean | undefined;
|
|
115
115
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -125,8 +125,8 @@ export declare const asArchivistModule: {
|
|
|
125
125
|
schema: "network.xyo.archivist.config";
|
|
126
126
|
readonly security?: {
|
|
127
127
|
readonly allowAnonymous?: boolean | undefined;
|
|
128
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
128
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
130
130
|
} | undefined;
|
|
131
131
|
readonly sign?: boolean | undefined;
|
|
132
132
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -154,8 +154,8 @@ export declare const asArchivistModule: {
|
|
|
154
154
|
schema: "network.xyo.archivist.config";
|
|
155
155
|
readonly security?: {
|
|
156
156
|
readonly allowAnonymous?: boolean | undefined;
|
|
157
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
158
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
157
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
158
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
159
159
|
} | undefined;
|
|
160
160
|
readonly sign?: boolean | undefined;
|
|
161
161
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -171,8 +171,8 @@ export declare const asArchivistModule: {
|
|
|
171
171
|
schema: "network.xyo.archivist.config";
|
|
172
172
|
readonly security?: {
|
|
173
173
|
readonly allowAnonymous?: boolean | undefined;
|
|
174
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
175
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
174
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
175
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
176
176
|
} | undefined;
|
|
177
177
|
readonly sign?: boolean | undefined;
|
|
178
178
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -202,8 +202,8 @@ export declare const asArchivistInstance: {
|
|
|
202
202
|
schema: "network.xyo.archivist.config";
|
|
203
203
|
readonly security?: {
|
|
204
204
|
readonly allowAnonymous?: boolean | undefined;
|
|
205
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
206
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
205
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
206
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
207
207
|
} | undefined;
|
|
208
208
|
readonly sign?: boolean | undefined;
|
|
209
209
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -219,8 +219,8 @@ export declare const asArchivistInstance: {
|
|
|
219
219
|
schema: "network.xyo.archivist.config";
|
|
220
220
|
readonly security?: {
|
|
221
221
|
readonly allowAnonymous?: boolean | undefined;
|
|
222
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
222
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
224
224
|
} | undefined;
|
|
225
225
|
readonly sign?: boolean | undefined;
|
|
226
226
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -250,8 +250,8 @@ export declare const asArchivistInstance: {
|
|
|
250
250
|
schema: "network.xyo.archivist.config";
|
|
251
251
|
readonly security?: {
|
|
252
252
|
readonly allowAnonymous?: boolean | undefined;
|
|
253
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
254
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
253
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
254
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
255
255
|
} | undefined;
|
|
256
256
|
readonly sign?: boolean | undefined;
|
|
257
257
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -267,8 +267,8 @@ export declare const asArchivistInstance: {
|
|
|
267
267
|
schema: "network.xyo.archivist.config";
|
|
268
268
|
readonly security?: {
|
|
269
269
|
readonly allowAnonymous?: boolean | undefined;
|
|
270
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
270
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
272
272
|
} | undefined;
|
|
273
273
|
readonly sign?: boolean | undefined;
|
|
274
274
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -299,8 +299,8 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
299
299
|
schema: "network.xyo.archivist.config";
|
|
300
300
|
readonly security?: {
|
|
301
301
|
readonly allowAnonymous?: boolean | undefined;
|
|
302
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
303
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
302
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
303
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
304
304
|
} | undefined;
|
|
305
305
|
readonly sign?: boolean | undefined;
|
|
306
306
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -316,8 +316,8 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
316
316
|
schema: "network.xyo.archivist.config";
|
|
317
317
|
readonly security?: {
|
|
318
318
|
readonly allowAnonymous?: boolean | undefined;
|
|
319
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
320
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
319
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
320
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
321
321
|
} | undefined;
|
|
322
322
|
readonly sign?: boolean | undefined;
|
|
323
323
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -345,8 +345,8 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
345
345
|
schema: "network.xyo.archivist.config";
|
|
346
346
|
readonly security?: {
|
|
347
347
|
readonly allowAnonymous?: boolean | undefined;
|
|
348
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
349
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
348
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
349
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
350
350
|
} | undefined;
|
|
351
351
|
readonly sign?: boolean | undefined;
|
|
352
352
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -362,8 +362,8 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
362
362
|
schema: "network.xyo.archivist.config";
|
|
363
363
|
readonly security?: {
|
|
364
364
|
readonly allowAnonymous?: boolean | undefined;
|
|
365
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
366
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
365
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
366
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
367
367
|
} | undefined;
|
|
368
368
|
readonly sign?: boolean | undefined;
|
|
369
369
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -13,8 +13,8 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
13
|
schema: "network.xyo.archivist.config";
|
|
14
14
|
readonly security?: {
|
|
15
15
|
readonly allowAnonymous?: boolean | undefined;
|
|
16
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
16
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
18
18
|
} | undefined;
|
|
19
19
|
readonly sign?: boolean | undefined;
|
|
20
20
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -30,8 +30,8 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
30
30
|
schema: "network.xyo.archivist.config";
|
|
31
31
|
readonly security?: {
|
|
32
32
|
readonly allowAnonymous?: boolean | undefined;
|
|
33
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
34
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
33
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
34
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
35
35
|
} | undefined;
|
|
36
36
|
readonly sign?: boolean | undefined;
|
|
37
37
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -61,8 +61,8 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
61
61
|
schema: "network.xyo.archivist.config";
|
|
62
62
|
readonly security?: {
|
|
63
63
|
readonly allowAnonymous?: boolean | undefined;
|
|
64
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
64
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
66
66
|
} | undefined;
|
|
67
67
|
readonly sign?: boolean | undefined;
|
|
68
68
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -78,8 +78,8 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
78
78
|
schema: "network.xyo.archivist.config";
|
|
79
79
|
readonly security?: {
|
|
80
80
|
readonly allowAnonymous?: boolean | undefined;
|
|
81
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
81
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
83
83
|
} | undefined;
|
|
84
84
|
readonly sign?: boolean | undefined;
|
|
85
85
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -108,8 +108,8 @@ export declare const asArchivistModule: {
|
|
|
108
108
|
schema: "network.xyo.archivist.config";
|
|
109
109
|
readonly security?: {
|
|
110
110
|
readonly allowAnonymous?: boolean | undefined;
|
|
111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
111
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
readonly sign?: boolean | undefined;
|
|
115
115
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -125,8 +125,8 @@ export declare const asArchivistModule: {
|
|
|
125
125
|
schema: "network.xyo.archivist.config";
|
|
126
126
|
readonly security?: {
|
|
127
127
|
readonly allowAnonymous?: boolean | undefined;
|
|
128
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
128
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
130
130
|
} | undefined;
|
|
131
131
|
readonly sign?: boolean | undefined;
|
|
132
132
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -154,8 +154,8 @@ export declare const asArchivistModule: {
|
|
|
154
154
|
schema: "network.xyo.archivist.config";
|
|
155
155
|
readonly security?: {
|
|
156
156
|
readonly allowAnonymous?: boolean | undefined;
|
|
157
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
158
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
157
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
158
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
159
159
|
} | undefined;
|
|
160
160
|
readonly sign?: boolean | undefined;
|
|
161
161
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -171,8 +171,8 @@ export declare const asArchivistModule: {
|
|
|
171
171
|
schema: "network.xyo.archivist.config";
|
|
172
172
|
readonly security?: {
|
|
173
173
|
readonly allowAnonymous?: boolean | undefined;
|
|
174
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
175
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
174
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
175
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
176
176
|
} | undefined;
|
|
177
177
|
readonly sign?: boolean | undefined;
|
|
178
178
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -202,8 +202,8 @@ export declare const asArchivistInstance: {
|
|
|
202
202
|
schema: "network.xyo.archivist.config";
|
|
203
203
|
readonly security?: {
|
|
204
204
|
readonly allowAnonymous?: boolean | undefined;
|
|
205
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
206
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
205
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
206
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
207
207
|
} | undefined;
|
|
208
208
|
readonly sign?: boolean | undefined;
|
|
209
209
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -219,8 +219,8 @@ export declare const asArchivistInstance: {
|
|
|
219
219
|
schema: "network.xyo.archivist.config";
|
|
220
220
|
readonly security?: {
|
|
221
221
|
readonly allowAnonymous?: boolean | undefined;
|
|
222
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
222
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
224
224
|
} | undefined;
|
|
225
225
|
readonly sign?: boolean | undefined;
|
|
226
226
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -250,8 +250,8 @@ export declare const asArchivistInstance: {
|
|
|
250
250
|
schema: "network.xyo.archivist.config";
|
|
251
251
|
readonly security?: {
|
|
252
252
|
readonly allowAnonymous?: boolean | undefined;
|
|
253
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
254
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
253
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
254
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
255
255
|
} | undefined;
|
|
256
256
|
readonly sign?: boolean | undefined;
|
|
257
257
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -267,8 +267,8 @@ export declare const asArchivistInstance: {
|
|
|
267
267
|
schema: "network.xyo.archivist.config";
|
|
268
268
|
readonly security?: {
|
|
269
269
|
readonly allowAnonymous?: boolean | undefined;
|
|
270
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
270
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
272
272
|
} | undefined;
|
|
273
273
|
readonly sign?: boolean | undefined;
|
|
274
274
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -299,8 +299,8 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
299
299
|
schema: "network.xyo.archivist.config";
|
|
300
300
|
readonly security?: {
|
|
301
301
|
readonly allowAnonymous?: boolean | undefined;
|
|
302
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
303
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
302
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
303
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
304
304
|
} | undefined;
|
|
305
305
|
readonly sign?: boolean | undefined;
|
|
306
306
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -316,8 +316,8 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
316
316
|
schema: "network.xyo.archivist.config";
|
|
317
317
|
readonly security?: {
|
|
318
318
|
readonly allowAnonymous?: boolean | undefined;
|
|
319
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
320
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
319
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
320
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
321
321
|
} | undefined;
|
|
322
322
|
readonly sign?: boolean | undefined;
|
|
323
323
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -345,8 +345,8 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
345
345
|
schema: "network.xyo.archivist.config";
|
|
346
346
|
readonly security?: {
|
|
347
347
|
readonly allowAnonymous?: boolean | undefined;
|
|
348
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
349
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
348
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
349
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
350
350
|
} | undefined;
|
|
351
351
|
readonly sign?: boolean | undefined;
|
|
352
352
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -362,8 +362,8 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
362
362
|
schema: "network.xyo.archivist.config";
|
|
363
363
|
readonly security?: {
|
|
364
364
|
readonly allowAnonymous?: boolean | undefined;
|
|
365
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
366
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
365
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
366
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
367
367
|
} | undefined;
|
|
368
368
|
readonly sign?: boolean | undefined;
|
|
369
369
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -13,8 +13,8 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
13
13
|
schema: "network.xyo.archivist.config";
|
|
14
14
|
readonly security?: {
|
|
15
15
|
readonly allowAnonymous?: boolean | undefined;
|
|
16
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
16
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
18
18
|
} | undefined;
|
|
19
19
|
readonly sign?: boolean | undefined;
|
|
20
20
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -30,8 +30,8 @@ export declare const isArchivistInstance: import("@xylabs/object").TypeCheck<Arc
|
|
|
30
30
|
schema: "network.xyo.archivist.config";
|
|
31
31
|
readonly security?: {
|
|
32
32
|
readonly allowAnonymous?: boolean | undefined;
|
|
33
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
34
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
33
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
34
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
35
35
|
} | undefined;
|
|
36
36
|
readonly sign?: boolean | undefined;
|
|
37
37
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -61,8 +61,8 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
61
61
|
schema: "network.xyo.archivist.config";
|
|
62
62
|
readonly security?: {
|
|
63
63
|
readonly allowAnonymous?: boolean | undefined;
|
|
64
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
64
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
66
66
|
} | undefined;
|
|
67
67
|
readonly sign?: boolean | undefined;
|
|
68
68
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -78,8 +78,8 @@ export declare const isArchivistModule: import("@xyo-network/module-model").Modu
|
|
|
78
78
|
schema: "network.xyo.archivist.config";
|
|
79
79
|
readonly security?: {
|
|
80
80
|
readonly allowAnonymous?: boolean | undefined;
|
|
81
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
81
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
83
83
|
} | undefined;
|
|
84
84
|
readonly sign?: boolean | undefined;
|
|
85
85
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -108,8 +108,8 @@ export declare const asArchivistModule: {
|
|
|
108
108
|
schema: "network.xyo.archivist.config";
|
|
109
109
|
readonly security?: {
|
|
110
110
|
readonly allowAnonymous?: boolean | undefined;
|
|
111
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
111
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
112
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
113
113
|
} | undefined;
|
|
114
114
|
readonly sign?: boolean | undefined;
|
|
115
115
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -125,8 +125,8 @@ export declare const asArchivistModule: {
|
|
|
125
125
|
schema: "network.xyo.archivist.config";
|
|
126
126
|
readonly security?: {
|
|
127
127
|
readonly allowAnonymous?: boolean | undefined;
|
|
128
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
128
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
129
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
130
130
|
} | undefined;
|
|
131
131
|
readonly sign?: boolean | undefined;
|
|
132
132
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -154,8 +154,8 @@ export declare const asArchivistModule: {
|
|
|
154
154
|
schema: "network.xyo.archivist.config";
|
|
155
155
|
readonly security?: {
|
|
156
156
|
readonly allowAnonymous?: boolean | undefined;
|
|
157
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
158
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
157
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
158
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
159
159
|
} | undefined;
|
|
160
160
|
readonly sign?: boolean | undefined;
|
|
161
161
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -171,8 +171,8 @@ export declare const asArchivistModule: {
|
|
|
171
171
|
schema: "network.xyo.archivist.config";
|
|
172
172
|
readonly security?: {
|
|
173
173
|
readonly allowAnonymous?: boolean | undefined;
|
|
174
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
175
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
174
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
175
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
176
176
|
} | undefined;
|
|
177
177
|
readonly sign?: boolean | undefined;
|
|
178
178
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -202,8 +202,8 @@ export declare const asArchivistInstance: {
|
|
|
202
202
|
schema: "network.xyo.archivist.config";
|
|
203
203
|
readonly security?: {
|
|
204
204
|
readonly allowAnonymous?: boolean | undefined;
|
|
205
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
206
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
205
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
206
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
207
207
|
} | undefined;
|
|
208
208
|
readonly sign?: boolean | undefined;
|
|
209
209
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -219,8 +219,8 @@ export declare const asArchivistInstance: {
|
|
|
219
219
|
schema: "network.xyo.archivist.config";
|
|
220
220
|
readonly security?: {
|
|
221
221
|
readonly allowAnonymous?: boolean | undefined;
|
|
222
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
222
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
224
224
|
} | undefined;
|
|
225
225
|
readonly sign?: boolean | undefined;
|
|
226
226
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -250,8 +250,8 @@ export declare const asArchivistInstance: {
|
|
|
250
250
|
schema: "network.xyo.archivist.config";
|
|
251
251
|
readonly security?: {
|
|
252
252
|
readonly allowAnonymous?: boolean | undefined;
|
|
253
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
254
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
253
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
254
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
255
255
|
} | undefined;
|
|
256
256
|
readonly sign?: boolean | undefined;
|
|
257
257
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -267,8 +267,8 @@ export declare const asArchivistInstance: {
|
|
|
267
267
|
schema: "network.xyo.archivist.config";
|
|
268
268
|
readonly security?: {
|
|
269
269
|
readonly allowAnonymous?: boolean | undefined;
|
|
270
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
270
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
271
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
272
272
|
} | undefined;
|
|
273
273
|
readonly sign?: boolean | undefined;
|
|
274
274
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -299,8 +299,8 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
299
299
|
schema: "network.xyo.archivist.config";
|
|
300
300
|
readonly security?: {
|
|
301
301
|
readonly allowAnonymous?: boolean | undefined;
|
|
302
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
303
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
302
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
303
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
304
304
|
} | undefined;
|
|
305
305
|
readonly sign?: boolean | undefined;
|
|
306
306
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -316,8 +316,8 @@ export declare const withArchivistModule: <R>(module: any, closure: (module: Arc
|
|
|
316
316
|
schema: "network.xyo.archivist.config";
|
|
317
317
|
readonly security?: {
|
|
318
318
|
readonly allowAnonymous?: boolean | undefined;
|
|
319
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
320
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
319
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
320
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
321
321
|
} | undefined;
|
|
322
322
|
readonly sign?: boolean | undefined;
|
|
323
323
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -345,8 +345,8 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
345
345
|
schema: "network.xyo.archivist.config";
|
|
346
346
|
readonly security?: {
|
|
347
347
|
readonly allowAnonymous?: boolean | undefined;
|
|
348
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
349
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
348
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
349
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
350
350
|
} | undefined;
|
|
351
351
|
readonly sign?: boolean | undefined;
|
|
352
352
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -362,8 +362,8 @@ export declare const withArchivistInstance: <R>(module: any, closure: (module: A
|
|
|
362
362
|
schema: "network.xyo.archivist.config";
|
|
363
363
|
readonly security?: {
|
|
364
364
|
readonly allowAnonymous?: boolean | undefined;
|
|
365
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
366
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
365
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
366
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
367
367
|
} | undefined;
|
|
368
368
|
readonly sign?: boolean | undefined;
|
|
369
369
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
import { Hash } from '@xylabs/hex';
|
|
1
2
|
import { Promisable, PromisableArray } from '@xylabs/promise';
|
|
2
3
|
import { AnyConfigSchema, Module, ModuleEventData, ModuleParams, ModuleQueryFunctions } from '@xyo-network/module-model';
|
|
3
4
|
import { Payload, WithMeta } from '@xyo-network/payload-model';
|
|
4
5
|
import { ArchivistConfig } from './Config';
|
|
5
6
|
import { ClearedEventData, DeletedEventData, InsertedEventData } from './EventModels';
|
|
7
|
+
export interface NextOptions<TId = string> {
|
|
8
|
+
direction?: 'asc' | 'desc';
|
|
9
|
+
limit?: number;
|
|
10
|
+
previous?: TId;
|
|
11
|
+
}
|
|
6
12
|
export interface ReadArchivist<TReadResponse, TId = string> {
|
|
7
13
|
all?(): PromisableArray<TReadResponse>;
|
|
8
14
|
get(ids: TId[]): PromisableArray<TReadResponse>;
|
|
15
|
+
next?(options?: NextOptions<TId>): PromisableArray<TReadResponse>;
|
|
9
16
|
}
|
|
10
17
|
export interface WriteArchivist<TReadResponse, TWriteResponse = TReadResponse, TWrite = TReadResponse, TId = string> {
|
|
11
18
|
clear?(): Promisable<void>;
|
|
@@ -15,11 +22,13 @@ export interface WriteArchivist<TReadResponse, TWriteResponse = TReadResponse, T
|
|
|
15
22
|
export interface StashArchivist<TWriteResponse> {
|
|
16
23
|
commit?(): PromisableArray<TWriteResponse>;
|
|
17
24
|
}
|
|
18
|
-
export interface
|
|
25
|
+
export interface ArchivistNextOptions extends NextOptions<Hash> {
|
|
26
|
+
}
|
|
27
|
+
export interface Archivist<TReadResponse extends Payload = Payload, TWriteResponse extends Payload = Payload, TWrite extends Payload = TReadResponse & Payload, TId = Hash> extends ReadArchivist<WithMeta<TReadResponse>, TId>, WriteArchivist<WithMeta<TReadResponse>, WithMeta<TWriteResponse>, TWrite, TId>, StashArchivist<WithMeta<TWriteResponse>> {
|
|
19
28
|
}
|
|
20
29
|
export interface ArchivistModuleEventData extends InsertedEventData, DeletedEventData, ClearedEventData, ModuleEventData {
|
|
21
30
|
}
|
|
22
|
-
export interface ArchivistQueryFunctions<TReadResponse extends Payload = Payload, TWriteResponse extends Payload = Payload, TWrite extends Payload = TReadResponse & Payload, TId =
|
|
31
|
+
export interface ArchivistQueryFunctions<TReadResponse extends Payload = Payload, TWriteResponse extends Payload = Payload, TWrite extends Payload = TReadResponse & Payload, TId = Hash> extends Archivist<TReadResponse, TWriteResponse, TWrite, TId>, ModuleQueryFunctions {
|
|
23
32
|
}
|
|
24
33
|
export interface ArchivistModule<TParams extends ModuleParams<AnyConfigSchema<ArchivistConfig>> = ModuleParams<AnyConfigSchema<ArchivistConfig>>, TEventData extends ArchivistModuleEventData = ArchivistModuleEventData> extends Module<TParams, TEventData> {
|
|
25
34
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Archivist.d.ts","sourceRoot":"","sources":["../../src/Archivist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AACxH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAC1C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAErF,MAAM,WAAW,aAAa,CAAC,aAAa,EAAE,GAAG,GAAG,MAAM;IACxD,GAAG,CAAC,IAAI,eAAe,CAAC,aAAa,CAAC,CAAA;IACtC,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,eAAe,CAAC,aAAa,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"Archivist.d.ts","sourceRoot":"","sources":["../../src/Archivist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AACxH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAC1C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAErF,MAAM,WAAW,WAAW,CAAC,GAAG,GAAG,MAAM;IACvC,SAAS,CAAC,EAAE,KAAK,GAAG,MAAM,CAAA;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,GAAG,CAAA;CACf;AAED,MAAM,WAAW,aAAa,CAAC,aAAa,EAAE,GAAG,GAAG,MAAM;IACxD,GAAG,CAAC,IAAI,eAAe,CAAC,aAAa,CAAC,CAAA;IACtC,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,eAAe,CAAC,aAAa,CAAC,CAAA;IAC/C,IAAI,CAAC,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,aAAa,CAAC,CAAA;CAClE;AAED,MAAM,WAAW,cAAc,CAAC,aAAa,EAAE,cAAc,GAAG,aAAa,EAAE,MAAM,GAAG,aAAa,EAAE,GAAG,GAAG,MAAM;IACjH,KAAK,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,CAAA;IAC1B,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,eAAe,CAAC,GAAG,CAAC,CAAA;IACzC,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,eAAe,CAAC,cAAc,CAAC,CAAA;CACxD;AAED,MAAM,WAAW,cAAc,CAAC,cAAc;IAC5C,MAAM,CAAC,IAAI,eAAe,CAAC,cAAc,CAAC,CAAA;CAC3C;AAED,MAAM,WAAW,oBAAqB,SAAQ,WAAW,CAAC,IAAI,CAAC;CAAG;AAElE,MAAM,WAAW,SAAS,CACxB,aAAa,SAAS,OAAO,GAAG,OAAO,EACvC,cAAc,SAAS,OAAO,GAAG,OAAO,EACxC,MAAM,SAAS,OAAO,GAAG,aAAa,GAAG,OAAO,EAChD,GAAG,GAAG,IAAI,CACV,SAAQ,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,GAAG,CAAC,EACjD,cAAc,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAC9E,cAAc,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;CAAG;AAE/C,MAAM,WAAW,wBAAyB,SAAQ,iBAAiB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,eAAe;CAAG;AAE3H,MAAM,WAAW,uBAAuB,CACtC,aAAa,SAAS,OAAO,GAAG,OAAO,EACvC,cAAc,SAAS,OAAO,GAAG,OAAO,EACxC,MAAM,SAAS,OAAO,GAAG,aAAa,GAAG,OAAO,EAChD,GAAG,GAAG,IAAI,CACV,SAAQ,SAAS,CAAC,aAAa,EAAE,cAAc,EAAE,MAAM,EAAE,GAAG,CAAC,EAC3D,oBAAoB;CAAG;AAE3B,MAAM,WAAW,eAAe,CAC9B,OAAO,SAAS,YAAY,CAAC,eAAe,CAAC,eAAe,CAAC,CAAC,GAAG,YAAY,CAAC,eAAe,CAAC,eAAe,CAAC,CAAC,EAC/G,UAAU,SAAS,wBAAwB,GAAG,wBAAwB,CACtE,SAAQ,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC;CAAG"}
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
import { Hash } from '@xylabs/hex';
|
|
1
2
|
import { Promisable, PromisableArray } from '@xylabs/promise';
|
|
2
3
|
import { AnyConfigSchema, Module, ModuleEventData, ModuleParams, ModuleQueryFunctions } from '@xyo-network/module-model';
|
|
3
4
|
import { Payload, WithMeta } from '@xyo-network/payload-model';
|
|
4
5
|
import { ArchivistConfig } from './Config';
|
|
5
6
|
import { ClearedEventData, DeletedEventData, InsertedEventData } from './EventModels';
|
|
7
|
+
export interface NextOptions<TId = string> {
|
|
8
|
+
direction?: 'asc' | 'desc';
|
|
9
|
+
limit?: number;
|
|
10
|
+
previous?: TId;
|
|
11
|
+
}
|
|
6
12
|
export interface ReadArchivist<TReadResponse, TId = string> {
|
|
7
13
|
all?(): PromisableArray<TReadResponse>;
|
|
8
14
|
get(ids: TId[]): PromisableArray<TReadResponse>;
|
|
15
|
+
next?(options?: NextOptions<TId>): PromisableArray<TReadResponse>;
|
|
9
16
|
}
|
|
10
17
|
export interface WriteArchivist<TReadResponse, TWriteResponse = TReadResponse, TWrite = TReadResponse, TId = string> {
|
|
11
18
|
clear?(): Promisable<void>;
|
|
@@ -15,11 +22,13 @@ export interface WriteArchivist<TReadResponse, TWriteResponse = TReadResponse, T
|
|
|
15
22
|
export interface StashArchivist<TWriteResponse> {
|
|
16
23
|
commit?(): PromisableArray<TWriteResponse>;
|
|
17
24
|
}
|
|
18
|
-
export interface
|
|
25
|
+
export interface ArchivistNextOptions extends NextOptions<Hash> {
|
|
26
|
+
}
|
|
27
|
+
export interface Archivist<TReadResponse extends Payload = Payload, TWriteResponse extends Payload = Payload, TWrite extends Payload = TReadResponse & Payload, TId = Hash> extends ReadArchivist<WithMeta<TReadResponse>, TId>, WriteArchivist<WithMeta<TReadResponse>, WithMeta<TWriteResponse>, TWrite, TId>, StashArchivist<WithMeta<TWriteResponse>> {
|
|
19
28
|
}
|
|
20
29
|
export interface ArchivistModuleEventData extends InsertedEventData, DeletedEventData, ClearedEventData, ModuleEventData {
|
|
21
30
|
}
|
|
22
|
-
export interface ArchivistQueryFunctions<TReadResponse extends Payload = Payload, TWriteResponse extends Payload = Payload, TWrite extends Payload = TReadResponse & Payload, TId =
|
|
31
|
+
export interface ArchivistQueryFunctions<TReadResponse extends Payload = Payload, TWriteResponse extends Payload = Payload, TWrite extends Payload = TReadResponse & Payload, TId = Hash> extends Archivist<TReadResponse, TWriteResponse, TWrite, TId>, ModuleQueryFunctions {
|
|
23
32
|
}
|
|
24
33
|
export interface ArchivistModule<TParams extends ModuleParams<AnyConfigSchema<ArchivistConfig>> = ModuleParams<AnyConfigSchema<ArchivistConfig>>, TEventData extends ArchivistModuleEventData = ArchivistModuleEventData> extends Module<TParams, TEventData> {
|
|
25
34
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Archivist.d.ts","sourceRoot":"","sources":["../../src/Archivist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AACxH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAC1C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAErF,MAAM,WAAW,aAAa,CAAC,aAAa,EAAE,GAAG,GAAG,MAAM;IACxD,GAAG,CAAC,IAAI,eAAe,CAAC,aAAa,CAAC,CAAA;IACtC,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,eAAe,CAAC,aAAa,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"Archivist.d.ts","sourceRoot":"","sources":["../../src/Archivist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAA;AAClC,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AACxH,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAE9D,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAC1C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAA;AAErF,MAAM,WAAW,WAAW,CAAC,GAAG,GAAG,MAAM;IACvC,SAAS,CAAC,EAAE,KAAK,GAAG,MAAM,CAAA;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,GAAG,CAAA;CACf;AAED,MAAM,WAAW,aAAa,CAAC,aAAa,EAAE,GAAG,GAAG,MAAM;IACxD,GAAG,CAAC,IAAI,eAAe,CAAC,aAAa,CAAC,CAAA;IACtC,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,eAAe,CAAC,aAAa,CAAC,CAAA;IAC/C,IAAI,CAAC,CAAC,OAAO,CAAC,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,eAAe,CAAC,aAAa,CAAC,CAAA;CAClE;AAED,MAAM,WAAW,cAAc,CAAC,aAAa,EAAE,cAAc,GAAG,aAAa,EAAE,MAAM,GAAG,aAAa,EAAE,GAAG,GAAG,MAAM;IACjH,KAAK,CAAC,IAAI,UAAU,CAAC,IAAI,CAAC,CAAA;IAC1B,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,eAAe,CAAC,GAAG,CAAC,CAAA;IACzC,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,eAAe,CAAC,cAAc,CAAC,CAAA;CACxD;AAED,MAAM,WAAW,cAAc,CAAC,cAAc;IAC5C,MAAM,CAAC,IAAI,eAAe,CAAC,cAAc,CAAC,CAAA;CAC3C;AAED,MAAM,WAAW,oBAAqB,SAAQ,WAAW,CAAC,IAAI,CAAC;CAAG;AAElE,MAAM,WAAW,SAAS,CACxB,aAAa,SAAS,OAAO,GAAG,OAAO,EACvC,cAAc,SAAS,OAAO,GAAG,OAAO,EACxC,MAAM,SAAS,OAAO,GAAG,aAAa,GAAG,OAAO,EAChD,GAAG,GAAG,IAAI,CACV,SAAQ,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,GAAG,CAAC,EACjD,cAAc,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAC9E,cAAc,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;CAAG;AAE/C,MAAM,WAAW,wBAAyB,SAAQ,iBAAiB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,eAAe;CAAG;AAE3H,MAAM,WAAW,uBAAuB,CACtC,aAAa,SAAS,OAAO,GAAG,OAAO,EACvC,cAAc,SAAS,OAAO,GAAG,OAAO,EACxC,MAAM,SAAS,OAAO,GAAG,aAAa,GAAG,OAAO,EAChD,GAAG,GAAG,IAAI,CACV,SAAQ,SAAS,CAAC,aAAa,EAAE,cAAc,EAAE,MAAM,EAAE,GAAG,CAAC,EAC3D,oBAAoB;CAAG;AAE3B,MAAM,WAAW,eAAe,CAC9B,OAAO,SAAS,YAAY,CAAC,eAAe,CAAC,eAAe,CAAC,CAAC,GAAG,YAAY,CAAC,eAAe,CAAC,eAAe,CAAC,CAAC,EAC/G,UAAU,SAAS,wBAAwB,GAAG,wBAAwB,CACtE,SAAQ,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC;CAAG"}
|