@xyo-network/diviner-stateful 3.10.8 → 3.11.0
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/types/Diviner.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
28
28
|
* @param store The store to retrieve the archivist for
|
|
29
29
|
* @returns The archivist for the specified store
|
|
30
30
|
*/
|
|
31
|
-
protected getArchivistForStateStore(): Promise<ArchivistWrapper<import("@xyo-network/archivist-model").ArchivistModuleInstance<import("@xylabs/
|
|
31
|
+
protected getArchivistForStateStore(): Promise<ArchivistWrapper<import("@xyo-network/archivist-model").ArchivistModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
32
32
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
33
33
|
addToResolvers?: boolean;
|
|
34
34
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -44,7 +44,7 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
44
44
|
* @param store The store to retrieve the BoundWitness Diviner for
|
|
45
45
|
* @returns The BoundWitness Diviner for the specified store
|
|
46
46
|
*/
|
|
47
|
-
protected getBoundWitnessDivinerForStateStore(): Promise<DivinerWrapper<import("@xyo-network/diviner-model").DivinerModule<import("@xylabs/
|
|
47
|
+
protected getBoundWitnessDivinerForStateStore(): Promise<DivinerWrapper<import("@xyo-network/diviner-model").DivinerModule<import("@xylabs/base").BaseParamsFields & {
|
|
48
48
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
49
49
|
addToResolvers?: boolean;
|
|
50
50
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -60,7 +60,7 @@ export declare abstract class StatefulDiviner<TParams extends StatefulDivinerPar
|
|
|
60
60
|
* @param store The store to retrieve the Payload Diviner for
|
|
61
61
|
* @returns The Payload Diviner for the specified store
|
|
62
62
|
*/
|
|
63
|
-
protected getPayloadDivinerForStateStore(): Promise<DivinerWrapper<import("@xyo-network/diviner-model").DivinerModule<import("@xylabs/
|
|
63
|
+
protected getPayloadDivinerForStateStore(): Promise<DivinerWrapper<import("@xyo-network/diviner-model").DivinerModule<import("@xylabs/base").BaseParamsFields & {
|
|
64
64
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
65
65
|
addToResolvers?: boolean;
|
|
66
66
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -22,33 +22,13 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
22
22
|
* @param store The store to retrieve the archivist for
|
|
23
23
|
* @returns The archivist for the specified store
|
|
24
24
|
*/
|
|
25
|
-
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@
|
|
26
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
27
|
-
addToResolvers?: boolean;
|
|
28
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
29
|
-
allowNameResolution?: boolean;
|
|
30
|
-
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/archivist-model").ArchivistConfig>;
|
|
31
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
32
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
33
|
-
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
34
|
-
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
35
|
-
} & import("@xyo-network/archivist-model").ArchivistParamFields & object, import("@xyo-network/archivist-model").ArchivistModuleEventData, import("@xyo-network/payload-model").Payload<void, void>>>;
|
|
25
|
+
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<any, import("@xyo-network/archivist-model").ArchivistModuleEventData, import("@xyo-network/payload-model").Payload<void, void>>>;
|
|
36
26
|
/**
|
|
37
27
|
* Retrieves the BoundWitness Diviner for the specified store
|
|
38
28
|
* @param store The store to retrieve the BoundWitness Diviner for
|
|
39
29
|
* @returns The BoundWitness Diviner for the specified store
|
|
40
30
|
*/
|
|
41
|
-
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/
|
|
42
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
43
|
-
addToResolvers?: boolean;
|
|
44
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
45
|
-
allowNameResolution?: boolean;
|
|
46
|
-
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/diviner-model").DivinerConfig>;
|
|
47
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
48
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
49
|
-
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
50
|
-
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
51
|
-
}, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/diviner-model").DivinerModuleEventData<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
31
|
+
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<any, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/diviner-model").DivinerModuleEventData<ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
52
32
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
53
33
|
addToResolvers?: boolean;
|
|
54
34
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -64,17 +44,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
64
44
|
* @param store The store to retrieve the Payload Diviner for
|
|
65
45
|
* @returns The Payload Diviner for the specified store
|
|
66
46
|
*/
|
|
67
|
-
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/
|
|
68
|
-
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
69
|
-
addToResolvers?: boolean;
|
|
70
|
-
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
71
|
-
allowNameResolution?: boolean;
|
|
72
|
-
config: import("@xyo-network/module-model").AnyConfigSchema<import("@xyo-network/diviner-model").DivinerConfig>;
|
|
73
|
-
ephemeralQueryAccountEnabled?: boolean;
|
|
74
|
-
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
75
|
-
privateChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
76
|
-
publicChildren?: import("@xyo-network/module-model").ModuleInstance[];
|
|
77
|
-
}, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/diviner-model").DivinerModuleEventData<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
47
|
+
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<any, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/payload-model").Payload<void, void>, import("@xyo-network/diviner-model").DivinerModuleEventData<ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
78
48
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
79
49
|
addToResolvers?: boolean;
|
|
80
50
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -114,7 +84,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
114
84
|
onAny(listener: import("@xyo-network/module-events").EventAnyListener): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
115
85
|
once<TEventName extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName, listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
116
86
|
priority: import("@xyo-network/module-model").ObjectResolverPriority;
|
|
117
|
-
resolve<T extends ModuleInstance<import("@xylabs/
|
|
87
|
+
resolve<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
118
88
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
119
89
|
addToResolvers?: boolean;
|
|
120
90
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -124,7 +94,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
124
94
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
125
95
|
privateChildren?: ModuleInstance[];
|
|
126
96
|
publicChildren?: ModuleInstance[];
|
|
127
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
97
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
128
98
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
129
99
|
addToResolvers?: boolean;
|
|
130
100
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -135,7 +105,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
135
105
|
privateChildren?: ModuleInstance[];
|
|
136
106
|
publicChildren?: ModuleInstance[];
|
|
137
107
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(): import("@xylabs/promise").Promisable<T | undefined>;
|
|
138
|
-
resolve<T extends ModuleInstance<import("@xylabs/
|
|
108
|
+
resolve<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
139
109
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
140
110
|
addToResolvers?: boolean;
|
|
141
111
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -145,7 +115,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
145
115
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
146
116
|
privateChildren?: ModuleInstance[];
|
|
147
117
|
publicChildren?: ModuleInstance[];
|
|
148
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
118
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
149
119
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
150
120
|
addToResolvers?: boolean;
|
|
151
121
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -156,7 +126,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
156
126
|
privateChildren?: ModuleInstance[];
|
|
157
127
|
publicChildren?: ModuleInstance[];
|
|
158
128
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(all: "*", options?: import("@xyo-network/module-model").ObjectFilterOptions<T> | undefined): import("@xylabs/promise").Promisable<T[]>;
|
|
159
|
-
resolve<T extends ModuleInstance<import("@xylabs/
|
|
129
|
+
resolve<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
160
130
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
161
131
|
addToResolvers?: boolean;
|
|
162
132
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -166,7 +136,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
166
136
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
167
137
|
privateChildren?: ModuleInstance[];
|
|
168
138
|
publicChildren?: ModuleInstance[];
|
|
169
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
139
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
170
140
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
171
141
|
addToResolvers?: boolean;
|
|
172
142
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -177,7 +147,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
177
147
|
privateChildren?: ModuleInstance[];
|
|
178
148
|
publicChildren?: ModuleInstance[];
|
|
179
149
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id: import("@xyo-network/module-model").ModuleIdentifier, options?: import("@xyo-network/module-model").ObjectFilterOptions<T> | undefined): import("@xylabs/promise").Promisable<T | undefined>;
|
|
180
|
-
resolve<T extends ModuleInstance<import("@xylabs/
|
|
150
|
+
resolve<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
181
151
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
182
152
|
addToResolvers?: boolean;
|
|
183
153
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -187,7 +157,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
187
157
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
188
158
|
privateChildren?: ModuleInstance[];
|
|
189
159
|
publicChildren?: ModuleInstance[];
|
|
190
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
160
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
191
161
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
192
162
|
addToResolvers?: boolean;
|
|
193
163
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -198,7 +168,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
198
168
|
privateChildren?: ModuleInstance[];
|
|
199
169
|
publicChildren?: ModuleInstance[];
|
|
200
170
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id?: import("@xyo-network/module-model").ModuleIdentifier, options?: import("@xyo-network/module-model").ObjectFilterOptions<T> | undefined): import("@xylabs/promise").Promisable<T | T[] | undefined>;
|
|
201
|
-
resolvePrivate<T extends ModuleInstance<import("@xylabs/
|
|
171
|
+
resolvePrivate<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
202
172
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
203
173
|
addToResolvers?: boolean;
|
|
204
174
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -208,7 +178,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
208
178
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
209
179
|
privateChildren?: ModuleInstance[];
|
|
210
180
|
publicChildren?: ModuleInstance[];
|
|
211
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
181
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
212
182
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
213
183
|
addToResolvers?: boolean;
|
|
214
184
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -219,7 +189,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
219
189
|
privateChildren?: ModuleInstance[];
|
|
220
190
|
publicChildren?: ModuleInstance[];
|
|
221
191
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(all: "*", options?: import("@xyo-network/module-model").ObjectFilterOptions<T> | undefined): Promise<T[]>;
|
|
222
|
-
resolvePrivate<T extends ModuleInstance<import("@xylabs/
|
|
192
|
+
resolvePrivate<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
223
193
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
224
194
|
addToResolvers?: boolean;
|
|
225
195
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -229,7 +199,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
229
199
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
230
200
|
privateChildren?: ModuleInstance[];
|
|
231
201
|
publicChildren?: ModuleInstance[];
|
|
232
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
202
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
233
203
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
234
204
|
addToResolvers?: boolean;
|
|
235
205
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -240,7 +210,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
240
210
|
privateChildren?: ModuleInstance[];
|
|
241
211
|
publicChildren?: ModuleInstance[];
|
|
242
212
|
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id: import("@xyo-network/module-model").ModuleIdentifier, options?: import("@xyo-network/module-model").ObjectFilterOptions<T> | undefined): Promise<T | undefined>;
|
|
243
|
-
resolvePrivate<T extends ModuleInstance<import("@xylabs/
|
|
213
|
+
resolvePrivate<T extends ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
244
214
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
245
215
|
addToResolvers?: boolean;
|
|
246
216
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -250,7 +220,7 @@ export declare const StatefulModuleMixin: <TParams extends StatefulModuleParams
|
|
|
250
220
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
251
221
|
privateChildren?: ModuleInstance[];
|
|
252
222
|
publicChildren?: ModuleInstance[];
|
|
253
|
-
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/
|
|
223
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/base").BaseParamsFields & {
|
|
254
224
|
account?: import("@xyo-network/account-model").AccountInstance | "random";
|
|
255
225
|
addToResolvers?: boolean;
|
|
256
226
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EACd,YAAY,EACZ,WAAW,EACX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AASlC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAExD,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,GAC9B,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,EAC3D,OAAO,SAAS,SAAS,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC,EACvD,MAAM,SAAS,eAAe,GAAG,eAAe,EAEhD,YAAY,OAAO,6BAd8E,GAAG,EAAE;iBAiBvF,WAAW,CAAC,MAAM,CAAC;IAEhC;;;;;;OAMG;2BAC0B,WAAW,CAAC,MAAM,CAAC;IAUhD;;;;OAIG;;
|
|
1
|
+
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EACV,eAAe,EACf,cAAc,EACd,YAAY,EACZ,WAAW,EACX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AASlC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAExD,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,GAC9B,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,EAC3D,OAAO,SAAS,SAAS,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC,EACvD,MAAM,SAAS,eAAe,GAAG,eAAe,EAEhD,YAAY,OAAO,6BAd8E,GAAG,EAAE;iBAiBvF,WAAW,CAAC,MAAM,CAAC;IAEhC;;;;;;OAMG;2BAC0B,WAAW,CAAC,MAAM,CAAC;IAUhD;;;;OAIG;;IASH;;;;OAIG;;;;;;;;;;;;IAYH;;;;OAIG;;;;;;;;;;;;IASH;;;OAGG;qBACoB,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;;;;;;;;;;sRAzFnE,CAAA,6DAAwB,CAAC;4RAI+C,CAAC,6DAEjE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBApBR,CAAC,yBAAyB,CAAC;2FAKzB,CAAC,yBACU,CAAC;;;;;;;;;;;;YA2Id,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-stateful",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,33 +29,33 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/types/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.
|
|
33
|
-
"@xylabs/hex": "^4.
|
|
34
|
-
"@xylabs/object": "^4.
|
|
35
|
-
"@xyo-network/archivist-model": "^3.
|
|
36
|
-
"@xyo-network/archivist-wrapper": "^3.
|
|
37
|
-
"@xyo-network/boundwitness-builder": "^3.
|
|
38
|
-
"@xyo-network/boundwitness-model": "^3.
|
|
39
|
-
"@xyo-network/diviner-abstract": "^3.
|
|
40
|
-
"@xyo-network/diviner-boundwitness-model": "^3.
|
|
41
|
-
"@xyo-network/diviner-model": "^3.
|
|
42
|
-
"@xyo-network/diviner-wrapper": "^3.
|
|
43
|
-
"@xyo-network/module-model": "^3.
|
|
44
|
-
"@xyo-network/payload-builder": "^3.
|
|
45
|
-
"@xyo-network/payload-model": "^3.
|
|
32
|
+
"@xylabs/assert": "^4.8.0",
|
|
33
|
+
"@xylabs/hex": "^4.8.0",
|
|
34
|
+
"@xylabs/object": "^4.8.0",
|
|
35
|
+
"@xyo-network/archivist-model": "^3.11.0",
|
|
36
|
+
"@xyo-network/archivist-wrapper": "^3.11.0",
|
|
37
|
+
"@xyo-network/boundwitness-builder": "^3.11.0",
|
|
38
|
+
"@xyo-network/boundwitness-model": "^3.11.0",
|
|
39
|
+
"@xyo-network/diviner-abstract": "^3.11.0",
|
|
40
|
+
"@xyo-network/diviner-boundwitness-model": "^3.11.0",
|
|
41
|
+
"@xyo-network/diviner-model": "^3.11.0",
|
|
42
|
+
"@xyo-network/diviner-wrapper": "^3.11.0",
|
|
43
|
+
"@xyo-network/module-model": "^3.11.0",
|
|
44
|
+
"@xyo-network/payload-builder": "^3.11.0",
|
|
45
|
+
"@xyo-network/payload-model": "^3.11.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@xylabs/ts-scripts-yarn3": "^6.2.1",
|
|
49
49
|
"@xylabs/tsconfig": "^6.2.1",
|
|
50
|
-
"@xylabs/vitest-extended": "^4.
|
|
51
|
-
"@xyo-network/account": "^3.
|
|
52
|
-
"@xyo-network/archivist-memory": "^3.
|
|
53
|
-
"@xyo-network/diviner-boundwitness-memory": "^3.
|
|
54
|
-
"@xyo-network/diviner-payload-memory": "^3.
|
|
55
|
-
"@xyo-network/manifest": "^3.
|
|
56
|
-
"@xyo-network/module-factory-locator": "^3.
|
|
57
|
-
"@xyo-network/node-memory": "^3.
|
|
58
|
-
"typescript": "^5.8.
|
|
50
|
+
"@xylabs/vitest-extended": "^4.8.0",
|
|
51
|
+
"@xyo-network/account": "^3.11.0",
|
|
52
|
+
"@xyo-network/archivist-memory": "^3.11.0",
|
|
53
|
+
"@xyo-network/diviner-boundwitness-memory": "^3.11.0",
|
|
54
|
+
"@xyo-network/diviner-payload-memory": "^3.11.0",
|
|
55
|
+
"@xyo-network/manifest": "^3.11.0",
|
|
56
|
+
"@xyo-network/module-factory-locator": "^3.11.0",
|
|
57
|
+
"@xyo-network/node-memory": "^3.11.0",
|
|
58
|
+
"typescript": "^5.8.3",
|
|
59
59
|
"vitest": "^3.1.1"
|
|
60
60
|
},
|
|
61
61
|
"publishConfig": {
|