@xyo-network/diviner-stateful 3.9.3 → 3.9.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/neutral/index.d.ts +50 -0
- package/package.json +19 -19
package/dist/neutral/index.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ declare abstract class StatefulDiviner<TParams extends StatefulDivinerParams = S
|
|
|
42
42
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_archivist_model.ArchivistConfig<void, void>>;
|
|
43
43
|
ephemeralQueryAccountEnabled?: boolean;
|
|
44
44
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
45
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
46
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
45
47
|
}, _xyo_network_archivist_model.ArchivistModuleEventData>>>;
|
|
46
48
|
protected getBoundWitnessDivinerForStateStore(): Promise<DivinerWrapper<_xyo_network_diviner_model.DivinerModule<_xylabs_object.BaseParamsFields & {
|
|
47
49
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -51,6 +53,8 @@ declare abstract class StatefulDiviner<TParams extends StatefulDivinerParams = S
|
|
|
51
53
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_diviner_model.DivinerConfig<void, void>>;
|
|
52
54
|
ephemeralQueryAccountEnabled?: boolean;
|
|
53
55
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
56
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
57
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
54
58
|
}, DivinerModuleEventData<_xyo_network_module_model.ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
55
59
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
56
60
|
addToResolvers?: boolean;
|
|
@@ -59,6 +63,8 @@ declare abstract class StatefulDiviner<TParams extends StatefulDivinerParams = S
|
|
|
59
63
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
60
64
|
ephemeralQueryAccountEnabled?: boolean;
|
|
61
65
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
66
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
67
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
62
68
|
}, _xyo_network_module_model.ModuleEventData<object>>, Payload, Payload>>, Payload, Payload>>;
|
|
63
69
|
protected getPayloadDivinerForStateStore(): Promise<DivinerWrapper<_xyo_network_diviner_model.DivinerModule<_xylabs_object.BaseParamsFields & {
|
|
64
70
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -68,6 +74,8 @@ declare abstract class StatefulDiviner<TParams extends StatefulDivinerParams = S
|
|
|
68
74
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_diviner_model.DivinerConfig<void, void>>;
|
|
69
75
|
ephemeralQueryAccountEnabled?: boolean;
|
|
70
76
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
77
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
78
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
71
79
|
}, DivinerModuleEventData<_xyo_network_module_model.ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
72
80
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
73
81
|
addToResolvers?: boolean;
|
|
@@ -76,6 +84,8 @@ declare abstract class StatefulDiviner<TParams extends StatefulDivinerParams = S
|
|
|
76
84
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
77
85
|
ephemeralQueryAccountEnabled?: boolean;
|
|
78
86
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
87
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
88
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
79
89
|
}, _xyo_network_module_model.ModuleEventData<object>>, Payload, Payload>>, Payload, Payload>>;
|
|
80
90
|
protected retrieveState(): Promise<ModuleState<TState> | undefined>;
|
|
81
91
|
}
|
|
@@ -90,6 +100,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
90
100
|
config: AnyConfigSchema<StatefulDivinerConfig>;
|
|
91
101
|
ephemeralQueryAccountEnabled?: boolean;
|
|
92
102
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
103
|
+
privateChildren?: ModuleInstance[];
|
|
104
|
+
publicChildren?: ModuleInstance[];
|
|
93
105
|
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
94
106
|
_lastState?: ModuleState<TState>;
|
|
95
107
|
commitState(nextState: ModuleState<TState>): Promise<void>;
|
|
@@ -101,6 +113,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
101
113
|
config: AnyConfigSchema<_xyo_network_archivist_model.ArchivistConfig>;
|
|
102
114
|
ephemeralQueryAccountEnabled?: boolean;
|
|
103
115
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
116
|
+
privateChildren?: ModuleInstance[];
|
|
117
|
+
publicChildren?: ModuleInstance[];
|
|
104
118
|
} & _xyo_network_archivist_model.ArchivistParamFields & object, _xyo_network_archivist_model.ArchivistModuleEventData, _xyo_network_payload_model.Payload>>;
|
|
105
119
|
getBoundWitnessDivinerForStore(): Promise<_xyo_network_diviner_model.DivinerInstance<_xylabs_object.BaseParamsFields & {
|
|
106
120
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -110,6 +124,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
110
124
|
config: AnyConfigSchema<_xyo_network_diviner_model.DivinerConfig>;
|
|
111
125
|
ephemeralQueryAccountEnabled?: boolean;
|
|
112
126
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
127
|
+
privateChildren?: ModuleInstance[];
|
|
128
|
+
publicChildren?: ModuleInstance[];
|
|
113
129
|
}, _xyo_network_payload_model.Payload, _xyo_network_payload_model.Payload, _xyo_network_diviner_model.DivinerModuleEventData<ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
114
130
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
115
131
|
addToResolvers?: boolean;
|
|
@@ -118,6 +134,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
118
134
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
119
135
|
ephemeralQueryAccountEnabled?: boolean;
|
|
120
136
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
137
|
+
privateChildren?: ModuleInstance[];
|
|
138
|
+
publicChildren?: ModuleInstance[];
|
|
121
139
|
}, _xyo_network_module_model.ModuleEventData<object>>, _xyo_network_payload_model.Payload, _xyo_network_payload_model.Payload>>>;
|
|
122
140
|
getPayloadDivinerForStateStore(): Promise<_xyo_network_diviner_model.DivinerInstance<_xylabs_object.BaseParamsFields & {
|
|
123
141
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -127,6 +145,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
127
145
|
config: AnyConfigSchema<_xyo_network_diviner_model.DivinerConfig>;
|
|
128
146
|
ephemeralQueryAccountEnabled?: boolean;
|
|
129
147
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
148
|
+
privateChildren?: ModuleInstance[];
|
|
149
|
+
publicChildren?: ModuleInstance[];
|
|
130
150
|
}, _xyo_network_payload_model.Payload, _xyo_network_payload_model.Payload, _xyo_network_diviner_model.DivinerModuleEventData<ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
131
151
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
132
152
|
addToResolvers?: boolean;
|
|
@@ -135,6 +155,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
135
155
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
136
156
|
ephemeralQueryAccountEnabled?: boolean;
|
|
137
157
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
158
|
+
privateChildren?: ModuleInstance[];
|
|
159
|
+
publicChildren?: ModuleInstance[];
|
|
138
160
|
}, _xyo_network_module_model.ModuleEventData<object>>, _xyo_network_payload_model.Payload, _xyo_network_payload_model.Payload>>>;
|
|
139
161
|
retrieveState(): Promise<ModuleState<TState> | undefined>;
|
|
140
162
|
readonly pipeline?: _xyo_network_module_model.ModulePipeLine;
|
|
@@ -169,6 +191,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
169
191
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
170
192
|
ephemeralQueryAccountEnabled?: boolean;
|
|
171
193
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
194
|
+
privateChildren?: ModuleInstance[];
|
|
195
|
+
publicChildren?: ModuleInstance[];
|
|
172
196
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
173
197
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
174
198
|
addToResolvers?: boolean;
|
|
@@ -177,6 +201,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
177
201
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
178
202
|
ephemeralQueryAccountEnabled?: boolean;
|
|
179
203
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
204
|
+
privateChildren?: ModuleInstance[];
|
|
205
|
+
publicChildren?: ModuleInstance[];
|
|
180
206
|
}, _xyo_network_module_model.ModuleEventData<object>>>(): _xylabs_promise.Promisable<T | undefined>;
|
|
181
207
|
resolve<T extends ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
182
208
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -186,6 +212,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
186
212
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
187
213
|
ephemeralQueryAccountEnabled?: boolean;
|
|
188
214
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
215
|
+
privateChildren?: ModuleInstance[];
|
|
216
|
+
publicChildren?: ModuleInstance[];
|
|
189
217
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
190
218
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
191
219
|
addToResolvers?: boolean;
|
|
@@ -194,6 +222,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
194
222
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
195
223
|
ephemeralQueryAccountEnabled?: boolean;
|
|
196
224
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
225
|
+
privateChildren?: ModuleInstance[];
|
|
226
|
+
publicChildren?: ModuleInstance[];
|
|
197
227
|
}, _xyo_network_module_model.ModuleEventData<object>>>(all: "*", options?: _xyo_network_module_model.ObjectFilterOptions<T> | undefined): _xylabs_promise.Promisable<T[]>;
|
|
198
228
|
resolve<T extends ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
199
229
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -203,6 +233,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
203
233
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
204
234
|
ephemeralQueryAccountEnabled?: boolean;
|
|
205
235
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
236
|
+
privateChildren?: ModuleInstance[];
|
|
237
|
+
publicChildren?: ModuleInstance[];
|
|
206
238
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
207
239
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
208
240
|
addToResolvers?: boolean;
|
|
@@ -211,6 +243,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
211
243
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
212
244
|
ephemeralQueryAccountEnabled?: boolean;
|
|
213
245
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
246
|
+
privateChildren?: ModuleInstance[];
|
|
247
|
+
publicChildren?: ModuleInstance[];
|
|
214
248
|
}, _xyo_network_module_model.ModuleEventData<object>>>(id: _xyo_network_module_model.ModuleIdentifier, options?: _xyo_network_module_model.ObjectFilterOptions<T> | undefined): _xylabs_promise.Promisable<T | undefined>;
|
|
215
249
|
resolve<T extends ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
216
250
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -220,6 +254,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
220
254
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
221
255
|
ephemeralQueryAccountEnabled?: boolean;
|
|
222
256
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
257
|
+
privateChildren?: ModuleInstance[];
|
|
258
|
+
publicChildren?: ModuleInstance[];
|
|
223
259
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
224
260
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
225
261
|
addToResolvers?: boolean;
|
|
@@ -228,6 +264,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
228
264
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
229
265
|
ephemeralQueryAccountEnabled?: boolean;
|
|
230
266
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
267
|
+
privateChildren?: ModuleInstance[];
|
|
268
|
+
publicChildren?: ModuleInstance[];
|
|
231
269
|
}, _xyo_network_module_model.ModuleEventData<object>>>(id?: _xyo_network_module_model.ModuleIdentifier, options?: _xyo_network_module_model.ObjectFilterOptions<T> | undefined): _xylabs_promise.Promisable<T | T[] | undefined>;
|
|
232
270
|
resolvePrivate<T extends ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
233
271
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -237,6 +275,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
237
275
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
238
276
|
ephemeralQueryAccountEnabled?: boolean;
|
|
239
277
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
278
|
+
privateChildren?: ModuleInstance[];
|
|
279
|
+
publicChildren?: ModuleInstance[];
|
|
240
280
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
241
281
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
242
282
|
addToResolvers?: boolean;
|
|
@@ -245,6 +285,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
245
285
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
246
286
|
ephemeralQueryAccountEnabled?: boolean;
|
|
247
287
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
288
|
+
privateChildren?: ModuleInstance[];
|
|
289
|
+
publicChildren?: ModuleInstance[];
|
|
248
290
|
}, _xyo_network_module_model.ModuleEventData<object>>>(all: "*", options?: _xyo_network_module_model.ObjectFilterOptions<T> | undefined): Promise<T[]>;
|
|
249
291
|
resolvePrivate<T extends ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
250
292
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -254,6 +296,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
254
296
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
255
297
|
ephemeralQueryAccountEnabled?: boolean;
|
|
256
298
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
299
|
+
privateChildren?: ModuleInstance[];
|
|
300
|
+
publicChildren?: ModuleInstance[];
|
|
257
301
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
258
302
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
259
303
|
addToResolvers?: boolean;
|
|
@@ -262,6 +306,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
262
306
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
263
307
|
ephemeralQueryAccountEnabled?: boolean;
|
|
264
308
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
309
|
+
privateChildren?: ModuleInstance[];
|
|
310
|
+
publicChildren?: ModuleInstance[];
|
|
265
311
|
}, _xyo_network_module_model.ModuleEventData<object>>>(id: _xyo_network_module_model.ModuleIdentifier, options?: _xyo_network_module_model.ObjectFilterOptions<T> | undefined): Promise<T | undefined>;
|
|
266
312
|
resolvePrivate<T extends ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
267
313
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
@@ -271,6 +317,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
271
317
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
272
318
|
ephemeralQueryAccountEnabled?: boolean;
|
|
273
319
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
320
|
+
privateChildren?: ModuleInstance[];
|
|
321
|
+
publicChildren?: ModuleInstance[];
|
|
274
322
|
}, _xyo_network_module_model.ModuleEventData<object>> = ModuleInstance<_xylabs_object.BaseParamsFields & {
|
|
275
323
|
account?: _xyo_network_account_model.AccountInstance | "random";
|
|
276
324
|
addToResolvers?: boolean;
|
|
@@ -279,6 +327,8 @@ declare const StatefulModuleMixin: <TParams extends StatefulModuleParams = _xyla
|
|
|
279
327
|
config: AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
280
328
|
ephemeralQueryAccountEnabled?: boolean;
|
|
281
329
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
330
|
+
privateChildren?: ModuleInstance[];
|
|
331
|
+
publicChildren?: ModuleInstance[];
|
|
282
332
|
}, _xyo_network_module_model.ModuleEventData<object>>>(id: _xyo_network_module_model.ModuleIdentifier, options?: _xyo_network_module_model.ObjectFilterOptions<T> | undefined): Promise<T | T[] | undefined>;
|
|
283
333
|
manifest: (maxDepth?: number, ignoreAddresses?: _xylabs_hex.Address[]) => _xylabs_promise.Promisable<_xyo_network_manifest_model.ModuleManifestPayload>;
|
|
284
334
|
manifestQuery: (account: _xyo_network_account_model.AccountInstance, maxDepth?: number, ignoreAddresses?: _xylabs_hex.Address[]) => _xylabs_promise.Promisable<_xyo_network_module_model.ModuleQueryResult<_xyo_network_manifest_model.ModuleManifestPayload>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-stateful",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.5",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -32,29 +32,29 @@
|
|
|
32
32
|
"@xylabs/assert": "^4.5.1",
|
|
33
33
|
"@xylabs/hex": "^4.5.1",
|
|
34
34
|
"@xylabs/object": "^4.5.1",
|
|
35
|
-
"@xyo-network/archivist-model": "^3.9.
|
|
36
|
-
"@xyo-network/archivist-wrapper": "^3.9.
|
|
37
|
-
"@xyo-network/boundwitness-builder": "^3.9.
|
|
38
|
-
"@xyo-network/boundwitness-model": "^3.9.
|
|
39
|
-
"@xyo-network/diviner-abstract": "^3.9.
|
|
40
|
-
"@xyo-network/diviner-boundwitness-model": "^3.9.
|
|
41
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
42
|
-
"@xyo-network/diviner-wrapper": "^3.9.
|
|
43
|
-
"@xyo-network/module-model": "^3.9.
|
|
44
|
-
"@xyo-network/payload-builder": "^3.9.
|
|
45
|
-
"@xyo-network/payload-model": "^3.9.
|
|
35
|
+
"@xyo-network/archivist-model": "^3.9.5",
|
|
36
|
+
"@xyo-network/archivist-wrapper": "^3.9.5",
|
|
37
|
+
"@xyo-network/boundwitness-builder": "^3.9.5",
|
|
38
|
+
"@xyo-network/boundwitness-model": "^3.9.5",
|
|
39
|
+
"@xyo-network/diviner-abstract": "^3.9.5",
|
|
40
|
+
"@xyo-network/diviner-boundwitness-model": "^3.9.5",
|
|
41
|
+
"@xyo-network/diviner-model": "^3.9.5",
|
|
42
|
+
"@xyo-network/diviner-wrapper": "^3.9.5",
|
|
43
|
+
"@xyo-network/module-model": "^3.9.5",
|
|
44
|
+
"@xyo-network/payload-builder": "^3.9.5",
|
|
45
|
+
"@xyo-network/payload-model": "^3.9.5"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|
|
49
49
|
"@xylabs/tsconfig": "^5.0.24",
|
|
50
50
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
51
|
-
"@xyo-network/account": "^3.9.
|
|
52
|
-
"@xyo-network/archivist-memory": "^3.9.
|
|
53
|
-
"@xyo-network/diviner-boundwitness-memory": "^3.9.
|
|
54
|
-
"@xyo-network/diviner-payload-memory": "^3.9.
|
|
55
|
-
"@xyo-network/manifest": "^3.9.
|
|
56
|
-
"@xyo-network/module-factory-locator": "^3.9.
|
|
57
|
-
"@xyo-network/node-memory": "^3.9.
|
|
51
|
+
"@xyo-network/account": "^3.9.5",
|
|
52
|
+
"@xyo-network/archivist-memory": "^3.9.5",
|
|
53
|
+
"@xyo-network/diviner-boundwitness-memory": "^3.9.5",
|
|
54
|
+
"@xyo-network/diviner-payload-memory": "^3.9.5",
|
|
55
|
+
"@xyo-network/manifest": "^3.9.5",
|
|
56
|
+
"@xyo-network/module-factory-locator": "^3.9.5",
|
|
57
|
+
"@xyo-network/node-memory": "^3.9.5",
|
|
58
58
|
"typescript": "^5.7.3",
|
|
59
59
|
"vitest": "^3.0.5"
|
|
60
60
|
},
|