@remotion/cloudrun 4.0.457 → 4.0.458
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/render/index.js +1 -0
- package/dist/cli/commands/services/ls.js +1 -0
- package/dist/cli/commands/services/rm.js +2 -0
- package/dist/cli/commands/services/rmall.js +2 -0
- package/dist/cli/commands/sites/create.js +1 -0
- package/dist/cli/commands/sites/rm.js +1 -0
- package/dist/cli/commands/still.js +1 -0
- package/dist/cli/helpers/cloudrun-crash-logs.js +1 -0
- package/dist/index.d.ts +12 -12
- package/package.json +7 -7
|
@@ -14,6 +14,7 @@ const servicesLsCommand = async (logLevel) => {
|
|
|
14
14
|
cancelSignal: null,
|
|
15
15
|
updatesDontOverwrite: false,
|
|
16
16
|
indent: false,
|
|
17
|
+
logLevel,
|
|
17
18
|
});
|
|
18
19
|
fetchingOutput.update(`Getting services in ${region}...`, false);
|
|
19
20
|
const services = await (0, get_services_1.getServices)({
|
|
@@ -30,6 +30,7 @@ const servicesRmCommand = async (args, logLevel) => {
|
|
|
30
30
|
cancelSignal: null,
|
|
31
31
|
updatesDontOverwrite: false,
|
|
32
32
|
indent: false,
|
|
33
|
+
logLevel,
|
|
33
34
|
});
|
|
34
35
|
infoOutput.update('Getting service info...', false);
|
|
35
36
|
const info = await (0, get_service_info_1.getServiceInfo)({
|
|
@@ -51,6 +52,7 @@ const servicesRmCommand = async (args, logLevel) => {
|
|
|
51
52
|
cancelSignal: null,
|
|
52
53
|
updatesDontOverwrite: false,
|
|
53
54
|
indent: false,
|
|
55
|
+
logLevel,
|
|
54
56
|
});
|
|
55
57
|
output.update('Deleting...', false);
|
|
56
58
|
await (0, delete_service_1.deleteService)({
|
|
@@ -16,6 +16,7 @@ const servicesRmallCommand = async (logLevel) => {
|
|
|
16
16
|
cancelSignal: null,
|
|
17
17
|
updatesDontOverwrite: false,
|
|
18
18
|
indent: false,
|
|
19
|
+
logLevel,
|
|
19
20
|
});
|
|
20
21
|
fetchingOutput.update(`Getting services in ${region}...`, false);
|
|
21
22
|
const services = await (0, get_services_1.getServices)({
|
|
@@ -43,6 +44,7 @@ const servicesRmallCommand = async (logLevel) => {
|
|
|
43
44
|
cancelSignal: null,
|
|
44
45
|
updatesDontOverwrite: false,
|
|
45
46
|
indent: false,
|
|
47
|
+
logLevel,
|
|
46
48
|
});
|
|
47
49
|
output.update('Deleting...', false);
|
|
48
50
|
await (0, delete_service_1.deleteService)({ region: serv.region, serviceName: serv.serviceName });
|
|
@@ -28,6 +28,7 @@ const sitesRmSubcommand = async (args, logLevel) => {
|
|
|
28
28
|
cancelSignal: null,
|
|
29
29
|
updatesDontOverwrite: false,
|
|
30
30
|
indent: false,
|
|
31
|
+
logLevel,
|
|
31
32
|
});
|
|
32
33
|
infoOutput.update(`Checking ${region} for sites...`, false);
|
|
33
34
|
const deployedSites = await (0, get_sites_1.getSites)(region);
|
package/dist/index.d.ts
CHANGED
|
@@ -17,13 +17,6 @@ import type { GcpRegion } from './pricing/gcp-regions';
|
|
|
17
17
|
* @deprecated Import this from `@remotion/cloudrun/client` instead
|
|
18
18
|
*/
|
|
19
19
|
declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, encodingMaxRate, encodingBufferSize, proResProfile, x264Preset, crf, pixelFormat, imageFormat, scale, everyNthFrame, numberOfGifLoops, frameRange, envVariables, chromiumOptions, muted, forceWidth, forceHeight, forceFps, forceDurationInFrames, logLevel, delayRenderTimeoutInMilliseconds, concurrency, enforceAudioTrack, preferLossless, offthreadVideoCacheSizeInBytes, colorSpace, downloadBehavior, metadata, renderIdOverride, renderStatusWebhook, offthreadVideoThreads, mediaCacheSizeInBytes, sampleRate, }: RenderMediaOnCloudrunInput) => Promise<{
|
|
20
|
-
type: "crash";
|
|
21
|
-
cloudRunEndpoint: string;
|
|
22
|
-
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
23
|
-
requestStartTime: string;
|
|
24
|
-
requestCrashTime: string;
|
|
25
|
-
requestElapsedTimeInSeconds: number;
|
|
26
|
-
} | {
|
|
27
20
|
type: "success";
|
|
28
21
|
publicUrl?: string | null | undefined;
|
|
29
22
|
cloudStorageUri: string;
|
|
@@ -31,6 +24,13 @@ declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveU
|
|
|
31
24
|
bucketName: string;
|
|
32
25
|
renderId: string;
|
|
33
26
|
privacy: "project-private" | "public-read";
|
|
27
|
+
} | {
|
|
28
|
+
type: "crash";
|
|
29
|
+
cloudRunEndpoint: string;
|
|
30
|
+
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
31
|
+
requestStartTime: string;
|
|
32
|
+
requestCrashTime: string;
|
|
33
|
+
requestElapsedTimeInSeconds: number;
|
|
34
34
|
}>;
|
|
35
35
|
/**
|
|
36
36
|
* @deprecated Import this from `@remotion/cloudrun/client` instead
|
|
@@ -42,6 +42,11 @@ 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;
|
|
45
50
|
} | {
|
|
46
51
|
type: "success";
|
|
47
52
|
publicUrl?: string | null | undefined;
|
|
@@ -50,11 +55,6 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
|
|
|
50
55
|
bucketName: string;
|
|
51
56
|
renderId: string;
|
|
52
57
|
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.458",
|
|
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.458",
|
|
25
|
+
"@remotion/cli": "4.0.458",
|
|
26
|
+
"@remotion/renderer": "4.0.458",
|
|
27
27
|
"google-auth-library": "8.7.0",
|
|
28
|
-
"remotion": "4.0.
|
|
28
|
+
"remotion": "4.0.458",
|
|
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.458",
|
|
33
33
|
"@types/minimist": "1.2.2",
|
|
34
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
+
"@remotion/eslint-config-internal": "4.0.458",
|
|
35
35
|
"eslint": "9.19.0",
|
|
36
36
|
"@types/node": "20.12.14",
|
|
37
37
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|