@xyo-network/schema-cache 5.3.30 → 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.
- package/README.md +0 -228
- package/dist/neutral/SchemaCache.d.ts.map +1 -1
- package/dist/neutral/index.mjs +3 -3
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +30 -35
package/README.md
CHANGED
|
@@ -38,234 +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
|
-
### sdk-utils
|
|
46
|
-
|
|
47
|
-
### packages
|
|
48
|
-
|
|
49
|
-
### schema-cache
|
|
50
|
-
|
|
51
|
-
### .temp-typedoc
|
|
52
|
-
|
|
53
|
-
### classes
|
|
54
|
-
|
|
55
|
-
### <a id="Debounce"></a>Debounce
|
|
56
|
-
|
|
57
|
-
[**@xyo-network/schema-cache**](#../README)
|
|
58
|
-
|
|
59
|
-
***
|
|
60
|
-
|
|
61
|
-
## Type Parameters
|
|
62
|
-
|
|
63
|
-
### TKey
|
|
64
|
-
|
|
65
|
-
`TKey` = `string`
|
|
66
|
-
|
|
67
|
-
## Constructors
|
|
68
|
-
|
|
69
|
-
### Constructor
|
|
70
|
-
|
|
71
|
-
```ts
|
|
72
|
-
new Debounce<TKey>(): Debounce<TKey>;
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
### Returns
|
|
76
|
-
|
|
77
|
-
`Debounce`\<`TKey`\>
|
|
78
|
-
|
|
79
|
-
## Methods
|
|
80
|
-
|
|
81
|
-
### one()
|
|
82
|
-
|
|
83
|
-
```ts
|
|
84
|
-
one<T>(
|
|
85
|
-
key,
|
|
86
|
-
closure,
|
|
87
|
-
timeout?): Promise<T>;
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
### Type Parameters
|
|
91
|
-
|
|
92
|
-
#### T
|
|
93
|
-
|
|
94
|
-
`T`
|
|
95
|
-
|
|
96
|
-
### Parameters
|
|
97
|
-
|
|
98
|
-
#### key
|
|
99
|
-
|
|
100
|
-
`TKey`
|
|
101
|
-
|
|
102
|
-
#### closure
|
|
103
|
-
|
|
104
|
-
() => `Promise`\<`T`\>
|
|
105
|
-
|
|
106
|
-
#### timeout?
|
|
107
|
-
|
|
108
|
-
`number` = `10_000`
|
|
109
|
-
|
|
110
|
-
### Returns
|
|
111
|
-
|
|
112
|
-
`Promise`\<`T`\>
|
|
113
|
-
|
|
114
|
-
### <a id="SchemaCache"></a>SchemaCache
|
|
115
|
-
|
|
116
|
-
[**@xyo-network/schema-cache**](#../README)
|
|
117
|
-
|
|
118
|
-
***
|
|
119
|
-
|
|
120
|
-
## Type Parameters
|
|
121
|
-
|
|
122
|
-
### T
|
|
123
|
-
|
|
124
|
-
`T` *extends* [`SchemaNameToValidatorMap`](#../interfaces/SchemaNameToValidatorMap) = [`SchemaNameToValidatorMap`](#../interfaces/SchemaNameToValidatorMap)
|
|
125
|
-
|
|
126
|
-
## Properties
|
|
127
|
-
|
|
128
|
-
### NULL
|
|
129
|
-
|
|
130
|
-
```ts
|
|
131
|
-
protected readonly static NULL: SchemaCacheEntry;
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
Object representing `null` since LRU Cache types
|
|
135
|
-
only allow for types that derive from object
|
|
136
|
-
|
|
137
|
-
***
|
|
138
|
-
|
|
139
|
-
### onSchemaCached?
|
|
140
|
-
|
|
141
|
-
```ts
|
|
142
|
-
optional onSchemaCached?: (name, entry) => void;
|
|
143
|
-
```
|
|
144
|
-
|
|
145
|
-
### Parameters
|
|
146
|
-
|
|
147
|
-
#### name
|
|
148
|
-
|
|
149
|
-
`string`
|
|
150
|
-
|
|
151
|
-
#### entry
|
|
152
|
-
|
|
153
|
-
[`SchemaCacheEntry`](#../type-aliases/SchemaCacheEntry)
|
|
154
|
-
|
|
155
|
-
### Returns
|
|
156
|
-
|
|
157
|
-
`void`
|
|
158
|
-
|
|
159
|
-
***
|
|
160
|
-
|
|
161
|
-
### proxy?
|
|
162
|
-
|
|
163
|
-
```ts
|
|
164
|
-
optional proxy?: string;
|
|
165
|
-
```
|
|
166
|
-
|
|
167
|
-
## Accessors
|
|
168
|
-
|
|
169
|
-
### instance
|
|
170
|
-
|
|
171
|
-
### Get Signature
|
|
172
|
-
|
|
173
|
-
```ts
|
|
174
|
-
get static instance(): SchemaCache<SchemaNameToValidatorMap>;
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
#### Returns
|
|
178
|
-
|
|
179
|
-
`SchemaCache`\<[`SchemaNameToValidatorMap`](#../interfaces/SchemaNameToValidatorMap)\>
|
|
180
|
-
|
|
181
|
-
***
|
|
182
|
-
|
|
183
|
-
### validators
|
|
184
|
-
|
|
185
|
-
### Get Signature
|
|
186
|
-
|
|
187
|
-
```ts
|
|
188
|
-
get validators(): T;
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
A map of cached schema (by name) to payload validators for the schema. A schema
|
|
192
|
-
must be cached via `get('schema.name')` before it's validator can be used as
|
|
193
|
-
they are compiled dynamically at runtime upon retrieval.
|
|
194
|
-
|
|
195
|
-
#### Returns
|
|
196
|
-
|
|
197
|
-
`T`
|
|
198
|
-
|
|
199
|
-
## Methods
|
|
200
|
-
|
|
201
|
-
### get()
|
|
202
|
-
|
|
203
|
-
```ts
|
|
204
|
-
get(schema?): Promise<
|
|
205
|
-
| SchemaCacheEntry
|
|
206
|
-
| null
|
|
207
|
-
| undefined>;
|
|
208
|
-
```
|
|
209
|
-
|
|
210
|
-
### Parameters
|
|
211
|
-
|
|
212
|
-
#### schema?
|
|
213
|
-
|
|
214
|
-
`string`
|
|
215
|
-
|
|
216
|
-
### Returns
|
|
217
|
-
|
|
218
|
-
`Promise`\<
|
|
219
|
-
\| [`SchemaCacheEntry`](#../type-aliases/SchemaCacheEntry)
|
|
220
|
-
\| `null`
|
|
221
|
-
\| `undefined`\>
|
|
222
|
-
|
|
223
|
-
### interfaces
|
|
224
|
-
|
|
225
|
-
### <a id="SchemaNameToValidatorMap"></a>SchemaNameToValidatorMap
|
|
226
|
-
|
|
227
|
-
[**@xyo-network/schema-cache**](#../README)
|
|
228
|
-
|
|
229
|
-
***
|
|
230
|
-
|
|
231
|
-
Used to map known schemas (byt their string name) to the validators which assert their types
|
|
232
|
-
|
|
233
|
-
## Indexable
|
|
234
|
-
|
|
235
|
-
```ts
|
|
236
|
-
[key: string]: ((x) => x is Payload) | undefined
|
|
237
|
-
```
|
|
238
|
-
|
|
239
|
-
### type-aliases
|
|
240
|
-
|
|
241
|
-
### <a id="NarrowPayload"></a>NarrowPayload
|
|
242
|
-
|
|
243
|
-
[**@xyo-network/schema-cache**](#../README)
|
|
244
|
-
|
|
245
|
-
***
|
|
246
|
-
|
|
247
|
-
```ts
|
|
248
|
-
type NarrowPayload<T> = ((x) => x is T) | undefined;
|
|
249
|
-
```
|
|
250
|
-
|
|
251
|
-
Used in conjunction with schema validation to support compile time type assertion
|
|
252
|
-
for known schema types.
|
|
253
|
-
|
|
254
|
-
## Type Parameters
|
|
255
|
-
|
|
256
|
-
### T
|
|
257
|
-
|
|
258
|
-
`T` *extends* `Payload` = `Payload`
|
|
259
|
-
|
|
260
|
-
### <a id="SchemaCacheEntry"></a>SchemaCacheEntry
|
|
261
|
-
|
|
262
|
-
[**@xyo-network/schema-cache**](#../README)
|
|
263
|
-
|
|
264
|
-
***
|
|
265
|
-
|
|
266
|
-
```ts
|
|
267
|
-
type SchemaCacheEntry = FetchedPayload<SchemaPayload>;
|
|
268
|
-
```
|
|
269
41
|
|
|
270
42
|
|
|
271
43
|
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchemaCache.d.ts","sourceRoot":"","sources":["../../src/SchemaCache.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SchemaCache.d.ts","sourceRoot":"","sources":["../../src/SchemaCache.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AACvD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAA;AAOvE,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAA;AAQ7E,MAAM,MAAM,gBAAgB,GAAG,cAAc,CAAC,aAAa,CAAC,CAAA;AAE5D,qBAAa,WAAW,CAAC,CAAC,SAAS,wBAAwB,GAAG,wBAAwB;IACpF;;;OAGG;IACH,SAAS,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAE,gBAAgB,CAAwD;IAExG,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,CAAa;IAEtC,cAAc,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,gBAAgB,KAAK,IAAI,CAAA;IAChE,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd,OAAO,CAAC,MAAM,CAA2E;IACzF,OAAO,CAAC,WAAW,CAAa;IAGhC,OAAO,CAAC,WAAW,CAAiB;IAEpC,OAAO;IAIP,MAAM,KAAK,QAAQ,0CAKlB;IAED;;;;OAIG;IACH,IAAI,UAAU,IAAI,CAAC,CAElB;IAEK,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,GAAG,SAAS,GAAG,IAAI,CAAC;IAcxE,OAAO,CAAC,kBAAkB;IAgB1B,OAAO,CAAC,YAAY;YAMN,WAAW;CAqB1B"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -21,6 +21,7 @@ var Debounce = class {
|
|
|
21
21
|
|
|
22
22
|
// src/SchemaCache.ts
|
|
23
23
|
import {
|
|
24
|
+
FetchClientError,
|
|
24
25
|
handleError,
|
|
25
26
|
isDefined as isDefined2,
|
|
26
27
|
isString
|
|
@@ -28,7 +29,6 @@ import {
|
|
|
28
29
|
import { DomainPayloadWrapper } from "@xyo-network/domain-payload-plugin";
|
|
29
30
|
import { SchemaSchema } from "@xyo-network/schema-payload-plugin";
|
|
30
31
|
import { Ajv } from "ajv";
|
|
31
|
-
import { isAxiosError } from "axios";
|
|
32
32
|
import { LRUCache } from "lru-cache";
|
|
33
33
|
var getSchemaNameFromSchema = (schema) => {
|
|
34
34
|
if (isString(schema.$id)) {
|
|
@@ -105,8 +105,8 @@ var SchemaCache = class _SchemaCache {
|
|
|
105
105
|
}
|
|
106
106
|
} catch (error) {
|
|
107
107
|
this._cache.set(schema, _SchemaCache.NULL);
|
|
108
|
-
if (
|
|
109
|
-
console.log(`
|
|
108
|
+
if (error instanceof FetchClientError) {
|
|
109
|
+
console.log(`Fetch Url: ${error.config.url}`);
|
|
110
110
|
}
|
|
111
111
|
handleError(error, (error2) => {
|
|
112
112
|
console.error(`fetchSchema threw: ${error2.message}`);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Debounce.ts","../../src/SchemaCache.ts"],"sourcesContent":["import { delay, isDefined } from '@xylabs/sdk-js'\n\nexport class Debounce<TKey = string> {\n private map = new Map<TKey, number>()\n\n async one<T>(key: TKey, closure: () => Promise<T>, timeout = 10_000) {\n const startTime = Date.now()\n while (isDefined(this.map.get(key))) {\n await delay(100)\n if (Date.now() - startTime > timeout) {\n throw new Error(`Debounce timed out [${key}]`)\n }\n }\n try {\n this.map.set(key, 1)\n return await closure()\n } finally {\n this.map.set(key, 0)\n }\n }\n}\n","import {\n handleError, isDefined, isString,\n} from '@xylabs/sdk-js'\nimport { DomainPayloadWrapper } from '@xyo-network/domain-payload-plugin'\nimport type { FetchedPayload } from '@xyo-network/huri'\nimport type { SchemaPayload } from '@xyo-network/schema-payload-plugin'\nimport { SchemaSchema } from '@xyo-network/schema-payload-plugin'\nimport type { SchemaObject } from 'ajv'\nimport { Ajv } from 'ajv'\nimport {
|
|
1
|
+
{"version":3,"sources":["../../src/Debounce.ts","../../src/SchemaCache.ts"],"sourcesContent":["import { delay, isDefined } from '@xylabs/sdk-js'\n\nexport class Debounce<TKey = string> {\n private map = new Map<TKey, number>()\n\n async one<T>(key: TKey, closure: () => Promise<T>, timeout = 10_000) {\n const startTime = Date.now()\n while (isDefined(this.map.get(key))) {\n await delay(100)\n if (Date.now() - startTime > timeout) {\n throw new Error(`Debounce timed out [${key}]`)\n }\n }\n try {\n this.map.set(key, 1)\n return await closure()\n } finally {\n this.map.set(key, 0)\n }\n }\n}\n","import {\n FetchClientError,\n handleError, isDefined, isString,\n} from '@xylabs/sdk-js'\nimport { DomainPayloadWrapper } from '@xyo-network/domain-payload-plugin'\nimport type { FetchedPayload } from '@xyo-network/huri'\nimport type { SchemaPayload } from '@xyo-network/schema-payload-plugin'\nimport { SchemaSchema } from '@xyo-network/schema-payload-plugin'\nimport type { SchemaObject } from 'ajv'\nimport { Ajv } from 'ajv'\nimport { LRUCache } from 'lru-cache'\n\nimport { Debounce } from './Debounce.ts'\nimport type { SchemaNameToValidatorMap } from './SchemaNameToValidatorMap.ts'\n\nconst getSchemaNameFromSchema = (schema: SchemaObject) => {\n if (isString(schema.$id)) {\n return schema.$id\n }\n}\n\nexport type SchemaCacheEntry = FetchedPayload<SchemaPayload>\n\nexport class SchemaCache<T extends SchemaNameToValidatorMap = SchemaNameToValidatorMap> {\n /**\n * Object representing `null` since LRU Cache types\n * only allow for types that derive from object\n */\n protected static readonly NULL: SchemaCacheEntry = { payload: { definition: {}, schema: SchemaSchema } }\n\n private static _instance?: SchemaCache\n\n onSchemaCached?: (name: string, entry: SchemaCacheEntry) => void\n proxy?: string\n\n private _cache = new LRUCache<string, SchemaCacheEntry>({ max: 500, ttl: 1000 * 60 * 5 })\n private _validators: T = {} as T\n\n // prevents double discovery\n private getDebounce = new Debounce()\n\n private constructor(proxy?: string) {\n this.proxy = proxy\n }\n\n static get instance() {\n if (!this._instance) {\n this._instance = new SchemaCache()\n }\n return this._instance\n }\n\n /**\n * A map of cached schema (by name) to payload validators for the schema. A schema\n * must be cached via `get('schema.name')` before it's validator can be used as\n * they are compiled dynamically at runtime upon retrieval.\n */\n get validators(): T {\n return this._validators\n }\n\n async get(schema?: string): Promise<SchemaCacheEntry | undefined | null> {\n if (isString(schema)) {\n await this.getDebounce.one(schema, async () => {\n // If we've never looked for it before, it will be undefined\n if (this._cache.get(schema) === undefined) {\n await this.fetchSchema(schema)\n }\n })\n const value = this._cache.get(schema)\n return value === SchemaCache.NULL ? null : value\n }\n return undefined\n }\n\n private cacheSchemaIfValid(entry: SchemaCacheEntry) {\n // only store them if they match the schema root\n if (isDefined(entry?.payload?.definition)) {\n const ajv = new Ajv({ strict: false })\n // check if it is a valid schema def\n const validator = ajv.compile(entry.payload.definition)\n const schemaName = getSchemaNameFromSchema(entry.payload.definition)\n if (isString(schemaName)) {\n this._cache.set(schemaName, entry)\n const key = schemaName as keyof T\n this._validators[key] = validator as unknown as T[keyof T]\n this.onSchemaCached?.(schemaName, entry)\n }\n }\n }\n\n private cacheSchemas(aliasEntries?: FetchedPayload[] | null) {\n for (const entry of aliasEntries?.filter(entry => entry.payload.schema === SchemaSchema) ?? []) {\n this.cacheSchemaIfValid(entry as SchemaCacheEntry)\n }\n }\n\n private async fetchSchema(schema: string) {\n try {\n const domain = await DomainPayloadWrapper.discover(schema, this.proxy)\n await domain?.fetch()\n this.cacheSchemas(domain?.aliases)\n\n // if it is still undefined, mark it as null (not found)\n if (this._cache.get(schema) === undefined) {\n this._cache.set(schema, SchemaCache.NULL)\n }\n } catch (error) {\n // if failed, set it to NULL, TODO: Make an entry for an error to try again in the future?\n this._cache.set(schema, SchemaCache.NULL)\n if (error instanceof FetchClientError) {\n console.log(`Fetch Url: ${error.config.url}`)\n }\n handleError(error, (error) => {\n console.error(`fetchSchema threw: ${error.message}`)\n })\n }\n }\n}\n"],"mappings":";AAAA,SAAS,OAAO,iBAAiB;AAE1B,IAAM,WAAN,MAA8B;AAAA,EAC3B,MAAM,oBAAI,IAAkB;AAAA,EAEpC,MAAM,IAAO,KAAW,SAA2B,UAAU,KAAQ;AACnE,UAAM,YAAY,KAAK,IAAI;AAC3B,WAAO,UAAU,KAAK,IAAI,IAAI,GAAG,CAAC,GAAG;AACnC,YAAM,MAAM,GAAG;AACf,UAAI,KAAK,IAAI,IAAI,YAAY,SAAS;AACpC,cAAM,IAAI,MAAM,uBAAuB,GAAG,GAAG;AAAA,MAC/C;AAAA,IACF;AACA,QAAI;AACF,WAAK,IAAI,IAAI,KAAK,CAAC;AACnB,aAAO,MAAM,QAAQ;AAAA,IACvB,UAAE;AACA,WAAK,IAAI,IAAI,KAAK,CAAC;AAAA,IACrB;AAAA,EACF;AACF;;;ACpBA;AAAA,EACE;AAAA,EACA;AAAA,EAAa,aAAAA;AAAA,EAAW;AAAA,OACnB;AACP,SAAS,4BAA4B;AAGrC,SAAS,oBAAoB;AAE7B,SAAS,WAAW;AACpB,SAAS,gBAAgB;AAKzB,IAAM,0BAA0B,CAAC,WAAyB;AACxD,MAAI,SAAS,OAAO,GAAG,GAAG;AACxB,WAAO,OAAO;AAAA,EAChB;AACF;AAIO,IAAM,cAAN,MAAM,aAA2E;AAAA;AAAA;AAAA;AAAA;AAAA,EAKtF,OAA0B,OAAyB,EAAE,SAAS,EAAE,YAAY,CAAC,GAAG,QAAQ,aAAa,EAAE;AAAA,EAEvG,OAAe;AAAA,EAEf;AAAA,EACA;AAAA,EAEQ,SAAS,IAAI,SAAmC,EAAE,KAAK,KAAK,KAAK,MAAO,KAAK,EAAE,CAAC;AAAA,EAChF,cAAiB,CAAC;AAAA;AAAA,EAGlB,cAAc,IAAI,SAAS;AAAA,EAE3B,YAAY,OAAgB;AAClC,SAAK,QAAQ;AAAA,EACf;AAAA,EAEA,WAAW,WAAW;AACpB,QAAI,CAAC,KAAK,WAAW;AACnB,WAAK,YAAY,IAAI,aAAY;AAAA,IACnC;AACA,WAAO,KAAK;AAAA,EACd;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,IAAI,aAAgB;AAClB,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,MAAM,IAAI,QAA+D;AACvE,QAAI,SAAS,MAAM,GAAG;AACpB,YAAM,KAAK,YAAY,IAAI,QAAQ,YAAY;AAE7C,YAAI,KAAK,OAAO,IAAI,MAAM,MAAM,QAAW;AACzC,gBAAM,KAAK,YAAY,MAAM;AAAA,QAC/B;AAAA,MACF,CAAC;AACD,YAAM,QAAQ,KAAK,OAAO,IAAI,MAAM;AACpC,aAAO,UAAU,aAAY,OAAO,OAAO;AAAA,IAC7C;AACA,WAAO;AAAA,EACT;AAAA,EAEQ,mBAAmB,OAAyB;AAElD,QAAIC,WAAU,OAAO,SAAS,UAAU,GAAG;AACzC,YAAM,MAAM,IAAI,IAAI,EAAE,QAAQ,MAAM,CAAC;AAErC,YAAM,YAAY,IAAI,QAAQ,MAAM,QAAQ,UAAU;AACtD,YAAM,aAAa,wBAAwB,MAAM,QAAQ,UAAU;AACnE,UAAI,SAAS,UAAU,GAAG;AACxB,aAAK,OAAO,IAAI,YAAY,KAAK;AACjC,cAAM,MAAM;AACZ,aAAK,YAAY,GAAG,IAAI;AACxB,aAAK,iBAAiB,YAAY,KAAK;AAAA,MACzC;AAAA,IACF;AAAA,EACF;AAAA,EAEQ,aAAa,cAAwC;AAC3D,eAAW,SAAS,cAAc,OAAO,CAAAC,WAASA,OAAM,QAAQ,WAAW,YAAY,KAAK,CAAC,GAAG;AAC9F,WAAK,mBAAmB,KAAyB;AAAA,IACnD;AAAA,EACF;AAAA,EAEA,MAAc,YAAY,QAAgB;AACxC,QAAI;AACF,YAAM,SAAS,MAAM,qBAAqB,SAAS,QAAQ,KAAK,KAAK;AACrE,YAAM,QAAQ,MAAM;AACpB,WAAK,aAAa,QAAQ,OAAO;AAGjC,UAAI,KAAK,OAAO,IAAI,MAAM,MAAM,QAAW;AACzC,aAAK,OAAO,IAAI,QAAQ,aAAY,IAAI;AAAA,MAC1C;AAAA,IACF,SAAS,OAAO;AAEd,WAAK,OAAO,IAAI,QAAQ,aAAY,IAAI;AACxC,UAAI,iBAAiB,kBAAkB;AACrC,gBAAQ,IAAI,cAAc,MAAM,OAAO,GAAG,EAAE;AAAA,MAC9C;AACA,kBAAY,OAAO,CAACC,WAAU;AAC5B,gBAAQ,MAAM,sBAAsBA,OAAM,OAAO,EAAE;AAAA,MACrD,CAAC;AAAA,IACH;AAAA,EACF;AACF;","names":["isDefined","isDefined","entry","error"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/schema-cache",
|
|
3
|
-
"version": "5.
|
|
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,50 +34,47 @@
|
|
|
36
34
|
"README.md"
|
|
37
35
|
],
|
|
38
36
|
"dependencies": {
|
|
39
|
-
"@xyo-network/payload-model": "~5.
|
|
40
|
-
"@xyo-network/schema-payload-plugin": "~5.
|
|
37
|
+
"@xyo-network/payload-model": "~5.4.0",
|
|
38
|
+
"@xyo-network/schema-payload-plugin": "~5.4.0"
|
|
41
39
|
},
|
|
42
40
|
"devDependencies": {
|
|
43
41
|
"@opentelemetry/api": "^1.9.1",
|
|
44
|
-
"@types/node": "^25.
|
|
45
|
-
"@xylabs/sdk-js": "^5.0.
|
|
46
|
-
"@xylabs/
|
|
47
|
-
"@xylabs/
|
|
48
|
-
"@xylabs/tsconfig": "~7.8",
|
|
49
|
-
"@xylabs/
|
|
50
|
-
"@xylabs/vitest-
|
|
51
|
-
"@xylabs/vitest-matchers": "~5.0.95",
|
|
42
|
+
"@types/node": "^25.6.0",
|
|
43
|
+
"@xylabs/sdk-js": "^5.0.97",
|
|
44
|
+
"@xylabs/toolchain": "~7.10.8",
|
|
45
|
+
"@xylabs/tsconfig": "~7.10.8",
|
|
46
|
+
"@xylabs/tsconfig-dom": "~7.10.8",
|
|
47
|
+
"@xylabs/vitest-extended": "~5.0.97",
|
|
48
|
+
"@xylabs/vitest-matchers": "~5.0.97",
|
|
52
49
|
"ajv": "^8.18.0",
|
|
53
|
-
"axios": "^1.14.0",
|
|
54
50
|
"esbuild": "^0.28.0",
|
|
55
51
|
"ethers": "^6.16.0",
|
|
56
|
-
"lru-cache": "^11.3.
|
|
52
|
+
"lru-cache": "^11.3.5",
|
|
57
53
|
"pako": "~2.1.0",
|
|
58
54
|
"typescript": "~5.9.3",
|
|
59
|
-
"vite": "^8.0.
|
|
60
|
-
"vitest": "~4.1.
|
|
55
|
+
"vite": "^8.0.8",
|
|
56
|
+
"vitest": "~4.1.4",
|
|
61
57
|
"zod": "^4.3.6",
|
|
62
|
-
"@xyo-network/
|
|
63
|
-
"@xyo-network/
|
|
64
|
-
"@xyo-network/
|
|
65
|
-
"@xyo-network/
|
|
66
|
-
"@xyo-network/elliptic": "~5.
|
|
67
|
-
"@xyo-network/
|
|
68
|
-
"@xyo-network/
|
|
69
|
-
"@xyo-network/
|
|
70
|
-
"@xyo-network/
|
|
71
|
-
"@xyo-network/payload-
|
|
72
|
-
"@xyo-network/previous-hash-store-model": "~5.
|
|
73
|
-
"@xyo-network/wasm": "~5.
|
|
58
|
+
"@xyo-network/account-model": "~5.4.0",
|
|
59
|
+
"@xyo-network/dns": "~5.4.0",
|
|
60
|
+
"@xyo-network/domain-payload-plugin": "~5.4.0",
|
|
61
|
+
"@xyo-network/data": "~5.4.0",
|
|
62
|
+
"@xyo-network/elliptic": "~5.4.0",
|
|
63
|
+
"@xyo-network/huri": "~5.4.0",
|
|
64
|
+
"@xyo-network/hash": "~5.4.0",
|
|
65
|
+
"@xyo-network/payload-builder": "~5.4.0",
|
|
66
|
+
"@xyo-network/network": "~5.4.0",
|
|
67
|
+
"@xyo-network/payload-validator": "~5.4.0",
|
|
68
|
+
"@xyo-network/previous-hash-store-model": "~5.4.0",
|
|
69
|
+
"@xyo-network/wasm": "~5.4.0"
|
|
74
70
|
},
|
|
75
71
|
"peerDependencies": {
|
|
76
|
-
"@xylabs/sdk-js": "^5",
|
|
72
|
+
"@xylabs/sdk-js": "^5.0.97",
|
|
73
|
+
"@xyo-network/domain-payload-plugin": "~5.4",
|
|
74
|
+
"@xyo-network/huri": "~5.4",
|
|
75
|
+
"@xyo-network/payload-validator": "~5.4",
|
|
77
76
|
"ajv": "^8",
|
|
78
|
-
"
|
|
79
|
-
"lru-cache": "^11",
|
|
80
|
-
"@xyo-network/domain-payload-plugin": "~5.3.30",
|
|
81
|
-
"@xyo-network/huri": "~5.3.30",
|
|
82
|
-
"@xyo-network/payload-validator": "~5.3.30"
|
|
77
|
+
"lru-cache": "^11.3.5"
|
|
83
78
|
},
|
|
84
79
|
"publishConfig": {
|
|
85
80
|
"access": "public"
|