@remotion/cloudrun 4.0.146 → 4.0.148

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @remotion/cloudrun@4.0.146 build /Users/jonathanburger/remotion/packages/cloudrun
2
+ > @remotion/cloudrun@4.0.147 build /Users/jonathanburger/remotion/packages/cloudrun
3
3
  > bun build.ts
4
4
 
5
5
  $ ts-node src/admin/bundle-renderLogic.ts
@@ -60,7 +60,7 @@ const internalRenderMediaOnCloudrunRaw = async ({ cloudRunUrl, serviceName, regi
60
60
  enforceAudioTrack: enforceAudioTrack !== null && enforceAudioTrack !== void 0 ? enforceAudioTrack : false,
61
61
  preferLossless: preferLossless !== null && preferLossless !== void 0 ? preferLossless : false,
62
62
  offthreadVideoCacheSizeInBytes: offthreadVideoCacheSizeInBytes !== null && offthreadVideoCacheSizeInBytes !== void 0 ? offthreadVideoCacheSizeInBytes : null,
63
- colorSpace: colorSpace !== null && colorSpace !== void 0 ? colorSpace : 'default',
63
+ colorSpace: colorSpace !== null && colorSpace !== void 0 ? colorSpace : null,
64
64
  clientVersion: version_1.VERSION,
65
65
  };
66
66
  const client = await (0, get_auth_client_for_url_1.getAuthClientForUrl)(cloudRunEndpoint);
@@ -52,7 +52,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
52
52
  enforceAudioTrack: z.ZodBoolean;
53
53
  preferLossless: z.ZodBoolean;
54
54
  offthreadVideoCacheSizeInBytes: z.ZodNullable<z.ZodNumber>;
55
- colorSpace: z.ZodEnum<["default", "bt709", "bt2020-ncl"]>;
55
+ colorSpace: z.ZodNullable<z.ZodEnum<["default", "bt709", "bt2020-ncl"]>>;
56
56
  clientVersion: z.ZodString;
57
57
  }, "strip", z.ZodTypeAny, {
58
58
  type: "media";
@@ -84,7 +84,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
84
84
  enforceAudioTrack: boolean;
85
85
  preferLossless: boolean;
86
86
  offthreadVideoCacheSizeInBytes: number | null;
87
- colorSpace: "default" | "bt709" | "bt2020-ncl";
87
+ colorSpace: "default" | "bt709" | "bt2020-ncl" | null;
88
88
  clientVersion: string;
89
89
  forceHeight?: number | null | undefined;
90
90
  forceWidth?: number | null | undefined;
@@ -127,7 +127,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
127
127
  enforceAudioTrack: boolean;
128
128
  preferLossless: boolean;
129
129
  offthreadVideoCacheSizeInBytes: number | null;
130
- colorSpace: "default" | "bt709" | "bt2020-ncl";
130
+ colorSpace: "default" | "bt709" | "bt2020-ncl" | null;
131
131
  clientVersion: string;
132
132
  forceHeight?: number | null | undefined;
133
133
  forceWidth?: number | null | undefined;
@@ -54,7 +54,7 @@ exports.CloudRunPayload = zod_1.z.discriminatedUnion('type', [
54
54
  enforceAudioTrack: zod_1.z.boolean(),
55
55
  preferLossless: zod_1.z.boolean(),
56
56
  offthreadVideoCacheSizeInBytes: zod_1.z.number().nullable(),
57
- colorSpace: zod_1.z.enum(client_1.BrowserSafeApis.validColorSpaces),
57
+ colorSpace: zod_1.z.enum(client_1.BrowserSafeApis.validColorSpaces).nullable(),
58
58
  clientVersion: zod_1.z.string(),
59
59
  }),
60
60
  zod_1.z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/cloudrun",
3
- "version": "4.0.146",
3
+ "version": "4.0.148",
4
4
  "description": "GCP Cloud Run alternative to lambda rendering",
5
5
  "main": "dist/index.js",
6
6
  "dependencies": {
@@ -11,11 +11,11 @@
11
11
  "@google-cloud/resource-manager": "^4.3.0",
12
12
  "@google-cloud/logging": "^10.5.0",
13
13
  "google-auth-library": "^8.7.0",
14
- "zod": "^3.22.3",
15
- "@remotion/bundler": "4.0.146",
16
- "remotion": "4.0.146",
17
- "@remotion/renderer": "4.0.146",
18
- "@remotion/cli": "4.0.146"
14
+ "zod": "3.22.3",
15
+ "@remotion/bundler": "4.0.148",
16
+ "@remotion/cli": "4.0.148",
17
+ "@remotion/renderer": "4.0.148",
18
+ "remotion": "4.0.148"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@jonny/eslint-config": "3.0.281",
@@ -26,7 +26,7 @@
26
26
  "prettier-plugin-organize-imports": "^3.2.4",
27
27
  "ts-node": "10.9.2",
28
28
  "vitest": "0.31.1",
29
- "@remotion/compositor-linux-x64-gnu": "4.0.146"
29
+ "@remotion/compositor-linux-x64-gnu": "4.0.148"
30
30
  },
31
31
  "exports": {
32
32
  "./package.json": "./package.json",