@remotion/cloudrun 4.0.471 → 4.0.472

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.
@@ -76,6 +76,13 @@ export type RenderMediaOnCloudrunInput = {
76
76
  renderStatusWebhook?: z.infer<typeof CloudRunPayload>['renderStatusWebhook'];
77
77
  } & Partial<ToOptions<typeof BrowserSafeApis.optionsMap.renderMediaOnCloudRun>>;
78
78
  export declare const internalRenderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, renderIdOverride, renderStatusWebhook, jpegQuality, audioCodec, audioBitrate, videoBitrate, encodingMaxRate, encodingBufferSize, proResProfile, x264Preset, gopSize, crf, pixelFormat, imageFormat, scale, everyNthFrame, numberOfGifLoops, frameRange, envVariables, chromiumOptions, muted, forceWidth, forceHeight, forceFps, forceDurationInFrames, logLevel, delayRenderTimeoutInMilliseconds, concurrency, enforceAudioTrack, preferLossless, offthreadVideoCacheSizeInBytes, offthreadVideoThreads, colorSpace, downloadBehavior, metadata, mediaCacheSizeInBytes, sampleRate, }: InternalRenderMediaOnCloudrun) => Promise<{
79
+ type: "crash";
80
+ cloudRunEndpoint: string;
81
+ message: "Service crashed without sending a response. Check the logs in GCP console.";
82
+ requestStartTime: string;
83
+ requestCrashTime: string;
84
+ requestElapsedTimeInSeconds: number;
85
+ } | {
79
86
  type: "success";
80
87
  publicUrl?: string | null | undefined;
81
88
  cloudStorageUri: string;
@@ -83,15 +90,15 @@ export declare const internalRenderMediaOnCloudrun: ({ cloudRunUrl, serviceName,
83
90
  bucketName: string;
84
91
  renderId: string;
85
92
  privacy: "project-private" | "public-read";
86
- } | {
93
+ }>;
94
+ export declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, encodingMaxRate, encodingBufferSize, proResProfile, x264Preset, gopSize, 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<{
87
95
  type: "crash";
88
96
  cloudRunEndpoint: string;
89
97
  message: "Service crashed without sending a response. Check the logs in GCP console.";
90
98
  requestStartTime: string;
91
99
  requestCrashTime: string;
92
100
  requestElapsedTimeInSeconds: number;
93
- }>;
94
- export declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, encodingMaxRate, encodingBufferSize, proResProfile, x264Preset, gopSize, 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<{
101
+ } | {
95
102
  type: "success";
96
103
  publicUrl?: string | null | undefined;
97
104
  cloudStorageUri: string;
@@ -99,12 +106,5 @@ export declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region,
99
106
  bucketName: string;
100
107
  renderId: string;
101
108
  privacy: "project-private" | "public-read";
102
- } | {
103
- type: "crash";
104
- cloudRunEndpoint: string;
105
- message: "Service crashed without sending a response. Check the logs in GCP console.";
106
- requestStartTime: string;
107
- requestCrashTime: string;
108
- requestElapsedTimeInSeconds: number;
109
109
  }>;
110
110
  export {};
package/dist/index.d.ts CHANGED
@@ -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.471",
6
+ "version": "4.0.472",
7
7
  "description": "Render Remotion videos on Google Cloud Run",
8
8
  "main": "dist/index.js",
9
9
  "scripts": {
@@ -20,17 +20,17 @@
20
20
  "@google-cloud/storage": "7.15.2",
21
21
  "@google-cloud/resource-manager": "5.3.1",
22
22
  "@google-cloud/logging": "11.2.0",
23
- "@remotion/bundler": "4.0.471",
24
- "@remotion/cli": "4.0.471",
25
- "@remotion/renderer": "4.0.471",
23
+ "@remotion/bundler": "4.0.472",
24
+ "@remotion/cli": "4.0.472",
25
+ "@remotion/renderer": "4.0.472",
26
26
  "google-auth-library": "8.7.0",
27
- "remotion": "4.0.471",
27
+ "remotion": "4.0.472",
28
28
  "zod": "4.3.6"
29
29
  },
30
30
  "devDependencies": {
31
- "@remotion/compositor-linux-x64-gnu": "4.0.471",
31
+ "@remotion/compositor-linux-x64-gnu": "4.0.472",
32
32
  "@types/minimist": "1.2.2",
33
- "@remotion/eslint-config-internal": "4.0.471",
33
+ "@remotion/eslint-config-internal": "4.0.472",
34
34
  "eslint": "9.19.0",
35
35
  "@types/node": "20.12.14",
36
36
  "@typescript/native-preview": "7.0.0-dev.20260217.1"