2025-10-22 09:55:52 +00:00
|
|
|
export interface IFileUploadResponse {
|
|
|
|
|
fileStorageId: string;
|
|
|
|
|
fileName: string;
|
|
|
|
|
downloadUrl: string;
|
|
|
|
|
fileType: string;
|
|
|
|
|
fileSize: number;
|
|
|
|
|
secloreFileId: string;
|
|
|
|
|
protected: boolean;
|
2025-10-29 05:05:14 +00:00
|
|
|
headers?: { [key: string]: string };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IFileDownloadResponse {
|
|
|
|
|
data: Uint8Array;
|
|
|
|
|
headers?: { [key: string]: string };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IFileDeleteResponse {
|
|
|
|
|
headers?: { [key: string]: string };
|
2025-10-22 09:55:52 +00:00
|
|
|
}
|