import type { ApiErrorCode } from '@/client/apiErrorCode.gen.ts'; export interface ApiError { errors: { code: ApiErrorCode; detail: string; source?: { pointer: string; }; status?: string; }[]; }