@xyo-network/diviner-payload-pointer-model 5.3.24 → 5.3.26
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/README.md +486 -10
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -1,23 +1,499 @@
|
|
|
1
|
+
[![logo][]](https://xyo.network)
|
|
2
|
+
|
|
1
3
|
# @xyo-network/diviner-payload-pointer-model
|
|
2
4
|
|
|
3
|
-
[![
|
|
5
|
+
[![npm][npm-badge]][npm-link]
|
|
6
|
+
[![license][license-badge]][license-link]
|
|
7
|
+
|
|
8
|
+
> Primary SDK for using XYO Protocol 2.0
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
Using npm:
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npm install {{name}}
|
|
16
|
+
```
|
|
4
17
|
|
|
5
|
-
|
|
18
|
+
Using yarn:
|
|
6
19
|
|
|
7
|
-
|
|
20
|
+
```sh
|
|
21
|
+
yarn add {{name}}
|
|
22
|
+
```
|
|
8
23
|
|
|
9
|
-
|
|
24
|
+
Using pnpm:
|
|
10
25
|
|
|
11
|
-
|
|
26
|
+
```sh
|
|
27
|
+
pnpm add {{name}}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Using bun:
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
bun add {{name}}
|
|
34
|
+
```
|
|
12
35
|
|
|
13
|
-
Part of [sdk-xyo-client-js](https://www.npmjs.com/package/@xyo-network/sdk-xyo-client-js)
|
|
14
36
|
|
|
15
37
|
## License
|
|
16
38
|
|
|
17
|
-
|
|
39
|
+
See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
|
|
40
|
+
|
|
41
|
+
## Reference
|
|
42
|
+
|
|
43
|
+
### packages
|
|
44
|
+
|
|
45
|
+
### modules
|
|
46
|
+
|
|
47
|
+
### packages
|
|
48
|
+
|
|
49
|
+
### diviner
|
|
50
|
+
|
|
51
|
+
### packages
|
|
52
|
+
|
|
53
|
+
### payloadpointer
|
|
54
|
+
|
|
55
|
+
### packages
|
|
56
|
+
|
|
57
|
+
### model
|
|
58
|
+
|
|
59
|
+
### .temp-typedoc
|
|
60
|
+
|
|
61
|
+
### functions
|
|
62
|
+
|
|
63
|
+
### <a id="isBoundWitnessPointer"></a>isBoundWitnessPointer
|
|
64
|
+
|
|
65
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
```ts
|
|
70
|
+
function isBoundWitnessPointer(x?): x is BoundWitnessPointerPayload;
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Identity function for determining if an object is a BoundWitness Pointer
|
|
74
|
+
|
|
75
|
+
## Parameters
|
|
76
|
+
|
|
77
|
+
### x?
|
|
78
|
+
|
|
79
|
+
`Payload` \| `null`
|
|
80
|
+
|
|
81
|
+
The object to check
|
|
82
|
+
|
|
83
|
+
## Returns
|
|
84
|
+
|
|
85
|
+
`x is BoundWitnessPointerPayload`
|
|
86
|
+
|
|
87
|
+
### <a id="isPayloadAddressRule"></a>isPayloadAddressRule
|
|
88
|
+
|
|
89
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
90
|
+
|
|
91
|
+
***
|
|
92
|
+
|
|
93
|
+
```ts
|
|
94
|
+
function isPayloadAddressRule(rule): rule is PayloadAddressRule;
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Parameters
|
|
98
|
+
|
|
99
|
+
### rule
|
|
100
|
+
|
|
101
|
+
[`PayloadRule`](#../type-aliases/PayloadRule)
|
|
102
|
+
|
|
103
|
+
## Returns
|
|
104
|
+
|
|
105
|
+
`rule is PayloadAddressRule`
|
|
106
|
+
|
|
107
|
+
### <a id="isPayloadPointer"></a>isPayloadPointer
|
|
108
|
+
|
|
109
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
110
|
+
|
|
111
|
+
***
|
|
112
|
+
|
|
113
|
+
```ts
|
|
114
|
+
function isPayloadPointer(x?): x is PayloadPointerPayload;
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Identity function for determining if an object is a Payload Pointer
|
|
118
|
+
|
|
119
|
+
## Parameters
|
|
120
|
+
|
|
121
|
+
### x?
|
|
122
|
+
|
|
123
|
+
`Payload` \| `null`
|
|
124
|
+
|
|
125
|
+
The object to check
|
|
126
|
+
|
|
127
|
+
## Returns
|
|
128
|
+
|
|
129
|
+
`x is PayloadPointerPayload`
|
|
130
|
+
|
|
131
|
+
### <a id="isPayloadSchemaRule"></a>isPayloadSchemaRule
|
|
132
|
+
|
|
133
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
134
|
+
|
|
135
|
+
***
|
|
136
|
+
|
|
137
|
+
```ts
|
|
138
|
+
function isPayloadSchemaRule(rule): rule is PayloadSchemaRule;
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
## Parameters
|
|
142
|
+
|
|
143
|
+
### rule
|
|
144
|
+
|
|
145
|
+
[`PayloadRule`](#../type-aliases/PayloadRule)
|
|
146
|
+
|
|
147
|
+
## Returns
|
|
148
|
+
|
|
149
|
+
`rule is PayloadSchemaRule`
|
|
150
|
+
|
|
151
|
+
### <a id="isPayloadSequenceOrderRule"></a>isPayloadSequenceOrderRule
|
|
152
|
+
|
|
153
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
154
|
+
|
|
155
|
+
***
|
|
156
|
+
|
|
157
|
+
```ts
|
|
158
|
+
function isPayloadSequenceOrderRule(rule): rule is PayloadSequenceOrderRule;
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
## Parameters
|
|
162
|
+
|
|
163
|
+
### rule
|
|
164
|
+
|
|
165
|
+
[`PayloadRule`](#../type-aliases/PayloadRule)
|
|
166
|
+
|
|
167
|
+
## Returns
|
|
168
|
+
|
|
169
|
+
`rule is PayloadSequenceOrderRule`
|
|
170
|
+
|
|
171
|
+
### <a id="isPointerPayload"></a>isPointerPayload
|
|
172
|
+
|
|
173
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
174
|
+
|
|
175
|
+
***
|
|
176
|
+
|
|
177
|
+
```ts
|
|
178
|
+
function isPointerPayload(x?): x is PointerPayload;
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
Identity function for determining if an object is a Pointer Payload (PayloadPointer or BoundWitnessPointer)
|
|
182
|
+
|
|
183
|
+
## Parameters
|
|
184
|
+
|
|
185
|
+
### x?
|
|
186
|
+
|
|
187
|
+
`Payload` \| `null`
|
|
188
|
+
|
|
189
|
+
The object to check
|
|
190
|
+
|
|
191
|
+
## Returns
|
|
192
|
+
|
|
193
|
+
`x is PointerPayload`
|
|
194
|
+
|
|
195
|
+
### interfaces
|
|
196
|
+
|
|
197
|
+
### <a id="PayloadAddressRule"></a>PayloadAddressRule
|
|
198
|
+
|
|
199
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
200
|
+
|
|
201
|
+
***
|
|
202
|
+
|
|
203
|
+
## Properties
|
|
204
|
+
|
|
205
|
+
### address
|
|
206
|
+
|
|
207
|
+
```ts
|
|
208
|
+
address: string;
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
### <a id="PayloadSchemaRule"></a>PayloadSchemaRule
|
|
212
|
+
|
|
213
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
214
|
+
|
|
215
|
+
***
|
|
216
|
+
|
|
217
|
+
## Properties
|
|
218
|
+
|
|
219
|
+
### schema
|
|
220
|
+
|
|
221
|
+
```ts
|
|
222
|
+
schema: Schema;
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
### <a id="PayloadSearchCriteria"></a>PayloadSearchCriteria
|
|
226
|
+
|
|
227
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
228
|
+
|
|
229
|
+
***
|
|
230
|
+
|
|
231
|
+
## Properties
|
|
232
|
+
|
|
233
|
+
### addresses
|
|
234
|
+
|
|
235
|
+
```ts
|
|
236
|
+
addresses: BrandedAddress[];
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
***
|
|
240
|
+
|
|
241
|
+
### cursor?
|
|
242
|
+
|
|
243
|
+
```ts
|
|
244
|
+
optional cursor?: Sequence;
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
***
|
|
248
|
+
|
|
249
|
+
### order
|
|
250
|
+
|
|
251
|
+
```ts
|
|
252
|
+
order: Order;
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
***
|
|
256
|
+
|
|
257
|
+
### schemas
|
|
258
|
+
|
|
259
|
+
```ts
|
|
260
|
+
schemas: Schema[];
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
### <a id="PayloadSequenceOrderRule"></a>PayloadSequenceOrderRule
|
|
264
|
+
|
|
265
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
266
|
+
|
|
267
|
+
***
|
|
268
|
+
|
|
269
|
+
## Properties
|
|
270
|
+
|
|
271
|
+
### order?
|
|
272
|
+
|
|
273
|
+
```ts
|
|
274
|
+
optional order?: Order;
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
***
|
|
278
|
+
|
|
279
|
+
### sequence?
|
|
280
|
+
|
|
281
|
+
```ts
|
|
282
|
+
optional sequence?: Sequence;
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
### type-aliases
|
|
286
|
+
|
|
287
|
+
### <a id="BoundWitnessPointerPayload"></a>BoundWitnessPointerPayload
|
|
288
|
+
|
|
289
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
290
|
+
|
|
291
|
+
***
|
|
292
|
+
|
|
293
|
+
```ts
|
|
294
|
+
type BoundWitnessPointerPayload = PointerPayload & object;
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
## Type Declaration
|
|
298
|
+
|
|
299
|
+
### schema
|
|
300
|
+
|
|
301
|
+
```ts
|
|
302
|
+
schema: BoundWitnessPointerSchema;
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
### <a id="BoundWitnessPointerSchema"></a>BoundWitnessPointerSchema
|
|
306
|
+
|
|
307
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
308
|
+
|
|
309
|
+
***
|
|
310
|
+
|
|
311
|
+
```ts
|
|
312
|
+
type BoundWitnessPointerSchema = typeof BoundWitnessPointerSchema;
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
### <a id="PayloadPointerDivinerConfig"></a>PayloadPointerDivinerConfig
|
|
316
|
+
|
|
317
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
318
|
+
|
|
319
|
+
***
|
|
320
|
+
|
|
321
|
+
```ts
|
|
322
|
+
type PayloadPointerDivinerConfig = DivinerConfig<object & object>;
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
The configuration for the Payload Pointer Diviner
|
|
326
|
+
|
|
327
|
+
### <a id="PayloadPointerDivinerConfigSchema"></a>PayloadPointerDivinerConfigSchema
|
|
328
|
+
|
|
329
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
330
|
+
|
|
331
|
+
***
|
|
332
|
+
|
|
333
|
+
```ts
|
|
334
|
+
type PayloadPointerDivinerConfigSchema = typeof PayloadPointerDivinerConfigSchema;
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
The config schema type for the Payload Pointer Diviner
|
|
338
|
+
|
|
339
|
+
### <a id="PayloadPointerDivinerParams"></a>PayloadPointerDivinerParams
|
|
340
|
+
|
|
341
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
342
|
+
|
|
343
|
+
***
|
|
344
|
+
|
|
345
|
+
```ts
|
|
346
|
+
type PayloadPointerDivinerParams = DivinerParams<AnyConfigSchema<PayloadPointerDivinerConfig>>;
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
The params type of the Payload Pointer diviner
|
|
350
|
+
|
|
351
|
+
### <a id="PayloadPointerDivinerSchema"></a>PayloadPointerDivinerSchema
|
|
352
|
+
|
|
353
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
354
|
+
|
|
355
|
+
***
|
|
356
|
+
|
|
357
|
+
```ts
|
|
358
|
+
type PayloadPointerDivinerSchema = typeof PayloadPointerDivinerSchema;
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
The schema type used for the Payload Pointer Diviner.
|
|
362
|
+
|
|
363
|
+
### <a id="PayloadPointerPayload"></a>PayloadPointerPayload
|
|
364
|
+
|
|
365
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
366
|
+
|
|
367
|
+
***
|
|
368
|
+
|
|
369
|
+
```ts
|
|
370
|
+
type PayloadPointerPayload = PointerPayload & object;
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
## Type Declaration
|
|
374
|
+
|
|
375
|
+
### schema
|
|
376
|
+
|
|
377
|
+
```ts
|
|
378
|
+
schema: PayloadPointerSchema;
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
### <a id="PayloadPointerSchema"></a>PayloadPointerSchema
|
|
382
|
+
|
|
383
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
384
|
+
|
|
385
|
+
***
|
|
386
|
+
|
|
387
|
+
```ts
|
|
388
|
+
type PayloadPointerSchema = typeof PayloadPointerSchema;
|
|
389
|
+
```
|
|
390
|
+
|
|
391
|
+
### <a id="PayloadRule"></a>PayloadRule
|
|
392
|
+
|
|
393
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
394
|
+
|
|
395
|
+
***
|
|
396
|
+
|
|
397
|
+
```ts
|
|
398
|
+
type PayloadRule =
|
|
399
|
+
| PayloadAddressRule
|
|
400
|
+
| PayloadSequenceOrderRule
|
|
401
|
+
| PayloadSchemaRule;
|
|
402
|
+
```
|
|
403
|
+
|
|
404
|
+
### <a id="PointerPayload"></a>PointerPayload
|
|
405
|
+
|
|
406
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
407
|
+
|
|
408
|
+
***
|
|
409
|
+
|
|
410
|
+
```ts
|
|
411
|
+
type PointerPayload = Payload<{
|
|
412
|
+
reference: PayloadRule[][];
|
|
413
|
+
}>;
|
|
414
|
+
```
|
|
415
|
+
|
|
416
|
+
### variables
|
|
417
|
+
|
|
418
|
+
### <a id="BoundWitnessPointerSchema"></a>BoundWitnessPointerSchema
|
|
419
|
+
|
|
420
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
421
|
+
|
|
422
|
+
***
|
|
423
|
+
|
|
424
|
+
```ts
|
|
425
|
+
const BoundWitnessPointerSchema: string & object;
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
## Type Declaration
|
|
429
|
+
|
|
430
|
+
### \_\_schema
|
|
431
|
+
|
|
432
|
+
```ts
|
|
433
|
+
readonly __schema: true;
|
|
434
|
+
```
|
|
435
|
+
|
|
436
|
+
### <a id="PayloadPointerDivinerConfigSchema"></a>PayloadPointerDivinerConfigSchema
|
|
437
|
+
|
|
438
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
439
|
+
|
|
440
|
+
***
|
|
441
|
+
|
|
442
|
+
```ts
|
|
443
|
+
const PayloadPointerDivinerConfigSchema: string & object;
|
|
444
|
+
```
|
|
445
|
+
|
|
446
|
+
The config schema for the Payload Pointer Diviner
|
|
447
|
+
|
|
448
|
+
## Type Declaration
|
|
449
|
+
|
|
450
|
+
### \_\_schema
|
|
451
|
+
|
|
452
|
+
```ts
|
|
453
|
+
readonly __schema: true;
|
|
454
|
+
```
|
|
455
|
+
|
|
456
|
+
### <a id="PayloadPointerDivinerSchema"></a>PayloadPointerDivinerSchema
|
|
457
|
+
|
|
458
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
459
|
+
|
|
460
|
+
***
|
|
461
|
+
|
|
462
|
+
```ts
|
|
463
|
+
const PayloadPointerDivinerSchema: "network.xyo.diviner.payload.pointer" & object;
|
|
464
|
+
```
|
|
465
|
+
|
|
466
|
+
The schema used for the Payload Pointer Diviner.
|
|
467
|
+
|
|
468
|
+
## Type Declaration
|
|
469
|
+
|
|
470
|
+
### \_\_schema
|
|
471
|
+
|
|
472
|
+
```ts
|
|
473
|
+
readonly __schema: true;
|
|
474
|
+
```
|
|
475
|
+
|
|
476
|
+
### <a id="PayloadPointerSchema"></a>PayloadPointerSchema
|
|
477
|
+
|
|
478
|
+
[**@xyo-network/diviner-payload-pointer-model**](#../README)
|
|
479
|
+
|
|
480
|
+
***
|
|
481
|
+
|
|
482
|
+
```ts
|
|
483
|
+
const PayloadPointerSchema: string & object;
|
|
484
|
+
```
|
|
485
|
+
|
|
486
|
+
## Type Declaration
|
|
487
|
+
|
|
488
|
+
### \_\_schema
|
|
18
489
|
|
|
19
|
-
|
|
490
|
+
```ts
|
|
491
|
+
readonly __schema: true;
|
|
492
|
+
```
|
|
20
493
|
|
|
21
|
-
[Made with 🔥 and ❄️ by XYO](https://xyo.network)
|
|
22
494
|
|
|
23
|
-
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
|
495
|
+
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
|
496
|
+
[npm-badge]: https://img.shields.io/npm/v/@xyo-network/diviner-payload-pointer-model.svg
|
|
497
|
+
[npm-link]: https://www.npmjs.com/package/@xyo-network/diviner-payload-pointer-model
|
|
498
|
+
[license-badge]: https://img.shields.io/npm/l/@xyo-network/diviner-payload-pointer-model.svg
|
|
499
|
+
[license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-payload-pointer-model",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.26",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
24
|
"types": "./dist/neutral/index.d.ts",
|
|
25
|
+
"import": "./dist/neutral/index.mjs",
|
|
25
26
|
"default": "./dist/neutral/index.mjs"
|
|
26
27
|
},
|
|
27
28
|
"./package.json": "./package.json"
|
|
28
29
|
},
|
|
29
|
-
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"files": [
|
|
32
32
|
"dist",
|
|
@@ -36,29 +36,29 @@
|
|
|
36
36
|
"README.md"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@xyo-network/
|
|
40
|
-
"@xyo-network/
|
|
41
|
-
"@xyo-network/diviner-payload-model": "~5.3.
|
|
42
|
-
"@xyo-network/
|
|
43
|
-
"@xyo-network/
|
|
39
|
+
"@xyo-network/boundwitness-model": "~5.3.26",
|
|
40
|
+
"@xyo-network/diviner-model": "~5.3.26",
|
|
41
|
+
"@xyo-network/diviner-payload-model": "~5.3.26",
|
|
42
|
+
"@xyo-network/module-model": "~5.3.26",
|
|
43
|
+
"@xyo-network/payload-model": "~5.3.26"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@opentelemetry/api": "^1.9.1",
|
|
47
|
-
"@types/node": "^25.5.
|
|
48
|
-
"@xylabs/sdk-js": "^5.0.
|
|
49
|
-
"@xylabs/ts-scripts-common": "~7.
|
|
50
|
-
"@xylabs/ts-scripts-pnpm": "~7.
|
|
51
|
-
"@xylabs/tsconfig": "~7.
|
|
47
|
+
"@types/node": "^25.5.2",
|
|
48
|
+
"@xylabs/sdk-js": "^5.0.94",
|
|
49
|
+
"@xylabs/ts-scripts-common": "~7.7.5",
|
|
50
|
+
"@xylabs/ts-scripts-pnpm": "~7.7.5",
|
|
51
|
+
"@xylabs/tsconfig": "~7.7.5",
|
|
52
52
|
"acorn": "^8.16.0",
|
|
53
53
|
"axios": "^1.14.0",
|
|
54
54
|
"esbuild": "^0.28.0",
|
|
55
55
|
"typescript": "~5.9.3",
|
|
56
56
|
"zod": "^4.3.6",
|
|
57
|
-
"@xyo-network/
|
|
58
|
-
"@xyo-network/diviner-model": "~5.3.
|
|
59
|
-
"@xyo-network/payload-model": "~5.3.
|
|
60
|
-
"@xyo-network/
|
|
61
|
-
"@xyo-network/
|
|
57
|
+
"@xyo-network/boundwitness-model": "~5.3.26",
|
|
58
|
+
"@xyo-network/diviner-model": "~5.3.26",
|
|
59
|
+
"@xyo-network/diviner-payload-model": "~5.3.26",
|
|
60
|
+
"@xyo-network/payload-model": "~5.3.26",
|
|
61
|
+
"@xyo-network/module-model": "~5.3.26"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"@xylabs/sdk-js": "^5",
|