@xyo-network/diviner-stateful 2.93.3 → 2.93.5
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/Diviner.d.cts +6 -0
- package/dist/browser/Diviner.d.cts.map +1 -1
- package/dist/browser/Diviner.d.mts +6 -0
- package/dist/browser/Diviner.d.mts.map +1 -1
- package/dist/browser/Diviner.d.ts +6 -0
- package/dist/browser/Diviner.d.ts.map +1 -1
- package/dist/browser/DivinerMixin.d.cts +34 -18
- package/dist/browser/DivinerMixin.d.cts.map +1 -1
- package/dist/browser/DivinerMixin.d.mts +34 -18
- package/dist/browser/DivinerMixin.d.mts.map +1 -1
- package/dist/browser/DivinerMixin.d.ts +34 -18
- package/dist/browser/DivinerMixin.d.ts.map +1 -1
- package/dist/node/Diviner.d.cts +6 -0
- package/dist/node/Diviner.d.cts.map +1 -1
- package/dist/node/Diviner.d.mts +6 -0
- package/dist/node/Diviner.d.mts.map +1 -1
- package/dist/node/Diviner.d.ts +6 -0
- package/dist/node/Diviner.d.ts.map +1 -1
- package/dist/node/DivinerMixin.d.cts +34 -18
- package/dist/node/DivinerMixin.d.cts.map +1 -1
- package/dist/node/DivinerMixin.d.mts +34 -18
- package/dist/node/DivinerMixin.d.mts.map +1 -1
- package/dist/node/DivinerMixin.d.ts +34 -18
- package/dist/node/DivinerMixin.d.ts.map +1 -1
- package/package.json +18 -18
|
@@ -10,6 +10,7 @@ export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParam
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const StatefulModuleMixin: <TParams extends import("@xylabs/object").BaseParamsFields & {
|
|
12
12
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
13
|
+
addToResolvers?: boolean | undefined;
|
|
13
14
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
14
15
|
schema: "network.xyo.diviner.stateful.config";
|
|
15
16
|
} & {
|
|
@@ -25,8 +26,10 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
25
26
|
schema: string;
|
|
26
27
|
};
|
|
27
28
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
29
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
28
30
|
} = import("@xylabs/object").BaseParamsFields & {
|
|
29
31
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
32
|
+
addToResolvers?: boolean | undefined;
|
|
30
33
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
31
34
|
schema: "network.xyo.diviner.stateful.config";
|
|
32
35
|
} & {
|
|
@@ -42,6 +45,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
42
45
|
schema: string;
|
|
43
46
|
};
|
|
44
47
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
48
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
45
49
|
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
46
50
|
_lastState?: WithMeta<ModuleState<TState>> | undefined;
|
|
47
51
|
/**
|
|
@@ -59,6 +63,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
59
63
|
*/
|
|
60
64
|
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
61
65
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
66
|
+
addToResolvers?: boolean | undefined;
|
|
62
67
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
63
68
|
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
64
69
|
requireAllParents?: boolean | undefined;
|
|
@@ -70,6 +75,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
70
75
|
schema: string;
|
|
71
76
|
};
|
|
72
77
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
78
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
73
79
|
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, {
|
|
74
80
|
schema: string;
|
|
75
81
|
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
@@ -80,6 +86,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
80
86
|
*/
|
|
81
87
|
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
82
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
89
|
+
addToResolvers?: boolean | undefined;
|
|
83
90
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
84
91
|
schema: "network.xyo.diviner.config";
|
|
85
92
|
}, "schema"> & {
|
|
@@ -88,6 +95,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
88
95
|
schema: string;
|
|
89
96
|
};
|
|
90
97
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
98
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
91
99
|
}, {
|
|
92
100
|
schema: string;
|
|
93
101
|
} & import("@xyo-network/payload-model").PayloadFields, {
|
|
@@ -100,6 +108,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
100
108
|
*/
|
|
101
109
|
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
102
110
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
111
|
+
addToResolvers?: boolean | undefined;
|
|
103
112
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
104
113
|
schema: "network.xyo.diviner.config";
|
|
105
114
|
}, "schema"> & {
|
|
@@ -108,6 +117,7 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
108
117
|
schema: string;
|
|
109
118
|
};
|
|
110
119
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
120
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
111
121
|
}, {
|
|
112
122
|
schema: string;
|
|
113
123
|
} & import("@xyo-network/payload-model").PayloadFields, {
|
|
@@ -118,26 +128,8 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
118
128
|
* preemptions, reboots, etc.
|
|
119
129
|
*/
|
|
120
130
|
retrieveState(): Promise<WithMeta<ModuleState<TState>> | undefined>;
|
|
121
|
-
readonly downResolver: Omit<import("@xyo-network/module-model").ObjectResolverInstance<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
122
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
123
|
-
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
124
|
-
schema: "network.xyo.module.config";
|
|
125
|
-
}, "schema"> & {
|
|
126
|
-
schema: string;
|
|
127
|
-
};
|
|
128
|
-
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
129
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>, "resolve">;
|
|
130
131
|
readonly pipeline?: "one-to-one" | "one-to-many" | "many-to-one" | "many-to-many" | undefined;
|
|
131
132
|
readonly status: import("@xyo-network/module-model").ModuleStatus;
|
|
132
|
-
readonly upResolver: Omit<import("@xyo-network/module-model").ObjectResolverInstance<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
133
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
134
|
-
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
135
|
-
schema: "network.xyo.module.config";
|
|
136
|
-
}, "schema"> & {
|
|
137
|
-
schema: string;
|
|
138
|
-
};
|
|
139
|
-
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
140
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>>>, "resolve">;
|
|
141
133
|
address: Lowercase<string>;
|
|
142
134
|
config: TParams["config"];
|
|
143
135
|
id: string;
|
|
@@ -196,105 +188,129 @@ export declare const StatefulModuleMixin: <TParams extends import("@xylabs/objec
|
|
|
196
188
|
once<TEventName_4 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName_4, listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_4]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
197
189
|
resolve<T_2 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
198
190
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
191
|
+
addToResolvers?: boolean | undefined;
|
|
199
192
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
200
193
|
schema: "network.xyo.module.config";
|
|
201
194
|
}, "schema"> & {
|
|
202
195
|
schema: string;
|
|
203
196
|
};
|
|
204
197
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
198
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
205
199
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
206
200
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
201
|
+
addToResolvers?: boolean | undefined;
|
|
207
202
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
208
203
|
schema: "network.xyo.module.config";
|
|
209
204
|
}, "schema"> & {
|
|
210
205
|
schema: string;
|
|
211
206
|
};
|
|
212
207
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
208
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
213
209
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(): import("@xylabs/promise").Promisable<T_2 | undefined>;
|
|
214
210
|
resolve<T_3 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
215
211
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
212
|
+
addToResolvers?: boolean | undefined;
|
|
216
213
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
217
214
|
schema: "network.xyo.module.config";
|
|
218
215
|
}, "schema"> & {
|
|
219
216
|
schema: string;
|
|
220
217
|
};
|
|
221
218
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
219
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
222
220
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
223
221
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
222
|
+
addToResolvers?: boolean | undefined;
|
|
224
223
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
225
224
|
schema: "network.xyo.module.config";
|
|
226
225
|
}, "schema"> & {
|
|
227
226
|
schema: string;
|
|
228
227
|
};
|
|
229
228
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
229
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
230
230
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(all: "*", options?: import("@xyo-network/module-model").ObjectFilterOptions<T_3> | undefined): import("@xylabs/promise").Promisable<T_3[]>;
|
|
231
231
|
resolve<T_4 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
232
232
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
233
|
+
addToResolvers?: boolean | undefined;
|
|
233
234
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
234
235
|
schema: "network.xyo.module.config";
|
|
235
236
|
}, "schema"> & {
|
|
236
237
|
schema: string;
|
|
237
238
|
};
|
|
238
239
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
240
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
239
241
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
240
242
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
243
|
+
addToResolvers?: boolean | undefined;
|
|
241
244
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
242
245
|
schema: "network.xyo.module.config";
|
|
243
246
|
}, "schema"> & {
|
|
244
247
|
schema: string;
|
|
245
248
|
};
|
|
246
249
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
250
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
247
251
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id: string, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_4> | undefined): import("@xylabs/promise").Promisable<T_4 | undefined>;
|
|
248
252
|
resolve<T_5 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
249
253
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
254
|
+
addToResolvers?: boolean | undefined;
|
|
250
255
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
251
256
|
schema: "network.xyo.module.config";
|
|
252
257
|
}, "schema"> & {
|
|
253
258
|
schema: string;
|
|
254
259
|
};
|
|
255
260
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
261
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
256
262
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
257
263
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
264
|
+
addToResolvers?: boolean | undefined;
|
|
258
265
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
259
266
|
schema: "network.xyo.module.config";
|
|
260
267
|
}, "schema"> & {
|
|
261
268
|
schema: string;
|
|
262
269
|
};
|
|
263
270
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
271
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
264
272
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter: import("@xyo-network/module-model").ObjectFilter<T_5>, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_5> | undefined): import("@xylabs/promise").Promisable<T_5[]>;
|
|
265
273
|
resolve<T_6 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
266
274
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
275
|
+
addToResolvers?: boolean | undefined;
|
|
267
276
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
268
277
|
schema: "network.xyo.module.config";
|
|
269
278
|
}, "schema"> & {
|
|
270
279
|
schema: string;
|
|
271
280
|
};
|
|
272
281
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
282
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
273
283
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
274
284
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
285
|
+
addToResolvers?: boolean | undefined;
|
|
275
286
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
276
287
|
schema: "network.xyo.module.config";
|
|
277
288
|
}, "schema"> & {
|
|
278
289
|
schema: string;
|
|
279
290
|
};
|
|
280
291
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
292
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
281
293
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter?: import("@xyo-network/module-model").ObjectFilter<T_6> | undefined, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_6> | undefined): import("@xylabs/promise").Promisable<T_6[]>;
|
|
282
294
|
resolve<T_7 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
283
295
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
296
|
+
addToResolvers?: boolean | undefined;
|
|
284
297
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
285
298
|
schema: "network.xyo.module.config";
|
|
286
299
|
}, "schema"> & {
|
|
287
300
|
schema: string;
|
|
288
301
|
};
|
|
289
302
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
303
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
290
304
|
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
291
305
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
306
|
+
addToResolvers?: boolean | undefined;
|
|
292
307
|
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
293
308
|
schema: "network.xyo.module.config";
|
|
294
309
|
}, "schema"> & {
|
|
295
310
|
schema: string;
|
|
296
311
|
};
|
|
297
312
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
313
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
298
314
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(idOrFilter?: string | import("@xyo-network/module-model").ObjectFilter<T_7> | undefined, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_7> | undefined): import("@xylabs/promise").Promisable<T_7 | T_7[] | undefined>;
|
|
299
315
|
describe: () => Promise<import("@xyo-network/module-model").ModuleDescription>;
|
|
300
316
|
discover: () => import("@xylabs/promise").Promisable<({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AAOA,OAAO,EACL,eAAe,EAEf,cAAc,EACd,YAAY,EACZ,WAAW,EAEX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAErD,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAGvF,MAAM,MAAM,SAAS,CAAC,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,CAAA;AAIpI;;;;GAIG;AACH,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AAOA,OAAO,EACL,eAAe,EAEf,cAAc,EACd,YAAY,EACZ,WAAW,EAEX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAErD,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAGvF,MAAM,MAAM,SAAS,CAAC,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,CAAA;AAIpI;;;;GAIG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0HAKlB,OAAO,6BAd8E,GAAG,EAAE;;IAmBpG;;;;;;OAMG;2BAC0B,SAAS,YAAY,MAAM,CAAC,CAAC;IAU1D;;;;OAIG;;;;;;;;;;;;;;;;;;;IASH;;;;OAIG;;;;;;;;;;;;;;;;;;IAWH;;;;OAIG;;;;;;;;;;;;;;;;;;IAQH;;;OAGG;qBACoB,QAAQ,SAAS,YAAY,MAAM,CAAC,CAAC,GAAG,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA0C5E,CAAA"}
|
package/package.json
CHANGED
|
@@ -12,27 +12,27 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@xylabs/assert": "^3.0.24",
|
|
14
14
|
"@xylabs/hex": "^3.0.24",
|
|
15
|
-
"@xyo-network/archivist-model": "~2.93.
|
|
16
|
-
"@xyo-network/archivist-wrapper": "~2.93.
|
|
17
|
-
"@xyo-network/boundwitness-builder": "~2.93.
|
|
18
|
-
"@xyo-network/boundwitness-model": "~2.93.
|
|
19
|
-
"@xyo-network/diviner-abstract": "~2.93.
|
|
20
|
-
"@xyo-network/diviner-boundwitness-model": "~2.93.
|
|
21
|
-
"@xyo-network/diviner-model": "~2.93.
|
|
22
|
-
"@xyo-network/diviner-wrapper": "~2.93.
|
|
23
|
-
"@xyo-network/module-model": "~2.93.
|
|
24
|
-
"@xyo-network/payload-builder": "~2.93.
|
|
25
|
-
"@xyo-network/payload-model": "~2.93.
|
|
15
|
+
"@xyo-network/archivist-model": "~2.93.5",
|
|
16
|
+
"@xyo-network/archivist-wrapper": "~2.93.5",
|
|
17
|
+
"@xyo-network/boundwitness-builder": "~2.93.5",
|
|
18
|
+
"@xyo-network/boundwitness-model": "~2.93.5",
|
|
19
|
+
"@xyo-network/diviner-abstract": "~2.93.5",
|
|
20
|
+
"@xyo-network/diviner-boundwitness-model": "~2.93.5",
|
|
21
|
+
"@xyo-network/diviner-model": "~2.93.5",
|
|
22
|
+
"@xyo-network/diviner-wrapper": "~2.93.5",
|
|
23
|
+
"@xyo-network/module-model": "~2.93.5",
|
|
24
|
+
"@xyo-network/payload-builder": "~2.93.5",
|
|
25
|
+
"@xyo-network/payload-model": "~2.93.5"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@xylabs/ts-scripts-yarn3": "^3.5.2",
|
|
29
29
|
"@xylabs/tsconfig": "^3.5.2",
|
|
30
|
-
"@xyo-network/account": "~2.93.
|
|
31
|
-
"@xyo-network/archivist-memory": "~2.93.
|
|
32
|
-
"@xyo-network/diviner-boundwitness-memory": "~2.93.
|
|
33
|
-
"@xyo-network/diviner-payload-memory": "~2.93.
|
|
34
|
-
"@xyo-network/manifest": "~2.93.
|
|
35
|
-
"@xyo-network/node-memory": "~2.93.
|
|
30
|
+
"@xyo-network/account": "~2.93.5",
|
|
31
|
+
"@xyo-network/archivist-memory": "~2.93.5",
|
|
32
|
+
"@xyo-network/diviner-boundwitness-memory": "~2.93.5",
|
|
33
|
+
"@xyo-network/diviner-payload-memory": "~2.93.5",
|
|
34
|
+
"@xyo-network/manifest": "~2.93.5",
|
|
35
|
+
"@xyo-network/node-memory": "~2.93.5",
|
|
36
36
|
"typescript": "^5.4.3"
|
|
37
37
|
},
|
|
38
38
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
@@ -74,6 +74,6 @@
|
|
|
74
74
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
75
75
|
},
|
|
76
76
|
"sideEffects": false,
|
|
77
|
-
"version": "2.93.
|
|
77
|
+
"version": "2.93.5",
|
|
78
78
|
"type": "module"
|
|
79
79
|
}
|