@remotion/lambda 4.0.141 → 4.0.142

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.
@@ -103,7 +103,7 @@ const renderStillOnLambda = (input) => {
103
103
  logLevel: input.dumpBrowserLogs ? 'verbose' : (_o = input.logLevel) !== null && _o !== void 0 ? _o : 'info',
104
104
  offthreadVideoCacheSizeInBytes: (_p = input.offthreadVideoCacheSizeInBytes) !== null && _p !== void 0 ? _p : null,
105
105
  scale: (_q = input.scale) !== null && _q !== void 0 ? _q : 1,
106
- timeoutInMilliseconds: (_r = input.timeoutInMilliseconds) !== null && _r !== void 0 ? _r : constants_1.DEFAULT_TIMEOUT,
106
+ timeoutInMilliseconds: (_r = input.timeoutInMilliseconds) !== null && _r !== void 0 ? _r : 30000,
107
107
  dumpBrowserLogs: false,
108
108
  });
109
109
  };
package/dist/cli/log.d.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  export declare const Log: {
2
2
  verbose: (options: import("@remotion/renderer").LogOptions & {
3
3
  tag?: string | undefined;
4
- }, message?: any, ...optionalParams: any[]) => void;
5
- info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => void;
6
- warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => void;
4
+ }, ...args: any[]) => void;
5
+ info: (options: import("@remotion/renderer").LogOptions, ...args: any[]) => void;
6
+ warn: (options: import("@remotion/renderer").LogOptions, ...args: any[]) => void;
7
7
  error: (options: import("@remotion/renderer").LogOptions & {
8
8
  tag?: string | undefined;
9
- }, message?: any, ...optionalParams: any[]) => void;
9
+ }, ...args: any[]) => void;
10
10
  };
@@ -3,5 +3,8 @@ export declare const planFrameRanges: ({ framesPerLambda, frameRange, everyNthFr
3
3
  frameRange: [number, number];
4
4
  everyNthFrame: number;
5
5
  }) => {
6
- chunks: [number, number][];
6
+ chunks: [
7
+ number,
8
+ number
9
+ ][];
7
10
  };
@@ -1 +1 @@
1
- export declare const getCurrentRegionInFunction: () => "eu-central-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-north-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "sa-east-1" | "eu-south-1" | "af-south-1" | "ap-east-1" | "me-south-1";
1
+ export declare const getCurrentRegionInFunction: () => "eu-central-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-south-1" | "eu-north-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "af-south-1" | "ap-south-1" | "ap-east-1" | "ap-southeast-1" | "ap-southeast-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "me-south-1" | "sa-east-1";
@@ -4,16 +4,16 @@ declare const streamingPayloadSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
4
4
  type: z.ZodLiteral<"render-id-determined">;
5
5
  renderId: z.ZodString;
6
6
  }, "strip", z.ZodTypeAny, {
7
- renderId: string;
8
7
  type: "render-id-determined";
9
- }, {
10
8
  renderId: string;
9
+ }, {
11
10
  type: "render-id-determined";
11
+ renderId: string;
12
12
  }>]>;
13
13
  export type StreamingPayloads = z.infer<typeof streamingPayloadSchema>;
14
14
  export declare const isStreamingPayload: (str: string) => false | {
15
- renderId: string;
16
15
  type: "render-id-determined";
16
+ renderId: string;
17
17
  };
18
18
  export declare const sendProgressEvent: (responseStream: ResponseStream, payload: StreamingPayloads) => void;
19
19
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "4.0.141",
3
+ "version": "4.0.142",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -26,10 +26,10 @@
26
26
  "aws-policies": "^1.0.1",
27
27
  "mime-types": "2.1.34",
28
28
  "zod": "3.22.3",
29
- "@remotion/bundler": "4.0.141",
30
- "remotion": "4.0.141",
31
- "@remotion/renderer": "4.0.141",
32
- "@remotion/cli": "4.0.141"
29
+ "@remotion/bundler": "4.0.142",
30
+ "@remotion/cli": "4.0.142",
31
+ "@remotion/renderer": "4.0.142",
32
+ "remotion": "4.0.142"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@jonny/eslint-config": "3.0.281",
@@ -45,11 +45,11 @@
45
45
  "ts-node": "10.9.2",
46
46
  "vitest": "0.31.1",
47
47
  "zip-lib": "^0.7.2",
48
- "@remotion/compositor-linux-arm64-gnu": "4.0.141",
49
- "@remotion/bundler": "4.0.141"
48
+ "@remotion/bundler": "4.0.142",
49
+ "@remotion/compositor-linux-arm64-gnu": "4.0.142"
50
50
  },
51
51
  "peerDependencies": {
52
- "@remotion/bundler": "4.0.141"
52
+ "@remotion/bundler": "4.0.142"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"
Binary file