gantri-components 2.108.0-beta.6 → 2.108.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,4 +2,10 @@ import { GetFolderStructureArgs } from '../get-folder-structure/get-folder-struc
2
2
  import { DirectoryName } from '../get-folder-structure/globals.types';
3
3
  export type GetFileUrlArgs<Directory extends DirectoryName> = GetFolderStructureArgs<Directory> & {
4
4
  fileName: string;
5
+ /**
6
+ * Set to `true` if the file is not an image or video.
7
+ *
8
+ * https://cloudinary.com/documentation/upload_parameters#uploading_non_media_files_as_raw_files
9
+ */
10
+ isRawFile?: boolean;
5
11
  };