remotion-lambda 4.0.181__tar.gz → 4.0.183__tar.gz

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.
Files changed (18) hide show
  1. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/PKG-INFO +1 -1
  2. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/models.py +4 -3
  3. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/version.py +1 -1
  4. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/PKG-INFO +1 -1
  5. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/LICENSE +0 -0
  6. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/README.md +0 -0
  7. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/__init__.py +0 -0
  8. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda/remotionclient.py +0 -0
  9. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/SOURCES.txt +0 -0
  10. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/dependency_links.txt +0 -0
  11. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/requires.txt +0 -0
  12. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/remotion_lambda.egg-info/top_level.txt +0 -0
  13. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/setup.cfg +0 -0
  14. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/setup.py +0 -0
  15. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/__init__.py +0 -0
  16. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_get_render_progress_client.py +0 -0
  17. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_render_client_render_media.py +0 -0
  18. {remotion_lambda-4.0.181 → remotion_lambda-4.0.183}/tests/test_render_client_render_still.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion_lambda
3
- Version: 4.0.181
3
+ Version: 4.0.183
4
4
  Summary: Remotion Lambda client
5
5
  Home-page: https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python
6
6
  Author: Jonny Burger
@@ -35,6 +35,7 @@ class Privacy(str, Enum):
35
35
  """
36
36
  PUBLIC: str = 'public'
37
37
  PRIVATE: str = 'private'
38
+ NO_ACL: str = 'no-acl'
38
39
 
39
40
 
40
41
  class LogLevel(str, Enum):
@@ -123,12 +124,12 @@ class OutNameInputObject:
123
124
  Defines output naming and storage options.
124
125
 
125
126
  Attributes:
126
- bucket_name (str): The name of the S3 bucket for output storage.
127
+ bucketName (str): The name of the S3 bucket for output storage.
127
128
  key (str): The key name within the S3 bucket.
128
129
  s3_output_provider (Optional[CustomCredentials]):
129
130
  Optional custom credentials for the S3 output provider.
130
131
  """
131
- bucket_name: str
132
+ bucketName: str
132
133
  key: str
133
134
  s3_output_provider: Optional[CustomCredentials] = None
134
135
 
@@ -251,7 +252,7 @@ class RenderMediaParams:
251
252
  input_props: Optional[List] = None
252
253
  bucket_name: Optional[str] = None
253
254
  region: Optional[str] = None
254
- out_name: Optional[str] = None
255
+ out_name: Optional[Union[str, OutNameInputObject]] = None
255
256
  prefer_lossless: Optional[bool] = False
256
257
  composition: str = ""
257
258
  serve_url: str = ""
@@ -1,2 +1,2 @@
1
1
  # pylint: disable=missing-module-docstring, missing-final-newline
2
- VERSION = "4.0.181"
2
+ VERSION = "4.0.183"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: remotion-lambda
3
- Version: 4.0.181
3
+ Version: 4.0.183
4
4
  Summary: Remotion Lambda client
5
5
  Home-page: https://github.com/remotion-dev/remotion/tree/main/packages/lambda-python
6
6
  Author: Jonny Burger