|
36 | 36 | from ..types.shared_params.text_overlay_transformation import TextOverlayTransformation |
37 | 37 | from ..types.shared_params.get_image_attributes_options import GetImageAttributesOptions |
38 | 38 | from ..types.shared_params.subtitle_overlay_transformation import SubtitleOverlayTransformation |
| 39 | +from ..types.shared_params.solid_color_overlay_transformation import SolidColorOverlayTransformation |
39 | 40 |
|
40 | 41 | __all__ = ["DummyResource", "AsyncDummyResource"] |
41 | 42 |
|
@@ -74,6 +75,7 @@ def create( |
74 | 75 | responsive_image_attributes: ResponsiveImageAttributes | Omit = omit, |
75 | 76 | saved_extensions: SavedExtension | Omit = omit, |
76 | 77 | solid_color_overlay: SolidColorOverlay | Omit = omit, |
| 78 | + solid_color_overlay_transformation: SolidColorOverlayTransformation | Omit = omit, |
77 | 79 | src_options: SrcOptions | Omit = omit, |
78 | 80 | streaming_resolution: StreamingResolution | Omit = omit, |
79 | 81 | subtitle_overlay: SubtitleOverlay | Omit = omit, |
@@ -163,6 +165,7 @@ def create( |
163 | 165 | "responsive_image_attributes": responsive_image_attributes, |
164 | 166 | "saved_extensions": saved_extensions, |
165 | 167 | "solid_color_overlay": solid_color_overlay, |
| 168 | + "solid_color_overlay_transformation": solid_color_overlay_transformation, |
166 | 169 | "src_options": src_options, |
167 | 170 | "streaming_resolution": streaming_resolution, |
168 | 171 | "subtitle_overlay": subtitle_overlay, |
@@ -216,6 +219,7 @@ async def create( |
216 | 219 | responsive_image_attributes: ResponsiveImageAttributes | Omit = omit, |
217 | 220 | saved_extensions: SavedExtension | Omit = omit, |
218 | 221 | solid_color_overlay: SolidColorOverlay | Omit = omit, |
| 222 | + solid_color_overlay_transformation: SolidColorOverlayTransformation | Omit = omit, |
219 | 223 | src_options: SrcOptions | Omit = omit, |
220 | 224 | streaming_resolution: StreamingResolution | Omit = omit, |
221 | 225 | subtitle_overlay: SubtitleOverlay | Omit = omit, |
@@ -305,6 +309,7 @@ async def create( |
305 | 309 | "responsive_image_attributes": responsive_image_attributes, |
306 | 310 | "saved_extensions": saved_extensions, |
307 | 311 | "solid_color_overlay": solid_color_overlay, |
| 312 | + "solid_color_overlay_transformation": solid_color_overlay_transformation, |
308 | 313 | "src_options": src_options, |
309 | 314 | "streaming_resolution": streaming_resolution, |
310 | 315 | "subtitle_overlay": subtitle_overlay, |
|
0 commit comments