@kubb/plugin-client 5.0.0-beta.33 → 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 +11 -12
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<h1>@kubb/plugin-client</h1>
|
|
3
2
|
<a href="https://kubb.dev" target="_blank" rel="noopener noreferrer">
|
|
4
|
-
<img
|
|
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,10 +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/sdk" target="_blank">View SDK Demo</a>
|
|
15
|
-
<span> · </span>
|
|
16
|
-
<a href="https://codesandbox.io/s/github/kubb-labs/plugins/tree/main/examples/client" target="_blank">View Client Demo</a>
|
|
17
|
-
<span> · </span>
|
|
18
13
|
<a href="https://kubb.dev/plugins/client" target="_blank">Documentation</a>
|
|
19
14
|
<span> · </span>
|
|
20
15
|
<a href="https://github.com/kubb-labs/kubb/issues/" target="_blank">Report Bug</a>
|
|
@@ -23,13 +18,13 @@
|
|
|
23
18
|
</h4>
|
|
24
19
|
</div>
|
|
25
20
|
|
|
26
|
-
|
|
21
|
+
<br />
|
|
27
22
|
|
|
28
|
-
|
|
23
|
+
# @kubb/plugin-client
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
### Generate type-safe HTTP clients from OpenAPI
|
|
26
|
+
|
|
27
|
+
`@kubb/plugin-client` generates HTTP clients from your OpenAPI specification. It supports Axios, Fetch, and custom adapters, with request and response types inferred directly from the spec.
|
|
33
28
|
|
|
34
29
|
## Installation
|
|
35
30
|
|
|
@@ -47,7 +42,7 @@ See the [full documentation](https://kubb.dev/plugins/client) for configuration
|
|
|
47
42
|
|
|
48
43
|
## Supporting Kubb
|
|
49
44
|
|
|
50
|
-
Kubb is an
|
|
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:
|
|
51
46
|
|
|
52
47
|
- [Become a Sponsor on GitHub](https://github.com/sponsors/stijnvanhulle)
|
|
53
48
|
|
|
@@ -57,6 +52,10 @@ Kubb is an MIT-licensed open source project with its ongoing development made po
|
|
|
57
52
|
</a>
|
|
58
53
|
</p>
|
|
59
54
|
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
[MIT](https://github.com/kubb-labs/plugins/blob/main/LICENSE)
|
|
58
|
+
|
|
60
59
|
<!-- Badges -->
|
|
61
60
|
|
|
62
61
|
[npm-version-src]: https://img.shields.io/npm/v/@kubb/plugin-client?flat&colorA=18181B&colorB=f58517
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-client",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.35",
|
|
4
4
|
"description": "Generate type-safe HTTP clients from your OpenAPI specification. Supports Axios, Fetch, and custom client adapters with full TypeScript inference and zero boilerplate.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api-client",
|
|
@@ -87,10 +87,10 @@
|
|
|
87
87
|
"registry": "https://registry.npmjs.org/"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@kubb/core": "5.0.0-beta.
|
|
91
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
92
|
-
"@kubb/plugin-ts": "5.0.0-beta.
|
|
93
|
-
"@kubb/plugin-zod": "5.0.0-beta.
|
|
90
|
+
"@kubb/core": "5.0.0-beta.35",
|
|
91
|
+
"@kubb/renderer-jsx": "5.0.0-beta.35",
|
|
92
|
+
"@kubb/plugin-ts": "5.0.0-beta.35",
|
|
93
|
+
"@kubb/plugin-zod": "5.0.0-beta.35"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"axios": "^1.16.1",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@internals/utils": "0.0.0"
|
|
99
99
|
},
|
|
100
100
|
"peerDependencies": {
|
|
101
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
101
|
+
"@kubb/renderer-jsx": "5.0.0-beta.35",
|
|
102
102
|
"axios": "^1.7.2"
|
|
103
103
|
},
|
|
104
104
|
"peerDependenciesMeta": {
|
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
"lint:fix": "oxlint --fix .",
|
|
124
124
|
"release": "pnpm publish --no-git-check",
|
|
125
125
|
"release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check",
|
|
126
|
+
"release:stage": "pnpm stage publish --no-git-check",
|
|
126
127
|
"start": "tsdown --watch",
|
|
127
128
|
"test": "vitest --passWithNoTests",
|
|
128
129
|
"typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"
|