@xyo-network/bridge-pub-sub 2.92.0 → 2.92.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/AsyncQueryBus/AsyncQueryBusBase.d.cts +15 -175
- package/dist/browser/AsyncQueryBus/AsyncQueryBusBase.d.cts.map +1 -1
- package/dist/browser/AsyncQueryBus/AsyncQueryBusBase.d.mts +15 -175
- package/dist/browser/AsyncQueryBus/AsyncQueryBusBase.d.mts.map +1 -1
- package/dist/browser/AsyncQueryBus/AsyncQueryBusBase.d.ts +15 -175
- package/dist/browser/AsyncQueryBus/AsyncQueryBusBase.d.ts.map +1 -1
- package/dist/node/AsyncQueryBus/AsyncQueryBusBase.d.cts +15 -175
- package/dist/node/AsyncQueryBus/AsyncQueryBusBase.d.cts.map +1 -1
- package/dist/node/AsyncQueryBus/AsyncQueryBusBase.d.mts +15 -175
- package/dist/node/AsyncQueryBus/AsyncQueryBusBase.d.mts.map +1 -1
- package/dist/node/AsyncQueryBus/AsyncQueryBusBase.d.ts +15 -175
- package/dist/node/AsyncQueryBus/AsyncQueryBusBase.d.ts.map +1 -1
- package/package.json +27 -27
|
@@ -14,40 +14,8 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
14
14
|
get pollFrequencyConfig(): number;
|
|
15
15
|
get resolver(): import("@xyo-network/module-model").ModuleResolver<import("@xyo-network/module-model").ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
16
16
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
17
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
18
|
-
readonly archivist?: string | undefined;
|
|
19
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
20
|
-
readonly name?: string | undefined;
|
|
21
|
-
readonly paging?: Record<string, {
|
|
22
|
-
size?: number | undefined;
|
|
23
|
-
}> | undefined;
|
|
24
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
17
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
25
18
|
schema: "network.xyo.module.config";
|
|
26
|
-
readonly security?: {
|
|
27
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
28
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
29
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
30
|
-
} | undefined;
|
|
31
|
-
readonly sign?: boolean | undefined;
|
|
32
|
-
readonly storeQueries?: boolean | undefined;
|
|
33
|
-
readonly timestamp?: boolean | undefined;
|
|
34
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
35
|
-
readonly archivist?: string | undefined;
|
|
36
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
37
|
-
readonly name?: string | undefined;
|
|
38
|
-
readonly paging?: Record<string, {
|
|
39
|
-
size?: number | undefined;
|
|
40
|
-
}> | undefined;
|
|
41
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
42
|
-
schema: "network.xyo.module.config";
|
|
43
|
-
readonly security?: {
|
|
44
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
45
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
46
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
47
|
-
} | undefined;
|
|
48
|
-
readonly sign?: boolean | undefined;
|
|
49
|
-
readonly storeQueries?: boolean | undefined;
|
|
50
|
-
readonly timestamp?: boolean | undefined;
|
|
51
19
|
}, "schema"> & {
|
|
52
20
|
schema: string;
|
|
53
21
|
};
|
|
@@ -60,45 +28,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
60
28
|
expose(address: Address, validate?: boolean): void;
|
|
61
29
|
queriesArchivist(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
62
30
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
63
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
64
|
-
readonly archivist?: string | undefined;
|
|
65
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
66
|
-
readonly name?: string | undefined;
|
|
67
|
-
readonly paging?: Record<string, {
|
|
68
|
-
size?: number | undefined;
|
|
69
|
-
}> | undefined;
|
|
70
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
71
|
-
schema: "network.xyo.archivist.config";
|
|
72
|
-
readonly security?: {
|
|
73
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
74
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
75
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
76
|
-
} | undefined;
|
|
77
|
-
readonly sign?: boolean | undefined;
|
|
78
|
-
readonly storeQueries?: boolean | undefined;
|
|
79
|
-
readonly timestamp?: boolean | undefined;
|
|
80
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
81
|
-
readonly archivist?: string | undefined;
|
|
82
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
83
|
-
readonly name?: string | undefined;
|
|
84
|
-
readonly paging?: Record<string, {
|
|
85
|
-
size?: number | undefined;
|
|
86
|
-
}> | undefined;
|
|
87
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
88
|
-
schema: "network.xyo.archivist.config";
|
|
89
|
-
readonly security?: {
|
|
90
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
91
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
92
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
93
|
-
} | undefined;
|
|
94
|
-
readonly sign?: boolean | undefined;
|
|
95
|
-
readonly storeQueries?: boolean | undefined;
|
|
96
|
-
readonly timestamp?: boolean | undefined;
|
|
97
|
-
} & {
|
|
31
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
98
32
|
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
99
33
|
requireAllParents?: boolean | undefined;
|
|
100
34
|
schema: "network.xyo.archivist.config";
|
|
101
35
|
storeParentReads?: boolean | undefined;
|
|
36
|
+
}, "schema"> & {
|
|
37
|
+
schema: "network.xyo.archivist.config";
|
|
102
38
|
}, "schema"> & {
|
|
103
39
|
schema: string;
|
|
104
40
|
};
|
|
@@ -108,45 +44,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
108
44
|
} & object>>;
|
|
109
45
|
queriesDiviner(): Promise<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
110
46
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
111
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
112
|
-
readonly archivist?: string | undefined;
|
|
113
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
114
|
-
readonly name?: string | undefined;
|
|
115
|
-
readonly paging?: Record<string, {
|
|
116
|
-
size?: number | undefined;
|
|
117
|
-
}> | undefined;
|
|
118
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
119
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
120
|
-
readonly security?: {
|
|
121
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
129
|
-
readonly archivist?: string | undefined;
|
|
130
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
131
|
-
readonly name?: string | undefined;
|
|
132
|
-
readonly paging?: Record<string, {
|
|
133
|
-
size?: number | undefined;
|
|
134
|
-
}> | undefined;
|
|
135
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
136
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly sign?: boolean | undefined;
|
|
143
|
-
readonly storeQueries?: boolean | undefined;
|
|
144
|
-
readonly timestamp?: boolean | undefined;
|
|
145
|
-
} & {
|
|
47
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
146
48
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
147
49
|
} & {
|
|
148
50
|
schema: string;
|
|
149
|
-
} & {
|
|
51
|
+
} & object & {
|
|
52
|
+
schema: "network.xyo.diviner.boundwitness.config";
|
|
53
|
+
}, "schema"> & {
|
|
150
54
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
151
55
|
}, "schema"> & {
|
|
152
56
|
schema: string;
|
|
@@ -165,45 +69,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
165
69
|
}>>;
|
|
166
70
|
responsesArchivist(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
167
71
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
168
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
169
|
-
readonly archivist?: string | undefined;
|
|
170
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
171
|
-
readonly name?: string | undefined;
|
|
172
|
-
readonly paging?: Record<string, {
|
|
173
|
-
size?: number | undefined;
|
|
174
|
-
}> | undefined;
|
|
175
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
176
|
-
schema: "network.xyo.archivist.config";
|
|
177
|
-
readonly security?: {
|
|
178
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
|
-
} | undefined;
|
|
182
|
-
readonly sign?: boolean | undefined;
|
|
183
|
-
readonly storeQueries?: boolean | undefined;
|
|
184
|
-
readonly timestamp?: boolean | undefined;
|
|
185
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
186
|
-
readonly archivist?: string | undefined;
|
|
187
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
188
|
-
readonly name?: string | undefined;
|
|
189
|
-
readonly paging?: Record<string, {
|
|
190
|
-
size?: number | undefined;
|
|
191
|
-
}> | undefined;
|
|
192
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
|
-
schema: "network.xyo.archivist.config";
|
|
194
|
-
readonly security?: {
|
|
195
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
|
-
} | undefined;
|
|
199
|
-
readonly sign?: boolean | undefined;
|
|
200
|
-
readonly storeQueries?: boolean | undefined;
|
|
201
|
-
readonly timestamp?: boolean | undefined;
|
|
202
|
-
} & {
|
|
72
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
203
73
|
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
204
74
|
requireAllParents?: boolean | undefined;
|
|
205
75
|
schema: "network.xyo.archivist.config";
|
|
206
76
|
storeParentReads?: boolean | undefined;
|
|
77
|
+
}, "schema"> & {
|
|
78
|
+
schema: "network.xyo.archivist.config";
|
|
207
79
|
}, "schema"> & {
|
|
208
80
|
schema: string;
|
|
209
81
|
};
|
|
@@ -213,45 +85,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
213
85
|
} & object>>;
|
|
214
86
|
responsesDiviner(): Promise<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
215
87
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
216
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
217
|
-
readonly archivist?: string | undefined;
|
|
218
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
219
|
-
readonly name?: string | undefined;
|
|
220
|
-
readonly paging?: Record<string, {
|
|
221
|
-
size?: number | undefined;
|
|
222
|
-
}> | undefined;
|
|
223
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
224
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
225
|
-
readonly security?: {
|
|
226
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
227
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
228
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
229
|
-
} | undefined;
|
|
230
|
-
readonly sign?: boolean | undefined;
|
|
231
|
-
readonly storeQueries?: boolean | undefined;
|
|
232
|
-
readonly timestamp?: boolean | undefined;
|
|
233
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
234
|
-
readonly archivist?: string | undefined;
|
|
235
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
236
|
-
readonly name?: string | undefined;
|
|
237
|
-
readonly paging?: Record<string, {
|
|
238
|
-
size?: number | undefined;
|
|
239
|
-
}> | undefined;
|
|
240
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
241
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
242
|
-
readonly security?: {
|
|
243
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
244
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
245
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
246
|
-
} | undefined;
|
|
247
|
-
readonly sign?: boolean | undefined;
|
|
248
|
-
readonly storeQueries?: boolean | undefined;
|
|
249
|
-
readonly timestamp?: boolean | undefined;
|
|
250
|
-
} & {
|
|
88
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
251
89
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
252
90
|
} & {
|
|
253
91
|
schema: string;
|
|
254
|
-
} & {
|
|
92
|
+
} & object & {
|
|
93
|
+
schema: "network.xyo.diviner.boundwitness.config";
|
|
94
|
+
}, "schema"> & {
|
|
255
95
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
256
96
|
}, "schema"> & {
|
|
257
97
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AsyncQueryBusBase.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusBase.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAIrC,OAAO,EAAqB,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAE7C,qBAAa,iBAAiB,CAAC,OAAO,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,IAAI,CAAC,OAAO,CAAC;IAC7G,SAAS,CAAC,iBAAiB,yBAAqB;IAChD,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAChD,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,CAAK;IAC5D,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAK;gBAE5C,MAAM,EAAE,OAAO;IAI3B,IAAI,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,CAE9B;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,IAAI,QAAQ
|
|
1
|
+
{"version":3,"file":"AsyncQueryBusBase.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusBase.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAIrC,OAAO,EAAqB,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAE7C,qBAAa,iBAAiB,CAAC,OAAO,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,IAAI,CAAC,OAAO,CAAC;IAC7G,SAAS,CAAC,iBAAiB,yBAAqB;IAChD,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAChD,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,CAAK;IAC5D,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAK;gBAE5C,MAAM,EAAE,OAAO;IAI3B,IAAI,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,CAE9B;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,IAAI,QAAQ;;;;;;;;qEAEX;IAED;;OAEG;IACH,SAAS,KAAK,SAAS,IAAI,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAInD;IAED,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,UAAO;IAKlC,gBAAgB;;;;;;;;;;;;;;;;IAOhB,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;IAOd,kBAAkB;;;;;;;;;;;;;;;;IAOlB,gBAAgB;;;;;;;;;;;;;;;;;;;;;IAOtB,QAAQ,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,UAAO;IAK1C;;;;;;;OAOG;cACa,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM;IAQ/D;;;OAGG;cACa,aAAa,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC;CAajE"}
|
|
@@ -14,40 +14,8 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
14
14
|
get pollFrequencyConfig(): number;
|
|
15
15
|
get resolver(): import("@xyo-network/module-model").ModuleResolver<import("@xyo-network/module-model").ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
16
16
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
17
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
18
|
-
readonly archivist?: string | undefined;
|
|
19
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
20
|
-
readonly name?: string | undefined;
|
|
21
|
-
readonly paging?: Record<string, {
|
|
22
|
-
size?: number | undefined;
|
|
23
|
-
}> | undefined;
|
|
24
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
17
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
25
18
|
schema: "network.xyo.module.config";
|
|
26
|
-
readonly security?: {
|
|
27
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
28
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
29
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
30
|
-
} | undefined;
|
|
31
|
-
readonly sign?: boolean | undefined;
|
|
32
|
-
readonly storeQueries?: boolean | undefined;
|
|
33
|
-
readonly timestamp?: boolean | undefined;
|
|
34
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
35
|
-
readonly archivist?: string | undefined;
|
|
36
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
37
|
-
readonly name?: string | undefined;
|
|
38
|
-
readonly paging?: Record<string, {
|
|
39
|
-
size?: number | undefined;
|
|
40
|
-
}> | undefined;
|
|
41
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
42
|
-
schema: "network.xyo.module.config";
|
|
43
|
-
readonly security?: {
|
|
44
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
45
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
46
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
47
|
-
} | undefined;
|
|
48
|
-
readonly sign?: boolean | undefined;
|
|
49
|
-
readonly storeQueries?: boolean | undefined;
|
|
50
|
-
readonly timestamp?: boolean | undefined;
|
|
51
19
|
}, "schema"> & {
|
|
52
20
|
schema: string;
|
|
53
21
|
};
|
|
@@ -60,45 +28,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
60
28
|
expose(address: Address, validate?: boolean): void;
|
|
61
29
|
queriesArchivist(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
62
30
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
63
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
64
|
-
readonly archivist?: string | undefined;
|
|
65
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
66
|
-
readonly name?: string | undefined;
|
|
67
|
-
readonly paging?: Record<string, {
|
|
68
|
-
size?: number | undefined;
|
|
69
|
-
}> | undefined;
|
|
70
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
71
|
-
schema: "network.xyo.archivist.config";
|
|
72
|
-
readonly security?: {
|
|
73
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
74
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
75
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
76
|
-
} | undefined;
|
|
77
|
-
readonly sign?: boolean | undefined;
|
|
78
|
-
readonly storeQueries?: boolean | undefined;
|
|
79
|
-
readonly timestamp?: boolean | undefined;
|
|
80
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
81
|
-
readonly archivist?: string | undefined;
|
|
82
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
83
|
-
readonly name?: string | undefined;
|
|
84
|
-
readonly paging?: Record<string, {
|
|
85
|
-
size?: number | undefined;
|
|
86
|
-
}> | undefined;
|
|
87
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
88
|
-
schema: "network.xyo.archivist.config";
|
|
89
|
-
readonly security?: {
|
|
90
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
91
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
92
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
93
|
-
} | undefined;
|
|
94
|
-
readonly sign?: boolean | undefined;
|
|
95
|
-
readonly storeQueries?: boolean | undefined;
|
|
96
|
-
readonly timestamp?: boolean | undefined;
|
|
97
|
-
} & {
|
|
31
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
98
32
|
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
99
33
|
requireAllParents?: boolean | undefined;
|
|
100
34
|
schema: "network.xyo.archivist.config";
|
|
101
35
|
storeParentReads?: boolean | undefined;
|
|
36
|
+
}, "schema"> & {
|
|
37
|
+
schema: "network.xyo.archivist.config";
|
|
102
38
|
}, "schema"> & {
|
|
103
39
|
schema: string;
|
|
104
40
|
};
|
|
@@ -108,45 +44,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
108
44
|
} & object>>;
|
|
109
45
|
queriesDiviner(): Promise<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
110
46
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
111
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
112
|
-
readonly archivist?: string | undefined;
|
|
113
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
114
|
-
readonly name?: string | undefined;
|
|
115
|
-
readonly paging?: Record<string, {
|
|
116
|
-
size?: number | undefined;
|
|
117
|
-
}> | undefined;
|
|
118
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
119
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
120
|
-
readonly security?: {
|
|
121
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
129
|
-
readonly archivist?: string | undefined;
|
|
130
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
131
|
-
readonly name?: string | undefined;
|
|
132
|
-
readonly paging?: Record<string, {
|
|
133
|
-
size?: number | undefined;
|
|
134
|
-
}> | undefined;
|
|
135
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
136
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly sign?: boolean | undefined;
|
|
143
|
-
readonly storeQueries?: boolean | undefined;
|
|
144
|
-
readonly timestamp?: boolean | undefined;
|
|
145
|
-
} & {
|
|
47
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
146
48
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
147
49
|
} & {
|
|
148
50
|
schema: string;
|
|
149
|
-
} & {
|
|
51
|
+
} & object & {
|
|
52
|
+
schema: "network.xyo.diviner.boundwitness.config";
|
|
53
|
+
}, "schema"> & {
|
|
150
54
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
151
55
|
}, "schema"> & {
|
|
152
56
|
schema: string;
|
|
@@ -165,45 +69,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
165
69
|
}>>;
|
|
166
70
|
responsesArchivist(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
167
71
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
168
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
169
|
-
readonly archivist?: string | undefined;
|
|
170
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
171
|
-
readonly name?: string | undefined;
|
|
172
|
-
readonly paging?: Record<string, {
|
|
173
|
-
size?: number | undefined;
|
|
174
|
-
}> | undefined;
|
|
175
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
176
|
-
schema: "network.xyo.archivist.config";
|
|
177
|
-
readonly security?: {
|
|
178
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
|
-
} | undefined;
|
|
182
|
-
readonly sign?: boolean | undefined;
|
|
183
|
-
readonly storeQueries?: boolean | undefined;
|
|
184
|
-
readonly timestamp?: boolean | undefined;
|
|
185
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
186
|
-
readonly archivist?: string | undefined;
|
|
187
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
188
|
-
readonly name?: string | undefined;
|
|
189
|
-
readonly paging?: Record<string, {
|
|
190
|
-
size?: number | undefined;
|
|
191
|
-
}> | undefined;
|
|
192
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
|
-
schema: "network.xyo.archivist.config";
|
|
194
|
-
readonly security?: {
|
|
195
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
|
-
} | undefined;
|
|
199
|
-
readonly sign?: boolean | undefined;
|
|
200
|
-
readonly storeQueries?: boolean | undefined;
|
|
201
|
-
readonly timestamp?: boolean | undefined;
|
|
202
|
-
} & {
|
|
72
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
203
73
|
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
204
74
|
requireAllParents?: boolean | undefined;
|
|
205
75
|
schema: "network.xyo.archivist.config";
|
|
206
76
|
storeParentReads?: boolean | undefined;
|
|
77
|
+
}, "schema"> & {
|
|
78
|
+
schema: "network.xyo.archivist.config";
|
|
207
79
|
}, "schema"> & {
|
|
208
80
|
schema: string;
|
|
209
81
|
};
|
|
@@ -213,45 +85,13 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
213
85
|
} & object>>;
|
|
214
86
|
responsesDiviner(): Promise<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
215
87
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
216
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
217
|
-
readonly archivist?: string | undefined;
|
|
218
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
219
|
-
readonly name?: string | undefined;
|
|
220
|
-
readonly paging?: Record<string, {
|
|
221
|
-
size?: number | undefined;
|
|
222
|
-
}> | undefined;
|
|
223
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
224
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
225
|
-
readonly security?: {
|
|
226
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
227
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
228
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
229
|
-
} | undefined;
|
|
230
|
-
readonly sign?: boolean | undefined;
|
|
231
|
-
readonly storeQueries?: boolean | undefined;
|
|
232
|
-
readonly timestamp?: boolean | undefined;
|
|
233
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
234
|
-
readonly archivist?: string | undefined;
|
|
235
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
236
|
-
readonly name?: string | undefined;
|
|
237
|
-
readonly paging?: Record<string, {
|
|
238
|
-
size?: number | undefined;
|
|
239
|
-
}> | undefined;
|
|
240
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
241
|
-
schema: "network.xyo.diviner.boundwitness.config";
|
|
242
|
-
readonly security?: {
|
|
243
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
244
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
245
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
246
|
-
} | undefined;
|
|
247
|
-
readonly sign?: boolean | undefined;
|
|
248
|
-
readonly storeQueries?: boolean | undefined;
|
|
249
|
-
readonly timestamp?: boolean | undefined;
|
|
250
|
-
} & {
|
|
88
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
251
89
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
252
90
|
} & {
|
|
253
91
|
schema: string;
|
|
254
|
-
} & {
|
|
92
|
+
} & object & {
|
|
93
|
+
schema: "network.xyo.diviner.boundwitness.config";
|
|
94
|
+
}, "schema"> & {
|
|
255
95
|
schema: "network.xyo.diviner.boundwitness.config";
|
|
256
96
|
}, "schema"> & {
|
|
257
97
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AsyncQueryBusBase.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusBase.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAIrC,OAAO,EAAqB,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAE7C,qBAAa,iBAAiB,CAAC,OAAO,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,IAAI,CAAC,OAAO,CAAC;IAC7G,SAAS,CAAC,iBAAiB,yBAAqB;IAChD,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAChD,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,CAAK;IAC5D,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAK;gBAE5C,MAAM,EAAE,OAAO;IAI3B,IAAI,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,CAE9B;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,IAAI,QAAQ
|
|
1
|
+
{"version":3,"file":"AsyncQueryBusBase.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusBase.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AAIrC,OAAO,EAAqB,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAE7C,qBAAa,iBAAiB,CAAC,OAAO,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,IAAI,CAAC,OAAO,CAAC;IAC7G,SAAS,CAAC,iBAAiB,yBAAqB;IAChD,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAChD,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,CAAK;IAC5D,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAK;gBAE5C,MAAM,EAAE,OAAO;IAI3B,IAAI,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,CAE9B;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,IAAI,QAAQ;;;;;;;;qEAEX;IAED;;OAEG;IACH,SAAS,KAAK,SAAS,IAAI,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC,CAInD;IAED,MAAM,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,UAAO;IAKlC,gBAAgB;;;;;;;;;;;;;;;;IAOhB,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;IAOd,kBAAkB;;;;;;;;;;;;;;;;IAOlB,gBAAgB;;;;;;;;;;;;;;;;;;;;;IAOtB,QAAQ,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,UAAO;IAK1C;;;;;;;OAOG;cACa,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM;IAQ/D;;;OAGG;cACa,aAAa,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC;CAajE"}
|