diff --git a/src/cloudflare/types/cache/variant_edit_params.py b/src/cloudflare/types/cache/variant_edit_params.py index 28efe2b4e464..2c7c09d1991b 100644 --- a/src/cloudflare/types/cache/variant_edit_params.py +++ b/src/cloudflare/types/cache/variant_edit_params.py @@ -2,7 +2,7 @@ from __future__ import annotations -from typing import Iterable +from typing import List from typing_extensions import Required, TypedDict __all__ = ["VariantEditParams", "Value"] @@ -17,67 +17,67 @@ class VariantEditParams(TypedDict, total=False): class Value(TypedDict, total=False): - avif: Iterable[object] + avif: List[str] """ List of strings with the MIME types of all the variants that should be served for avif. """ - bmp: Iterable[object] + bmp: List[str] """ List of strings with the MIME types of all the variants that should be served for bmp. """ - gif: Iterable[object] + gif: List[str] """ List of strings with the MIME types of all the variants that should be served for gif. """ - jp2: Iterable[object] + jp2: List[str] """ List of strings with the MIME types of all the variants that should be served for jp2. """ - jpeg: Iterable[object] + jpeg: List[str] """ List of strings with the MIME types of all the variants that should be served for jpeg. """ - jpg: Iterable[object] + jpg: List[str] """ List of strings with the MIME types of all the variants that should be served for jpg. """ - jpg2: Iterable[object] + jpg2: List[str] """ List of strings with the MIME types of all the variants that should be served for jpg2. """ - png: Iterable[object] + png: List[str] """ List of strings with the MIME types of all the variants that should be served for png. """ - tif: Iterable[object] + tif: List[str] """ List of strings with the MIME types of all the variants that should be served for tif. """ - tiff: Iterable[object] + tiff: List[str] """ List of strings with the MIME types of all the variants that should be served for tiff. """ - webp: Iterable[object] + webp: List[str] """ List of strings with the MIME types of all the variants that should be served for webp. diff --git a/src/cloudflare/types/cache/variant_edit_response.py b/src/cloudflare/types/cache/variant_edit_response.py index a158e913eb48..636afadd4564 100644 --- a/src/cloudflare/types/cache/variant_edit_response.py +++ b/src/cloudflare/types/cache/variant_edit_response.py @@ -10,67 +10,67 @@ class Value(BaseModel): - avif: Optional[List[object]] = None + avif: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for avif. """ - bmp: Optional[List[object]] = None + bmp: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for bmp. """ - gif: Optional[List[object]] = None + gif: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for gif. """ - jp2: Optional[List[object]] = None + jp2: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jp2. """ - jpeg: Optional[List[object]] = None + jpeg: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jpeg. """ - jpg: Optional[List[object]] = None + jpg: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jpg. """ - jpg2: Optional[List[object]] = None + jpg2: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jpg2. """ - png: Optional[List[object]] = None + png: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for png. """ - tif: Optional[List[object]] = None + tif: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for tif. """ - tiff: Optional[List[object]] = None + tiff: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for tiff. """ - webp: Optional[List[object]] = None + webp: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for webp. diff --git a/src/cloudflare/types/cache/variant_get_response.py b/src/cloudflare/types/cache/variant_get_response.py index e1ad28a04709..c646004adaae 100644 --- a/src/cloudflare/types/cache/variant_get_response.py +++ b/src/cloudflare/types/cache/variant_get_response.py @@ -10,67 +10,67 @@ class Value(BaseModel): - avif: Optional[List[object]] = None + avif: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for avif. """ - bmp: Optional[List[object]] = None + bmp: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for bmp. """ - gif: Optional[List[object]] = None + gif: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for gif. """ - jp2: Optional[List[object]] = None + jp2: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jp2. """ - jpeg: Optional[List[object]] = None + jpeg: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jpeg. """ - jpg: Optional[List[object]] = None + jpg: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jpg. """ - jpg2: Optional[List[object]] = None + jpg2: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for jpg2. """ - png: Optional[List[object]] = None + png: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for png. """ - tif: Optional[List[object]] = None + tif: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for tif. """ - tiff: Optional[List[object]] = None + tiff: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for tiff. """ - webp: Optional[List[object]] = None + webp: Optional[List[str]] = None """ List of strings with the MIME types of all the variants that should be served for webp.