···11+MIT License
22+33+Copyright (c) Hey API
44+55+Permission is hereby granted, free of charge, to any person obtaining a copy
66+of this software and associated documentation files (the "Software"), to deal
77+in the Software without restriction, including without limitation the rights
88+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99+copies of the Software, and to permit persons to whom the Software is
1010+furnished to do so, subject to the following conditions:
1111+1212+The above copyright notice and this permission notice shall be included in all
1313+copies or substantial portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121+SOFTWARE.
···9393export { defaultPlugins } from './initConfigs';
9494export type { IR } from './ir/types';
9595export type { OpenApi } from './openApi/types';
9696+export { clientDefaultConfig } from './plugins/@hey-api/client-core/config';
9797+export { clientPluginHandler } from './plugins/@hey-api/client-core/plugin';
9698export type { Plugin } from './plugins/types';
9799export type { UserConfig } from './types/config';
98100export type { LegacyIR } from './types/types';
···22import path from 'node:path';
33import { fileURLToPath } from 'node:url';
4455+import { createClient, type UserConfig } from '@hey-api/openapi-ts';
56import { describe, expect, it } from 'vitest';
6777-import { createClient } from '../';
88-import type { UserConfig } from '../src/types/config';
98import { getFilePaths } from './utils';
1091110const __filename = fileURLToPath(import.meta.url);
···22import path from 'node:path';
33import { fileURLToPath } from 'node:url';
4455+import { createClient, type UserConfig } from '@hey-api/openapi-ts';
56import { describe, expect, it } from 'vitest';
6777-import { createClient } from '../';
88-import type { UserConfig } from '../src/types/config';
98import { getFilePaths } from './utils';
1091110const __filename = fileURLToPath(import.meta.url);
···22import path from 'node:path';
33import { fileURLToPath } from 'node:url';
4455+import { createClient, type UserConfig } from '@hey-api/openapi-ts';
56import { describe, expect, it } from 'vitest';
6777-import { createClient } from '../';
88-import type { UserConfig } from '../src/types/config';
98import { getFilePaths } from './utils';
1091110const __filename = fileURLToPath(import.meta.url);
···22import path from 'node:path';
33import { fileURLToPath } from 'node:url';
4455+import { createClient, type UserConfig } from '@hey-api/openapi-ts';
56import { describe, expect, it } from 'vitest';
6777-import { createClient } from '../';
88-import type { PluginClientNames } from '../src/plugins/types';
99-import type { UserConfig } from '../src/types/config';
88+import type { PluginClientNames } from '../../openapi-ts/src/plugins/types';
109import { getFilePaths } from './utils';
11101211const __filename = fileURLToPath(import.meta.url);
···22import path from 'node:path';
33import { fileURLToPath } from 'node:url';
4455+import {
66+ createClient,
77+ type Plugin,
88+ type UserConfig,
99+} from '@hey-api/openapi-ts';
510import { describe, expect, it, vi } from 'vitest';
61177-import { createClient } from '../';
88-import type { Plugin } from '../src/plugins/types';
99-import type { UserConfig } from '../src/types/config';
1012import { getFilePaths } from './utils';
11131214const __filename = fileURLToPath(import.meta.url);