@xyo-network/query-payload-plugin 5.3.29 → 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 -86
- package/package.json +17 -21
package/README.md
CHANGED
|
@@ -38,92 +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
|
-
### core-payload-plugins
|
|
46
|
-
|
|
47
|
-
### packages
|
|
48
|
-
|
|
49
|
-
### query
|
|
50
|
-
|
|
51
|
-
### .temp-typedoc
|
|
52
|
-
|
|
53
|
-
### functions
|
|
54
|
-
|
|
55
|
-
### <a id="QueryPayloadPlugin"></a>QueryPayloadPlugin
|
|
56
|
-
|
|
57
|
-
[**@xyo-network/query-payload-plugin**](#../README)
|
|
58
|
-
|
|
59
|
-
***
|
|
60
|
-
|
|
61
|
-
```ts
|
|
62
|
-
function QueryPayloadPlugin(): PayloadPlugin<QueryPayload>;
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
## Returns
|
|
66
|
-
|
|
67
|
-
`PayloadPlugin`\<[`QueryPayload`](#../type-aliases/QueryPayload)\>
|
|
68
|
-
|
|
69
|
-
### <a id="queryPayloadTemplate"></a>queryPayloadTemplate
|
|
70
|
-
|
|
71
|
-
[**@xyo-network/query-payload-plugin**](#../README)
|
|
72
|
-
|
|
73
|
-
***
|
|
74
|
-
|
|
75
|
-
```ts
|
|
76
|
-
function queryPayloadTemplate(): QueryPayload;
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
## Returns
|
|
80
|
-
|
|
81
|
-
[`QueryPayload`](#../type-aliases/QueryPayload)
|
|
82
|
-
|
|
83
|
-
### type-aliases
|
|
84
|
-
|
|
85
|
-
### <a id="QueryPayload"></a>QueryPayload
|
|
86
|
-
|
|
87
|
-
[**@xyo-network/query-payload-plugin**](#../README)
|
|
88
|
-
|
|
89
|
-
***
|
|
90
|
-
|
|
91
|
-
```ts
|
|
92
|
-
type QueryPayload = Payload<{
|
|
93
|
-
query: Schema;
|
|
94
|
-
schema: QuerySchema;
|
|
95
|
-
}>;
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
### <a id="QuerySchema"></a>QuerySchema
|
|
99
|
-
|
|
100
|
-
[**@xyo-network/query-payload-plugin**](#../README)
|
|
101
|
-
|
|
102
|
-
***
|
|
103
|
-
|
|
104
|
-
```ts
|
|
105
|
-
type QuerySchema = typeof QuerySchema;
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
### variables
|
|
109
|
-
|
|
110
|
-
### <a id="QuerySchema"></a>QuerySchema
|
|
111
|
-
|
|
112
|
-
[**@xyo-network/query-payload-plugin**](#../README)
|
|
113
|
-
|
|
114
|
-
***
|
|
115
|
-
|
|
116
|
-
```ts
|
|
117
|
-
const QuerySchema: "network.xyo.query" & object;
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
## Type Declaration
|
|
121
|
-
|
|
122
|
-
### \_\_schema
|
|
123
|
-
|
|
124
|
-
```ts
|
|
125
|
-
readonly __schema: true;
|
|
126
|
-
```
|
|
127
41
|
|
|
128
42
|
|
|
129
43
|
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/query-payload-plugin",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
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,33 +34,31 @@
|
|
|
36
34
|
"README.md"
|
|
37
35
|
],
|
|
38
36
|
"dependencies": {
|
|
39
|
-
"@xyo-network/payload-model": "~5.
|
|
40
|
-
"@xyo-network/payload-plugin": "~5.
|
|
37
|
+
"@xyo-network/payload-model": "~5.4.0",
|
|
38
|
+
"@xyo-network/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/
|
|
49
|
-
"@xylabs/vitest-
|
|
50
|
-
"@xylabs/vitest-matchers": "~5.0.95",
|
|
51
|
-
"axios": "^1.14.0",
|
|
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/vitest-extended": "~5.0.97",
|
|
47
|
+
"@xylabs/vitest-matchers": "~5.0.97",
|
|
52
48
|
"esbuild": "^0.28.0",
|
|
53
49
|
"pako": "~2.1.0",
|
|
54
50
|
"typescript": "~5.9.3",
|
|
55
|
-
"vite": "^8.0.
|
|
56
|
-
"vitest": "~4.1.
|
|
51
|
+
"vite": "^8.0.8",
|
|
52
|
+
"vitest": "~4.1.4",
|
|
57
53
|
"zod": "^4.3.6",
|
|
58
|
-
"@xyo-network/hash": "~5.
|
|
59
|
-
"@xyo-network/payload-
|
|
60
|
-
"@xyo-network/payload-
|
|
61
|
-
"@xyo-network/wasm": "~5.
|
|
54
|
+
"@xyo-network/hash": "~5.4.0",
|
|
55
|
+
"@xyo-network/payload-validator": "~5.4.0",
|
|
56
|
+
"@xyo-network/payload-builder": "~5.4.0",
|
|
57
|
+
"@xyo-network/wasm": "~5.4.0"
|
|
62
58
|
},
|
|
63
59
|
"peerDependencies": {
|
|
64
|
-
"@xyo-network/payload-
|
|
65
|
-
"@xyo-network/payload-
|
|
60
|
+
"@xyo-network/payload-builder": "~5.4",
|
|
61
|
+
"@xyo-network/payload-validator": "~5.4"
|
|
66
62
|
},
|
|
67
63
|
"publishConfig": {
|
|
68
64
|
"access": "public"
|