@xyo-network/diviner-jsonpatch-model 2.106.0-rc.5 → 2.107.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 +1 -32
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +1 -9
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/index.cjs +1 -32
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.js +1 -9
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/index.cjs +1 -37
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +1 -9
- package/dist/node/index.js.map +1 -1
- package/package.json +7 -8
- package/src/Config.ts +1 -1
package/dist/browser/index.cjs
CHANGED
|
@@ -1,33 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
JsonPatchDivinerConfigSchema: () => JsonPatchDivinerConfigSchema,
|
|
24
|
-
JsonPatchDivinerSchema: () => JsonPatchDivinerSchema
|
|
25
|
-
});
|
|
26
|
-
module.exports = __toCommonJS(src_exports);
|
|
27
|
-
|
|
28
|
-
// src/Schema.ts
|
|
29
|
-
var JsonPatchDivinerSchema = "network.xyo.diviner.jsonpatch";
|
|
30
|
-
|
|
31
|
-
// src/Config.ts
|
|
32
|
-
var JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
|
|
1
|
+
"use strict";var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var h=Object.prototype.hasOwnProperty;var p=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of a(o))!h.call(r,e)&&e!==n&&t(r,e,{get:()=>o[e],enumerable:!(c=m(o,e))||c.enumerable});return r};var s=r=>f(t({},"__esModule",{value:!0}),r);var v={};p(v,{JsonPatchDivinerConfigSchema:()=>x,JsonPatchDivinerSchema:()=>i});module.exports=s(v);var i="network.xyo.diviner.jsonpatch";var x=`${i}.config`;
|
|
33
2
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { Operation } from 'json-joy/lib/json-patch/index.js'\n\nimport { JsonPatchDivinerSchema } from './Schema'\n\nexport type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\nexport const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\n\n// TODO: Export our own compatible Operation type to hide implementation details\n// export interface Operation {\n// op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'\n// path: string\n// value?: JsonValue\n// }\n\nexport type JsonPatchDivinerConfig = DivinerConfig<{ operations?: Operation[] } & { schema: JsonPatchDivinerConfigSchema }>\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kCAAAE,EAAA,2BAAAC,IAAA,eAAAC,EAAAJ,GCCO,IAAMK,EAAiD,gCCMvD,IAAMC,EAA6D,GAAGC,CAAAA","names":["src_exports","__export","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema","__toCommonJS","JsonPatchDivinerSchema","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
var JsonPatchDivinerSchema = "network.xyo.diviner.jsonpatch";
|
|
3
|
-
|
|
4
|
-
// src/Config.ts
|
|
5
|
-
var JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
|
|
6
|
-
export {
|
|
7
|
-
JsonPatchDivinerConfigSchema,
|
|
8
|
-
JsonPatchDivinerSchema
|
|
9
|
-
};
|
|
1
|
+
var o="network.xyo.diviner.jsonpatch";var n=`${o}.config`;export{n as JsonPatchDivinerConfigSchema,o as JsonPatchDivinerSchema};
|
|
10
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { Operation } from 'json-joy/lib/json-patch/index.js'\n\nimport { JsonPatchDivinerSchema } from './Schema'\n\nexport type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\nexport const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\n\n// TODO: Export our own compatible Operation type to hide implementation details\n// export interface Operation {\n// op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'\n// path: string\n// value?: JsonValue\n// }\n\nexport type JsonPatchDivinerConfig = DivinerConfig<{ operations?: Operation[] } & { schema: JsonPatchDivinerConfigSchema }>\n"],"mappings":"AACO,IAAMA,EAAiD,gCCMvD,IAAMC,EAA6D,GAAGC,CAAAA","names":["JsonPatchDivinerSchema","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema"]}
|
package/dist/neutral/index.cjs
CHANGED
|
@@ -1,33 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
JsonPatchDivinerConfigSchema: () => JsonPatchDivinerConfigSchema,
|
|
24
|
-
JsonPatchDivinerSchema: () => JsonPatchDivinerSchema
|
|
25
|
-
});
|
|
26
|
-
module.exports = __toCommonJS(src_exports);
|
|
27
|
-
|
|
28
|
-
// src/Schema.ts
|
|
29
|
-
var JsonPatchDivinerSchema = "network.xyo.diviner.jsonpatch";
|
|
30
|
-
|
|
31
|
-
// src/Config.ts
|
|
32
|
-
var JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
|
|
1
|
+
"use strict";var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var h=Object.prototype.hasOwnProperty;var p=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of a(o))!h.call(r,e)&&e!==n&&t(r,e,{get:()=>o[e],enumerable:!(c=m(o,e))||c.enumerable});return r};var s=r=>f(t({},"__esModule",{value:!0}),r);var v={};p(v,{JsonPatchDivinerConfigSchema:()=>x,JsonPatchDivinerSchema:()=>i});module.exports=s(v);var i="network.xyo.diviner.jsonpatch";var x=`${i}.config`;
|
|
33
2
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { Operation } from 'json-joy/lib/json-patch/index.js'\n\nimport { JsonPatchDivinerSchema } from './Schema'\n\nexport type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\nexport const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\n\n// TODO: Export our own compatible Operation type to hide implementation details\n// export interface Operation {\n// op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'\n// path: string\n// value?: JsonValue\n// }\n\nexport type JsonPatchDivinerConfig = DivinerConfig<{ operations?: Operation[] } & { schema: JsonPatchDivinerConfigSchema }>\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kCAAAE,EAAA,2BAAAC,IAAA,eAAAC,EAAAJ,GCCO,IAAMK,EAAiD,gCCMvD,IAAMC,EAA6D,GAAGC,CAAAA","names":["src_exports","__export","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema","__toCommonJS","JsonPatchDivinerSchema","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema"]}
|
package/dist/neutral/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
var JsonPatchDivinerSchema = "network.xyo.diviner.jsonpatch";
|
|
3
|
-
|
|
4
|
-
// src/Config.ts
|
|
5
|
-
var JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
|
|
6
|
-
export {
|
|
7
|
-
JsonPatchDivinerConfigSchema,
|
|
8
|
-
JsonPatchDivinerSchema
|
|
9
|
-
};
|
|
1
|
+
var o="network.xyo.diviner.jsonpatch";var n=`${o}.config`;export{n as JsonPatchDivinerConfigSchema,o as JsonPatchDivinerSchema};
|
|
10
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { Operation } from 'json-joy/lib/json-patch/index.js'\n\nimport { JsonPatchDivinerSchema } from './Schema'\n\nexport type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\nexport const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\n\n// TODO: Export our own compatible Operation type to hide implementation details\n// export interface Operation {\n// op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'\n// path: string\n// value?: JsonValue\n// }\n\nexport type JsonPatchDivinerConfig = DivinerConfig<{ operations?: Operation[] } & { schema: JsonPatchDivinerConfigSchema }>\n"],"mappings":"AACO,IAAMA,EAAiD,gCCMvD,IAAMC,EAA6D,GAAGC,CAAAA","names":["JsonPatchDivinerSchema","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema"]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -1,38 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
JsonPatchDivinerConfigSchema: () => JsonPatchDivinerConfigSchema,
|
|
24
|
-
JsonPatchDivinerSchema: () => JsonPatchDivinerSchema
|
|
25
|
-
});
|
|
26
|
-
module.exports = __toCommonJS(src_exports);
|
|
27
|
-
|
|
28
|
-
// src/Schema.ts
|
|
29
|
-
var JsonPatchDivinerSchema = "network.xyo.diviner.jsonpatch";
|
|
30
|
-
|
|
31
|
-
// src/Config.ts
|
|
32
|
-
var JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
|
|
33
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
-
0 && (module.exports = {
|
|
35
|
-
JsonPatchDivinerConfigSchema,
|
|
36
|
-
JsonPatchDivinerSchema
|
|
37
|
-
});
|
|
1
|
+
"use strict";var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var h=Object.prototype.hasOwnProperty;var p=(r,o)=>{for(var n in o)t(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,c)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of a(o))!h.call(r,e)&&e!==n&&t(r,e,{get:()=>o[e],enumerable:!(c=m(o,e))||c.enumerable});return r};var s=r=>f(t({},"__esModule",{value:!0}),r);var v={};p(v,{JsonPatchDivinerConfigSchema:()=>x,JsonPatchDivinerSchema:()=>i});module.exports=s(v);var i="network.xyo.diviner.jsonpatch";var x=`${i}.config`;0&&(module.exports={JsonPatchDivinerConfigSchema,JsonPatchDivinerSchema});
|
|
38
2
|
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export * from './Config'\nexport * from './Params'\nexport * from './Schema'\n","export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { Operation } from 'json-joy/lib/json-patch/index.js'\n\nimport { JsonPatchDivinerSchema } from './Schema'\n\nexport type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\nexport const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\n\n// TODO: Export our own compatible Operation type to hide implementation details\n// export interface Operation {\n// op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'\n// path: string\n// value?: JsonValue\n// }\n\nexport type JsonPatchDivinerConfig = DivinerConfig<{ operations?: Operation[] } & { schema: JsonPatchDivinerConfigSchema }>\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kCAAAE,EAAA,2BAAAC,IAAA,eAAAC,EAAAJ,GCCO,IAAMK,EAAiD,gCCMvD,IAAMC,EAA6D,GAAGC,CAAAA","names":["src_exports","__export","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema","__toCommonJS","JsonPatchDivinerSchema","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
var JsonPatchDivinerSchema = "network.xyo.diviner.jsonpatch";
|
|
3
|
-
|
|
4
|
-
// src/Config.ts
|
|
5
|
-
var JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
|
|
6
|
-
export {
|
|
7
|
-
JsonPatchDivinerConfigSchema,
|
|
8
|
-
JsonPatchDivinerSchema
|
|
9
|
-
};
|
|
1
|
+
var o="network.xyo.diviner.jsonpatch";var n=`${o}.config`;export{n as JsonPatchDivinerConfigSchema,o as JsonPatchDivinerSchema};
|
|
10
2
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n
|
|
1
|
+
{"version":3,"sources":["../../src/Schema.ts","../../src/Config.ts"],"sourcesContent":["export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\nexport const JsonPatchDivinerSchema: JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch'\n","import { DivinerConfig } from '@xyo-network/diviner-model'\n\nimport { Operation } from 'json-joy/lib/json-patch/index.js'\n\nimport { JsonPatchDivinerSchema } from './Schema'\n\nexport type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\nexport const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`\n\n// TODO: Export our own compatible Operation type to hide implementation details\n// export interface Operation {\n// op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test'\n// path: string\n// value?: JsonValue\n// }\n\nexport type JsonPatchDivinerConfig = DivinerConfig<{ operations?: Operation[] } & { schema: JsonPatchDivinerConfigSchema }>\n"],"mappings":"AACO,IAAMA,EAAiD,gCCMvD,IAAMC,EAA6D,GAAGC,CAAAA","names":["JsonPatchDivinerSchema","JsonPatchDivinerConfigSchema","JsonPatchDivinerSchema"]}
|
package/package.json
CHANGED
|
@@ -10,15 +10,15 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/diviner-model": "~2.
|
|
14
|
-
"@xyo-network/module-model": "~2.
|
|
13
|
+
"@xyo-network/diviner-model": "~2.107.0",
|
|
14
|
+
"@xyo-network/module-model": "~2.107.0",
|
|
15
15
|
"json-joy": "^15.11.0",
|
|
16
16
|
"tslib": "^2.6.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@xylabs/ts-scripts-yarn3": "^3.11.
|
|
20
|
-
"@xylabs/tsconfig": "^3.11.
|
|
21
|
-
"typescript": "^5.
|
|
19
|
+
"@xylabs/ts-scripts-yarn3": "^3.11.8",
|
|
20
|
+
"@xylabs/tsconfig": "^3.11.8",
|
|
21
|
+
"typescript": "^5.5.2"
|
|
22
22
|
},
|
|
23
23
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
24
24
|
"types": "dist/node/index.d.ts",
|
|
@@ -59,7 +59,6 @@
|
|
|
59
59
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
|
|
60
60
|
},
|
|
61
61
|
"sideEffects": false,
|
|
62
|
-
"version": "2.
|
|
63
|
-
"type": "module"
|
|
64
|
-
"stableVersion": "2.105.1"
|
|
62
|
+
"version": "2.107.0",
|
|
63
|
+
"type": "module"
|
|
65
64
|
}
|
package/src/Config.ts
CHANGED