@xyo-network/bridge-wrapper 2.84.14 → 2.84.15
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/BridgeWrapper.d.cts +227 -19
- package/dist/browser/BridgeWrapper.d.cts.map +1 -1
- package/dist/browser/BridgeWrapper.d.mts +227 -19
- package/dist/browser/BridgeWrapper.d.mts.map +1 -1
- package/dist/browser/BridgeWrapper.d.ts +227 -19
- package/dist/browser/BridgeWrapper.d.ts.map +1 -1
- package/dist/node/BridgeWrapper.d.cts +227 -19
- package/dist/node/BridgeWrapper.d.cts.map +1 -1
- package/dist/node/BridgeWrapper.d.mts +227 -19
- package/dist/node/BridgeWrapper.d.mts.map +1 -1
- package/dist/node/BridgeWrapper.d.ts +227 -19
- package/dist/node/BridgeWrapper.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -23,9 +23,7 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
23
23
|
readonly sign?: boolean | undefined;
|
|
24
24
|
readonly storeQueries?: boolean | undefined;
|
|
25
25
|
readonly timestamp?: boolean | undefined;
|
|
26
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
27
|
-
schema: string;
|
|
28
|
-
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
26
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
29
27
|
accountDerivationPath?: string | undefined;
|
|
30
28
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
31
29
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -47,6 +45,8 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
47
45
|
schema: "network.xyo.bridge.config";
|
|
48
46
|
}, "schema"> & {
|
|
49
47
|
schema: "network.xyo.bridge.config";
|
|
48
|
+
}, "schema"> & {
|
|
49
|
+
schema: string;
|
|
50
50
|
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
51
51
|
accountDerivationPath?: string | undefined;
|
|
52
52
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -63,12 +63,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
63
63
|
readonly sign?: boolean | undefined;
|
|
64
64
|
readonly storeQueries?: boolean | undefined;
|
|
65
65
|
readonly timestamp?: boolean | undefined;
|
|
66
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
67
|
+
accountDerivationPath?: string | undefined;
|
|
68
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
69
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
70
|
+
readonly name?: string | undefined;
|
|
71
|
+
readonly paging?: Record<string, {
|
|
72
|
+
size?: number | undefined;
|
|
73
|
+
}> | undefined;
|
|
74
|
+
readonly security?: {
|
|
75
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
78
|
+
} | undefined;
|
|
79
|
+
readonly sign?: boolean | undefined;
|
|
80
|
+
readonly storeQueries?: boolean | undefined;
|
|
81
|
+
readonly timestamp?: boolean | undefined;
|
|
66
82
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
67
83
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
68
84
|
maxDepth?: number | undefined;
|
|
69
85
|
schema: "network.xyo.bridge.config";
|
|
70
86
|
}, "schema"> & {
|
|
71
87
|
schema: "network.xyo.bridge.config";
|
|
88
|
+
}, "schema"> & {
|
|
89
|
+
schema: string;
|
|
72
90
|
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
73
91
|
accountDerivationPath?: string | undefined;
|
|
74
92
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -85,12 +103,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
85
103
|
readonly sign?: boolean | undefined;
|
|
86
104
|
readonly storeQueries?: boolean | undefined;
|
|
87
105
|
readonly timestamp?: boolean | undefined;
|
|
106
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
107
|
+
accountDerivationPath?: string | undefined;
|
|
108
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
109
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
110
|
+
readonly name?: string | undefined;
|
|
111
|
+
readonly paging?: Record<string, {
|
|
112
|
+
size?: number | undefined;
|
|
113
|
+
}> | undefined;
|
|
114
|
+
readonly security?: {
|
|
115
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
116
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
117
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
118
|
+
} | undefined;
|
|
119
|
+
readonly sign?: boolean | undefined;
|
|
120
|
+
readonly storeQueries?: boolean | undefined;
|
|
121
|
+
readonly timestamp?: boolean | undefined;
|
|
88
122
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
89
123
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
90
124
|
maxDepth?: number | undefined;
|
|
91
125
|
schema: "network.xyo.bridge.config";
|
|
92
126
|
}, "schema"> & {
|
|
93
127
|
schema: "network.xyo.bridge.config";
|
|
128
|
+
}, "schema"> & {
|
|
129
|
+
schema: string;
|
|
94
130
|
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
95
131
|
accountDerivationPath?: string | undefined;
|
|
96
132
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -107,15 +143,31 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
107
143
|
readonly sign?: boolean | undefined;
|
|
108
144
|
readonly storeQueries?: boolean | undefined;
|
|
109
145
|
readonly timestamp?: boolean | undefined;
|
|
146
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
147
|
+
accountDerivationPath?: string | undefined;
|
|
148
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
149
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
150
|
+
readonly name?: string | undefined;
|
|
151
|
+
readonly paging?: Record<string, {
|
|
152
|
+
size?: number | undefined;
|
|
153
|
+
}> | undefined;
|
|
154
|
+
readonly security?: {
|
|
155
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
156
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
157
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
158
|
+
} | undefined;
|
|
159
|
+
readonly sign?: boolean | undefined;
|
|
160
|
+
readonly storeQueries?: boolean | undefined;
|
|
161
|
+
readonly timestamp?: boolean | undefined;
|
|
110
162
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
111
163
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
112
164
|
maxDepth?: number | undefined;
|
|
113
165
|
schema: "network.xyo.bridge.config";
|
|
114
166
|
}, "schema"> & {
|
|
115
167
|
schema: "network.xyo.bridge.config";
|
|
116
|
-
}
|
|
168
|
+
}, "schema"> & {
|
|
117
169
|
schema: string;
|
|
118
|
-
}) | (import("@xyo-network/payload-model").SchemaFields &
|
|
170
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
119
171
|
accountDerivationPath?: string | undefined;
|
|
120
172
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
121
173
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -131,9 +183,7 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
131
183
|
readonly sign?: boolean | undefined;
|
|
132
184
|
readonly storeQueries?: boolean | undefined;
|
|
133
185
|
readonly timestamp?: boolean | undefined;
|
|
134
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
135
|
-
schema: string;
|
|
136
|
-
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
186
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
137
187
|
accountDerivationPath?: string | undefined;
|
|
138
188
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
139
189
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -155,6 +205,8 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
155
205
|
schema: "network.xyo.bridge.config";
|
|
156
206
|
}, "schema"> & {
|
|
157
207
|
schema: "network.xyo.bridge.config";
|
|
208
|
+
} & object, "schema"> & {
|
|
209
|
+
schema: string;
|
|
158
210
|
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
159
211
|
accountDerivationPath?: string | undefined;
|
|
160
212
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -171,12 +223,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
171
223
|
readonly sign?: boolean | undefined;
|
|
172
224
|
readonly storeQueries?: boolean | undefined;
|
|
173
225
|
readonly timestamp?: boolean | undefined;
|
|
226
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
227
|
+
accountDerivationPath?: string | undefined;
|
|
228
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
229
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
230
|
+
readonly name?: string | undefined;
|
|
231
|
+
readonly paging?: Record<string, {
|
|
232
|
+
size?: number | undefined;
|
|
233
|
+
}> | undefined;
|
|
234
|
+
readonly security?: {
|
|
235
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
236
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
237
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
readonly sign?: boolean | undefined;
|
|
240
|
+
readonly storeQueries?: boolean | undefined;
|
|
241
|
+
readonly timestamp?: boolean | undefined;
|
|
174
242
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
175
243
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
176
244
|
maxDepth?: number | undefined;
|
|
177
245
|
schema: "network.xyo.bridge.config";
|
|
178
246
|
}, "schema"> & {
|
|
179
247
|
schema: "network.xyo.bridge.config";
|
|
248
|
+
} & object, "schema"> & {
|
|
249
|
+
schema: string;
|
|
180
250
|
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
181
251
|
accountDerivationPath?: string | undefined;
|
|
182
252
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -193,12 +263,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
193
263
|
readonly sign?: boolean | undefined;
|
|
194
264
|
readonly storeQueries?: boolean | undefined;
|
|
195
265
|
readonly timestamp?: boolean | undefined;
|
|
266
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
267
|
+
accountDerivationPath?: string | undefined;
|
|
268
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
269
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
270
|
+
readonly name?: string | undefined;
|
|
271
|
+
readonly paging?: Record<string, {
|
|
272
|
+
size?: number | undefined;
|
|
273
|
+
}> | undefined;
|
|
274
|
+
readonly security?: {
|
|
275
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
276
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
277
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
278
|
+
} | undefined;
|
|
279
|
+
readonly sign?: boolean | undefined;
|
|
280
|
+
readonly storeQueries?: boolean | undefined;
|
|
281
|
+
readonly timestamp?: boolean | undefined;
|
|
196
282
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
197
283
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
198
284
|
maxDepth?: number | undefined;
|
|
199
285
|
schema: "network.xyo.bridge.config";
|
|
200
286
|
}, "schema"> & {
|
|
201
287
|
schema: "network.xyo.bridge.config";
|
|
288
|
+
} & object, "schema"> & {
|
|
289
|
+
schema: string;
|
|
202
290
|
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
203
291
|
accountDerivationPath?: string | undefined;
|
|
204
292
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -215,15 +303,31 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
215
303
|
readonly sign?: boolean | undefined;
|
|
216
304
|
readonly storeQueries?: boolean | undefined;
|
|
217
305
|
readonly timestamp?: boolean | undefined;
|
|
306
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
307
|
+
accountDerivationPath?: string | undefined;
|
|
308
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
309
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
310
|
+
readonly name?: string | undefined;
|
|
311
|
+
readonly paging?: Record<string, {
|
|
312
|
+
size?: number | undefined;
|
|
313
|
+
}> | undefined;
|
|
314
|
+
readonly security?: {
|
|
315
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
316
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
317
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
318
|
+
} | undefined;
|
|
319
|
+
readonly sign?: boolean | undefined;
|
|
320
|
+
readonly storeQueries?: boolean | undefined;
|
|
321
|
+
readonly timestamp?: boolean | undefined;
|
|
218
322
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
219
323
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
220
324
|
maxDepth?: number | undefined;
|
|
221
325
|
schema: "network.xyo.bridge.config";
|
|
222
326
|
}, "schema"> & {
|
|
223
327
|
schema: "network.xyo.bridge.config";
|
|
224
|
-
}
|
|
328
|
+
} & object, "schema"> & {
|
|
225
329
|
schema: string;
|
|
226
|
-
}
|
|
330
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
331
|
accountDerivationPath?: string | undefined;
|
|
228
332
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
229
333
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -239,9 +343,7 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
239
343
|
readonly sign?: boolean | undefined;
|
|
240
344
|
readonly storeQueries?: boolean | undefined;
|
|
241
345
|
readonly timestamp?: boolean | undefined;
|
|
242
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
243
|
-
schema: string;
|
|
244
|
-
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
346
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
245
347
|
accountDerivationPath?: string | undefined;
|
|
246
348
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
247
349
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -263,6 +365,8 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
263
365
|
schema: "network.xyo.bridge.config";
|
|
264
366
|
}, "schema"> & {
|
|
265
367
|
schema: "network.xyo.bridge.config";
|
|
368
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields, "schema"> & {
|
|
369
|
+
schema: string;
|
|
266
370
|
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
267
371
|
accountDerivationPath?: string | undefined;
|
|
268
372
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -279,12 +383,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
279
383
|
readonly sign?: boolean | undefined;
|
|
280
384
|
readonly storeQueries?: boolean | undefined;
|
|
281
385
|
readonly timestamp?: boolean | undefined;
|
|
386
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
387
|
+
accountDerivationPath?: string | undefined;
|
|
388
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
389
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
390
|
+
readonly name?: string | undefined;
|
|
391
|
+
readonly paging?: Record<string, {
|
|
392
|
+
size?: number | undefined;
|
|
393
|
+
}> | undefined;
|
|
394
|
+
readonly security?: {
|
|
395
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
396
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
397
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
398
|
+
} | undefined;
|
|
399
|
+
readonly sign?: boolean | undefined;
|
|
400
|
+
readonly storeQueries?: boolean | undefined;
|
|
401
|
+
readonly timestamp?: boolean | undefined;
|
|
282
402
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
283
403
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
284
404
|
maxDepth?: number | undefined;
|
|
285
405
|
schema: "network.xyo.bridge.config";
|
|
286
406
|
}, "schema"> & {
|
|
287
407
|
schema: "network.xyo.bridge.config";
|
|
408
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields, "schema"> & {
|
|
409
|
+
schema: string;
|
|
288
410
|
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
289
411
|
accountDerivationPath?: string | undefined;
|
|
290
412
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -301,12 +423,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
301
423
|
readonly sign?: boolean | undefined;
|
|
302
424
|
readonly storeQueries?: boolean | undefined;
|
|
303
425
|
readonly timestamp?: boolean | undefined;
|
|
426
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
427
|
+
accountDerivationPath?: string | undefined;
|
|
428
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
429
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
430
|
+
readonly name?: string | undefined;
|
|
431
|
+
readonly paging?: Record<string, {
|
|
432
|
+
size?: number | undefined;
|
|
433
|
+
}> | undefined;
|
|
434
|
+
readonly security?: {
|
|
435
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
436
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
437
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
438
|
+
} | undefined;
|
|
439
|
+
readonly sign?: boolean | undefined;
|
|
440
|
+
readonly storeQueries?: boolean | undefined;
|
|
441
|
+
readonly timestamp?: boolean | undefined;
|
|
304
442
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
305
443
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
306
444
|
maxDepth?: number | undefined;
|
|
307
445
|
schema: "network.xyo.bridge.config";
|
|
308
446
|
}, "schema"> & {
|
|
309
447
|
schema: "network.xyo.bridge.config";
|
|
448
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields, "schema"> & {
|
|
449
|
+
schema: string;
|
|
310
450
|
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
311
451
|
accountDerivationPath?: string | undefined;
|
|
312
452
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -323,15 +463,31 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
323
463
|
readonly sign?: boolean | undefined;
|
|
324
464
|
readonly storeQueries?: boolean | undefined;
|
|
325
465
|
readonly timestamp?: boolean | undefined;
|
|
466
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
467
|
+
accountDerivationPath?: string | undefined;
|
|
468
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
469
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
470
|
+
readonly name?: string | undefined;
|
|
471
|
+
readonly paging?: Record<string, {
|
|
472
|
+
size?: number | undefined;
|
|
473
|
+
}> | undefined;
|
|
474
|
+
readonly security?: {
|
|
475
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
476
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
477
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
478
|
+
} | undefined;
|
|
479
|
+
readonly sign?: boolean | undefined;
|
|
480
|
+
readonly storeQueries?: boolean | undefined;
|
|
481
|
+
readonly timestamp?: boolean | undefined;
|
|
326
482
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
327
483
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
328
484
|
maxDepth?: number | undefined;
|
|
329
485
|
schema: "network.xyo.bridge.config";
|
|
330
486
|
}, "schema"> & {
|
|
331
487
|
schema: "network.xyo.bridge.config";
|
|
332
|
-
}
|
|
488
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields, "schema"> & {
|
|
333
489
|
schema: string;
|
|
334
|
-
}
|
|
490
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
335
491
|
accountDerivationPath?: string | undefined;
|
|
336
492
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
337
493
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -347,9 +503,7 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
347
503
|
readonly sign?: boolean | undefined;
|
|
348
504
|
readonly storeQueries?: boolean | undefined;
|
|
349
505
|
readonly timestamp?: boolean | undefined;
|
|
350
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
351
|
-
schema: string;
|
|
352
|
-
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
506
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
353
507
|
accountDerivationPath?: string | undefined;
|
|
354
508
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
355
509
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -371,6 +525,8 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
371
525
|
schema: "network.xyo.bridge.config";
|
|
372
526
|
}, "schema"> & {
|
|
373
527
|
schema: "network.xyo.bridge.config";
|
|
528
|
+
}, "schema"> & {
|
|
529
|
+
schema: string;
|
|
374
530
|
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
375
531
|
accountDerivationPath?: string | undefined;
|
|
376
532
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -387,12 +543,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
387
543
|
readonly sign?: boolean | undefined;
|
|
388
544
|
readonly storeQueries?: boolean | undefined;
|
|
389
545
|
readonly timestamp?: boolean | undefined;
|
|
546
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
547
|
+
accountDerivationPath?: string | undefined;
|
|
548
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
549
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
550
|
+
readonly name?: string | undefined;
|
|
551
|
+
readonly paging?: Record<string, {
|
|
552
|
+
size?: number | undefined;
|
|
553
|
+
}> | undefined;
|
|
554
|
+
readonly security?: {
|
|
555
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
556
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
557
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
558
|
+
} | undefined;
|
|
559
|
+
readonly sign?: boolean | undefined;
|
|
560
|
+
readonly storeQueries?: boolean | undefined;
|
|
561
|
+
readonly timestamp?: boolean | undefined;
|
|
390
562
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
391
563
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
392
564
|
maxDepth?: number | undefined;
|
|
393
565
|
schema: "network.xyo.bridge.config";
|
|
394
566
|
}, "schema"> & {
|
|
395
567
|
schema: "network.xyo.bridge.config";
|
|
568
|
+
}, "schema"> & {
|
|
569
|
+
schema: string;
|
|
396
570
|
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
397
571
|
accountDerivationPath?: string | undefined;
|
|
398
572
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -409,12 +583,30 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
409
583
|
readonly sign?: boolean | undefined;
|
|
410
584
|
readonly storeQueries?: boolean | undefined;
|
|
411
585
|
readonly timestamp?: boolean | undefined;
|
|
586
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
587
|
+
accountDerivationPath?: string | undefined;
|
|
588
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
589
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
590
|
+
readonly name?: string | undefined;
|
|
591
|
+
readonly paging?: Record<string, {
|
|
592
|
+
size?: number | undefined;
|
|
593
|
+
}> | undefined;
|
|
594
|
+
readonly security?: {
|
|
595
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
596
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
597
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
598
|
+
} | undefined;
|
|
599
|
+
readonly sign?: boolean | undefined;
|
|
600
|
+
readonly storeQueries?: boolean | undefined;
|
|
601
|
+
readonly timestamp?: boolean | undefined;
|
|
412
602
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
413
603
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
414
604
|
maxDepth?: number | undefined;
|
|
415
605
|
schema: "network.xyo.bridge.config";
|
|
416
606
|
}, "schema"> & {
|
|
417
607
|
schema: "network.xyo.bridge.config";
|
|
608
|
+
}, "schema"> & {
|
|
609
|
+
schema: string;
|
|
418
610
|
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
419
611
|
accountDerivationPath?: string | undefined;
|
|
420
612
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
@@ -431,13 +623,29 @@ export declare class BridgeWrapper<TWrappedModule extends BridgeModule = BridgeM
|
|
|
431
623
|
readonly sign?: boolean | undefined;
|
|
432
624
|
readonly storeQueries?: boolean | undefined;
|
|
433
625
|
readonly timestamp?: boolean | undefined;
|
|
626
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
627
|
+
accountDerivationPath?: string | undefined;
|
|
628
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
629
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
630
|
+
readonly name?: string | undefined;
|
|
631
|
+
readonly paging?: Record<string, {
|
|
632
|
+
size?: number | undefined;
|
|
633
|
+
}> | undefined;
|
|
634
|
+
readonly security?: {
|
|
635
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
636
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
637
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
638
|
+
} | undefined;
|
|
639
|
+
readonly sign?: boolean | undefined;
|
|
640
|
+
readonly storeQueries?: boolean | undefined;
|
|
641
|
+
readonly timestamp?: boolean | undefined;
|
|
434
642
|
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
435
643
|
discoverCache?: true | import("@xyo-network/bridge-model").CacheConfig | undefined;
|
|
436
644
|
maxDepth?: number | undefined;
|
|
437
645
|
schema: "network.xyo.bridge.config";
|
|
438
646
|
}, "schema"> & {
|
|
439
647
|
schema: "network.xyo.bridge.config";
|
|
440
|
-
}
|
|
648
|
+
}, "schema"> & {
|
|
441
649
|
schema: string;
|
|
442
650
|
})>, import("@xyo-network/module-model").ModuleEventData<object>>>;
|
|
443
651
|
get connected(): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BridgeWrapper.d.ts","sourceRoot":"","sources":["../../src/BridgeWrapper.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAA;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAA;AACnE,OAAO,EAGL,cAAc,EACd,YAAY,EAIb,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAE,qBAAqB,EAA0D,MAAM,6BAA6B,CAAA;AAC3H,OAAO,EACL,YAAY,EAGZ,YAAY,EACZ,mBAAmB,EACnB,cAAc,EAGd,iBAAiB,EAClB,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAA8B,aAAa,EAAE,MAAM,6BAA6B,CAAA;AACvF,OAAO,EAAyB,OAAO,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAA;AAGlF,qBAAa,aAAa,CAAC,cAAc,SAAS,YAAY,GAAG,YAAY,CAC3E,SAAQ,aAAa,CAAC,cAAc,CACpC,YAAW,cAAc,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC;IAEnD,OAAgB,qBAAqB,0DAAmB;IACxD,OAAgB,mBAAmB
|
|
1
|
+
{"version":3,"file":"BridgeWrapper.d.ts","sourceRoot":"","sources":["../../src/BridgeWrapper.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@xylabs/assert": "^2.13.20",
|
|
14
14
|
"@xylabs/promise": "^2.13.20",
|
|
15
|
-
"@xyo-network/boundwitness-model": "~2.84.
|
|
16
|
-
"@xyo-network/bridge-model": "~2.84.
|
|
17
|
-
"@xyo-network/manifest-model": "~2.84.
|
|
18
|
-
"@xyo-network/module-model": "~2.84.
|
|
19
|
-
"@xyo-network/module-wrapper": "~2.84.
|
|
20
|
-
"@xyo-network/payload-model": "~2.84.
|
|
15
|
+
"@xyo-network/boundwitness-model": "~2.84.15",
|
|
16
|
+
"@xyo-network/bridge-model": "~2.84.15",
|
|
17
|
+
"@xyo-network/manifest-model": "~2.84.15",
|
|
18
|
+
"@xyo-network/module-model": "~2.84.15",
|
|
19
|
+
"@xyo-network/module-wrapper": "~2.84.15",
|
|
20
|
+
"@xyo-network/payload-model": "~2.84.15"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@xylabs/ts-scripts-yarn3": "^3.2.25",
|
|
@@ -63,6 +63,6 @@
|
|
|
63
63
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
64
64
|
},
|
|
65
65
|
"sideEffects": false,
|
|
66
|
-
"version": "2.84.
|
|
66
|
+
"version": "2.84.15",
|
|
67
67
|
"type": "module"
|
|
68
68
|
}
|