We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a766af commit 878cb29Copy full SHA for 878cb29
3 files changed
imagekitio/constants/files.py
@@ -29,4 +29,5 @@
29
"overwrite_custom_metadata",
30
"custom_metadata",
31
"embedded_metadata",
32
+ "transformation",
33
]
imagekitio/models/UploadFileRequestOptions.py
@@ -18,6 +18,7 @@ def __init__(
18
overwrite_tags: bool = None,
19
overwrite_custom_metadata: bool = None,
20
custom_metadata: json = None,
21
+ transformation: json = None,
22
):
23
if use_unique_file_name is not None:
24
self.use_unique_file_name = use_unique_file_name
@@ -45,3 +46,5 @@ def __init__(
45
46
self.overwrite_custom_metadata = overwrite_custom_metadata
47
if custom_metadata is not None:
48
self.custom_metadata = custom_metadata
49
+ if transformation is not None:
50
+ self.transformation = transformation
tests/test_files_ops.py
0 commit comments