Bump cloudinary from 1.40.0 to 1.41.0 (#2375)

* Bump cloudinary from 1.40.0 to 1.41.0

Bumps [cloudinary](https://github.com/cloudinary/pycloudinary) from 1.40.0 to 1.41.0.
- [Release notes](https://github.com/cloudinary/pycloudinary/releases)
- [Changelog](https://github.com/cloudinary/pycloudinary/blob/master/CHANGELOG.md)
- [Commits](https://github.com/cloudinary/pycloudinary/compare/1.40.0...1.41.0)

---
updated-dependencies:
- dependency-name: cloudinary
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update cloudinary==1.41.0

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>

[skip ci]
This commit is contained in:
dependabot[bot] 2024-08-10 19:18:37 -07:00 committed by GitHub
parent da501df846
commit 509d18801b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 23 additions and 9 deletions

View file

@ -543,10 +543,6 @@ def create_upload_preset(**options):
return call_api("post", uri, params, **options)
def create_folder(path, **options):
return call_api("post", ["folders", path], {}, **options)
def root_folders(**options):
return call_api("get", ["folders"], only(options, "next_cursor", "max_results"), **options)
@ -555,6 +551,24 @@ def subfolders(of_folder_path, **options):
return call_api("get", ["folders", of_folder_path], only(options, "next_cursor", "max_results"), **options)
def create_folder(path, **options):
return call_api("post", ["folders", path], {}, **options)
def rename_folder(from_path, to_path, **options):
"""
Renames folder
:param from_path: The full path of an existing asset folder.
:param to_path: The full path of the new asset folder.
:param options: Additional options
:rtype: Response
"""
params = {"to_folder": to_path}
return call_api("put", ["folders", from_path], params, **options)
def delete_folder(path, **options):
"""Deletes folder
@ -727,7 +741,7 @@ def update_metadata_field(field_external_id, field, **options):
def __metadata_field_params(field):
return only(field, "type", "external_id", "label", "mandatory", "restrictions",
"default_value", "validation", "datasource")
"default_value", "default_disabled", "validation", "datasource")
def delete_metadata_field(field_external_id, **options):