@xyo-network/diviner-range-model 5.3.29 → 5.4.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.
Files changed (2) hide show
  1. package/README.md +0 -304
  2. package/package.json +12 -16
package/README.md CHANGED
@@ -38,310 +38,6 @@ bun add {{name}}
38
38
 
39
39
  See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
40
40
 
41
- ## Reference
42
-
43
- ### packages
44
-
45
- ### modules
46
-
47
- ### packages
48
-
49
- ### diviner
50
-
51
- ### packages
52
-
53
- ### range
54
-
55
- ### packages
56
-
57
- ### model
58
-
59
- ### .temp-typedoc
60
-
61
- ### functions
62
-
63
- ### <a id="isBigIntRangePayload"></a>isBigIntRangePayload
64
-
65
- [**@xyo-network/diviner-range-model**](#../README)
66
-
67
- ***
68
-
69
- ```ts
70
- function isBigIntRangePayload(payload?): payload is BigIntRangePayload;
71
- ```
72
-
73
- ## Parameters
74
-
75
- ### payload?
76
-
77
- `unknown`
78
-
79
- ## Returns
80
-
81
- `payload is BigIntRangePayload`
82
-
83
- ### <a id="isNumberRangePayload"></a>isNumberRangePayload
84
-
85
- [**@xyo-network/diviner-range-model**](#../README)
86
-
87
- ***
88
-
89
- ```ts
90
- function isNumberRangePayload(payload?): payload is NumberRangePayload;
91
- ```
92
-
93
- ## Parameters
94
-
95
- ### payload?
96
-
97
- `unknown`
98
-
99
- ## Returns
100
-
101
- `payload is NumberRangePayload`
102
-
103
- ### type-aliases
104
-
105
- ### <a id="BigIntPayload"></a>BigIntPayload
106
-
107
- [**@xyo-network/diviner-range-model**](#../README)
108
-
109
- ***
110
-
111
- ```ts
112
- type BigIntPayload = Payload<{
113
- value: Hex;
114
- }, BigIntSchema>;
115
- ```
116
-
117
- ### <a id="BigIntRangePayload"></a>BigIntRangePayload
118
-
119
- [**@xyo-network/diviner-range-model**](#../README)
120
-
121
- ***
122
-
123
- ```ts
124
- type BigIntRangePayload = RangePayloadBase<Hex>;
125
- ```
126
-
127
- ### <a id="BigIntSchema"></a>BigIntSchema
128
-
129
- [**@xyo-network/diviner-range-model**](#../README)
130
-
131
- ***
132
-
133
- ```ts
134
- type BigIntSchema = typeof BigIntSchema;
135
- ```
136
-
137
- ### <a id="NumberPayload"></a>NumberPayload
138
-
139
- [**@xyo-network/diviner-range-model**](#../README)
140
-
141
- ***
142
-
143
- ```ts
144
- type NumberPayload = Payload<{
145
- value: number;
146
- }, NumberSchema>;
147
- ```
148
-
149
- ### <a id="NumberRangePayload"></a>NumberRangePayload
150
-
151
- [**@xyo-network/diviner-range-model**](#../README)
152
-
153
- ***
154
-
155
- ```ts
156
- type NumberRangePayload = RangePayloadBase<number>;
157
- ```
158
-
159
- ### <a id="NumberSchema"></a>NumberSchema
160
-
161
- [**@xyo-network/diviner-range-model**](#../README)
162
-
163
- ***
164
-
165
- ```ts
166
- type NumberSchema = typeof NumberSchema;
167
- ```
168
-
169
- ### <a id="RangeDivinerConfig"></a>RangeDivinerConfig
170
-
171
- [**@xyo-network/diviner-range-model**](#../README)
172
-
173
- ***
174
-
175
- ```ts
176
- type RangeDivinerConfig = DivinerConfig<{
177
- ranges?: RangePayload[];
178
- }, RangeDivinerConfigSchema>;
179
- ```
180
-
181
- ### <a id="RangeDivinerConfigSchema"></a>RangeDivinerConfigSchema
182
-
183
- [**@xyo-network/diviner-range-model**](#../README)
184
-
185
- ***
186
-
187
- ```ts
188
- type RangeDivinerConfigSchema = typeof RangeDivinerConfigSchema;
189
- ```
190
-
191
- ### <a id="RangePayload"></a>RangePayload
192
-
193
- [**@xyo-network/diviner-range-model**](#../README)
194
-
195
- ***
196
-
197
- ```ts
198
- type RangePayload =
199
- | NumberRangePayload
200
- | BigIntRangePayload;
201
- ```
202
-
203
- ### <a id="RangePayloadBase"></a>RangePayloadBase
204
-
205
- [**@xyo-network/diviner-range-model**](#../README)
206
-
207
- ***
208
-
209
- ```ts
210
- type RangePayloadBase<T> = Payload<{
211
- count: number;
212
- start: T;
213
- }, RangeSchema>;
214
- ```
215
-
216
- ## Type Parameters
217
-
218
- ### T
219
-
220
- `T`
221
-
222
- ### <a id="RangeSchema"></a>RangeSchema
223
-
224
- [**@xyo-network/diviner-range-model**](#../README)
225
-
226
- ***
227
-
228
- ```ts
229
- type RangeSchema = typeof RangeSchema;
230
- ```
231
-
232
- ### variables
233
-
234
- ### <a id="BigIntSchema"></a>BigIntSchema
235
-
236
- [**@xyo-network/diviner-range-model**](#../README)
237
-
238
- ***
239
-
240
- ```ts
241
- const BigIntSchema: "network.xyo.bigint" & object;
242
- ```
243
-
244
- ## Type Declaration
245
-
246
- ### \_\_schema
247
-
248
- ```ts
249
- readonly __schema: true;
250
- ```
251
-
252
- ### <a id="NumberSchema"></a>NumberSchema
253
-
254
- [**@xyo-network/diviner-range-model**](#../README)
255
-
256
- ***
257
-
258
- ```ts
259
- const NumberSchema: "network.xyo.number" & object;
260
- ```
261
-
262
- ## Type Declaration
263
-
264
- ### \_\_schema
265
-
266
- ```ts
267
- readonly __schema: true;
268
- ```
269
-
270
- ### <a id="RangeDivinerConfigSchema"></a>RangeDivinerConfigSchema
271
-
272
- [**@xyo-network/diviner-range-model**](#../README)
273
-
274
- ***
275
-
276
- ```ts
277
- const RangeDivinerConfigSchema: "network.xyo.diviner.range.config" & object;
278
- ```
279
-
280
- ## Type Declaration
281
-
282
- ### \_\_schema
283
-
284
- ```ts
285
- readonly __schema: true;
286
- ```
287
-
288
- ### <a id="RangeSchema"></a>RangeSchema
289
-
290
- [**@xyo-network/diviner-range-model**](#../README)
291
-
292
- ***
293
-
294
- ```ts
295
- const RangeSchema: "network.xyo.range" & object;
296
- ```
297
-
298
- ## Type Declaration
299
-
300
- ### \_\_schema
301
-
302
- ```ts
303
- readonly __schema: true;
304
- ```
305
-
306
- ### <a id="isRangeDivinerConfig"></a>isRangeDivinerConfig
307
-
308
- [**@xyo-network/diviner-range-model**](#../README)
309
-
310
- ***
311
-
312
- ```ts
313
- const isRangeDivinerConfig: (x?) => x is RangeDivinerConfig;
314
- ```
315
-
316
- ## Parameters
317
-
318
- ### x?
319
-
320
- `unknown`
321
-
322
- ## Returns
323
-
324
- `x is RangeDivinerConfig`
325
-
326
- ### <a id="isRangePayload"></a>isRangePayload
327
-
328
- [**@xyo-network/diviner-range-model**](#../README)
329
-
330
- ***
331
-
332
- ```ts
333
- const isRangePayload: (x?) => x is RangePayload;
334
- ```
335
-
336
- ## Parameters
337
-
338
- ### x?
339
-
340
- `unknown`
341
-
342
- ## Returns
343
-
344
- `x is RangePayload`
345
41
 
346
42
 
347
43
  [logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-range-model",
3
- "version": "5.3.29",
3
+ "version": "5.4.0",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -22,12 +22,10 @@
22
22
  "exports": {
23
23
  ".": {
24
24
  "types": "./dist/neutral/index.d.ts",
25
- "import": "./dist/neutral/index.mjs",
26
25
  "default": "./dist/neutral/index.mjs"
27
26
  },
28
27
  "./package.json": "./package.json"
29
28
  },
30
- "types": "dist/neutral/index.d.ts",
31
29
  "files": [
32
30
  "dist",
33
31
  "!**/*.bench.*",
@@ -36,27 +34,25 @@
36
34
  "README.md"
37
35
  ],
38
36
  "dependencies": {
39
- "@xyo-network/payload-model": "~5.3.29"
37
+ "@xyo-network/payload-model": "~5.4.0"
40
38
  },
41
39
  "devDependencies": {
42
40
  "@opentelemetry/api": "^1.9.1",
43
- "@xylabs/sdk-js": "^5.0.95",
44
- "@xylabs/ts-scripts-common": "~7.8.4",
45
- "@xylabs/ts-scripts-pnpm": "~7.8.4",
46
- "@xylabs/tsconfig": "~7.8.4",
47
- "axios": "^1.14.0",
41
+ "@xylabs/sdk-js": "^5.0.97",
42
+ "@xylabs/toolchain": "~7.10.8",
43
+ "@xylabs/tsconfig": "~7.10.8",
48
44
  "pako": "~2.1.0",
49
45
  "typescript": "~5.9.3",
50
46
  "zod": "^4.3.6",
51
- "@xyo-network/diviner-model": "~5.3.29",
52
- "@xyo-network/account-model": "~5.3.29",
53
- "@xyo-network/module-model": "~5.3.29",
54
- "@xyo-network/previous-hash-store-model": "~5.3.29",
55
- "@xyo-network/manifest-model": "~5.3.29"
47
+ "@xyo-network/account-model": "~5.4.0",
48
+ "@xyo-network/diviner-model": "~5.4.0",
49
+ "@xyo-network/module-model": "~5.4.0",
50
+ "@xyo-network/manifest-model": "~5.4.0",
51
+ "@xyo-network/previous-hash-store-model": "~5.4.0"
56
52
  },
57
53
  "peerDependencies": {
58
- "@xylabs/sdk-js": "^5",
59
- "@xyo-network/diviner-model": "~5.3.29"
54
+ "@xylabs/sdk-js": "^5.0.97",
55
+ "@xyo-network/diviner-model": "~5.4"
60
56
  },
61
57
  "publishConfig": {
62
58
  "access": "public"