@remotion/lambda 4.0.0-alpha13 → 4.0.0-alpha16
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.
- package/dist/api/delete-function.d.ts +1 -1
- package/dist/api/delete-render.d.ts +1 -1
- package/dist/api/delete-site.d.ts +2 -2
- package/dist/api/deploy-function.d.ts +2 -2
- package/dist/api/deploy-site.d.ts +2 -2
- package/dist/api/download-media.d.ts +2 -2
- package/dist/api/estimate-price.d.ts +1 -1
- package/dist/api/get-aws-client.d.ts +3 -3
- package/dist/api/get-buckets.d.ts +1 -1
- package/dist/api/get-compositions-on-lambda.d.ts +2 -2
- package/dist/api/get-function-info.d.ts +2 -2
- package/dist/api/get-functions.d.ts +1 -1
- package/dist/api/get-or-create-bucket.d.ts +2 -2
- package/dist/api/get-regions.d.ts +1 -1
- package/dist/api/get-render-progress.d.ts +1 -1
- package/dist/api/get-sites.d.ts +3 -3
- package/dist/api/iam-validation/simulate-rule.d.ts +2 -2
- package/dist/api/iam-validation/simulate.d.ts +2 -2
- package/dist/api/iam-validation/simulate.js +1 -1
- package/dist/api/presign-url.d.ts +1 -1
- package/dist/api/render-media-on-lambda.d.ts +2 -2
- package/dist/api/render-still-on-lambda.d.ts +2 -2
- package/dist/api/speculate-function-name.d.ts +1 -1
- package/dist/api/upload-dir.d.ts +2 -2
- package/dist/cli/args.d.ts +1 -1
- package/dist/cli/commands/render/progress.d.ts +4 -4
- package/dist/cli/commands/render/render.js +9 -1
- package/dist/cli/commands/still.js +9 -1
- package/dist/cli/helpers/progress-bar.d.ts +4 -4
- package/dist/cli/log.d.ts +1 -0
- package/dist/functions/chunk-optimization/types.d.ts +2 -2
- package/dist/functions/compositions.d.ts +1 -1
- package/dist/functions/compositions.js +11 -7
- package/dist/functions/helpers/find-output-file-in-bucket.d.ts +1 -1
- package/dist/functions/helpers/get-browser-instance.d.ts +1 -2
- package/dist/functions/helpers/get-browser-instance.js +4 -1
- package/dist/functions/helpers/get-files-in-folder.d.ts +1 -1
- package/dist/functions/helpers/get-files-to-delete.d.ts +1 -1
- package/dist/functions/helpers/get-lambdas-invoked-stats.d.ts +1 -1
- package/dist/functions/helpers/get-retry-stats.d.ts +1 -1
- package/dist/functions/helpers/io.d.ts +3 -3
- package/dist/functions/helpers/read-with-progress.d.ts +1 -1
- package/dist/functions/helpers/validate-composition.d.ts +5 -5
- package/dist/functions/helpers/validate-composition.js +5 -3
- package/dist/functions/helpers/write-lambda-error.d.ts +2 -2
- package/dist/functions/index.js +1 -1
- package/dist/functions/launch.d.ts +1 -1
- package/dist/functions/launch.js +6 -8
- package/dist/functions/progress.d.ts +1 -1
- package/dist/functions/renderer.d.ts +1 -1
- package/dist/functions/renderer.js +13 -12
- package/dist/functions/start.d.ts +1 -1
- package/dist/functions/still.d.ts +1 -1
- package/dist/functions/still.js +25 -11
- package/dist/pricing/aws-regions.d.ts +1 -1
- package/dist/shared/await.d.ts +1 -1
- package/dist/shared/aws-clients.d.ts +3 -3
- package/dist/shared/constants.d.ts +18 -18
- package/dist/shared/content-disposition-header.d.ts +1 -1
- package/dist/shared/get-most-expensive-chunks.d.ts +1 -1
- package/dist/shared/hosted-layers.d.ts +1 -1
- package/dist/shared/invoke-webhook.d.ts +2 -2
- package/dist/shared/parse-lambda-timings-key.d.ts +1 -1
- package/dist/shared/return-values.d.ts +1 -1
- package/dist/shared/truthy.d.ts +1 -1
- package/dist/shared/validate-lambda-codec.d.ts +1 -1
- package/dist/shared/validate-outname.js +12 -12
- package/package.json +11 -11
- package/remotionlambda-arm64.zip +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/lambda",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-alpha16",
|
|
4
4
|
"description": "Distributed renderer for Remotion based on AWS Lambda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"@aws-sdk/s3-request-presigner": "3.338.0",
|
|
26
26
|
"aws-policies": "^1.0.1",
|
|
27
27
|
"mime-types": "2.1.34",
|
|
28
|
-
"@remotion/
|
|
29
|
-
"
|
|
30
|
-
"remotion": "4.0.0-
|
|
31
|
-
"@remotion/renderer": "4.0.0-
|
|
28
|
+
"@remotion/cli": "4.0.0-alpha16",
|
|
29
|
+
"remotion": "4.0.0-alpha16",
|
|
30
|
+
"@remotion/bundler": "4.0.0-alpha16",
|
|
31
|
+
"@remotion/renderer": "4.0.0-alpha16"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@jonny/eslint-config": "3.0.266",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"@types/minimist": "1.2.2",
|
|
37
37
|
"@types/node": "18.14.6",
|
|
38
38
|
"@types/prompt": "^1.1.0",
|
|
39
|
-
"eslint": "8.
|
|
39
|
+
"eslint": "8.42.0",
|
|
40
40
|
"prettier": "^2.4.1",
|
|
41
41
|
"prettier-plugin-organize-imports": "^2.3.4",
|
|
42
42
|
"ts-node": "^10.8.0",
|
|
43
|
-
"typescript": "
|
|
44
|
-
"vitest": "
|
|
43
|
+
"typescript": "4.9.5",
|
|
44
|
+
"vitest": "0.31.1",
|
|
45
45
|
"zip-lib": "^0.7.2",
|
|
46
|
-
"@remotion/bundler": "4.0.0-
|
|
47
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.0-
|
|
46
|
+
"@remotion/bundler": "4.0.0-alpha16",
|
|
47
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha16"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@remotion/bundler": "4.0.0-
|
|
50
|
+
"@remotion/bundler": "4.0.0-alpha16"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|