@kubb/plugin-zod 5.0.0-beta.31 → 5.0.0-beta.35

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 CHANGED
@@ -1,7 +1,6 @@
1
1
  <div align="center">
2
- <h1>@kubb/plugin-zod</h1>
3
2
  <a href="https://kubb.dev" target="_blank" rel="noopener noreferrer">
4
- <img width="180" src="https://raw.githubusercontent.com/kubb-labs/kubb/main/assets/logo.png" alt="Kubb logo">
3
+ <img src="https://kubb.dev/og.png" alt="Kubb banner">
5
4
  </a>
6
5
 
7
6
  [![npm version][npm-version-src]][npm-version-href]
@@ -11,8 +10,6 @@
11
10
  [![Sponsors][sponsors-src]][sponsors-href]
12
11
 
13
12
  <h4>
14
- <a href="https://codesandbox.io/s/github/kubb-labs/plugins/tree/main/examples/zod" target="_blank">View Demo</a>
15
- <span> · </span>
16
13
  <a href="https://kubb.dev/plugins/zod" target="_blank">Documentation</a>
17
14
  <span> · </span>
18
15
  <a href="https://github.com/kubb-labs/kubb/issues/" target="_blank">Report Bug</a>
@@ -21,13 +18,13 @@
21
18
  </h4>
22
19
  </div>
23
20
 
24
- `@kubb/plugin-zod` generates Zod validation schemas from your OpenAPI specification. Each schema becomes a Zod object you can use to parse and validate data at runtime.
21
+ <br />
22
+
23
+ # @kubb/plugin-zod
25
24
 
26
- ## Features
25
+ ### Generate Zod schemas from OpenAPI
27
26
 
28
- - Generates one Zod schema per OpenAPI schema
29
- - Supports both `.parse()` for strict validation and `.safeParse()` for error handling
30
- - Derives schemas from the same OpenAPI source as `@kubb/plugin-ts`, so types stay in sync
27
+ `@kubb/plugin-zod` generates Zod validation schemas from your OpenAPI specification. Each schema becomes a Zod object you can use to parse and validate data at runtime.
31
28
 
32
29
  ## Installation
33
30
 
@@ -45,7 +42,7 @@ See the [full documentation](https://kubb.dev/plugins/zod) for configuration opt
45
42
 
46
43
  ## Supporting Kubb
47
44
 
48
- Kubb is an MIT-licensed open source project with its ongoing development made possible entirely by the support of Sponsors. If you would like to become a sponsor, please consider:
45
+ Kubb is an open source project, and its development is funded entirely by sponsors. If you would like to become a sponsor, please consider:
49
46
 
50
47
  - [Become a Sponsor on GitHub](https://github.com/sponsors/stijnvanhulle)
51
48
 
@@ -55,6 +52,10 @@ Kubb is an MIT-licensed open source project with its ongoing development made po
55
52
  </a>
56
53
  </p>
57
54
 
55
+ ## License
56
+
57
+ [MIT](https://github.com/kubb-labs/plugins/blob/main/LICENSE)
58
+
58
59
  <!-- Badges -->
59
60
 
60
61
  [npm-version-src]: https://img.shields.io/npm/v/@kubb/plugin-zod?flat&colorA=18181B&colorB=f58517
package/extension.yaml CHANGED
@@ -330,7 +330,9 @@ options:
330
330
  | --- | --- |
331
331
  | `@kubb/plugin-ts` | `resolverTs` |
332
332
  | `@kubb/plugin-zod` | `resolverZod` |
333
+ | `@kubb/plugin-faker` | `resolverFaker` |
333
334
  | `@kubb/plugin-cypress` | `resolverCypress` |
335
+ | `@kubb/plugin-msw` | `resolverMsw` |
334
336
  | `@kubb/plugin-mcp` | `resolverMcp` |
335
337
  | `@kubb/plugin-client` | `resolverClient` |
336
338
  codeBlock:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/plugin-zod",
3
- "version": "5.0.0-beta.31",
3
+ "version": "5.0.0-beta.35",
4
4
  "description": "Generate Zod validation schemas from your OpenAPI specification for runtime data parsing and type safety. Pairs perfectly with @kubb/plugin-ts for end-to-end type coverage.",
5
5
  "keywords": [
6
6
  "code-generation",
@@ -48,16 +48,16 @@
48
48
  "registry": "https://registry.npmjs.org/"
49
49
  },
50
50
  "dependencies": {
51
- "@kubb/core": "5.0.0-beta.31",
52
- "@kubb/renderer-jsx": "5.0.0-beta.31",
53
- "remeda": "^2.34.1"
51
+ "@kubb/core": "5.0.0-beta.35",
52
+ "@kubb/renderer-jsx": "5.0.0-beta.35",
53
+ "remeda": "^2.37.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@internals/shared": "0.0.0",
57
57
  "@internals/utils": "0.0.0"
58
58
  },
59
59
  "peerDependencies": {
60
- "@kubb/renderer-jsx": "5.0.0-beta.31"
60
+ "@kubb/renderer-jsx": "5.0.0-beta.35"
61
61
  },
62
62
  "size-limit": [
63
63
  {
@@ -76,6 +76,7 @@
76
76
  "lint:fix": "oxlint --fix .",
77
77
  "release": "pnpm publish --no-git-check",
78
78
  "release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check",
79
+ "release:stage": "pnpm stage publish --no-git-check",
79
80
  "start": "tsdown --watch",
80
81
  "test": "vitest --passWithNoTests",
81
82
  "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"