import { ErrorHandlingOptions } from './error-handling-options.js'; import { TimeoutOptions } from './timeout-options.js'; import { BearerAuthOptions } from './bearer-auth-options.js'; import { BasicAuthOptions } from './basic-auth-options.js'; import { RetryOptions } from './retry-options.js'; import { CustomHeaderOption } from './custom-header-option.js'; export interface OpenApiReactRequest { typeMappings?: Record | null; /** Only generate operations whose service tag matches one of these values (case-insensitive). */ includeTags?: Array | null; errorHandling?: ErrorHandlingOptions; timeout?: TimeoutOptions; bearerAuth?: BearerAuthOptions; basicAuth?: BasicAuthOptions; retries?: RetryOptions; customHeaders?: Array | null; /** Inline OpenAPI spec content (YAML or JSON). Either this or OpenApiSpecUrl is required. */ openApiSpec?: string | null; /** URL to fetch the OpenAPI spec from. Either this or OpenApiSpec is required. */ openApiSpecUrl?: string | null; strictValidation?: boolean | null; documentation?: boolean | null; optionsObjectThreshold?: number | null; baseUrlEnvVar?: string | null; useTanStackQuery?: boolean | null; useTypesBarrel?: boolean | null; responseDateTransformation?: boolean | null; } //# sourceMappingURL=open-api-react-request.d.ts.map