···3344import { resolveContracts } from './contracts/config';
55import { handler } from './plugin';
66-import type { OrpcContractPlugin } from './types';
66+import type { OrpcPlugin } from './types';
7788const validatorInferWarn =
99 'You set `validator: true` but no validator plugin was found in your plugins. Add a validator plugin like `zod` to enable this feature. The validator option has been disabled.';
10101111-export const defaultConfig: OrpcContractPlugin['Config'] = {
1111+export const defaultConfig: OrpcPlugin['Config'] = {
1212 config: {
1313 includeInEntry: false,
1414 },
1515 handler,
1616- name: '@orpc/contract',
1616+ name: 'orpc',
1717 resolveConfig: (plugin, context) => {
1818 if (typeof plugin.config.validator !== 'object') {
1919 plugin.config.validator = {
···7575 * - `'single'` - All contracts in one container
7676 * - Custom function for full control
7777 *
7878- * @default 'flat'
7878+ * @default 'single'
7979 */
8080 strategy?: OperationsStrategy;
8181 /**