@xyo-network/bridge-pub-sub 3.6.0-rc.5 → 3.6.0-rc.6
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/neutral/AsyncQueryBus/AsyncQueryBusBase.d.ts +264 -64
- package/dist/neutral/AsyncQueryBus/AsyncQueryBusBase.d.ts.map +1 -1
- package/dist/neutral/AsyncQueryBus/AsyncQueryBusHost.d.ts +74 -10
- package/dist/neutral/AsyncQueryBus/AsyncQueryBusHost.d.ts.map +1 -1
- package/dist/neutral/PubSubBridgeModuleResolver.d.ts +37 -5
- package/dist/neutral/PubSubBridgeModuleResolver.d.ts.map +1 -1
- package/package.json +30 -30
|
@@ -3,7 +3,7 @@ import { Base } from '@xylabs/object';
|
|
|
3
3
|
import type { ArchivistInstance } from '@xyo-network/archivist-model';
|
|
4
4
|
import type { BoundWitness } from '@xyo-network/boundwitness-model';
|
|
5
5
|
import type { DivinerInstance } from '@xyo-network/diviner-model';
|
|
6
|
-
import type { ModuleConfig, ModuleInstance } from '@xyo-network/module-model';
|
|
6
|
+
import type { ModuleConfig, ModuleIdentifier, ModuleInstance } from '@xyo-network/module-model';
|
|
7
7
|
import { LRUCache } from 'lru-cache';
|
|
8
8
|
import type { AsyncQueryBusParams } from './model/index.ts';
|
|
9
9
|
export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = AsyncQueryBusParams> extends Base<TParams> {
|
|
@@ -25,11 +25,43 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
25
25
|
addToResolvers?: boolean;
|
|
26
26
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
27
27
|
allowNameResolution?: boolean;
|
|
28
|
-
config: import("@xyo-network/payload-model").
|
|
29
|
-
schema: "network.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
29
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
30
|
+
readonly archiving?: {
|
|
31
|
+
readonly archivists?: string[] | undefined;
|
|
32
|
+
readonly queries?: string[] | undefined;
|
|
33
|
+
} | undefined;
|
|
34
|
+
readonly allowedQueries?: string[] | undefined;
|
|
35
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
36
|
+
readonly certify?: boolean | undefined;
|
|
37
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
38
|
+
readonly labels?: {
|
|
39
|
+
[x: string]: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
42
|
+
readonly paging?: {
|
|
43
|
+
[x: string]: {
|
|
44
|
+
size?: number | undefined;
|
|
45
|
+
};
|
|
46
|
+
} | undefined;
|
|
47
|
+
readonly retry?: {
|
|
48
|
+
backoff?: number | undefined;
|
|
49
|
+
interval?: number | undefined;
|
|
50
|
+
retries?: number | undefined;
|
|
51
|
+
} | undefined;
|
|
52
|
+
readonly security?: {
|
|
53
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
54
|
+
readonly allowed?: {
|
|
55
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
56
|
+
} | undefined;
|
|
57
|
+
readonly disallowed?: {
|
|
58
|
+
[x: string]: Lowercase<string>[];
|
|
59
|
+
} | undefined;
|
|
60
|
+
} | undefined;
|
|
61
|
+
readonly sign?: boolean | undefined;
|
|
62
|
+
readonly storeQueries?: boolean | undefined;
|
|
63
|
+
readonly timestamp?: boolean | undefined;
|
|
64
|
+
}>;
|
|
33
65
|
ephemeralQueryAccountEnabled?: boolean;
|
|
34
66
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
35
67
|
}, import("@xyo-network/module-model").ModuleEventData<object>>;
|
|
@@ -42,89 +74,257 @@ export declare class AsyncQueryBusBase<TParams extends AsyncQueryBusParams = Asy
|
|
|
42
74
|
addToResolvers?: boolean;
|
|
43
75
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
44
76
|
allowNameResolution?: boolean;
|
|
45
|
-
config: import("@xyo-network/payload-model").
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
77
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
78
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
79
|
+
readonly archiving?: {
|
|
80
|
+
readonly archivists?: string[] | undefined;
|
|
81
|
+
readonly queries?: string[] | undefined;
|
|
82
|
+
} | undefined;
|
|
83
|
+
readonly allowedQueries?: string[] | undefined;
|
|
84
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
85
|
+
readonly certify?: boolean | undefined;
|
|
86
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
87
|
+
readonly labels?: {
|
|
88
|
+
[x: string]: string | undefined;
|
|
89
|
+
} | undefined;
|
|
90
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
91
|
+
readonly paging?: {
|
|
92
|
+
[x: string]: {
|
|
93
|
+
size?: number | undefined;
|
|
94
|
+
};
|
|
95
|
+
} | undefined;
|
|
96
|
+
readonly retry?: {
|
|
97
|
+
backoff?: number | undefined;
|
|
98
|
+
interval?: number | undefined;
|
|
99
|
+
retries?: number | undefined;
|
|
100
|
+
} | undefined;
|
|
101
|
+
readonly security?: {
|
|
102
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
103
|
+
readonly allowed?: {
|
|
104
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
105
|
+
} | undefined;
|
|
106
|
+
readonly disallowed?: {
|
|
107
|
+
[x: string]: Lowercase<string>[];
|
|
108
|
+
} | undefined;
|
|
109
|
+
} | undefined;
|
|
110
|
+
readonly sign?: boolean | undefined;
|
|
111
|
+
readonly storeQueries?: boolean | undefined;
|
|
112
|
+
readonly timestamp?: boolean | undefined;
|
|
113
|
+
parents?: {
|
|
114
|
+
commit?: Lowercase<string>[] | undefined;
|
|
115
|
+
read?: Lowercase<string>[] | undefined;
|
|
116
|
+
write?: Lowercase<string>[] | undefined;
|
|
117
|
+
} | undefined;
|
|
118
|
+
requireAllParents?: boolean | undefined;
|
|
119
|
+
storage?: {
|
|
120
|
+
indexes?: {
|
|
121
|
+
key: {
|
|
122
|
+
[x: string]: import("@xyo-network/archivist-model").IndexDirection;
|
|
123
|
+
};
|
|
124
|
+
multiEntry?: boolean | undefined;
|
|
125
|
+
name?: string | undefined;
|
|
126
|
+
unique?: boolean | undefined;
|
|
127
|
+
}[] | undefined;
|
|
128
|
+
} | undefined;
|
|
129
|
+
storeParentReads?: boolean | undefined;
|
|
130
|
+
}>;
|
|
56
131
|
ephemeralQueryAccountEnabled?: boolean;
|
|
57
132
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
58
|
-
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, {
|
|
59
|
-
schema:
|
|
60
|
-
}
|
|
133
|
+
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
134
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
135
|
+
}>> | undefined>;
|
|
61
136
|
queriesDiviner(): Promise<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
62
137
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
63
138
|
addToResolvers?: boolean;
|
|
64
139
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
65
140
|
allowNameResolution?: boolean;
|
|
66
|
-
config: import("@xyo-network/payload-model").
|
|
67
|
-
schema: "network.
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
141
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
142
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
143
|
+
readonly archiving?: {
|
|
144
|
+
readonly archivists?: string[] | undefined;
|
|
145
|
+
readonly queries?: string[] | undefined;
|
|
146
|
+
} | undefined;
|
|
147
|
+
readonly allowedQueries?: string[] | undefined;
|
|
148
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
149
|
+
readonly certify?: boolean | undefined;
|
|
150
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
151
|
+
readonly labels?: {
|
|
152
|
+
[x: string]: string | undefined;
|
|
153
|
+
} | undefined;
|
|
154
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
155
|
+
readonly paging?: {
|
|
156
|
+
[x: string]: {
|
|
157
|
+
size?: number | undefined;
|
|
158
|
+
};
|
|
159
|
+
} | undefined;
|
|
160
|
+
readonly retry?: {
|
|
161
|
+
backoff?: number | undefined;
|
|
162
|
+
interval?: number | undefined;
|
|
163
|
+
retries?: number | undefined;
|
|
164
|
+
} | undefined;
|
|
165
|
+
readonly security?: {
|
|
166
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
167
|
+
readonly allowed?: {
|
|
168
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
169
|
+
} | undefined;
|
|
170
|
+
readonly disallowed?: {
|
|
171
|
+
[x: string]: Lowercase<string>[];
|
|
172
|
+
} | undefined;
|
|
173
|
+
} | undefined;
|
|
174
|
+
readonly sign?: boolean | undefined;
|
|
175
|
+
readonly storeQueries?: boolean | undefined;
|
|
176
|
+
readonly timestamp?: boolean | undefined;
|
|
177
|
+
}>;
|
|
77
178
|
ephemeralQueryAccountEnabled?: boolean;
|
|
78
179
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
79
|
-
}, import("@xyo-network/payload-model").
|
|
80
|
-
schema: import("@xyo-network/diviner-boundwitness-model").BoundWitnessDivinerQuerySchema;
|
|
81
|
-
} & import("@xyo-network/diviner-boundwitness-model").BoundWitnessDivinerPredicate & import("@xyo-network/payload-model").QueryFields, "schema"> & {
|
|
180
|
+
}, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
82
181
|
schema: "network.xyo.diviner.boundwitness.query";
|
|
83
|
-
|
|
182
|
+
block?: Lowercase<string> | undefined;
|
|
183
|
+
chain?: Lowercase<string> | undefined;
|
|
184
|
+
root?: Lowercase<string> | undefined;
|
|
185
|
+
addresses?: Lowercase<string>[] | undefined;
|
|
186
|
+
payload_hashes?: Lowercase<string>[] | undefined;
|
|
187
|
+
payload_schemas?: string[] | undefined;
|
|
188
|
+
previous_hashes?: import("@xyo-network/payload-model").DeepRestrictToStringKeys<Lowercase<string> | null>[] | undefined;
|
|
189
|
+
address?: Lowercase<string> | Lowercase<string>[] | undefined;
|
|
190
|
+
cursor?: Lowercase<string> | undefined;
|
|
191
|
+
hash?: Lowercase<string> | undefined;
|
|
192
|
+
limit?: number | undefined;
|
|
193
|
+
order?: import("@xyo-network/diviner-payload-model").Order | undefined;
|
|
194
|
+
destination?: string[] | undefined;
|
|
195
|
+
sourceQuery?: string | undefined;
|
|
196
|
+
budget?: number | undefined;
|
|
197
|
+
maxFrequency?: "once" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year" | undefined;
|
|
198
|
+
minBid?: number | undefined;
|
|
199
|
+
}>, import("@xyo-network/boundwitness-model").UnsignedQueryBoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData>>;
|
|
84
200
|
responsesArchivist(): Promise<ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
85
201
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
86
202
|
addToResolvers?: boolean;
|
|
87
203
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
88
204
|
allowNameResolution?: boolean;
|
|
89
|
-
config: import("@xyo-network/payload-model").
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
205
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
206
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
207
|
+
readonly archiving?: {
|
|
208
|
+
readonly archivists?: string[] | undefined;
|
|
209
|
+
readonly queries?: string[] | undefined;
|
|
210
|
+
} | undefined;
|
|
211
|
+
readonly allowedQueries?: string[] | undefined;
|
|
212
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
213
|
+
readonly certify?: boolean | undefined;
|
|
214
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
215
|
+
readonly labels?: {
|
|
216
|
+
[x: string]: string | undefined;
|
|
217
|
+
} | undefined;
|
|
218
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
219
|
+
readonly paging?: {
|
|
220
|
+
[x: string]: {
|
|
221
|
+
size?: number | undefined;
|
|
222
|
+
};
|
|
223
|
+
} | undefined;
|
|
224
|
+
readonly retry?: {
|
|
225
|
+
backoff?: number | undefined;
|
|
226
|
+
interval?: number | undefined;
|
|
227
|
+
retries?: number | undefined;
|
|
228
|
+
} | undefined;
|
|
229
|
+
readonly security?: {
|
|
230
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
231
|
+
readonly allowed?: {
|
|
232
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
233
|
+
} | undefined;
|
|
234
|
+
readonly disallowed?: {
|
|
235
|
+
[x: string]: Lowercase<string>[];
|
|
236
|
+
} | undefined;
|
|
237
|
+
} | undefined;
|
|
238
|
+
readonly sign?: boolean | undefined;
|
|
239
|
+
readonly storeQueries?: boolean | undefined;
|
|
240
|
+
readonly timestamp?: boolean | undefined;
|
|
241
|
+
parents?: {
|
|
242
|
+
commit?: Lowercase<string>[] | undefined;
|
|
243
|
+
read?: Lowercase<string>[] | undefined;
|
|
244
|
+
write?: Lowercase<string>[] | undefined;
|
|
245
|
+
} | undefined;
|
|
246
|
+
requireAllParents?: boolean | undefined;
|
|
247
|
+
storage?: {
|
|
248
|
+
indexes?: {
|
|
249
|
+
key: {
|
|
250
|
+
[x: string]: import("@xyo-network/archivist-model").IndexDirection;
|
|
251
|
+
};
|
|
252
|
+
multiEntry?: boolean | undefined;
|
|
253
|
+
name?: string | undefined;
|
|
254
|
+
unique?: boolean | undefined;
|
|
255
|
+
}[] | undefined;
|
|
256
|
+
} | undefined;
|
|
257
|
+
storeParentReads?: boolean | undefined;
|
|
258
|
+
}>;
|
|
100
259
|
ephemeralQueryAccountEnabled?: boolean;
|
|
101
260
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
102
|
-
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, {
|
|
103
|
-
schema:
|
|
104
|
-
}
|
|
261
|
+
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
262
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
263
|
+
}>> | undefined>;
|
|
105
264
|
responsesDiviner(): Promise<DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
106
265
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
107
266
|
addToResolvers?: boolean;
|
|
108
267
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
109
268
|
allowNameResolution?: boolean;
|
|
110
|
-
config: import("@xyo-network/payload-model").
|
|
111
|
-
schema: "network.
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
269
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
270
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
271
|
+
readonly archiving?: {
|
|
272
|
+
readonly archivists?: string[] | undefined;
|
|
273
|
+
readonly queries?: string[] | undefined;
|
|
274
|
+
} | undefined;
|
|
275
|
+
readonly allowedQueries?: string[] | undefined;
|
|
276
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
277
|
+
readonly certify?: boolean | undefined;
|
|
278
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
279
|
+
readonly labels?: {
|
|
280
|
+
[x: string]: string | undefined;
|
|
281
|
+
} | undefined;
|
|
282
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
283
|
+
readonly paging?: {
|
|
284
|
+
[x: string]: {
|
|
285
|
+
size?: number | undefined;
|
|
286
|
+
};
|
|
287
|
+
} | undefined;
|
|
288
|
+
readonly retry?: {
|
|
289
|
+
backoff?: number | undefined;
|
|
290
|
+
interval?: number | undefined;
|
|
291
|
+
retries?: number | undefined;
|
|
292
|
+
} | undefined;
|
|
293
|
+
readonly security?: {
|
|
294
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
295
|
+
readonly allowed?: {
|
|
296
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
297
|
+
} | undefined;
|
|
298
|
+
readonly disallowed?: {
|
|
299
|
+
[x: string]: Lowercase<string>[];
|
|
300
|
+
} | undefined;
|
|
301
|
+
} | undefined;
|
|
302
|
+
readonly sign?: boolean | undefined;
|
|
303
|
+
readonly storeQueries?: boolean | undefined;
|
|
304
|
+
readonly timestamp?: boolean | undefined;
|
|
305
|
+
}>;
|
|
121
306
|
ephemeralQueryAccountEnabled?: boolean;
|
|
122
307
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
123
|
-
}, import("@xyo-network/payload-model").
|
|
124
|
-
schema: import("@xyo-network/diviner-boundwitness-model").BoundWitnessDivinerQuerySchema;
|
|
125
|
-
} & import("@xyo-network/diviner-boundwitness-model").BoundWitnessDivinerPredicate & import("@xyo-network/payload-model").QueryFields, "schema"> & {
|
|
308
|
+
}, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
126
309
|
schema: "network.xyo.diviner.boundwitness.query";
|
|
127
|
-
|
|
310
|
+
block?: Lowercase<string> | undefined;
|
|
311
|
+
chain?: Lowercase<string> | undefined;
|
|
312
|
+
root?: Lowercase<string> | undefined;
|
|
313
|
+
addresses?: Lowercase<string>[] | undefined;
|
|
314
|
+
payload_hashes?: Lowercase<string>[] | undefined;
|
|
315
|
+
payload_schemas?: string[] | undefined;
|
|
316
|
+
previous_hashes?: import("@xyo-network/payload-model").DeepRestrictToStringKeys<Lowercase<string> | null>[] | undefined;
|
|
317
|
+
address?: Lowercase<string> | Lowercase<string>[] | undefined;
|
|
318
|
+
cursor?: Lowercase<string> | undefined;
|
|
319
|
+
hash?: Lowercase<string> | undefined;
|
|
320
|
+
limit?: number | undefined;
|
|
321
|
+
order?: import("@xyo-network/diviner-payload-model").Order | undefined;
|
|
322
|
+
destination?: string[] | undefined;
|
|
323
|
+
sourceQuery?: string | undefined;
|
|
324
|
+
budget?: number | undefined;
|
|
325
|
+
maxFrequency?: "once" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year" | undefined;
|
|
326
|
+
minBid?: number | undefined;
|
|
327
|
+
}>, BoundWitness, import("@xyo-network/diviner-model").DivinerModuleEventData>>;
|
|
128
328
|
/**
|
|
129
329
|
* Commit the internal state of the process. This is similar
|
|
130
330
|
* to a transaction completion in a database and should only be called
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AsyncQueryBusBase.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusBase.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA;AAE/C,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AACrC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAErE,OAAO,KAAK,EAAE,YAAY,EAAqB,MAAM,iCAAiC,CAAA;AAEtF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAEjE,OAAO,KAAK,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"AsyncQueryBusBase.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusBase.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA;AAE/C,OAAO,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAA;AACrC,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAA;AAErE,OAAO,KAAK,EAAE,YAAY,EAAqB,MAAM,iCAAiC,CAAA;AAEtF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAEjE,OAAO,KAAK,EACV,YAAY,EAAE,gBAAgB,EAAE,cAAc,EAC/C,MAAM,2BAA2B,CAAA;AAIlC,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAA;AAM3D,qBAAa,iBAAiB,CAAC,OAAO,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,IAAI,CAAC,OAAO,CAAC;IAC7G,SAAS,CAAC,UAAU,CAAC,EAAE,QAAQ,CAAC,OAAO,EAAE,GAAG,CAAC,CAAA;IAC7C,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,YAAY,CAAC,CAAK;IAC5D,SAAS,CAAC,cAAc,EAAE,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC,CAAK;IAExD,OAAO,CAAC,mBAAmB,CAAuC;IAClE,OAAO,CAAC,iBAAiB,CAAC,CAAmB;IAC7C,OAAO,CAAC,eAAe,CAAC,CAAgG;IACxH,OAAO,CAAC,eAAe,CAAW;IAClC,OAAO,CAAC,aAAa,CAAc;IACnC,OAAO,CAAC,mBAAmB,CAAC,CAAmB;IAC/C,OAAO,CAAC,iBAAiB,CAAC,CAA2F;gBAEzG,MAAM,EAAE,OAAO;IAI3B,IAAI,MAAM,IAAI,OAAO,CAAC,QAAQ,CAAC,CAE9B;IAED,IAAI,aAAa,IAAI,MAAM,CAM1B;IAED,IAAI,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAEb;IAED;;OAEG;IACH,SAAS,KAAK,SAAS,IAAI,QAAQ,CAAC,OAAO,EAAE,GAAG,CAAC,CAIhD;IAEK,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYhB,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYd,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYlB,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYtB;;;;;;;OAOG;cACa,WAAW,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,GAAG;IAQ5D;;;OAGG;cACa,aAAa,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC;YAY/C,OAAO;CAiBtB"}
|
|
@@ -25,11 +25,43 @@ export declare class AsyncQueryBusHost<TParams extends AsyncQueryBusHostParams =
|
|
|
25
25
|
addToResolvers?: boolean;
|
|
26
26
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
27
27
|
allowNameResolution?: boolean;
|
|
28
|
-
config: import("@xyo-network/payload-model").
|
|
29
|
-
schema:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
29
|
+
schema: Schema;
|
|
30
|
+
readonly archiving?: {
|
|
31
|
+
readonly archivists?: string[] | undefined;
|
|
32
|
+
readonly queries?: string[] | undefined;
|
|
33
|
+
} | undefined;
|
|
34
|
+
readonly allowedQueries?: string[] | undefined;
|
|
35
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
36
|
+
readonly certify?: boolean | undefined;
|
|
37
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
38
|
+
readonly labels?: {
|
|
39
|
+
[x: string]: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
42
|
+
readonly paging?: {
|
|
43
|
+
[x: string]: {
|
|
44
|
+
size?: number | undefined;
|
|
45
|
+
};
|
|
46
|
+
} | undefined;
|
|
47
|
+
readonly retry?: {
|
|
48
|
+
backoff?: number | undefined;
|
|
49
|
+
interval?: number | undefined;
|
|
50
|
+
retries?: number | undefined;
|
|
51
|
+
} | undefined;
|
|
52
|
+
readonly security?: {
|
|
53
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
54
|
+
readonly allowed?: {
|
|
55
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
56
|
+
} | undefined;
|
|
57
|
+
readonly disallowed?: {
|
|
58
|
+
[x: string]: Lowercase<string>[];
|
|
59
|
+
} | undefined;
|
|
60
|
+
} | undefined;
|
|
61
|
+
readonly sign?: boolean | undefined;
|
|
62
|
+
readonly storeQueries?: boolean | undefined;
|
|
63
|
+
readonly timestamp?: boolean | undefined;
|
|
64
|
+
}>;
|
|
33
65
|
ephemeralQueryAccountEnabled?: boolean;
|
|
34
66
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
35
67
|
}, import("@xyo-network/module-model").ModuleEventData<object>> | undefined;
|
|
@@ -41,11 +73,43 @@ export declare class AsyncQueryBusHost<TParams extends AsyncQueryBusHostParams =
|
|
|
41
73
|
addToResolvers?: boolean;
|
|
42
74
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
43
75
|
allowNameResolution?: boolean;
|
|
44
|
-
config: import("@xyo-network/payload-model").
|
|
45
|
-
schema: "network.
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
76
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
77
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
78
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
79
|
+
readonly archiving?: {
|
|
80
|
+
readonly archivists?: string[] | undefined;
|
|
81
|
+
readonly queries?: string[] | undefined;
|
|
82
|
+
} | undefined;
|
|
83
|
+
readonly allowedQueries?: string[] | undefined;
|
|
84
|
+
readonly archivist?: string | undefined;
|
|
85
|
+
readonly certify?: boolean | undefined;
|
|
86
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
87
|
+
readonly labels?: {
|
|
88
|
+
[x: string]: string | undefined;
|
|
89
|
+
} | undefined;
|
|
90
|
+
readonly paging?: {
|
|
91
|
+
[x: string]: {
|
|
92
|
+
size?: number | undefined;
|
|
93
|
+
};
|
|
94
|
+
} | undefined;
|
|
95
|
+
readonly retry?: {
|
|
96
|
+
backoff?: number | undefined;
|
|
97
|
+
interval?: number | undefined;
|
|
98
|
+
retries?: number | undefined;
|
|
99
|
+
} | undefined;
|
|
100
|
+
readonly security?: {
|
|
101
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
102
|
+
readonly allowed?: {
|
|
103
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
104
|
+
} | undefined;
|
|
105
|
+
readonly disallowed?: {
|
|
106
|
+
[x: string]: Lowercase<string>[];
|
|
107
|
+
} | undefined;
|
|
108
|
+
} | undefined;
|
|
109
|
+
readonly sign?: boolean | undefined;
|
|
110
|
+
readonly storeQueries?: boolean | undefined;
|
|
111
|
+
readonly timestamp?: boolean | undefined;
|
|
112
|
+
}>;
|
|
49
113
|
ephemeralQueryAccountEnabled?: boolean;
|
|
50
114
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
51
115
|
}, import("@xyo-network/module-model").ModuleEventData<object>> | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AsyncQueryBusHost.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusHost.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAE1C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAA;AAKxE,OAAO,KAAK,EACV,gBAAgB,EAChB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAQlC,OAAO,EACL,KAAK,MAAM,EAAqB,KAAK,eAAe,EACrD,MAAM,4BAA4B,CAAA;AAEnC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC1D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAA;AAE/D,MAAM,WAAW,aAAa;IAC5B,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB,oBAAoB,CAAC,EAAE,OAAO,CAAA;CAC/B;AAUD,qBAAa,iBAAiB,CAAC,OAAO,SAAS,uBAAuB,GAAG,uBAAuB,CAAE,SAAQ,iBAAiB,CAAC,OAAO,CAAC;IAClI,SAAS,CAAC,iBAAiB,yBAAqB;IAChD,OAAO,CAAC,cAAc,CAAqC;IAC3D,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,cAAc,CAAC,CAAQ;IAC/B,OAAO,CAAC,OAAO,CAAC,CAAQ;gBAEZ,MAAM,EAAE,OAAO;IAI3B,IAAI,gBAAgB,2BAEnB;IAED,IAAI,iBAAiB,WASpB;IAED,IAAI,aAAa,WAShB;IAED,IAAI,yBAAyB,IAAI,MAAM,CAEtC;IAED,IAAI,OAAO,YAEV;IAED,MAAM,CAAC,GAAG,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,aAAa
|
|
1
|
+
{"version":3,"file":"AsyncQueryBusHost.d.ts","sourceRoot":"","sources":["../../../src/AsyncQueryBus/AsyncQueryBusHost.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAE1C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAA;AAKxE,OAAO,KAAK,EACV,gBAAgB,EAChB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAQlC,OAAO,EACL,KAAK,MAAM,EAAqB,KAAK,eAAe,EACrD,MAAM,4BAA4B,CAAA;AAEnC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC1D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAA;AAE/D,MAAM,WAAW,aAAa;IAC5B,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;IACzB,oBAAoB,CAAC,EAAE,OAAO,CAAA;CAC/B;AAUD,qBAAa,iBAAiB,CAAC,OAAO,SAAS,uBAAuB,GAAG,uBAAuB,CAAE,SAAQ,iBAAiB,CAAC,OAAO,CAAC;IAClI,SAAS,CAAC,iBAAiB,yBAAqB;IAChD,OAAO,CAAC,cAAc,CAAqC;IAC3D,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,cAAc,CAAC,CAAQ;IAC/B,OAAO,CAAC,OAAO,CAAC,CAAQ;gBAEZ,MAAM,EAAE,OAAO;IAI3B,IAAI,gBAAgB,2BAEnB;IAED,IAAI,iBAAiB,WASpB;IAED,IAAI,aAAa,WAShB;IAED,IAAI,yBAAyB,IAAI,MAAM,CAEtC;IAED,IAAI,OAAO,YAEV;IAED,MAAM,CAAC,GAAG,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAa7C,gBAAgB,IAAI,OAAO,CAAC,cAAc,EAAE,CAAC;IAWnD,KAAK;IAOL,IAAI;IAQE,QAAQ,CAAC,EAAE,EAAE,gBAAgB,EAAE,QAAQ,UAAO;yBAzHb,4BACjC;;mCAC0B,4BAA4B;;uBAE9D,4BAA2B;2BAAwD,4BACnE;yBAAmC,CAAC,SAAS,2BAAwB;8BAIrF,CAAC;mCACI,CAAC;gCAGK,CAAC;;mCAGM,CAAC;8BAEjB,CAAC;4BAGA,CAAC;kCACF,CAAC,SAAS,gBAAgB;2BAEd,CAAC;;;2BAKU,CAAC;;wBACO,CAAC;;;0BAGjB,CAAC;uBACjB,CAAC;wBACC,CAAC;uBAEJ,CAAA;;6BAA8E,CAAC;uCAA2C,CAAC;gCAChF,CAAC;;;mCAIvB,CAAC;;;;yBAUT,CAAC;iCAC4B,CAAC;8BAAqD,CAAC;;;8CAE9D,2BAChC;;IA6ED,SAAS,CAAC,eAAe,gBAAuB,cAAc,SAAS,eAAe,CAAC,iBAAiB,CAAC,mBAiExG;IAED;;;OAGG;IACH,SAAS,CAAC,oBAAoB,YAAmB,OAAO,iHAgCvD;IAED;;;OAGG;IACH,OAAO,CAAC,IAAI;IAqBZ;;OAEG;IACH,OAAO,CAAC,sBAAsB,CAsB7B;CACF"}
|
|
@@ -13,11 +13,43 @@ export declare class PubSubBridgeModuleResolver extends AbstractBridgeModuleReso
|
|
|
13
13
|
addToResolvers?: boolean;
|
|
14
14
|
additionalSigners?: import("@xyo-network/account").AccountInstance[];
|
|
15
15
|
allowNameResolution?: boolean;
|
|
16
|
-
config: import("@xyo-network/payload-model").
|
|
17
|
-
schema: "network.
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
17
|
+
schema: import("@xyo-network/payload-model").Schema;
|
|
18
|
+
readonly archiving?: {
|
|
19
|
+
readonly archivists?: string[] | undefined;
|
|
20
|
+
readonly queries?: string[] | undefined;
|
|
21
|
+
} | undefined;
|
|
22
|
+
readonly allowedQueries?: string[] | undefined;
|
|
23
|
+
readonly archivist?: ModuleIdentifier | undefined;
|
|
24
|
+
readonly certify?: boolean | undefined;
|
|
25
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
26
|
+
readonly labels?: {
|
|
27
|
+
[x: string]: string | undefined;
|
|
28
|
+
} | undefined;
|
|
29
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
30
|
+
readonly paging?: {
|
|
31
|
+
[x: string]: {
|
|
32
|
+
size?: number | undefined;
|
|
33
|
+
};
|
|
34
|
+
} | undefined;
|
|
35
|
+
readonly retry?: {
|
|
36
|
+
backoff?: number | undefined;
|
|
37
|
+
interval?: number | undefined;
|
|
38
|
+
retries?: number | undefined;
|
|
39
|
+
} | undefined;
|
|
40
|
+
readonly security?: {
|
|
41
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
42
|
+
readonly allowed?: {
|
|
43
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
44
|
+
} | undefined;
|
|
45
|
+
readonly disallowed?: {
|
|
46
|
+
[x: string]: Lowercase<string>[];
|
|
47
|
+
} | undefined;
|
|
48
|
+
} | undefined;
|
|
49
|
+
readonly sign?: boolean | undefined;
|
|
50
|
+
readonly storeQueries?: boolean | undefined;
|
|
51
|
+
readonly timestamp?: boolean | undefined;
|
|
52
|
+
}>;
|
|
21
53
|
ephemeralQueryAccountEnabled?: boolean;
|
|
22
54
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
23
55
|
}, import("@xyo-network/module-model").ModuleEventData<object>>, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PubSubBridgeModuleResolver.d.ts","sourceRoot":"","sources":["../../src/PubSubBridgeModuleResolver.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AAC9E,OAAO,EAAE,4BAA4B,EAAsB,MAAM,8BAA8B,CAAA;AAG/F,OAAO,KAAK,EAEV,mBAAmB,EACnB,gBAAgB,EAChB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAMlC,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,KAAK,EAAE,mBAAmB,EAAkC,MAAM,0BAA0B,CAAA;AAGnG,MAAM,WAAW,gCAAiC,SAAQ,0BAA0B;IAClF,SAAS,EAAE,mBAAmB,CAAA;CAC/B;AAED,qBAAa,0BAA2B,SAAQ,4BAA4B,CAAC,gCAAgC,CAAC;IAC5G,SAAS,CAAC,cAAc
|
|
1
|
+
{"version":3,"file":"PubSubBridgeModuleResolver.d.ts","sourceRoot":"","sources":["../../src/PubSubBridgeModuleResolver.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAA;AAC9E,OAAO,EAAE,4BAA4B,EAAsB,MAAM,8BAA8B,CAAA;AAG/F,OAAO,KAAK,EAEV,mBAAmB,EACnB,gBAAgB,EAChB,cAAc,EACf,MAAM,2BAA2B,CAAA;AAMlC,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAA;AACnC,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AAEpC,OAAO,KAAK,EAAE,mBAAmB,EAAkC,MAAM,0BAA0B,CAAA;AAGnG,MAAM,WAAW,gCAAiC,SAAQ,0BAA0B;IAClF,SAAS,EAAE,mBAAmB,CAAA;CAC/B;AAED,qBAAa,0BAA2B,SAAQ,4BAA4B,CAAC,gCAAgC,CAAC;IAC5G,SAAS,CAAC,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8EAAuD;IAC/E,SAAS,CAAC,mBAAmB,QAAc;IAE5B,cAAc,CAAC,CAAC,SAAS,cAAc,GAAG,cAAc,EAAE,EAAE,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;CA8C/I"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/bridge-pub-sub",
|
|
3
|
-
"version": "3.6.0-rc.
|
|
3
|
+
"version": "3.6.0-rc.6",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,41 +29,41 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/array": "^4.4.
|
|
33
|
-
"@xylabs/assert": "^4.4.
|
|
34
|
-
"@xylabs/delay": "^4.4.
|
|
35
|
-
"@xylabs/exists": "^4.4.
|
|
36
|
-
"@xylabs/forget": "^4.4.
|
|
37
|
-
"@xylabs/hex": "^4.4.
|
|
38
|
-
"@xylabs/object": "^4.4.
|
|
39
|
-
"@xylabs/promise": "^4.4.
|
|
40
|
-
"@xylabs/timer": "^4.4.
|
|
41
|
-
"@xyo-network/account": "^3.6.0-rc.
|
|
42
|
-
"@xyo-network/archivist-model": "^3.6.0-rc.
|
|
43
|
-
"@xyo-network/boundwitness-model": "^3.6.0-rc.
|
|
44
|
-
"@xyo-network/bridge-abstract": "^3.6.0-rc.
|
|
45
|
-
"@xyo-network/bridge-model": "^3.6.0-rc.
|
|
46
|
-
"@xyo-network/config-payload-plugin": "^3.6.0-rc.
|
|
47
|
-
"@xyo-network/diviner-boundwitness-model": "^3.6.0-rc.
|
|
48
|
-
"@xyo-network/diviner-model": "^3.6.0-rc.
|
|
49
|
-
"@xyo-network/module-model": "^3.6.0-rc.
|
|
50
|
-
"@xyo-network/node-model": "^3.6.0-rc.
|
|
51
|
-
"@xyo-network/payload-builder": "^3.6.0-rc.
|
|
52
|
-
"@xyo-network/payload-model": "^3.6.0-rc.
|
|
32
|
+
"@xylabs/array": "^4.4.15",
|
|
33
|
+
"@xylabs/assert": "^4.4.15",
|
|
34
|
+
"@xylabs/delay": "^4.4.15",
|
|
35
|
+
"@xylabs/exists": "^4.4.15",
|
|
36
|
+
"@xylabs/forget": "^4.4.15",
|
|
37
|
+
"@xylabs/hex": "^4.4.15",
|
|
38
|
+
"@xylabs/object": "^4.4.15",
|
|
39
|
+
"@xylabs/promise": "^4.4.15",
|
|
40
|
+
"@xylabs/timer": "^4.4.15",
|
|
41
|
+
"@xyo-network/account": "^3.6.0-rc.6",
|
|
42
|
+
"@xyo-network/archivist-model": "^3.6.0-rc.6",
|
|
43
|
+
"@xyo-network/boundwitness-model": "^3.6.0-rc.6",
|
|
44
|
+
"@xyo-network/bridge-abstract": "^3.6.0-rc.6",
|
|
45
|
+
"@xyo-network/bridge-model": "^3.6.0-rc.6",
|
|
46
|
+
"@xyo-network/config-payload-plugin": "^3.6.0-rc.6",
|
|
47
|
+
"@xyo-network/diviner-boundwitness-model": "^3.6.0-rc.6",
|
|
48
|
+
"@xyo-network/diviner-model": "^3.6.0-rc.6",
|
|
49
|
+
"@xyo-network/module-model": "^3.6.0-rc.6",
|
|
50
|
+
"@xyo-network/node-model": "^3.6.0-rc.6",
|
|
51
|
+
"@xyo-network/payload-builder": "^3.6.0-rc.6",
|
|
52
|
+
"@xyo-network/payload-model": "^3.6.0-rc.6",
|
|
53
53
|
"async-mutex": "^0.5.0",
|
|
54
54
|
"lru-cache": "^11.0.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@xylabs/logger": "^4.4.
|
|
57
|
+
"@xylabs/logger": "^4.4.15",
|
|
58
58
|
"@xylabs/ts-scripts-yarn3": "^4.2.4",
|
|
59
59
|
"@xylabs/tsconfig": "^4.2.4",
|
|
60
|
-
"@xylabs/vitest-extended": "^4.4.
|
|
61
|
-
"@xyo-network/archivist-memory": "^3.6.0-rc.
|
|
62
|
-
"@xyo-network/diviner-boundwitness-memory": "^3.6.0-rc.
|
|
63
|
-
"@xyo-network/module-abstract": "^3.6.0-rc.
|
|
64
|
-
"@xyo-network/node-memory": "^3.6.0-rc.
|
|
65
|
-
"@xyo-network/node-model": "^3.6.0-rc.
|
|
66
|
-
"@xyo-network/payload-wrapper": "^3.6.0-rc.
|
|
60
|
+
"@xylabs/vitest-extended": "^4.4.15",
|
|
61
|
+
"@xyo-network/archivist-memory": "^3.6.0-rc.6",
|
|
62
|
+
"@xyo-network/diviner-boundwitness-memory": "^3.6.0-rc.6",
|
|
63
|
+
"@xyo-network/module-abstract": "^3.6.0-rc.6",
|
|
64
|
+
"@xyo-network/node-memory": "^3.6.0-rc.6",
|
|
65
|
+
"@xyo-network/node-model": "^3.6.0-rc.6",
|
|
66
|
+
"@xyo-network/payload-wrapper": "^3.6.0-rc.6",
|
|
67
67
|
"typescript": "^5.7.2",
|
|
68
68
|
"vitest": "^2.1.8"
|
|
69
69
|
},
|