This commit is contained in:
Benjamin Toby
2025-07-05 17:39:29 +01:00
parent ad904622eb
commit fcc668d3a1
19 changed files with 70 additions and 8 deletions
+8
View File
@@ -1759,11 +1759,19 @@ export type APIGetMediaParams = {
stream?: "stream";
thumbnail?: "true" | "false";
apiKey?: string;
/**
* # Query datasquirel.com
*/
useDefault?: boolean;
};
export type AddMediaAPIBody = {
media: MediaUploadDataType[];
folder?: string | null;
type: (typeof MediaTypes)[number];
apiKey?: string;
/**
* # Query datasquirel.com
*/
useDefault?: boolean;
};
export {};