kubb 5.0.0-beta.7 → 5.0.0-beta.8

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/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { t as __name } from "./chunk--u3MIqq1.js";
2
+ import { BarrelType } from "@kubb/middleware-barrel";
2
3
  import { CLIOptions, UserConfig } from "@kubb/core";
3
4
 
4
5
  //#region ../../internals/utils/src/promise.d.ts
@@ -39,5 +40,5 @@ type DefinedConfig<TConfig extends ConfigInput> = TConfig extends ((cli: CLIOpti
39
40
  */
40
41
  declare function defineConfig<TConfig extends ConfigInput>(config: TConfig): DefinedConfig<TConfig>;
41
42
  //#endregion
42
- export { defineConfig };
43
+ export { type BarrelType, defineConfig };
43
44
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kubb",
3
- "version": "5.0.0-beta.7",
3
+ "version": "5.0.0-beta.8",
4
4
  "description": "Meta-package and entry point for Kubb — a plugin-based code generation framework for OpenAPI. Includes defineConfig, all public APIs, and serves as the gateway to the entire Kubb ecosystem.",
5
5
  "keywords": [
6
6
  "api-client",
@@ -54,20 +54,20 @@
54
54
  "registry": "https://registry.npmjs.org/"
55
55
  },
56
56
  "dependencies": {
57
- "@kubb/adapter-oas": "5.0.0-beta.7",
58
- "@kubb/cli": "5.0.0-beta.7",
59
- "@kubb/core": "5.0.0-beta.7",
60
- "@kubb/middleware-barrel": "5.0.0-beta.7",
61
- "@kubb/parser-ts": "5.0.0-beta.7",
62
- "@kubb/renderer-jsx": "5.0.0-beta.7"
57
+ "@kubb/adapter-oas": "5.0.0-beta.8",
58
+ "@kubb/cli": "5.0.0-beta.8",
59
+ "@kubb/core": "5.0.0-beta.8",
60
+ "@kubb/middleware-barrel": "5.0.0-beta.8",
61
+ "@kubb/parser-ts": "5.0.0-beta.8",
62
+ "@kubb/renderer-jsx": "5.0.0-beta.8"
63
63
  },
64
64
  "devDependencies": {
65
65
  "typescript": "^6.0.3",
66
66
  "@internals/utils": "0.0.0"
67
67
  },
68
68
  "peerDependencies": {
69
- "@kubb/agent": "5.0.0-beta.7",
70
- "@kubb/mcp": "5.0.0-beta.7"
69
+ "@kubb/agent": "5.0.0-beta.8",
70
+ "@kubb/mcp": "5.0.0-beta.8"
71
71
  },
72
72
  "peerDependenciesMeta": {
73
73
  "@kubb/agent": {
package/src/index.ts CHANGED
@@ -1 +1,2 @@
1
+ export type { BarrelType } from '@kubb/middleware-barrel'
1
2
  export { defineConfig } from './defineConfig.ts'