@remotion/lambda 4.0.243 → 4.0.245
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/LICENSE.md +1 -1
- package/dist/admin/make-layer-public.js +10 -11
- package/dist/api/create-function.d.ts +1 -2
- package/dist/api/create-function.js +10 -10
- package/dist/api/delete-function.d.ts +0 -7
- package/dist/api/delete-function.js +2 -5
- package/dist/api/delete-render.d.ts +0 -8
- package/dist/api/delete-render.js +2 -6
- package/dist/api/delete-site.d.ts +0 -10
- package/dist/api/delete-site.js +3 -9
- package/dist/api/deploy-function.d.ts +3 -14
- package/dist/api/deploy-function.js +5 -13
- package/dist/api/deploy-site.d.ts +0 -9
- package/dist/api/deploy-site.js +3 -8
- package/dist/api/download-media.d.ts +0 -11
- package/dist/api/download-media.js +1 -8
- package/dist/api/estimate-price.d.ts +0 -6
- package/dist/api/estimate-price.js +1 -3
- package/dist/api/get-aws-client.d.ts +0 -8
- package/dist/api/get-aws-client.js +2 -6
- package/dist/api/get-compositions-on-lambda.d.ts +0 -13
- package/dist/api/get-compositions-on-lambda.js +2 -11
- package/dist/api/get-function-info.d.ts +0 -7
- package/dist/api/get-function-info.js +2 -5
- package/dist/api/get-functions.d.ts +0 -7
- package/dist/api/get-functions.js +2 -5
- package/dist/api/get-or-create-bucket.d.ts +0 -6
- package/dist/api/get-or-create-bucket.js +3 -5
- package/dist/api/get-regions.d.ts +0 -5
- package/dist/api/get-regions.js +3 -4
- package/dist/api/get-render-progress.d.ts +0 -10
- package/dist/api/get-render-progress.js +1 -7
- package/dist/api/get-sites.d.ts +0 -6
- package/dist/api/get-sites.js +3 -5
- package/dist/api/iam-validation/simulate.d.ts +0 -7
- package/dist/api/iam-validation/simulate.js +2 -5
- package/dist/api/iam-validation/suggested-policy.d.ts +0 -10
- package/dist/api/iam-validation/suggested-policy.js +2 -4
- package/dist/api/presign-url.d.ts +0 -10
- package/dist/api/presign-url.js +2 -8
- package/dist/api/render-media-on-lambda.d.ts +0 -19
- package/dist/api/render-media-on-lambda.js +2 -17
- package/dist/api/render-still-on-lambda.d.ts +0 -16
- package/dist/api/render-still-on-lambda.js +3 -15
- package/dist/api/speculate-function-name.d.ts +0 -8
- package/dist/api/speculate-function-name.js +3 -7
- package/dist/api/upload-dir.js +44 -27
- package/dist/api/validate-webhook-signature.d.ts +0 -8
- package/dist/api/validate-webhook-signature.js +3 -7
- package/dist/cli/commands/functions/deploy.js +4 -1
- package/dist/cli/log.d.ts +3 -3
- package/dist/functions/http-client.d.ts +7 -0
- package/dist/functions/http-client.js +22 -0
- package/dist/index.js +26 -5
- package/dist/pricing/price-per-1-s.js +102 -0
- package/dist/regions.d.ts +1 -1
- package/dist/regions.js +3 -0
- package/dist/shared/call-lambda-async.d.ts +3 -0
- package/dist/shared/call-lambda-async.js +20 -0
- package/dist/shared/call-lambda-streaming.d.ts +7 -0
- package/dist/shared/call-lambda-streaming.js +124 -0
- package/dist/shared/call-lambda-sync.d.ts +3 -0
- package/dist/shared/call-lambda-sync.js +30 -0
- package/dist/shared/get-layers.d.ts +1 -2
- package/dist/shared/get-layers.js +2 -4
- package/dist/shared/hosted-layers.d.ts +0 -1
- package/dist/shared/hosted-layers.js +139 -537
- package/dist/shared/lambda-insights-extensions.d.ts +1 -1
- package/dist/shared/lambda-insights-extensions.js +3 -0
- package/dist/shared/validate-aws-region.js +1 -1
- package/package.json +12 -12
- package/remotionlambda-arm64.zip +0 -0
|
@@ -23,4 +23,7 @@ exports.lambdaInsightsExtensions = {
|
|
|
23
23
|
'eu-north-1': 'arn:aws:lambda:eu-north-1:580247275435:layer:LambdaInsightsExtension-Arm64:3',
|
|
24
24
|
'me-south-1': 'arn:aws:lambda:me-south-1:285320876703:layer:LambdaInsightsExtension-Arm64:2',
|
|
25
25
|
'sa-east-1': 'arn:aws:lambda:sa-east-1:580247275435:layer:LambdaInsightsExtension-Arm64:3',
|
|
26
|
+
'ap-southeast-4': null,
|
|
27
|
+
'ap-southeast-5': null,
|
|
28
|
+
'eu-central-2': null,
|
|
26
29
|
};
|
|
@@ -4,6 +4,6 @@ exports.validateAwsRegion = validateAwsRegion;
|
|
|
4
4
|
const regions_1 = require("../regions");
|
|
5
5
|
function validateAwsRegion(region) {
|
|
6
6
|
if (!regions_1.AWS_REGIONS.includes(region)) {
|
|
7
|
-
throw new TypeError(`${region} is not a
|
|
7
|
+
throw new TypeError(`${region} is not a supported AWS region. Must be one of: ${regions_1.AWS_REGIONS.join(', ')}`);
|
|
8
8
|
}
|
|
9
9
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lambda",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.245",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"@aws-sdk/s3-request-presigner": "3.645.0",
|
|
23
23
|
"mime-types": "2.1.34",
|
|
24
24
|
"zod": "3.22.3",
|
|
25
|
-
"@remotion/
|
|
26
|
-
"@remotion/
|
|
27
|
-
"@remotion/
|
|
28
|
-
"
|
|
29
|
-
"@remotion/studio-server": "4.0.
|
|
30
|
-
"@remotion/
|
|
31
|
-
"remotion": "4.0.
|
|
25
|
+
"@remotion/serverless": "4.0.245",
|
|
26
|
+
"@remotion/streaming": "4.0.245",
|
|
27
|
+
"@remotion/bundler": "4.0.245",
|
|
28
|
+
"remotion": "4.0.245",
|
|
29
|
+
"@remotion/studio-server": "4.0.245",
|
|
30
|
+
"@remotion/cli": "4.0.245",
|
|
31
|
+
"@remotion/renderer": "4.0.245"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/mime-types": "2.1.1",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"vitest": "0.31.1",
|
|
39
39
|
"zip-lib": "^0.7.2",
|
|
40
40
|
"eslint": "9.14.0",
|
|
41
|
-
"@remotion/
|
|
42
|
-
"@remotion/
|
|
43
|
-
"@remotion/
|
|
41
|
+
"@remotion/eslint-config-internal": "4.0.245",
|
|
42
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.245",
|
|
43
|
+
"@remotion/bundler": "4.0.245"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"@remotion/bundler": "4.0.
|
|
46
|
+
"@remotion/bundler": "4.0.245"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|