@xyo-network/diviner-indexing-memory 3.6.0-rc.5 → 3.6.0-rc.7
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/Diviner.d.ts +180 -47
- package/dist/neutral/Diviner.d.ts.map +1 -1
- package/package.json +15 -15
|
@@ -39,17 +39,60 @@ export declare class IndexingDiviner<TParams extends IndexingDivinerParams = Ind
|
|
|
39
39
|
addToResolvers?: boolean;
|
|
40
40
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
41
41
|
allowNameResolution?: boolean;
|
|
42
|
-
config: import("@xyo-network/payload-model").
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
43
|
+
schema: Schema;
|
|
44
|
+
readonly archiving?: {
|
|
45
|
+
readonly archivists?: string[] | undefined;
|
|
46
|
+
readonly queries?: string[] | undefined;
|
|
47
|
+
} | undefined;
|
|
48
|
+
readonly allowedQueries?: string[] | undefined;
|
|
49
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
50
|
+
readonly certify?: boolean | undefined;
|
|
51
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
52
|
+
readonly labels?: {
|
|
53
|
+
[x: string]: string | undefined;
|
|
54
|
+
} | undefined;
|
|
55
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
56
|
+
readonly paging?: {
|
|
57
|
+
[x: string]: {
|
|
58
|
+
size?: number | undefined;
|
|
59
|
+
};
|
|
60
|
+
} | undefined;
|
|
61
|
+
readonly retry?: {
|
|
62
|
+
backoff?: number | undefined;
|
|
63
|
+
interval?: number | undefined;
|
|
64
|
+
retries?: number | undefined;
|
|
65
|
+
} | undefined;
|
|
66
|
+
readonly security?: {
|
|
67
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
68
|
+
readonly allowed?: {
|
|
69
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
70
|
+
} | undefined;
|
|
71
|
+
readonly disallowed?: {
|
|
72
|
+
[x: string]: Lowercase<string>[];
|
|
73
|
+
} | undefined;
|
|
74
|
+
} | undefined;
|
|
75
|
+
readonly sign?: boolean | undefined;
|
|
76
|
+
readonly storeQueries?: boolean | undefined;
|
|
77
|
+
readonly timestamp?: boolean | undefined;
|
|
78
|
+
parents?: {
|
|
79
|
+
commit?: Lowercase<string>[] | undefined;
|
|
80
|
+
read?: Lowercase<string>[] | undefined;
|
|
81
|
+
write?: Lowercase<string>[] | undefined;
|
|
82
|
+
} | undefined;
|
|
83
|
+
requireAllParents?: boolean | undefined;
|
|
84
|
+
storage?: {
|
|
85
|
+
indexes?: {
|
|
86
|
+
key: {
|
|
87
|
+
[x: string]: import("@xyo-network/archivist-model").IndexDirection;
|
|
88
|
+
};
|
|
89
|
+
multiEntry?: boolean | undefined;
|
|
90
|
+
name?: string | undefined;
|
|
91
|
+
unique?: boolean | undefined;
|
|
92
|
+
}[] | undefined;
|
|
93
|
+
} | undefined;
|
|
94
|
+
storeParentReads?: boolean | undefined;
|
|
95
|
+
}>;
|
|
53
96
|
ephemeralQueryAccountEnabled?: boolean;
|
|
54
97
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
55
98
|
}, import("@xyo-network/archivist-model").ArchivistModuleEventData>>>;
|
|
@@ -63,20 +106,50 @@ export declare class IndexingDiviner<TParams extends IndexingDivinerParams = Ind
|
|
|
63
106
|
addToResolvers?: boolean;
|
|
64
107
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
65
108
|
allowNameResolution?: boolean;
|
|
66
|
-
config: import("@xyo-network/payload-model").
|
|
67
|
-
schema:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
109
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
110
|
+
schema: Schema;
|
|
111
|
+
readonly archiving?: {
|
|
112
|
+
readonly archivists?: string[] | undefined;
|
|
113
|
+
readonly queries?: string[] | undefined;
|
|
114
|
+
} | undefined;
|
|
115
|
+
readonly allowedQueries?: string[] | undefined;
|
|
116
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
117
|
+
readonly certify?: boolean | undefined;
|
|
118
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
119
|
+
readonly labels?: {
|
|
120
|
+
[x: string]: string | undefined;
|
|
121
|
+
} | undefined;
|
|
122
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
123
|
+
readonly paging?: {
|
|
124
|
+
[x: string]: {
|
|
125
|
+
size?: number | undefined;
|
|
126
|
+
};
|
|
127
|
+
} | undefined;
|
|
128
|
+
readonly retry?: {
|
|
129
|
+
backoff?: number | undefined;
|
|
130
|
+
interval?: number | undefined;
|
|
131
|
+
retries?: number | undefined;
|
|
132
|
+
} | undefined;
|
|
133
|
+
readonly security?: {
|
|
134
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
135
|
+
readonly allowed?: {
|
|
136
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
137
|
+
} | undefined;
|
|
138
|
+
readonly disallowed?: {
|
|
139
|
+
[x: string]: Lowercase<string>[];
|
|
140
|
+
} | undefined;
|
|
141
|
+
} | undefined;
|
|
142
|
+
readonly sign?: boolean | undefined;
|
|
143
|
+
readonly storeQueries?: boolean | undefined;
|
|
144
|
+
readonly timestamp?: boolean | undefined;
|
|
145
|
+
}>;
|
|
73
146
|
ephemeralQueryAccountEnabled?: boolean;
|
|
74
147
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
75
|
-
}, DivinerModuleEventData>, {
|
|
76
|
-
schema:
|
|
77
|
-
}
|
|
78
|
-
schema:
|
|
79
|
-
}
|
|
148
|
+
}, DivinerModuleEventData>, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
149
|
+
schema: Schema;
|
|
150
|
+
}>, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
151
|
+
schema: Schema;
|
|
152
|
+
}>>>;
|
|
80
153
|
/**
|
|
81
154
|
* Gets the Diviner for the supplied Indexing Diviner stage
|
|
82
155
|
* @param transform The Indexing Diviner stage
|
|
@@ -87,20 +160,50 @@ export declare class IndexingDiviner<TParams extends IndexingDivinerParams = Ind
|
|
|
87
160
|
addToResolvers?: boolean;
|
|
88
161
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
89
162
|
allowNameResolution?: boolean;
|
|
90
|
-
config: import("@xyo-network/payload-model").
|
|
91
|
-
schema:
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
163
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
164
|
+
schema: Schema;
|
|
165
|
+
readonly archiving?: {
|
|
166
|
+
readonly archivists?: string[] | undefined;
|
|
167
|
+
readonly queries?: string[] | undefined;
|
|
168
|
+
} | undefined;
|
|
169
|
+
readonly allowedQueries?: string[] | undefined;
|
|
170
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
171
|
+
readonly certify?: boolean | undefined;
|
|
172
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
173
|
+
readonly labels?: {
|
|
174
|
+
[x: string]: string | undefined;
|
|
175
|
+
} | undefined;
|
|
176
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
177
|
+
readonly paging?: {
|
|
178
|
+
[x: string]: {
|
|
179
|
+
size?: number | undefined;
|
|
180
|
+
};
|
|
181
|
+
} | undefined;
|
|
182
|
+
readonly retry?: {
|
|
183
|
+
backoff?: number | undefined;
|
|
184
|
+
interval?: number | undefined;
|
|
185
|
+
retries?: number | undefined;
|
|
186
|
+
} | undefined;
|
|
187
|
+
readonly security?: {
|
|
188
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
189
|
+
readonly allowed?: {
|
|
190
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
191
|
+
} | undefined;
|
|
192
|
+
readonly disallowed?: {
|
|
193
|
+
[x: string]: Lowercase<string>[];
|
|
194
|
+
} | undefined;
|
|
195
|
+
} | undefined;
|
|
196
|
+
readonly sign?: boolean | undefined;
|
|
197
|
+
readonly storeQueries?: boolean | undefined;
|
|
198
|
+
readonly timestamp?: boolean | undefined;
|
|
199
|
+
}>;
|
|
97
200
|
ephemeralQueryAccountEnabled?: boolean;
|
|
98
201
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
99
|
-
}, {
|
|
100
|
-
schema:
|
|
101
|
-
}
|
|
102
|
-
schema:
|
|
103
|
-
}
|
|
202
|
+
}, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
203
|
+
schema: Schema;
|
|
204
|
+
}>, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
205
|
+
schema: Schema;
|
|
206
|
+
}>, DivinerModuleEventData>>;
|
|
104
207
|
/**
|
|
105
208
|
* Retrieves the Payload Diviner for the specified store
|
|
106
209
|
* @param store The store to retrieve the Payload Diviner for
|
|
@@ -111,20 +214,50 @@ export declare class IndexingDiviner<TParams extends IndexingDivinerParams = Ind
|
|
|
111
214
|
addToResolvers?: boolean;
|
|
112
215
|
additionalSigners?: import("@xyo-network/account-model").AccountInstance[];
|
|
113
216
|
allowNameResolution?: boolean;
|
|
114
|
-
config: import("@xyo-network/payload-model").
|
|
115
|
-
schema:
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
217
|
+
config: import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
218
|
+
schema: Schema;
|
|
219
|
+
readonly archiving?: {
|
|
220
|
+
readonly archivists?: string[] | undefined;
|
|
221
|
+
readonly queries?: string[] | undefined;
|
|
222
|
+
} | undefined;
|
|
223
|
+
readonly allowedQueries?: string[] | undefined;
|
|
224
|
+
readonly archivist?: import("@xyo-network/module-model").ModuleIdentifier | undefined;
|
|
225
|
+
readonly certify?: boolean | undefined;
|
|
226
|
+
readonly consoleLogger?: import("@xylabs/logger").LogLevel | undefined;
|
|
227
|
+
readonly labels?: {
|
|
228
|
+
[x: string]: string | undefined;
|
|
229
|
+
} | undefined;
|
|
230
|
+
readonly name?: import("@xyo-network/module-model").ModuleName | undefined;
|
|
231
|
+
readonly paging?: {
|
|
232
|
+
[x: string]: {
|
|
233
|
+
size?: number | undefined;
|
|
234
|
+
};
|
|
235
|
+
} | undefined;
|
|
236
|
+
readonly retry?: {
|
|
237
|
+
backoff?: number | undefined;
|
|
238
|
+
interval?: number | undefined;
|
|
239
|
+
retries?: number | undefined;
|
|
240
|
+
} | undefined;
|
|
241
|
+
readonly security?: {
|
|
242
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
243
|
+
readonly allowed?: {
|
|
244
|
+
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
245
|
+
} | undefined;
|
|
246
|
+
readonly disallowed?: {
|
|
247
|
+
[x: string]: Lowercase<string>[];
|
|
248
|
+
} | undefined;
|
|
249
|
+
} | undefined;
|
|
250
|
+
readonly sign?: boolean | undefined;
|
|
251
|
+
readonly storeQueries?: boolean | undefined;
|
|
252
|
+
readonly timestamp?: boolean | undefined;
|
|
253
|
+
}>;
|
|
121
254
|
ephemeralQueryAccountEnabled?: boolean;
|
|
122
255
|
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[];
|
|
123
|
-
}, DivinerModuleEventData>, {
|
|
124
|
-
schema:
|
|
125
|
-
}
|
|
126
|
-
schema:
|
|
127
|
-
}
|
|
256
|
+
}, DivinerModuleEventData>, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
257
|
+
schema: Schema;
|
|
258
|
+
}>, import("@xyo-network/payload-model").DeepRestrictToStringKeys<{
|
|
259
|
+
schema: Schema;
|
|
260
|
+
}>>>;
|
|
128
261
|
/**
|
|
129
262
|
* Retrieves the last state of the Diviner process. Used to recover state after
|
|
130
263
|
* preemptions, reboots, etc.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AAGjE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EACL,qBAAqB,EAErB,qBAAqB,EACrB,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACc,eAAe,EAAE,sBAAsB,EAC3D,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAC2B,WAAW,EAC5C,MAAM,2BAA2B,CAAA;AAElC,OAAO,EACL,OAAO,EAAE,MAAM,EAChB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,MAAM,cAAc,GAAG,YAAY,GAAG,YAAY,CAAA;AAExD,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,qBAAqB,EAAE,cAAc,CAAC,CAAA;AAI9E,qBACa,eAAe,CAC1B,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,EAC7D,GAAG,SAAS,OAAO,GAAG,OAAO,EAC7B,IAAI,SAAS,OAAO,GAAG,OAAO,EAC9B,UAAU,SAAS,sBAAsB,CAAC,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,sBAAsB,CAChH,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,EACnC,GAAG,EACH,IAAI,CACL,CACD,SAAQ,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC;IACvD,gBAAyB,kBAAkB,SAAQ;IACnD,gBAAyB,aAAa,EAAE,MAAM,EAAE,CAAwD;IACxG,gBAAyB,mBAAmB,EAAE,MAAM,CAA8B;IAElF,OAAO,CAAC,UAAU,CAAC,CAAmC;IACtD,OAAO,CAAC,OAAO,CAAC,CAAQ;IAExB,IAAI,mBAAmB,WAEtB;IAED,IAAI,aAAa,WAEhB;IAED;;;OAGG;IACH,SAAS,CAAC,gBAAgB,QAAa,OAAO,CAAC,IAAI,CAAC,CAmBnD;IAED;;;;;;OAMG;cACa,WAAW,CAAC,SAAS,EAAE,WAAW,CAAC,oBAAoB,CAAC;cAS/C,aAAa,CAAC,QAAQ,GAAE,GAAG,EAAO,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;IAsB7E;;;;OAIG;cACa,oBAAoB,CAAC,KAAK,EAAE,WAAW
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAA;AAGjE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAE/D,OAAO,EACL,qBAAqB,EAErB,qBAAqB,EACrB,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EACc,eAAe,EAAE,sBAAsB,EAC3D,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAC2B,WAAW,EAC5C,MAAM,2BAA2B,CAAA;AAElC,OAAO,EACL,OAAO,EAAE,MAAM,EAChB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,MAAM,cAAc,GAAG,YAAY,GAAG,YAAY,CAAA;AAExD,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,qBAAqB,EAAE,cAAc,CAAC,CAAA;AAI9E,qBACa,eAAe,CAC1B,OAAO,SAAS,qBAAqB,GAAG,qBAAqB,EAC7D,GAAG,SAAS,OAAO,GAAG,OAAO,EAC7B,IAAI,SAAS,OAAO,GAAG,OAAO,EAC9B,UAAU,SAAS,sBAAsB,CAAC,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,sBAAsB,CAChH,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,EACnC,GAAG,EACH,IAAI,CACL,CACD,SAAQ,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC;IACvD,gBAAyB,kBAAkB,SAAQ;IACnD,gBAAyB,aAAa,EAAE,MAAM,EAAE,CAAwD;IACxG,gBAAyB,mBAAmB,EAAE,MAAM,CAA8B;IAElF,OAAO,CAAC,UAAU,CAAC,CAAmC;IACtD,OAAO,CAAC,OAAO,CAAC,CAAQ;IAExB,IAAI,mBAAmB,WAEtB;IAED,IAAI,aAAa,WAEhB;IAED;;;OAGG;IACH,SAAS,CAAC,gBAAgB,QAAa,OAAO,CAAC,IAAI,CAAC,CAmBnD;IAED;;;;;;OAMG;cACa,WAAW,CAAC,SAAS,EAAE,WAAW,CAAC,oBAAoB,CAAC;cAS/C,aAAa,CAAC,QAAQ,GAAE,GAAG,EAAO,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;IAsB7E;;;;OAIG;cACa,oBAAoB,CAAC,KAAK,EAAE,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMvD;;;;OAIG;cACa,8BAA8B,CAAC,KAAK,EAAE,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMjE;;;;OAIG;cACa,uBAAuB,CAAC,SAAS,EAAE,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IASvE;;;;OAIG;cACa,yBAAyB,CAAC,KAAK,EAAE,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D;;;OAGG;cACa,aAAa,IAAI,OAAO,CAAC,WAAW,CAAC,oBAAoB,CAAC,GAAG,SAAS,CAAC;cA0C9D,YAAY,IAAI,OAAO,CAAC,OAAO,CAAC;cAMhC,WAAW,CAAC,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC;IAQrF;;;OAGG;IACH,OAAO,CAAC,IAAI;CAcb"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-indexing-memory",
|
|
3
|
-
"version": "3.6.0-rc.
|
|
3
|
+
"version": "3.6.0-rc.7",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,20 +29,20 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.4.
|
|
33
|
-
"@xylabs/hex": "^4.4.
|
|
34
|
-
"@xylabs/timer": "^4.4.
|
|
35
|
-
"@xyo-network/archivist-wrapper": "^3.6.0-rc.
|
|
36
|
-
"@xyo-network/boundwitness-builder": "^3.6.0-rc.
|
|
37
|
-
"@xyo-network/boundwitness-model": "^3.6.0-rc.
|
|
38
|
-
"@xyo-network/diviner-abstract": "^3.6.0-rc.
|
|
39
|
-
"@xyo-network/diviner-boundwitness-model": "^3.6.0-rc.
|
|
40
|
-
"@xyo-network/diviner-indexing-model": "^3.6.0-rc.
|
|
41
|
-
"@xyo-network/diviner-model": "^3.6.0-rc.
|
|
42
|
-
"@xyo-network/diviner-wrapper": "^3.6.0-rc.
|
|
43
|
-
"@xyo-network/module-model": "^3.6.0-rc.
|
|
44
|
-
"@xyo-network/payload-builder": "^3.6.0-rc.
|
|
45
|
-
"@xyo-network/payload-model": "^3.6.0-rc.
|
|
32
|
+
"@xylabs/assert": "^4.4.15",
|
|
33
|
+
"@xylabs/hex": "^4.4.15",
|
|
34
|
+
"@xylabs/timer": "^4.4.15",
|
|
35
|
+
"@xyo-network/archivist-wrapper": "^3.6.0-rc.7",
|
|
36
|
+
"@xyo-network/boundwitness-builder": "^3.6.0-rc.7",
|
|
37
|
+
"@xyo-network/boundwitness-model": "^3.6.0-rc.7",
|
|
38
|
+
"@xyo-network/diviner-abstract": "^3.6.0-rc.7",
|
|
39
|
+
"@xyo-network/diviner-boundwitness-model": "^3.6.0-rc.7",
|
|
40
|
+
"@xyo-network/diviner-indexing-model": "^3.6.0-rc.7",
|
|
41
|
+
"@xyo-network/diviner-model": "^3.6.0-rc.7",
|
|
42
|
+
"@xyo-network/diviner-wrapper": "^3.6.0-rc.7",
|
|
43
|
+
"@xyo-network/module-model": "^3.6.0-rc.7",
|
|
44
|
+
"@xyo-network/payload-builder": "^3.6.0-rc.7",
|
|
45
|
+
"@xyo-network/payload-model": "^3.6.0-rc.7"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@xylabs/ts-scripts-yarn3": "^4.2.4",
|