@remotion/cloudrun 4.0.438 → 4.0.439

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +7 -7
  2. package/package.json +7 -7
package/dist/index.d.ts CHANGED
@@ -36,6 +36,13 @@ declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveU
36
36
  * @deprecated Import this from `@remotion/cloudrun/client` instead
37
37
  */
38
38
  declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnCloudrunInput) => Promise<{
39
+ type: "crash";
40
+ cloudRunEndpoint: string;
41
+ message: "Service crashed without sending a response. Check the logs in GCP console.";
42
+ requestStartTime: string;
43
+ requestCrashTime: string;
44
+ requestElapsedTimeInSeconds: number;
45
+ } | {
39
46
  type: "success";
40
47
  publicUrl?: string | null | undefined;
41
48
  cloudStorageUri: string;
@@ -48,13 +55,6 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
48
55
  message: string;
49
56
  name: string;
50
57
  stack: string;
51
- } | {
52
- type: "crash";
53
- cloudRunEndpoint: string;
54
- message: "Service crashed without sending a response. Check the logs in GCP console.";
55
- requestStartTime: string;
56
- requestCrashTime: string;
57
- requestElapsedTimeInSeconds: number;
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.438",
6
+ "version": "4.0.439",
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.438",
25
- "@remotion/cli": "4.0.438",
26
- "@remotion/renderer": "4.0.438",
24
+ "@remotion/bundler": "4.0.439",
25
+ "@remotion/cli": "4.0.439",
26
+ "@remotion/renderer": "4.0.439",
27
27
  "google-auth-library": "8.7.0",
28
- "remotion": "4.0.438",
28
+ "remotion": "4.0.439",
29
29
  "zod": "4.3.6"
30
30
  },
31
31
  "devDependencies": {
32
- "@remotion/compositor-linux-x64-gnu": "4.0.438",
32
+ "@remotion/compositor-linux-x64-gnu": "4.0.439",
33
33
  "@types/minimist": "1.2.2",
34
- "@remotion/eslint-config-internal": "4.0.438",
34
+ "@remotion/eslint-config-internal": "4.0.439",
35
35
  "eslint": "9.19.0",
36
36
  "@types/node": "20.12.14",
37
37
  "@typescript/native-preview": "7.0.0-dev.20260217.1"