/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Response serializer for presigned upload URL */ export type FileUploadURLResponse = { /** * Presigned S3 upload URL */ upload_url: string; /** * S3 object key for the uploaded file */ file_key: string; /** * Unique identifier for the ChatFile record */ file_id: string; /** * URL expiration time in seconds */ expires_in: number; /** * HTTP method to use for upload (PUT or POST) */ upload_method?: string; };