@xyo-network/diviner-jsonpatch-memory 4.0.3 → 4.1.1
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/neutral/index.d.ts +14 -0
- package/dist/neutral/spec/Diviner.spec.d.ts +2 -0
- package/dist/neutral/spec/Diviner.spec.d.ts.map +1 -0
- package/package.json +15 -15
- package/dist/types/index.d.ts +0 -2
- /package/dist/{types → neutral}/Diviner.d.ts +0 -0
- /package/dist/{types → neutral}/Diviner.d.ts.map +0 -0
- /package/dist/{types → neutral}/index.d.ts.map +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
2
|
+
import { JsonPatchDivinerParams } from '@xyo-network/diviner-jsonpatch-model';
|
|
3
|
+
import { DivinerModuleEventData, DivinerInstance } from '@xyo-network/diviner-model';
|
|
4
|
+
import { Payload, Schema } from '@xyo-network/payload-model';
|
|
5
|
+
import { Operation } from 'fast-json-patch';
|
|
6
|
+
|
|
7
|
+
declare class JsonPatchDiviner<TParams extends JsonPatchDivinerParams = JsonPatchDivinerParams, TIn extends Payload = Payload, TOut extends Payload = Payload, TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut>> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {
|
|
8
|
+
static readonly configSchemas: Schema[];
|
|
9
|
+
static readonly defaultConfigSchema: Schema;
|
|
10
|
+
protected get operations(): readonly Operation[];
|
|
11
|
+
protected divineHandler(payloads?: TIn[]): Promise<TOut[]>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export { JsonPatchDiviner };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Diviner.spec.d.ts","sourceRoot":"","sources":["../../../src/spec/Diviner.spec.ts"],"names":[],"mappings":"AAAA,OAAO,yBAAyB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-jsonpatch-memory",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -21,29 +21,29 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/
|
|
24
|
+
"types": "./dist/neutral/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
|
-
"types": "dist/
|
|
30
|
+
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.13.
|
|
33
|
-
"@xylabs/exists": "^4.13.
|
|
34
|
-
"@xyo-network/diviner-abstract": "^4.
|
|
35
|
-
"@xyo-network/diviner-jsonpatch-model": "^4.
|
|
36
|
-
"@xyo-network/diviner-model": "^4.
|
|
37
|
-
"@xyo-network/module-model": "^4.
|
|
38
|
-
"@xyo-network/payload-model": "^4.
|
|
32
|
+
"@xylabs/assert": "^4.13.15",
|
|
33
|
+
"@xylabs/exists": "^4.13.15",
|
|
34
|
+
"@xyo-network/diviner-abstract": "^4.1.1",
|
|
35
|
+
"@xyo-network/diviner-jsonpatch-model": "^4.1.1",
|
|
36
|
+
"@xyo-network/diviner-model": "^4.1.1",
|
|
37
|
+
"@xyo-network/module-model": "^4.1.1",
|
|
38
|
+
"@xyo-network/payload-model": "^4.1.1",
|
|
39
39
|
"fast-json-patch": "^3.1.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
43
|
-
"@xylabs/tsconfig": "^
|
|
44
|
-
"@xylabs/vitest-extended": "^4.13.
|
|
45
|
-
"@xyo-network/wallet": "^4.
|
|
46
|
-
"@xyo-network/wallet-model": "^4.
|
|
42
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.23",
|
|
43
|
+
"@xylabs/tsconfig": "^7.0.0-rc.23",
|
|
44
|
+
"@xylabs/vitest-extended": "^4.13.15",
|
|
45
|
+
"@xyo-network/wallet": "^4.1.1",
|
|
46
|
+
"@xyo-network/wallet-model": "^4.1.1",
|
|
47
47
|
"typescript": "^5.8.3",
|
|
48
48
|
"vitest": "^3.2.4"
|
|
49
49
|
},
|
package/dist/types/index.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|