import type { components, paths } from './openapi'; type Primitive = bigint | boolean | null | number | string | symbol | undefined; type DeepPartial = T extends Primitive ? T : T extends (infer U)[] ? DeepPartial[] : T extends readonly (infer U)[] ? readonly DeepPartial[] : { [K in keyof T]?: DeepPartial; }; export type Body = DeepPartial; export type ErrorResponse = components['schemas']['Error']; export type Response = DeepPartial; export {}; //# sourceMappingURL=types.d.ts.map