@remotion/lambda 4.0.427 → 4.0.428
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/deploy-site.js
CHANGED
|
@@ -14,7 +14,7 @@ const get_s3_operations_1 = require("../shared/get-s3-operations");
|
|
|
14
14
|
const validate_site_name_1 = require("../shared/validate-site-name");
|
|
15
15
|
const mandatoryDeploySite = async ({ bucketName, entryPoint, siteName, options, region, privacy, gitSource, throwIfSiteExists, providerSpecifics, forcePathStyle, fullClientSpecifics, requestHandler, }) => {
|
|
16
16
|
var _a, _b;
|
|
17
|
-
var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
17
|
+
var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
18
18
|
lambda_client_1.LambdaClientInternals.validateAwsRegion(region);
|
|
19
19
|
(0, serverless_1.validateBucketName)({
|
|
20
20
|
bucketName,
|
|
@@ -66,9 +66,10 @@ const mandatoryDeploySite = async ({ bucketName, entryPoint, siteName, options,
|
|
|
66
66
|
askAIEnabled: (_j = options === null || options === void 0 ? void 0 : options.askAIEnabled) !== null && _j !== void 0 ? _j : true,
|
|
67
67
|
audioLatencyHint: null,
|
|
68
68
|
experimentalClientSideRenderingEnabled: (_k = options === null || options === void 0 ? void 0 : options.experimentalClientSideRenderingEnabled) !== null && _k !== void 0 ? _k : false,
|
|
69
|
-
|
|
69
|
+
experimentalVisualModeEnabled: (_l = options === null || options === void 0 ? void 0 : options.experimentalVisualModeEnabled) !== null && _l !== void 0 ? _l : false,
|
|
70
|
+
keyboardShortcutsEnabled: (_m = options === null || options === void 0 ? void 0 : options.keyboardShortcutsEnabled) !== null && _m !== void 0 ? _m : true,
|
|
70
71
|
renderDefaults: null,
|
|
71
|
-
rspack: (
|
|
72
|
+
rspack: (_o = options === null || options === void 0 ? void 0 : options.rspack) !== null && _o !== void 0 ? _o : false,
|
|
72
73
|
}),
|
|
73
74
|
]);
|
|
74
75
|
if (throwIfSiteExists && files.length > 0) {
|
|
@@ -97,7 +98,7 @@ const mandatoryDeploySite = async ({ bucketName, entryPoint, siteName, options,
|
|
|
97
98
|
bucket: bucketName,
|
|
98
99
|
region,
|
|
99
100
|
localDir: bundled,
|
|
100
|
-
onProgress: (
|
|
101
|
+
onProgress: (_p = options === null || options === void 0 ? void 0 : options.onUploadProgress) !== null && _p !== void 0 ? _p : (() => undefined),
|
|
101
102
|
keyPrefix: subFolder,
|
|
102
103
|
privacy: privacy !== null && privacy !== void 0 ? privacy : 'public',
|
|
103
104
|
toUpload,
|
|
@@ -16,7 +16,7 @@ const progress_bar_1 = require("../../helpers/progress-bar");
|
|
|
16
16
|
const quit_1 = require("../../helpers/quit");
|
|
17
17
|
const log_1 = require("../../log");
|
|
18
18
|
exports.SITES_CREATE_SUBCOMMAND = 'create';
|
|
19
|
-
const { folderExpiryOption, publicDirOption, throwIfSiteExistsOption, disableGitSourceOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, } = client_1.BrowserSafeApis.options;
|
|
19
|
+
const { folderExpiryOption, publicDirOption, throwIfSiteExistsOption, disableGitSourceOption, askAIOption, experimentalClientSideRenderingOption, experimentalVisualModeOption, keyboardShortcutsOption, } = client_1.BrowserSafeApis.options;
|
|
20
20
|
const sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementation) => {
|
|
21
21
|
var _a, _b, _c, _d, _e;
|
|
22
22
|
const { file, reason } = cli_1.CliInternals.findEntryPoint({
|
|
@@ -113,6 +113,9 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementatio
|
|
|
113
113
|
const experimentalClientSideRenderingEnabled = experimentalClientSideRenderingOption.getValue({
|
|
114
114
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
115
115
|
}).value;
|
|
116
|
+
const experimentalVisualModeEnabled = experimentalVisualModeOption.getValue({
|
|
117
|
+
commandLine: cli_1.CliInternals.parsedCli,
|
|
118
|
+
}).value;
|
|
116
119
|
const keyboardShortcutsEnabled = keyboardShortcutsOption.getValue({
|
|
117
120
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
118
121
|
}).value;
|
|
@@ -160,6 +163,7 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementatio
|
|
|
160
163
|
bypassBucketNameValidation: Boolean(args_1.parsedLambdaCli['force-bucket-name']),
|
|
161
164
|
askAIEnabled,
|
|
162
165
|
experimentalClientSideRenderingEnabled,
|
|
166
|
+
experimentalVisualModeEnabled,
|
|
163
167
|
keyboardShortcutsEnabled,
|
|
164
168
|
},
|
|
165
169
|
region: (0, get_aws_region_1.getAwsRegion)(),
|
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.428",
|
|
8608
8608
|
description: "Render Remotion videos on AWS Lambda",
|
|
8609
8609
|
main: "dist/index.js",
|
|
8610
8610
|
sideEffects: false,
|
|
@@ -10204,6 +10204,7 @@ var mandatoryDeploySite = async ({
|
|
|
10204
10204
|
askAIEnabled: options?.askAIEnabled ?? true,
|
|
10205
10205
|
audioLatencyHint: null,
|
|
10206
10206
|
experimentalClientSideRenderingEnabled: options?.experimentalClientSideRenderingEnabled ?? false,
|
|
10207
|
+
experimentalVisualModeEnabled: options?.experimentalVisualModeEnabled ?? false,
|
|
10207
10208
|
keyboardShortcutsEnabled: options?.keyboardShortcutsEnabled ?? true,
|
|
10208
10209
|
renderDefaults: null,
|
|
10209
10210
|
rspack: options?.rspack ?? false
|
|
@@ -12182,6 +12183,7 @@ var {
|
|
|
12182
12183
|
disableGitSourceOption,
|
|
12183
12184
|
askAIOption,
|
|
12184
12185
|
experimentalClientSideRenderingOption,
|
|
12186
|
+
experimentalVisualModeOption,
|
|
12185
12187
|
keyboardShortcutsOption
|
|
12186
12188
|
} = BrowserSafeApis4.options;
|
|
12187
12189
|
var sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementation) => {
|
|
@@ -12277,6 +12279,9 @@ var sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementation)
|
|
|
12277
12279
|
const experimentalClientSideRenderingEnabled = experimentalClientSideRenderingOption.getValue({
|
|
12278
12280
|
commandLine: CliInternals16.parsedCli
|
|
12279
12281
|
}).value;
|
|
12282
|
+
const experimentalVisualModeEnabled = experimentalVisualModeOption.getValue({
|
|
12283
|
+
commandLine: CliInternals16.parsedCli
|
|
12284
|
+
}).value;
|
|
12280
12285
|
const keyboardShortcutsEnabled = keyboardShortcutsOption.getValue({
|
|
12281
12286
|
commandLine: CliInternals16.parsedCli
|
|
12282
12287
|
}).value;
|
|
@@ -12324,6 +12329,7 @@ var sitesCreateSubcommand = async (args, remotionRoot, logLevel, implementation)
|
|
|
12324
12329
|
bypassBucketNameValidation: Boolean(parsedLambdaCli["force-bucket-name"]),
|
|
12325
12330
|
askAIEnabled,
|
|
12326
12331
|
experimentalClientSideRenderingEnabled,
|
|
12332
|
+
experimentalVisualModeEnabled,
|
|
12327
12333
|
keyboardShortcutsEnabled
|
|
12328
12334
|
},
|
|
12329
12335
|
region: getAwsRegion(),
|
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.428",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -28,22 +28,22 @@
|
|
|
28
28
|
"@aws-sdk/client-cloudwatch-logs": "3.986.0",
|
|
29
29
|
"@aws-sdk/client-service-quotas": "3.986.0",
|
|
30
30
|
"@aws-sdk/lib-storage": "3.986.0",
|
|
31
|
-
"@remotion/bundler": "4.0.
|
|
32
|
-
"@remotion/cli": "4.0.
|
|
33
|
-
"@remotion/lambda-client": "4.0.
|
|
34
|
-
"@remotion/renderer": "4.0.
|
|
35
|
-
"@remotion/serverless": "4.0.
|
|
36
|
-
"@remotion/streaming": "4.0.
|
|
31
|
+
"@remotion/bundler": "4.0.428",
|
|
32
|
+
"@remotion/cli": "4.0.428",
|
|
33
|
+
"@remotion/lambda-client": "4.0.428",
|
|
34
|
+
"@remotion/renderer": "4.0.428",
|
|
35
|
+
"@remotion/serverless": "4.0.428",
|
|
36
|
+
"@remotion/streaming": "4.0.428",
|
|
37
37
|
"@smithy/abort-controller": "4.0.1",
|
|
38
|
-
"remotion": "4.0.
|
|
38
|
+
"remotion": "4.0.428",
|
|
39
39
|
"zod": "4.3.6"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@remotion/bundler": "4.0.
|
|
42
|
+
"@remotion/bundler": "4.0.428",
|
|
43
43
|
"@types/express": "^5.0.0",
|
|
44
44
|
"express": "4.21.0",
|
|
45
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
46
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
45
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.428",
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.428",
|
|
47
47
|
"mime-types": "2.1.34",
|
|
48
48
|
"@types/mime-types": "2.1.1",
|
|
49
49
|
"@types/minimist": "1.2.2",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@remotion/bundler": "4.0.
|
|
58
|
+
"@remotion/bundler": "4.0.428"
|
|
59
59
|
},
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|