@xyo-network/diviner-jsonpatch-model 3.9.18 → 3.9.20

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.
@@ -0,0 +1,11 @@
1
+ import type { DivinerConfig } from '@xyo-network/diviner-model';
2
+ import type { Operation } from 'fast-json-patch';
3
+ import { JsonPatchDivinerSchema } from './Schema.ts';
4
+ export type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
5
+ export declare const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema;
6
+ export type JsonPatchDivinerConfig = DivinerConfig<{
7
+ operations?: Operation[];
8
+ } & {
9
+ schema: JsonPatchDivinerConfigSchema;
10
+ }>;
11
+ //# sourceMappingURL=Config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEhD,OAAO,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAEpD,MAAM,MAAM,4BAA4B,GAAG,GAAG,sBAAsB,SAAS,CAAA;AAC7E,eAAO,MAAM,4BAA4B,EAAE,4BAAiE,CAAA;AAS5G,MAAM,MAAM,sBAAsB,GAAG,aAAa,CAAC;IAAE,UAAU,CAAC,EAAE,SAAS,EAAE,CAAA;CAAE,GAAG;IAAE,MAAM,EAAE,4BAA4B,CAAA;CAAE,CAAC,CAAA"}
@@ -0,0 +1,5 @@
1
+ import type { DivinerParams } from '@xyo-network/diviner-model';
2
+ import type { AnyConfigSchema } from '@xyo-network/module-model';
3
+ import type { JsonPatchDivinerConfig } from './Config.ts';
4
+ export type JsonPatchDivinerParams = DivinerParams<AnyConfigSchema<JsonPatchDivinerConfig>>;
5
+ //# sourceMappingURL=Params.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAEhE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAEzD,MAAM,MAAM,sBAAsB,GAAG,aAAa,CAAC,eAAe,CAAC,sBAAsB,CAAC,CAAC,CAAA"}
@@ -0,0 +1,3 @@
1
+ export type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch';
2
+ export declare const JsonPatchDivinerSchema: JsonPatchDivinerSchema;
3
+ //# sourceMappingURL=Schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG,+BAA+B,CAAA;AACpE,eAAO,MAAM,sBAAsB,EAAE,sBAAwD,CAAA"}
@@ -1,18 +1,4 @@
1
- import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
2
- import { Operation } from 'fast-json-patch';
3
- import { AnyConfigSchema } from '@xyo-network/module-model';
4
-
5
- type JsonPatchDivinerSchema = 'network.xyo.diviner.jsonpatch';
6
- declare const JsonPatchDivinerSchema: JsonPatchDivinerSchema;
7
-
8
- type JsonPatchDivinerConfigSchema = `${JsonPatchDivinerSchema}.config`;
9
- declare const JsonPatchDivinerConfigSchema: JsonPatchDivinerConfigSchema;
10
- type JsonPatchDivinerConfig = DivinerConfig<{
11
- operations?: Operation[];
12
- } & {
13
- schema: JsonPatchDivinerConfigSchema;
14
- }>;
15
-
16
- type JsonPatchDivinerParams = DivinerParams<AnyConfigSchema<JsonPatchDivinerConfig>>;
17
-
18
- export { type JsonPatchDivinerConfig, JsonPatchDivinerConfigSchema, type JsonPatchDivinerParams, JsonPatchDivinerSchema };
1
+ export * from './Config.ts';
2
+ export * from './Params.ts';
3
+ export * from './Schema.ts';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/diviner-jsonpatch-model",
3
- "version": "3.9.18",
3
+ "version": "3.9.20",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,14 +29,14 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xyo-network/diviner-model": "^3.9.18",
33
- "@xyo-network/module-model": "^3.9.18",
32
+ "@xyo-network/diviner-model": "^3.9.20",
33
+ "@xyo-network/module-model": "^3.9.20",
34
34
  "fast-json-patch": "^3.1.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@xylabs/ts-scripts-yarn3": "^5.0.25",
38
- "@xylabs/tsconfig": "^5.0.25",
39
- "typescript": "^5.7.3"
37
+ "@xylabs/ts-scripts-yarn3": "^5.0.39",
38
+ "@xylabs/tsconfig": "^5.0.39",
39
+ "typescript": "^5.8.2"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"