diff --git a/lib/types/Client.ts b/lib/types/Client.ts index a964d1c..8afa719 100644 --- a/lib/types/Client.ts +++ b/lib/types/Client.ts @@ -917,23 +917,6 @@ export declare class Client { */ public replace_tags(document_id: string, tags: string[]): Promise; - /** - * Ensures a Base64 string includes a MIME type hint. If not present, uses the filename or filepath to add the appropriate MIME type. - * - * @param {string} base64String - The Base64 encoded string. - * @param {string} filename or filePath - The filename or filepath to derive the MIME type if missing. - * @returns {string} - Base64 string with MIME type prefix. - */ - public add_mime_type(base64String: String, filename: String): String; - - /** - * Checks if a Base64 string contains any of the predefined MIME types. - * - * @param {string} base64String - The Base64 encoded string with a MIME type prefix. - * @returns {boolean} - Returns true if any predefined MIME type is found, false otherwise. - */ - public check_mime_type(base64String: String): Boolean; - } /**