This commit is contained in:
Benjamin Toby
2025-07-05 15:16:31 +01:00
parent 7e8bb37c09
commit 3730e4722e
25 changed files with 58 additions and 22 deletions
+2
View File
@@ -1757,10 +1757,12 @@ export type APIGetMediaParams = {
skipBase64?: "true" | "false";
stream?: "stream";
thumbnail?: "true" | "false";
apiKey?: string;
};
export type AddMediaAPIBody = {
media: MediaUploadDataType[];
folder?: string | null;
type: (typeof MediaTypes)[number];
apiKey?: string;
};
export {};