@remotion/cloudrun 4.0.460 → 4.0.461
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
|
@@ -13,7 +13,7 @@ const validate_site_name_1 = require("../shared/validate-site-name");
|
|
|
13
13
|
const get_cloud_storage_client_1 = require("./helpers/get-cloud-storage-client");
|
|
14
14
|
const upload_dir_1 = require("./upload-dir");
|
|
15
15
|
const internalDeploySiteRaw = async ({ entryPoint, bucketName, siteName, options, privacy, }) => {
|
|
16
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m
|
|
16
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
17
17
|
(0, validate_bucketname_1.validateBucketName)(bucketName, { mustStartWithRemotion: true });
|
|
18
18
|
(0, validate_site_name_1.validateSiteName)(siteName);
|
|
19
19
|
const cloudStorageClient = (0, get_cloud_storage_client_1.getCloudStorageClient)();
|
|
@@ -44,11 +44,10 @@ const internalDeploySiteRaw = async ({ entryPoint, bucketName, siteName, options
|
|
|
44
44
|
outDir: null,
|
|
45
45
|
audioLatencyHint: null,
|
|
46
46
|
experimentalClientSideRenderingEnabled: (_h = options === null || options === void 0 ? void 0 : options.experimentalClientSideRenderingEnabled) !== null && _h !== void 0 ? _h : false,
|
|
47
|
-
experimentalVisualModeEnabled: (_j = options === null || options === void 0 ? void 0 : options.experimentalVisualModeEnabled) !== null && _j !== void 0 ? _j : false,
|
|
48
47
|
renderDefaults: null,
|
|
49
|
-
askAIEnabled: (
|
|
50
|
-
keyboardShortcutsEnabled: (
|
|
51
|
-
rspack: (
|
|
48
|
+
askAIEnabled: (_j = options === null || options === void 0 ? void 0 : options.askAIEnabled) !== null && _j !== void 0 ? _j : true,
|
|
49
|
+
keyboardShortcutsEnabled: (_k = options === null || options === void 0 ? void 0 : options.keyboardShortcutsEnabled) !== null && _k !== void 0 ? _k : true,
|
|
50
|
+
rspack: (_l = options === null || options === void 0 ? void 0 : options.rspack) !== null && _l !== void 0 ? _l : false,
|
|
52
51
|
}),
|
|
53
52
|
]);
|
|
54
53
|
const { toDelete, toUpload, existingCount } = await (0, get_storage_operations_1.getStorageDiffOperations)({
|
|
@@ -60,7 +59,7 @@ const internalDeploySiteRaw = async ({ entryPoint, bucketName, siteName, options
|
|
|
60
59
|
(0, upload_dir_1.uploadDir)({
|
|
61
60
|
bucket: bucketName,
|
|
62
61
|
localDir: bundled,
|
|
63
|
-
onProgress: (
|
|
62
|
+
onProgress: (_m = options === null || options === void 0 ? void 0 : options.onUploadProgress) !== null && _m !== void 0 ? _m : (() => undefined),
|
|
64
63
|
keyPrefix: subFolder,
|
|
65
64
|
toUpload,
|
|
66
65
|
privacy: privacy !== null && privacy !== void 0 ? privacy : 'public',
|
|
@@ -31,6 +31,13 @@ type OptionalParameters = {
|
|
|
31
31
|
} & ToOptions<typeof BrowserSafeApis.optionsMap.renderStillOnCloudRun>;
|
|
32
32
|
export type RenderStillOnCloudrunInput = Partial<OptionalParameters> & MandatoryParameters;
|
|
33
33
|
export declare const renderStillOnCloudrun: (options: RenderStillOnCloudrunInput) => Promise<{
|
|
34
|
+
type: "crash";
|
|
35
|
+
cloudRunEndpoint: string;
|
|
36
|
+
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
37
|
+
requestStartTime: string;
|
|
38
|
+
requestCrashTime: string;
|
|
39
|
+
requestElapsedTimeInSeconds: number;
|
|
40
|
+
} | {
|
|
34
41
|
type: "success";
|
|
35
42
|
publicUrl?: string | null | undefined;
|
|
36
43
|
cloudStorageUri: string;
|
|
@@ -43,12 +50,5 @@ export declare const renderStillOnCloudrun: (options: RenderStillOnCloudrunInput
|
|
|
43
50
|
message: string;
|
|
44
51
|
name: string;
|
|
45
52
|
stack: string;
|
|
46
|
-
} | {
|
|
47
|
-
type: "crash";
|
|
48
|
-
cloudRunEndpoint: string;
|
|
49
|
-
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
50
|
-
requestStartTime: string;
|
|
51
|
-
requestCrashTime: string;
|
|
52
|
-
requestElapsedTimeInSeconds: number;
|
|
53
53
|
}>;
|
|
54
54
|
export {};
|
|
@@ -16,7 +16,7 @@ const get_gcp_region_1 = require("../../get-gcp-region");
|
|
|
16
16
|
const progress_bar_1 = require("../../helpers/progress-bar");
|
|
17
17
|
const quit_1 = require("../../helpers/quit");
|
|
18
18
|
const log_1 = require("../../log");
|
|
19
|
-
const { disableGitSourceOption, askAIOption, experimentalClientSideRenderingOption,
|
|
19
|
+
const { disableGitSourceOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, } = client_1.BrowserSafeApis.options;
|
|
20
20
|
exports.SITES_CREATE_SUBCOMMAND = 'create';
|
|
21
21
|
const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
|
|
22
22
|
var _a, _b, _c;
|
|
@@ -104,9 +104,6 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
|
|
|
104
104
|
const experimentalClientSideRenderingEnabled = experimentalClientSideRenderingOption.getValue({
|
|
105
105
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
106
106
|
}).value;
|
|
107
|
-
const experimentalVisualModeEnabled = experimentalVisualModeOption.getValue({
|
|
108
|
-
commandLine: cli_1.CliInternals.parsedCli,
|
|
109
|
-
}).value;
|
|
110
107
|
const keyboardShortcutsEnabled = keyboardShortcutsOption.getValue({
|
|
111
108
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
112
109
|
}).value;
|
|
@@ -144,7 +141,6 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
|
|
|
144
141
|
rootDir: remotionRoot,
|
|
145
142
|
askAIEnabled,
|
|
146
143
|
experimentalClientSideRenderingEnabled,
|
|
147
|
-
experimentalVisualModeEnabled,
|
|
148
144
|
keyboardShortcutsEnabled,
|
|
149
145
|
},
|
|
150
146
|
indent: false,
|
package/dist/index.d.ts
CHANGED
|
@@ -42,11 +42,6 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
|
|
|
42
42
|
requestStartTime: string;
|
|
43
43
|
requestCrashTime: string;
|
|
44
44
|
requestElapsedTimeInSeconds: number;
|
|
45
|
-
} | {
|
|
46
|
-
type: "error";
|
|
47
|
-
message: string;
|
|
48
|
-
name: string;
|
|
49
|
-
stack: string;
|
|
50
45
|
} | {
|
|
51
46
|
type: "success";
|
|
52
47
|
publicUrl?: string | null | undefined;
|
|
@@ -55,6 +50,11 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
|
|
|
55
50
|
bucketName: string;
|
|
56
51
|
renderId: string;
|
|
57
52
|
privacy: "project-private" | "public-read";
|
|
53
|
+
} | {
|
|
54
|
+
type: "error";
|
|
55
|
+
message: string;
|
|
56
|
+
name: string;
|
|
57
|
+
stack: string;
|
|
58
58
|
}>;
|
|
59
59
|
/**
|
|
60
60
|
* @deprecated Import this from `@remotion/lambda/client` instead
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cloudrun",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.461",
|
|
7
7
|
"description": "Render Remotion videos on Google Cloud Run",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"@google-cloud/storage": "7.15.2",
|
|
22
22
|
"@google-cloud/resource-manager": "5.3.1",
|
|
23
23
|
"@google-cloud/logging": "11.2.0",
|
|
24
|
-
"@remotion/bundler": "4.0.
|
|
25
|
-
"@remotion/cli": "4.0.
|
|
26
|
-
"@remotion/renderer": "4.0.
|
|
24
|
+
"@remotion/bundler": "4.0.461",
|
|
25
|
+
"@remotion/cli": "4.0.461",
|
|
26
|
+
"@remotion/renderer": "4.0.461",
|
|
27
27
|
"google-auth-library": "8.7.0",
|
|
28
|
-
"remotion": "4.0.
|
|
28
|
+
"remotion": "4.0.461",
|
|
29
29
|
"zod": "4.3.6"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
32
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.461",
|
|
33
33
|
"@types/minimist": "1.2.2",
|
|
34
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
+
"@remotion/eslint-config-internal": "4.0.461",
|
|
35
35
|
"eslint": "9.19.0",
|
|
36
36
|
"@types/node": "20.12.14",
|
|
37
37
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|