···11+import type { Operation } from '../openApi';
22+13export interface ClientConfig {
24 /**
35 * Manually set base in OpenAPI config instead of inferring from server value
···125127 */
126128 name?: string;
127129 /**
128128- * Customise the method name of methods within the service
130130+ * Customise the method name of methods within the service. By default, {@link Operation.name} is used.
129131 */
130130- methodNameBuilder?: (service: string, operationId: string) => string;
132132+ methodNameBuilder?: (operation: Operation) => string;
131133 /**
132134 * Use operation ID to generate operation names?
133135 * @default true