@hey-api/openapi-ts 0.62.0 → 0.62.2
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.cjs +53 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +53 -53
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
package/dist/index.d.cts
CHANGED
|
@@ -6860,7 +6860,7 @@ type UserPlugins = Plugin.UserConfig<Config$b> | Plugin.UserConfig<Config$a> | P
|
|
|
6860
6860
|
*/
|
|
6861
6861
|
type ClientPlugins = Plugin.Config<Config$b> | Plugin.Config<Config$a> | Plugin.Config<Config$9> | Plugin.Config<Config$8> | Plugin.Config<Config$7> | Plugin.Config<Config$6> | Plugin.Config<Config$5> | Plugin.Config<Config$4> | Plugin.Config<Config$3> | Plugin.Config<Config$2> | Plugin.Config<Config$1>;
|
|
6862
6862
|
|
|
6863
|
-
declare const CLIENTS: readonly ["@hey-api/client-axios", "@hey-api/client-fetch", "legacy/angular", "legacy/axios", "legacy/fetch", "legacy/node", "legacy/xhr"];
|
|
6863
|
+
declare const CLIENTS: readonly ["@hey-api/client-axios", "@hey-api/client-fetch", "@hey-api/client-nuxt", "legacy/angular", "legacy/axios", "legacy/fetch", "legacy/node", "legacy/xhr"];
|
|
6864
6864
|
type Client = (typeof CLIENTS)[number];
|
|
6865
6865
|
type Formatters = 'biome' | 'prettier';
|
|
6866
6866
|
type Linters = 'biome' | 'eslint' | 'oxlint';
|
|
@@ -6990,6 +6990,14 @@ interface ClientConfig {
|
|
|
6990
6990
|
* @default false
|
|
6991
6991
|
*/
|
|
6992
6992
|
format?: Formatters | false;
|
|
6993
|
+
/**
|
|
6994
|
+
* Should the exports from plugin files be re-exported in the index
|
|
6995
|
+
* barrel file? By default, this is enabled and only default plugins
|
|
6996
|
+
* are re-exported.
|
|
6997
|
+
*
|
|
6998
|
+
* @default true
|
|
6999
|
+
*/
|
|
7000
|
+
indexFile?: boolean;
|
|
6993
7001
|
/**
|
|
6994
7002
|
* Process output folder with linter?
|
|
6995
7003
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -6860,7 +6860,7 @@ type UserPlugins = Plugin.UserConfig<Config$b> | Plugin.UserConfig<Config$a> | P
|
|
|
6860
6860
|
*/
|
|
6861
6861
|
type ClientPlugins = Plugin.Config<Config$b> | Plugin.Config<Config$a> | Plugin.Config<Config$9> | Plugin.Config<Config$8> | Plugin.Config<Config$7> | Plugin.Config<Config$6> | Plugin.Config<Config$5> | Plugin.Config<Config$4> | Plugin.Config<Config$3> | Plugin.Config<Config$2> | Plugin.Config<Config$1>;
|
|
6862
6862
|
|
|
6863
|
-
declare const CLIENTS: readonly ["@hey-api/client-axios", "@hey-api/client-fetch", "legacy/angular", "legacy/axios", "legacy/fetch", "legacy/node", "legacy/xhr"];
|
|
6863
|
+
declare const CLIENTS: readonly ["@hey-api/client-axios", "@hey-api/client-fetch", "@hey-api/client-nuxt", "legacy/angular", "legacy/axios", "legacy/fetch", "legacy/node", "legacy/xhr"];
|
|
6864
6864
|
type Client = (typeof CLIENTS)[number];
|
|
6865
6865
|
type Formatters = 'biome' | 'prettier';
|
|
6866
6866
|
type Linters = 'biome' | 'eslint' | 'oxlint';
|
|
@@ -6990,6 +6990,14 @@ interface ClientConfig {
|
|
|
6990
6990
|
* @default false
|
|
6991
6991
|
*/
|
|
6992
6992
|
format?: Formatters | false;
|
|
6993
|
+
/**
|
|
6994
|
+
* Should the exports from plugin files be re-exported in the index
|
|
6995
|
+
* barrel file? By default, this is enabled and only default plugins
|
|
6996
|
+
* are re-exported.
|
|
6997
|
+
*
|
|
6998
|
+
* @default true
|
|
6999
|
+
*/
|
|
7000
|
+
indexFile?: boolean;
|
|
6993
7001
|
/**
|
|
6994
7002
|
* Process output folder with linter?
|
|
6995
7003
|
*
|