@kubb/agent 4.31.5 → 4.32.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/.output/nitro.json +1 -1
- package/.output/server/chunks/nitro/nitro.mjs +106 -135
- package/.output/server/chunks/nitro/nitro.mjs.map +1 -1
- package/.output/server/node_modules/@clack/core/dist/index.mjs +6 -6
- package/.output/server/node_modules/@clack/core/package.json +1 -2
- package/.output/server/node_modules/@clack/prompts/dist/index.mjs +106 -106
- package/.output/server/node_modules/@clack/prompts/package.json +2 -3
- package/.output/server/node_modules/@logtail/core/dist/cjs/base.js +2 -0
- package/.output/server/node_modules/@logtail/core/package.json +4 -4
- package/.output/server/node_modules/@logtail/node/dist/cjs/node.js +4 -2
- package/.output/server/node_modules/@logtail/node/package.json +4 -4
- package/.output/server/node_modules/@logtail/tools/package.json +3 -3
- package/.output/server/node_modules/@logtail/types/package.json +2 -2
- package/.output/server/package.json +7 -7
- package/README.md +0 -2
- package/package.json +17 -17
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent-prod",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.32.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
"@babel/code-frame": "7.27.1",
|
|
9
9
|
"@babel/helper-validator-identifier": "7.28.5",
|
|
10
10
|
"@babel/runtime": "7.28.4",
|
|
11
|
-
"@clack/core": "1.0
|
|
12
|
-
"@clack/prompts": "1.0
|
|
11
|
+
"@clack/core": "1.1.0",
|
|
12
|
+
"@clack/prompts": "1.1.0",
|
|
13
13
|
"@humanwhocodes/momoa": "2.0.4",
|
|
14
14
|
"@kubb/fabric-core": "0.13.3",
|
|
15
15
|
"@kubb/react-fabric": "0.13.3",
|
|
16
|
-
"@logtail/core": "0.5.
|
|
17
|
-
"@logtail/node": "0.5.
|
|
18
|
-
"@logtail/tools": "0.5.
|
|
19
|
-
"@logtail/types": "0.5.
|
|
16
|
+
"@logtail/core": "0.5.8",
|
|
17
|
+
"@logtail/node": "0.5.8",
|
|
18
|
+
"@logtail/tools": "0.5.8",
|
|
19
|
+
"@logtail/types": "0.5.8",
|
|
20
20
|
"@msgpack/msgpack": "2.8.0",
|
|
21
21
|
"@readme/better-ajv-errors": "2.4.0",
|
|
22
22
|
"@readme/http-status-codes": "7.2.0",
|
package/README.md
CHANGED
|
@@ -114,7 +114,6 @@ The `agent_kv` named volume persists the KV store (session cache, machine token)
|
|
|
114
114
|
| `HOST` | `0.0.0.0` | Server host. |
|
|
115
115
|
| `KUBB_STUDIO_URL` | `https://studio.kubb.dev` | Kubb Studio WebSocket URL. |
|
|
116
116
|
| `KUBB_AGENT_TOKEN` | _(empty)_ | Authentication token for Studio. Required to connect. |
|
|
117
|
-
| `KUBB_AGENT_NO_CACHE` | `false` | Set to `true` to disable session caching. |
|
|
118
117
|
| `KUBB_AGENT_ALLOW_WRITE` | `false` | Set to `true` to allow writing generated files to disk. |
|
|
119
118
|
| `KUBB_AGENT_ALLOW_ALL` | `false` | Set to `true` to grant all permissions (implies `KUBB_AGENT_ALLOW_WRITE=true`). |
|
|
120
119
|
| `KUBB_AGENT_RETRY_TIMEOUT` | `30000` | Milliseconds to wait before retrying a failed Studio connection. |
|
|
@@ -132,7 +131,6 @@ PORT=3000
|
|
|
132
131
|
KUBB_AGENT_ROOT=/path/to/your/project
|
|
133
132
|
KUBB_AGENT_CONFIG=/path/to/your/project/kubb.config.ts
|
|
134
133
|
KUBB_AGENT_TOKEN=your-token-here
|
|
135
|
-
KUBB_AGENT_NO_CACHE=false
|
|
136
134
|
KUBB_STUDIO_URL=https://studio.kubb.dev
|
|
137
135
|
```
|
|
138
136
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.32.0",
|
|
4
4
|
"description": "Agent server for Kubb, enabling HTTP-based access to code generation capabilities.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -33,28 +33,28 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@kubb/fabric-core": "0.13.3",
|
|
36
|
-
"@logtail/node": "^0.5.
|
|
36
|
+
"@logtail/node": "^0.5.8",
|
|
37
37
|
"consola": "^3.4.2",
|
|
38
38
|
"jiti": "2.5.1",
|
|
39
39
|
"remeda": "^2.33.6",
|
|
40
40
|
"tinyexec": "^1.0.2",
|
|
41
41
|
"unstorage": "^1.17.4",
|
|
42
42
|
"ws": "^8.19.0",
|
|
43
|
-
"@kubb/core": "4.
|
|
44
|
-
"@kubb/plugin-client": "4.
|
|
45
|
-
"@kubb/plugin-cypress": "4.
|
|
46
|
-
"@kubb/plugin-faker": "4.
|
|
47
|
-
"@kubb/plugin-mcp": "4.
|
|
48
|
-
"@kubb/plugin-msw": "4.
|
|
49
|
-
"@kubb/plugin-oas": "4.
|
|
50
|
-
"@kubb/plugin-react-query": "4.
|
|
51
|
-
"@kubb/plugin-redoc": "4.
|
|
52
|
-
"@kubb/plugin-solid-query": "4.
|
|
53
|
-
"@kubb/plugin-svelte-query": "4.
|
|
54
|
-
"@kubb/plugin-swr": "4.
|
|
55
|
-
"@kubb/plugin-ts": "4.
|
|
56
|
-
"@kubb/plugin-vue-query": "4.
|
|
57
|
-
"@kubb/plugin-zod": "4.
|
|
43
|
+
"@kubb/core": "4.32.0",
|
|
44
|
+
"@kubb/plugin-client": "4.32.0",
|
|
45
|
+
"@kubb/plugin-cypress": "4.32.0",
|
|
46
|
+
"@kubb/plugin-faker": "4.32.0",
|
|
47
|
+
"@kubb/plugin-mcp": "4.32.0",
|
|
48
|
+
"@kubb/plugin-msw": "4.32.0",
|
|
49
|
+
"@kubb/plugin-oas": "4.32.0",
|
|
50
|
+
"@kubb/plugin-react-query": "4.32.0",
|
|
51
|
+
"@kubb/plugin-redoc": "4.32.0",
|
|
52
|
+
"@kubb/plugin-solid-query": "4.32.0",
|
|
53
|
+
"@kubb/plugin-svelte-query": "4.32.0",
|
|
54
|
+
"@kubb/plugin-swr": "4.32.0",
|
|
55
|
+
"@kubb/plugin-ts": "4.32.0",
|
|
56
|
+
"@kubb/plugin-vue-query": "4.32.0",
|
|
57
|
+
"@kubb/plugin-zod": "4.32.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/ws": "^8.18.1",
|