@kubb/plugin-client 5.0.0-beta.33 → 5.0.0-beta.36

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.
@@ -1,4 +1,4 @@
1
- import { t as __name } from "../../chunk--u3MIqq1.js";
1
+ import { t as __name } from "../../chunk-C0LytTxp.js";
2
2
 
3
3
  //#region src/templates/clients/axios.source.d.ts
4
4
  declare const source: string;
@@ -1,4 +1,4 @@
1
- import { t as __name } from "../../chunk--u3MIqq1.js";
1
+ import { t as __name } from "../../chunk-C0LytTxp.js";
2
2
 
3
3
  //#region src/templates/clients/fetch.source.d.ts
4
4
  declare const source: string;
@@ -1,4 +1,4 @@
1
- import { t as __name } from "../chunk--u3MIqq1.js";
1
+ import { t as __name } from "../chunk-C0LytTxp.js";
2
2
 
3
3
  //#region src/templates/config.source.d.ts
4
4
  declare const source: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/plugin-client",
3
- "version": "5.0.0-beta.33",
3
+ "version": "5.0.0-beta.36",
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.33",
91
- "@kubb/renderer-jsx": "5.0.0-beta.33",
92
- "@kubb/plugin-ts": "5.0.0-beta.33",
93
- "@kubb/plugin-zod": "5.0.0-beta.33"
90
+ "@kubb/core": "5.0.0-beta.36",
91
+ "@kubb/renderer-jsx": "5.0.0-beta.36",
92
+ "@kubb/plugin-ts": "5.0.0-beta.36",
93
+ "@kubb/plugin-zod": "5.0.0-beta.36"
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.33",
101
+ "@kubb/renderer-jsx": "5.0.0-beta.36",
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"
package/src/plugin.ts CHANGED
@@ -80,7 +80,7 @@ export const pluginClient = definePlugin<PluginClient>((options) => {
80
80
  operations ? operationsGenerator : null,
81
81
  ].filter((x): x is NonNullable<typeof x> => Boolean(x))
82
82
 
83
- const groupConfig = createGroupConfig(group, { suffix: 'Controller', honorName: true })
83
+ const groupConfig = createGroupConfig(group, { suffix: 'Controller' })
84
84
 
85
85
  return {
86
86
  name: pluginClientName,
File without changes
File without changes