@remotion/lambda 4.0.320 → 4.0.321
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/esm/index.mjs +3 -2
- package/dist/internals.d.ts +4 -0
- package/dist/internals.js +2 -0
- package/package.json +12 -12
- package/remotionlambda-arm64.zip +0 -0
package/dist/esm/index.mjs
CHANGED
|
@@ -8604,7 +8604,7 @@ var require_package = __commonJS((exports, module) => {
|
|
|
8604
8604
|
url: "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
8605
8605
|
},
|
|
8606
8606
|
name: "@remotion/lambda",
|
|
8607
|
-
version: "4.0.
|
|
8607
|
+
version: "4.0.321",
|
|
8608
8608
|
description: "Render Remotion videos on AWS Lambda",
|
|
8609
8609
|
main: "dist/index.js",
|
|
8610
8610
|
sideEffects: false,
|
|
@@ -12885,7 +12885,8 @@ AWS returned an error message "The security token included in the request is inv
|
|
|
12885
12885
|
// src/internals.ts
|
|
12886
12886
|
var LambdaInternals = {
|
|
12887
12887
|
executeCommand,
|
|
12888
|
-
internalDeploySite
|
|
12888
|
+
internalDeploySite,
|
|
12889
|
+
getLayers
|
|
12889
12890
|
};
|
|
12890
12891
|
|
|
12891
12892
|
// src/index.ts
|
package/dist/internals.d.ts
CHANGED
|
@@ -65,5 +65,9 @@ export declare const LambdaInternals: {
|
|
|
65
65
|
untouchedFiles: number;
|
|
66
66
|
};
|
|
67
67
|
}>;
|
|
68
|
+
getLayers: ({ option, region, }: {
|
|
69
|
+
option: import("@remotion/lambda-client").RuntimePreference;
|
|
70
|
+
region: import("@remotion/lambda-client").AwsRegion;
|
|
71
|
+
}) => import("./shared/hosted-layers").AwsLayer[];
|
|
68
72
|
};
|
|
69
73
|
export type { OverallRenderProgress as _InternalOverallRenderProgress } from '@remotion/serverless';
|
package/dist/internals.js
CHANGED
|
@@ -3,7 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.LambdaInternals = void 0;
|
|
4
4
|
const deploy_site_1 = require("./api/deploy-site");
|
|
5
5
|
const index_1 = require("./cli/index");
|
|
6
|
+
const get_layers_1 = require("./shared/get-layers");
|
|
6
7
|
exports.LambdaInternals = {
|
|
7
8
|
executeCommand: index_1.executeCommand,
|
|
8
9
|
internalDeploySite: deploy_site_1.internalDeploySite,
|
|
10
|
+
getLayers: get_layers_1.getLayers,
|
|
9
11
|
};
|
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.321",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"@aws-sdk/lib-storage": "3.787.0",
|
|
22
22
|
"@smithy/abort-controller": "4.0.1",
|
|
23
23
|
"zod": "3.22.3",
|
|
24
|
-
"@remotion/
|
|
25
|
-
"@remotion/
|
|
26
|
-
"@remotion/
|
|
27
|
-
"@remotion/lambda-client": "4.0.
|
|
28
|
-
"remotion": "4.0.
|
|
29
|
-
"@remotion/
|
|
30
|
-
"
|
|
24
|
+
"@remotion/cli": "4.0.321",
|
|
25
|
+
"@remotion/bundler": "4.0.321",
|
|
26
|
+
"@remotion/renderer": "4.0.321",
|
|
27
|
+
"@remotion/lambda-client": "4.0.321",
|
|
28
|
+
"@remotion/streaming": "4.0.321",
|
|
29
|
+
"@remotion/serverless": "4.0.321",
|
|
30
|
+
"remotion": "4.0.321"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/express": "^5.0.0",
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"next": "15.2.4",
|
|
41
41
|
"pureimage": "0.4.13",
|
|
42
42
|
"zip-lib": "^0.7.2",
|
|
43
|
-
"@remotion/bundler": "4.0.
|
|
44
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
45
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
43
|
+
"@remotion/bundler": "4.0.321",
|
|
44
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.321",
|
|
45
|
+
"@remotion/eslint-config-internal": "4.0.321"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@remotion/bundler": "4.0.
|
|
48
|
+
"@remotion/bundler": "4.0.321"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|