@remotion/cloudrun 4.0.62 → 4.0.65
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> @remotion/cloudrun@4.0.
|
|
2
|
+
> @remotion/cloudrun@4.0.63 build /Users/jonathanburger/remotion/packages/cloudrun
|
|
3
3
|
> tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json && pnpm run buildContainer && pnpm run tarInstaller
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @remotion/cloudrun@4.0.
|
|
6
|
+
> @remotion/cloudrun@4.0.63 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
|
|
7
7
|
> ts-node src/admin/bundle-renderLogic.ts
|
|
8
8
|
|
|
9
9
|
distribution bundled.
|
|
10
10
|
|
|
11
|
-
> @remotion/cloudrun@4.0.
|
|
11
|
+
> @remotion/cloudrun@4.0.63 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
|
|
12
12
|
> ts-node src/admin/bundle-installer.ts
|
|
13
13
|
|
|
14
14
|
Making reproducible build with gtar
|
|
@@ -52,8 +52,8 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
52
52
|
offthreadVideoCacheSizeInBytes: z.ZodNullable<z.ZodNumber>;
|
|
53
53
|
colorSpace: z.ZodEnum<["default", "bt709"]>;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
|
-
type: "media";
|
|
56
55
|
serveUrl: string;
|
|
56
|
+
type: "media";
|
|
57
57
|
composition: string;
|
|
58
58
|
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
59
59
|
serializedInputPropsWithCustomSchema: string;
|
|
@@ -92,8 +92,8 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
92
92
|
outName?: string | undefined;
|
|
93
93
|
privacy?: "public" | "private" | undefined;
|
|
94
94
|
}, {
|
|
95
|
-
type: "media";
|
|
96
95
|
serveUrl: string;
|
|
96
|
+
type: "media";
|
|
97
97
|
composition: string;
|
|
98
98
|
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
99
99
|
serializedInputPropsWithCustomSchema: string;
|
|
@@ -169,8 +169,8 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
169
169
|
logLevel: z.ZodEnum<["verbose", "info", "warn", "error"]>;
|
|
170
170
|
offthreadVideoCacheSizeInBytes: z.ZodNullable<z.ZodNumber>;
|
|
171
171
|
}, "strip", z.ZodTypeAny, {
|
|
172
|
-
type: "still";
|
|
173
172
|
serveUrl: string;
|
|
173
|
+
type: "still";
|
|
174
174
|
composition: string;
|
|
175
175
|
serializedInputPropsWithCustomSchema: string;
|
|
176
176
|
imageFormat: "png" | "jpeg" | "pdf" | "webp";
|
|
@@ -194,8 +194,8 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
194
194
|
} | undefined;
|
|
195
195
|
outName?: string | undefined;
|
|
196
196
|
}, {
|
|
197
|
-
type: "still";
|
|
198
197
|
serveUrl: string;
|
|
198
|
+
type: "still";
|
|
199
199
|
composition: string;
|
|
200
200
|
serializedInputPropsWithCustomSchema: string;
|
|
201
201
|
imageFormat: "png" | "jpeg" | "pdf" | "webp";
|
|
@@ -225,13 +225,13 @@ declare const renderFailResponsePayload: z.ZodObject<{
|
|
|
225
225
|
name: z.ZodString;
|
|
226
226
|
stack: z.ZodString;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
|
-
type: "error";
|
|
229
228
|
message: string;
|
|
229
|
+
type: "error";
|
|
230
230
|
name: string;
|
|
231
231
|
stack: string;
|
|
232
232
|
}, {
|
|
233
|
-
type: "error";
|
|
234
233
|
message: string;
|
|
234
|
+
type: "error";
|
|
235
235
|
name: string;
|
|
236
236
|
stack: string;
|
|
237
237
|
}>;
|
|
@@ -244,19 +244,19 @@ declare const renderStillOnCloudrunResponsePayload: z.ZodObject<{
|
|
|
244
244
|
renderId: z.ZodString;
|
|
245
245
|
privacy: z.ZodEnum<["public-read", "project-private"]>;
|
|
246
246
|
}, "strip", z.ZodTypeAny, {
|
|
247
|
+
bucketName: string;
|
|
248
|
+
size: number;
|
|
247
249
|
type: "success";
|
|
248
250
|
privacy: "public-read" | "project-private";
|
|
249
251
|
cloudStorageUri: string;
|
|
250
|
-
size: number;
|
|
251
|
-
bucketName: string;
|
|
252
252
|
renderId: string;
|
|
253
253
|
publicUrl?: string | null | undefined;
|
|
254
254
|
}, {
|
|
255
|
+
bucketName: string;
|
|
256
|
+
size: number;
|
|
255
257
|
type: "success";
|
|
256
258
|
privacy: "public-read" | "project-private";
|
|
257
259
|
cloudStorageUri: string;
|
|
258
|
-
size: number;
|
|
259
|
-
bucketName: string;
|
|
260
260
|
renderId: string;
|
|
261
261
|
publicUrl?: string | null | undefined;
|
|
262
262
|
}>;
|
|
@@ -269,19 +269,19 @@ declare const renderMediaOnCloudrunResponsePayload: z.ZodObject<{
|
|
|
269
269
|
renderId: z.ZodString;
|
|
270
270
|
privacy: z.ZodEnum<["public-read", "project-private"]>;
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
+
bucketName: string;
|
|
273
|
+
size: number;
|
|
272
274
|
type: "success";
|
|
273
275
|
privacy: "public-read" | "project-private";
|
|
274
276
|
cloudStorageUri: string;
|
|
275
|
-
size: number;
|
|
276
|
-
bucketName: string;
|
|
277
277
|
renderId: string;
|
|
278
278
|
publicUrl?: string | null | undefined;
|
|
279
279
|
}, {
|
|
280
|
+
bucketName: string;
|
|
281
|
+
size: number;
|
|
280
282
|
type: "success";
|
|
281
283
|
privacy: "public-read" | "project-private";
|
|
282
284
|
cloudStorageUri: string;
|
|
283
|
-
size: number;
|
|
284
|
-
bucketName: string;
|
|
285
285
|
renderId: string;
|
|
286
286
|
publicUrl?: string | null | undefined;
|
|
287
287
|
}>;
|
|
@@ -293,15 +293,15 @@ declare const cloudRunCrashResponse: z.ZodObject<{
|
|
|
293
293
|
requestCrashTime: z.ZodString;
|
|
294
294
|
requestElapsedTimeInSeconds: z.ZodNumber;
|
|
295
295
|
}, "strip", z.ZodTypeAny, {
|
|
296
|
-
type: "crash";
|
|
297
296
|
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
297
|
+
type: "crash";
|
|
298
298
|
cloudRunEndpoint: string;
|
|
299
299
|
requestStartTime: string;
|
|
300
300
|
requestCrashTime: string;
|
|
301
301
|
requestElapsedTimeInSeconds: number;
|
|
302
302
|
}, {
|
|
303
|
-
type: "crash";
|
|
304
303
|
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
304
|
+
type: "crash";
|
|
305
305
|
cloudRunEndpoint: string;
|
|
306
306
|
requestStartTime: string;
|
|
307
307
|
requestCrashTime: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cloudrun",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.65",
|
|
4
4
|
"description": "GCP Cloud Run alternative to lambda rendering",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"@google-cloud/logging": "^10.5.0",
|
|
13
13
|
"google-auth-library": "^8.7.0",
|
|
14
14
|
"zod": "^3.22.3",
|
|
15
|
-
"@remotion/
|
|
16
|
-
"@remotion/
|
|
17
|
-
"remotion": "4.0.
|
|
18
|
-
"
|
|
15
|
+
"@remotion/cli": "4.0.65",
|
|
16
|
+
"@remotion/bundler": "4.0.65",
|
|
17
|
+
"@remotion/renderer": "4.0.65",
|
|
18
|
+
"remotion": "4.0.65"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@jonny/eslint-config": "3.0.276",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
27
27
|
"ts-node": "^10.8.0",
|
|
28
28
|
"vitest": "0.31.1",
|
|
29
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
29
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.65"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|