@remotion/lambda 4.0.500 → 4.0.501
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/cli/commands/sites/index.js +1 -1
- package/dist/esm/index.mjs +4 -3
- package/dist/index.d.ts +4 -1
- package/dist/index.js +5 -1
- package/package.json +12 -12
- package/remotionlambda-arm64.zip +0 -0
|
@@ -14,7 +14,7 @@ const printSitesHelp = (logLevel) => {
|
|
|
14
14
|
cli_1.CliInternals.Log.info({ indent: false, logLevel });
|
|
15
15
|
cli_1.CliInternals.Log.info({ indent: false, logLevel }, 'Available subcommands:');
|
|
16
16
|
cli_1.CliInternals.Log.info({ indent: false, logLevel });
|
|
17
|
-
cli_1.CliInternals.Log.info({ indent: false, logLevel }, `${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${create_1.SITES_CREATE_SUBCOMMAND}
|
|
17
|
+
cli_1.CliInternals.Log.info({ indent: false, logLevel }, `${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${create_1.SITES_CREATE_SUBCOMMAND} [entry-point]`);
|
|
18
18
|
cli_1.CliInternals.Log.info({ indent: false, logLevel }, cli_1.CliInternals.chalk.gray('Creates a new site based on a Remotion project'));
|
|
19
19
|
cli_1.CliInternals.Log.info({ indent: false, logLevel });
|
|
20
20
|
cli_1.CliInternals.Log.info({ indent: false, logLevel }, `${constants_1.BINARY_NAME} ${exports.SITES_COMMAND} ${ls_1.SITES_LS_SUBCOMMAND}`);
|
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.501",
|
|
8608
8608
|
description: "Render Remotion videos on AWS Lambda",
|
|
8609
8609
|
main: "dist/index.js",
|
|
8610
8610
|
scripts: {
|
|
@@ -12779,7 +12779,7 @@ var printSitesHelp = (logLevel) => {
|
|
|
12779
12779
|
CliInternals20.Log.info({ indent: false, logLevel });
|
|
12780
12780
|
CliInternals20.Log.info({ indent: false, logLevel }, "Available subcommands:");
|
|
12781
12781
|
CliInternals20.Log.info({ indent: false, logLevel });
|
|
12782
|
-
CliInternals20.Log.info({ indent: false, logLevel }, `${BINARY_NAME11} ${SITES_COMMAND} ${SITES_CREATE_SUBCOMMAND}
|
|
12782
|
+
CliInternals20.Log.info({ indent: false, logLevel }, `${BINARY_NAME11} ${SITES_COMMAND} ${SITES_CREATE_SUBCOMMAND} [entry-point]`);
|
|
12783
12783
|
CliInternals20.Log.info({ indent: false, logLevel }, CliInternals20.chalk.gray("Creates a new site based on a Remotion project"));
|
|
12784
12784
|
CliInternals20.Log.info({ indent: false, logLevel });
|
|
12785
12785
|
CliInternals20.Log.info({ indent: false, logLevel }, `${BINARY_NAME11} ${SITES_COMMAND} ${SITES_LS_SUBCOMMAND}`);
|
|
@@ -13325,6 +13325,7 @@ var LambdaInternals = {
|
|
|
13325
13325
|
};
|
|
13326
13326
|
|
|
13327
13327
|
// src/index.ts
|
|
13328
|
+
var deploySite2 = deploySite;
|
|
13328
13329
|
var renderMediaOnLambda = NoReactInternals6.ENABLE_V5_BREAKING_CHANGES ? () => {
|
|
13329
13330
|
throw new Error("renderMediaOnLambda() has moved to `@remotion/lambda-client`. Please import it from there.");
|
|
13330
13331
|
} : deprecatedRenderMediaOnLambda;
|
|
@@ -13360,7 +13361,7 @@ export {
|
|
|
13360
13361
|
estimatePrice,
|
|
13361
13362
|
downloadMedia,
|
|
13362
13363
|
deploySiteFromBundle,
|
|
13363
|
-
deploySite,
|
|
13364
|
+
deploySite2 as deploySite,
|
|
13364
13365
|
deployFunction,
|
|
13365
13366
|
deleteSite,
|
|
13366
13367
|
deleteRender,
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import { deleteSite } from './api/delete-site';
|
|
|
6
6
|
import type { DeployFunctionInput, DeployFunctionOutput } from './api/deploy-function';
|
|
7
7
|
import { deployFunction } from './api/deploy-function';
|
|
8
8
|
import type { DeploySiteInput, DeploySiteOutput } from './api/deploy-site';
|
|
9
|
-
import { deploySite } from './api/deploy-site';
|
|
10
9
|
import type { DeploySiteFromBundleInput, DeploySiteFromBundleOutput } from './api/deploy-site-from-bundle';
|
|
11
10
|
import { deploySiteFromBundle } from './api/deploy-site-from-bundle';
|
|
12
11
|
import type { DownloadMediaInput, DownloadMediaOutput } from './api/download-media';
|
|
@@ -20,6 +19,10 @@ import { simulatePermissions } from './api/iam-validation/simulate';
|
|
|
20
19
|
import { getRolePolicy, getUserPolicy } from './api/iam-validation/suggested-policy';
|
|
21
20
|
import { LambdaInternals, type _InternalOverallRenderProgress } from './internals';
|
|
22
21
|
export type { WebhookPayload } from '@remotion/lambda-client';
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated Use `bundle()` from `@remotion/bundler`, then pass its output to `deploySiteFromBundle()`.
|
|
24
|
+
*/
|
|
25
|
+
declare const deploySite: (args: DeploySiteInput) => DeploySiteOutput;
|
|
23
26
|
/**
|
|
24
27
|
* @deprecated Import this from `@remotion/lambda-client` instead
|
|
25
28
|
*/
|
package/dist/index.js
CHANGED
|
@@ -16,7 +16,6 @@ Object.defineProperty(exports, "deleteSite", { enumerable: true, get: function (
|
|
|
16
16
|
const deploy_function_1 = require("./api/deploy-function");
|
|
17
17
|
Object.defineProperty(exports, "deployFunction", { enumerable: true, get: function () { return deploy_function_1.deployFunction; } });
|
|
18
18
|
const deploy_site_1 = require("./api/deploy-site");
|
|
19
|
-
Object.defineProperty(exports, "deploySite", { enumerable: true, get: function () { return deploy_site_1.deploySite; } });
|
|
20
19
|
const deploy_site_from_bundle_1 = require("./api/deploy-site-from-bundle");
|
|
21
20
|
Object.defineProperty(exports, "deploySiteFromBundle", { enumerable: true, get: function () { return deploy_site_from_bundle_1.deploySiteFromBundle; } });
|
|
22
21
|
const download_media_1 = require("./api/download-media");
|
|
@@ -34,6 +33,11 @@ Object.defineProperty(exports, "getRolePolicy", { enumerable: true, get: functio
|
|
|
34
33
|
Object.defineProperty(exports, "getUserPolicy", { enumerable: true, get: function () { return suggested_policy_1.getUserPolicy; } });
|
|
35
34
|
const internals_1 = require("./internals");
|
|
36
35
|
Object.defineProperty(exports, "LambdaInternals", { enumerable: true, get: function () { return internals_1.LambdaInternals; } });
|
|
36
|
+
/**
|
|
37
|
+
* @deprecated Use `bundle()` from `@remotion/bundler`, then pass its output to `deploySiteFromBundle()`.
|
|
38
|
+
*/
|
|
39
|
+
const deploySite = deploy_site_1.deploySite;
|
|
40
|
+
exports.deploySite = deploySite;
|
|
37
41
|
/**
|
|
38
42
|
* @deprecated Import this from `@remotion/lambda-client` instead
|
|
39
43
|
*/
|
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.501",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"scripts": {
|
|
@@ -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.501",
|
|
32
|
+
"@remotion/cli": "4.0.501",
|
|
33
|
+
"@remotion/lambda-client": "4.0.501",
|
|
34
|
+
"@remotion/renderer": "4.0.501",
|
|
35
|
+
"@remotion/serverless": "4.0.501",
|
|
36
|
+
"@remotion/streaming": "4.0.501",
|
|
37
37
|
"@smithy/abort-controller": "4.0.1",
|
|
38
|
-
"remotion": "4.0.
|
|
38
|
+
"remotion": "4.0.501",
|
|
39
39
|
"zod": "4.4.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@remotion/bundler": "4.0.
|
|
42
|
+
"@remotion/bundler": "4.0.501",
|
|
43
43
|
"@types/express": "5.0.1",
|
|
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.501",
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.501",
|
|
47
47
|
"mime-types": "2.1.34",
|
|
48
48
|
"@types/mime-types": "2.1.1",
|
|
49
49
|
"@types/minimist": "1.2.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@remotion/bundler": "4.0.
|
|
57
|
+
"@remotion/bundler": "4.0.501"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|