@kubb/mcp 5.0.0-alpha.41 → 5.0.0-alpha.42
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 +1 -2
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ The build tool looks for `kubb.config.ts` in the current directory by default. Y
|
|
|
131
131
|
Example `kubb.config.ts`:
|
|
132
132
|
|
|
133
133
|
```typescript
|
|
134
|
-
import { defineConfig } from '
|
|
134
|
+
import { defineConfig } from 'kubb'
|
|
135
135
|
import { pluginOas } from '@kubb/plugin-oas'
|
|
136
136
|
import { pluginTs } from '@kubb/plugin-ts'
|
|
137
137
|
import { pluginClient } from '@kubb/plugin-client'
|
|
@@ -150,4 +150,3 @@ export default defineConfig({
|
|
|
150
150
|
],
|
|
151
151
|
})
|
|
152
152
|
```
|
|
153
|
-
|
package/dist/index.cjs
CHANGED
|
@@ -33,7 +33,7 @@ let _kubb_core = require("@kubb/core");
|
|
|
33
33
|
let jiti = require("jiti");
|
|
34
34
|
jiti = __toESM(jiti, 1);
|
|
35
35
|
//#region package.json
|
|
36
|
-
var version = "5.0.0-alpha.
|
|
36
|
+
var version = "5.0.0-alpha.42";
|
|
37
37
|
//#endregion
|
|
38
38
|
//#region src/schemas/generateSchema.ts
|
|
39
39
|
const generateSchema = zod.z.object({
|
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import path from "node:path";
|
|
|
8
8
|
import { createKubb } from "@kubb/core";
|
|
9
9
|
import createJiti from "jiti";
|
|
10
10
|
//#region package.json
|
|
11
|
-
var version = "5.0.0-alpha.
|
|
11
|
+
var version = "5.0.0-alpha.42";
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region src/schemas/generateSchema.ts
|
|
14
14
|
const generateSchema = z.object({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/mcp",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.42",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for Kubb, enabling AI assistants to generate code from OpenAPI specifications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
54
54
|
"jiti": "2.5.1",
|
|
55
55
|
"zod": "^4.3.6",
|
|
56
|
-
"@kubb/core": "5.0.0-alpha.
|
|
57
|
-
"@kubb/renderer-jsx": "5.0.0-alpha.
|
|
56
|
+
"@kubb/core": "5.0.0-alpha.42",
|
|
57
|
+
"@kubb/renderer-jsx": "5.0.0-alpha.42"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@kubb/renderer-jsx": "5.0.0-alpha.
|
|
60
|
+
"@kubb/renderer-jsx": "5.0.0-alpha.42"
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">=22"
|