kubb 5.0.0-alpha.59 → 5.0.0-alpha.60

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
@@ -37,5 +38,5 @@ type DefinedConfig<TConfig extends ConfigInput> = TConfig extends ((cli: CLIOpti
37
38
  */
38
39
  declare function defineConfig<TConfig extends ConfigInput>(config: TConfig): DefinedConfig<TConfig>;
39
40
  //#endregion
40
- export { defineConfig };
41
+ export { type BarrelType, defineConfig };
41
42
  //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kubb",
3
- "version": "5.0.0-alpha.59",
3
+ "version": "5.0.0-alpha.60",
4
4
  "description": "Transform OpenAPI specifications into TypeScript, React-Query, Zod, Faker.js, MSW and more with a plugin-based code generation tool.",
5
5
  "keywords": [
6
6
  "api-client",
@@ -57,13 +57,13 @@
57
57
  "registry": "https://registry.npmjs.org/"
58
58
  },
59
59
  "dependencies": {
60
- "@kubb/adapter-oas": "5.0.0-alpha.59",
61
- "@kubb/agent": "5.0.0-alpha.59",
62
- "@kubb/cli": "5.0.0-alpha.59",
63
- "@kubb/core": "5.0.0-alpha.59",
64
- "@kubb/mcp": "5.0.0-alpha.59",
65
- "@kubb/middleware-barrel": "5.0.0-alpha.59",
66
- "@kubb/parser-ts": "5.0.0-alpha.59"
60
+ "@kubb/adapter-oas": "5.0.0-alpha.60",
61
+ "@kubb/agent": "5.0.0-alpha.60",
62
+ "@kubb/cli": "5.0.0-alpha.60",
63
+ "@kubb/core": "5.0.0-alpha.60",
64
+ "@kubb/mcp": "5.0.0-alpha.60",
65
+ "@kubb/middleware-barrel": "5.0.0-alpha.60",
66
+ "@kubb/parser-ts": "5.0.0-alpha.60"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@internals/utils": "0.0.0"
package/src/index.ts CHANGED
@@ -1 +1,2 @@
1
+ export type { BarrelType } from '@kubb/middleware-barrel'
1
2
  export { defineConfig } from './defineConfig.ts'