@xyo-network/value-payload-plugin 2.84.18 → 2.85.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/browser/index.cjs +5 -4
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +7 -4
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.js +5 -4
- package/dist/node/index.js.map +1 -1
- package/dist/node/index.mjs +7 -4
- package/dist/node/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/browser/index.cjs
CHANGED
|
@@ -3,6 +3,7 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
6
7
|
var __export = (target, all) => {
|
|
7
8
|
for (var name in all)
|
|
8
9
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -41,14 +42,14 @@ var isValuePayload = (0, import_payload_model.isPayloadOfSchemaType)(ValueSchema
|
|
|
41
42
|
var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
42
43
|
|
|
43
44
|
// src/Template.ts
|
|
44
|
-
var valuePayloadTemplate = () => ({
|
|
45
|
+
var valuePayloadTemplate = /* @__PURE__ */ __name(() => ({
|
|
45
46
|
schema: ValueSchema,
|
|
46
47
|
value: null
|
|
47
|
-
});
|
|
48
|
+
}), "valuePayloadTemplate");
|
|
48
49
|
|
|
49
50
|
// src/Plugin.ts
|
|
50
|
-
var ValuePayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
51
|
+
var ValuePayloadPlugin = /* @__PURE__ */ __name(() => (0, import_payload_plugin.createPayloadPlugin)({
|
|
51
52
|
schema: ValueSchema,
|
|
52
53
|
template: valuePayloadTemplate
|
|
53
|
-
});
|
|
54
|
+
}), "ValuePayloadPlugin");
|
|
54
55
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { ValuePayloadPlugin as default, ValuePayloadPlugin } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { ValuePayloadPlugin as default, ValuePayloadPlugin } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACAA,2BAA+C;;;ACCxC,IAAMA,cAA2B;;;ADajC,IAAMC,qBAAiBC,4CAA6BC,WAAAA;;;AEd3D,4BAAoC;;;ACG7B,IAAMC,uBAAuB,8BAAc;EAChDC,QAAQC;EACRC,OAAO;AACT,IAHoC;;;ADG7B,IAAMC,qBAAqB,iCAChCC,2CAA2B;EACzBC,QAAQC;EACRC,UAAUC;AACZ,CAAA,GAJgC;","names":["ValueSchema","isValuePayload","isPayloadOfSchemaType","ValueSchema","valuePayloadTemplate","schema","ValueSchema","value","ValuePayloadPlugin","createPayloadPlugin","schema","ValueSchema","template","valuePayloadTemplate"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
1
4
|
// src/Payload.ts
|
|
2
5
|
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
3
6
|
|
|
@@ -11,16 +14,16 @@ var isValuePayload = isPayloadOfSchemaType(ValueSchema);
|
|
|
11
14
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
12
15
|
|
|
13
16
|
// src/Template.ts
|
|
14
|
-
var valuePayloadTemplate = () => ({
|
|
17
|
+
var valuePayloadTemplate = /* @__PURE__ */ __name(() => ({
|
|
15
18
|
schema: ValueSchema,
|
|
16
19
|
value: null
|
|
17
|
-
});
|
|
20
|
+
}), "valuePayloadTemplate");
|
|
18
21
|
|
|
19
22
|
// src/Plugin.ts
|
|
20
|
-
var ValuePayloadPlugin = () => createPayloadPlugin({
|
|
23
|
+
var ValuePayloadPlugin = /* @__PURE__ */ __name(() => createPayloadPlugin({
|
|
21
24
|
schema: ValueSchema,
|
|
22
25
|
template: valuePayloadTemplate
|
|
23
|
-
});
|
|
26
|
+
}), "ValuePayloadPlugin");
|
|
24
27
|
export {
|
|
25
28
|
ValuePayloadPlugin,
|
|
26
29
|
ValueSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":";;;;AAAA,SAASA,6BAAsC;;;ACCxC,IAAMC,cAA2B;;;ADajC,IAAMC,iBAAiBC,sBAA6BC,WAAAA;;;AEd3D,SAASC,2BAA2B;;;ACG7B,IAAMC,uBAAuB,8BAAc;EAChDC,QAAQC;EACRC,OAAO;AACT,IAHoC;;;ADG7B,IAAMC,qBAAqB,6BAChCC,oBAA2B;EACzBC,QAAQC;EACRC,UAAUC;AACZ,CAAA,GAJgC;","names":["isPayloadOfSchemaType","ValueSchema","isValuePayload","isPayloadOfSchemaType","ValueSchema","createPayloadPlugin","valuePayloadTemplate","schema","ValueSchema","value","ValuePayloadPlugin","createPayloadPlugin","schema","ValueSchema","template","valuePayloadTemplate"]}
|
package/dist/node/index.js
CHANGED
|
@@ -3,6 +3,7 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
6
7
|
var __export = (target, all) => {
|
|
7
8
|
for (var name in all)
|
|
8
9
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -41,16 +42,16 @@ var isValuePayload = (0, import_payload_model.isPayloadOfSchemaType)(ValueSchema
|
|
|
41
42
|
var import_payload_plugin = require("@xyo-network/payload-plugin");
|
|
42
43
|
|
|
43
44
|
// src/Template.ts
|
|
44
|
-
var valuePayloadTemplate = () => ({
|
|
45
|
+
var valuePayloadTemplate = /* @__PURE__ */ __name(() => ({
|
|
45
46
|
schema: ValueSchema,
|
|
46
47
|
value: null
|
|
47
|
-
});
|
|
48
|
+
}), "valuePayloadTemplate");
|
|
48
49
|
|
|
49
50
|
// src/Plugin.ts
|
|
50
|
-
var ValuePayloadPlugin = () => (0, import_payload_plugin.createPayloadPlugin)({
|
|
51
|
+
var ValuePayloadPlugin = /* @__PURE__ */ __name(() => (0, import_payload_plugin.createPayloadPlugin)({
|
|
51
52
|
schema: ValueSchema,
|
|
52
53
|
template: valuePayloadTemplate
|
|
53
|
-
});
|
|
54
|
+
}), "ValuePayloadPlugin");
|
|
54
55
|
// Annotate the CommonJS export names for ESM import in node:
|
|
55
56
|
0 && (module.exports = {
|
|
56
57
|
ValuePayloadPlugin,
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { ValuePayloadPlugin as default, ValuePayloadPlugin } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["export * from './Payload'\nexport { ValuePayloadPlugin as default, ValuePayloadPlugin } from './Plugin'\nexport * from './Schema'\nexport * from './Template'\n","import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;ACAA,2BAA+C;;;ACCxC,IAAMA,cAA2B;;;ADajC,IAAMC,qBAAiBC,4CAA6BC,WAAAA;;;AEd3D,4BAAoC;;;ACG7B,IAAMC,uBAAuB,8BAAc;EAChDC,QAAQC;EACRC,OAAO;AACT,IAHoC;;;ADG7B,IAAMC,qBAAqB,iCAChCC,2CAA2B;EACzBC,QAAQC;EACRC,UAAUC;AACZ,CAAA,GAJgC;","names":["ValueSchema","isValuePayload","isPayloadOfSchemaType","ValueSchema","valuePayloadTemplate","schema","ValueSchema","value","ValuePayloadPlugin","createPayloadPlugin","schema","ValueSchema","template","valuePayloadTemplate"]}
|
package/dist/node/index.mjs
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
3
|
+
|
|
1
4
|
// src/Payload.ts
|
|
2
5
|
import { isPayloadOfSchemaType } from "@xyo-network/payload-model";
|
|
3
6
|
|
|
@@ -11,16 +14,16 @@ var isValuePayload = isPayloadOfSchemaType(ValueSchema);
|
|
|
11
14
|
import { createPayloadPlugin } from "@xyo-network/payload-plugin";
|
|
12
15
|
|
|
13
16
|
// src/Template.ts
|
|
14
|
-
var valuePayloadTemplate = () => ({
|
|
17
|
+
var valuePayloadTemplate = /* @__PURE__ */ __name(() => ({
|
|
15
18
|
schema: ValueSchema,
|
|
16
19
|
value: null
|
|
17
|
-
});
|
|
20
|
+
}), "valuePayloadTemplate");
|
|
18
21
|
|
|
19
22
|
// src/Plugin.ts
|
|
20
|
-
var ValuePayloadPlugin = () => createPayloadPlugin({
|
|
23
|
+
var ValuePayloadPlugin = /* @__PURE__ */ __name(() => createPayloadPlugin({
|
|
21
24
|
schema: ValueSchema,
|
|
22
25
|
template: valuePayloadTemplate
|
|
23
|
-
});
|
|
26
|
+
}), "ValuePayloadPlugin");
|
|
24
27
|
export {
|
|
25
28
|
ValuePayloadPlugin,
|
|
26
29
|
ValueSchema,
|
package/dist/node/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/Payload.ts","../../src/Schema.ts","../../src/Plugin.ts","../../src/Template.ts"],"sourcesContent":["import { isPayloadOfSchemaType, Payload } from '@xyo-network/payload-model'\n\nimport { ValueSchema } from './Schema'\n\n// TODO: Move to core or xylabs\nexport type JsonValue = string | number | boolean | null | JsonObject | JsonArray\nexport type JsonObject = { [key: string]: JsonValue }\nexport type JsonArray = JsonValue[]\n\nexport type Value<T extends JsonValue = JsonValue> = Payload<{\n schema: ValueSchema\n value: T\n}>\n\nexport const isValuePayload = isPayloadOfSchemaType<Value>(ValueSchema)\n","export type ValueSchema = 'network.xyo.value'\nexport const ValueSchema: ValueSchema = 'network.xyo.value'\n","import { createPayloadPlugin } from '@xyo-network/payload-plugin'\n\nimport { Value } from './Payload'\nimport { ValueSchema } from './Schema'\nimport { valuePayloadTemplate } from './Template'\n\nexport const ValuePayloadPlugin = () =>\n createPayloadPlugin<Value>({\n schema: ValueSchema,\n template: valuePayloadTemplate,\n })\n","import { Value } from './Payload'\nimport { ValueSchema } from './Schema'\n\nexport const valuePayloadTemplate = (): Value => ({\n schema: ValueSchema,\n value: null,\n})\n"],"mappings":";;;;AAAA,SAASA,6BAAsC;;;ACCxC,IAAMC,cAA2B;;;ADajC,IAAMC,iBAAiBC,sBAA6BC,WAAAA;;;AEd3D,SAASC,2BAA2B;;;ACG7B,IAAMC,uBAAuB,8BAAc;EAChDC,QAAQC;EACRC,OAAO;AACT,IAHoC;;;ADG7B,IAAMC,qBAAqB,6BAChCC,oBAA2B;EACzBC,QAAQC;EACRC,UAAUC;AACZ,CAAA,GAJgC;","names":["isPayloadOfSchemaType","ValueSchema","isValuePayload","isPayloadOfSchemaType","ValueSchema","createPayloadPlugin","valuePayloadTemplate","schema","ValueSchema","value","ValuePayloadPlugin","createPayloadPlugin","schema","ValueSchema","template","valuePayloadTemplate"]}
|
package/package.json
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/payload-model": "~2.
|
|
14
|
-
"@xyo-network/payload-plugin": "~2.
|
|
13
|
+
"@xyo-network/payload-model": "~2.85.0",
|
|
14
|
+
"@xyo-network/payload-plugin": "~2.85.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@xylabs/ts-scripts-yarn3": "^3.2.25",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
},
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"types": "dist/node/index.d.ts",
|
|
61
|
-
"version": "2.
|
|
61
|
+
"version": "2.85.0"
|
|
62
62
|
}
|