@remotion/lambda-client 4.0.290 → 4.0.292

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,6 +1,6 @@
1
1
 
2
2
  
3
- > @remotion/lambda-client@4.0.290 make /Users/jonathanburger/remotion/packages/lambda-client
3
+ > @remotion/lambda-client@4.0.292 make /Users/jonathanburger/remotion/packages/lambda-client
4
4
  > tsc -d && bun --env-file=../.env.bundle bundle.ts
5
5
 
6
- [108.84ms] Generated.
6
+ [90.59ms] Generated.
@@ -16309,7 +16309,7 @@ var DELAY_RENDER_RETRY_TOKEN = "- Rendering the frame will be retried.";
16309
16309
  var DELAY_RENDER_CLEAR_TOKEN = "handle was cleared after";
16310
16310
  var DATE_TOKEN = "remotion-date:";
16311
16311
  var FILE_TOKEN = "remotion-file:";
16312
- var serializeJSONWithDate = ({
16312
+ var serializeJSONWithSpecialTypes = ({
16313
16313
  data,
16314
16314
  indent,
16315
16315
  staticBase
@@ -16344,7 +16344,7 @@ var serializeJSONWithDate = ({
16344
16344
  throw new Error("Could not serialize the passed input props to JSON: " + err.message);
16345
16345
  }
16346
16346
  };
16347
- var deserializeJSONWithCustomFields = (data) => {
16347
+ var deserializeJSONWithSpecialTypes = (data) => {
16348
16348
  return JSON.parse(data, (_, value) => {
16349
16349
  if (typeof value === "string" && value.startsWith(DATE_TOKEN)) {
16350
16350
  return new Date(value.replace(DATE_TOKEN, ""));
@@ -16765,10 +16765,10 @@ var NoReactInternals = {
16765
16765
  validateDurationInFrames,
16766
16766
  validateDefaultAndInputProps,
16767
16767
  validateFrame,
16768
- serializeJSONWithDate,
16768
+ serializeJSONWithSpecialTypes,
16769
16769
  bundleName: "bundle.js",
16770
16770
  bundleMapName: "bundle.js.map",
16771
- deserializeJSONWithCustomFields,
16771
+ deserializeJSONWithSpecialTypes,
16772
16772
  DELAY_RENDER_CALLSTACK_TOKEN,
16773
16773
  DELAY_RENDER_RETRY_TOKEN,
16774
16774
  DELAY_RENDER_CLEAR_TOKEN,
@@ -16874,7 +16874,7 @@ var validateFramesPerFunction = ({
16874
16874
  throw new TypeError(`The framesPerLambda needs to be at least ${effectiveMinimum}, but is ${framesPerFunction}`);
16875
16875
  }
16876
16876
  };
16877
- var VERSION = "4.0.290";
16877
+ var VERSION = "4.0.292";
16878
16878
  var isColorSupported = () => {
16879
16879
  const env = process.env || {};
16880
16880
  const isForceDisabled = "NO_COLOR" in env;
@@ -17333,7 +17333,7 @@ var makeKey = (type, hash) => {
17333
17333
  };
17334
17334
  var serializeOrThrow = (inputProps, propsType) => {
17335
17335
  try {
17336
- const payload = NoReactInternals.serializeJSONWithDate({
17336
+ const payload = NoReactInternals.serializeJSONWithSpecialTypes({
17337
17337
  indent: undefined,
17338
17338
  staticBase: null,
17339
17339
  data: inputProps
@@ -18560,7 +18560,7 @@ var messageTypeIdToMessageType = (messageTypeId) => {
18560
18560
  };
18561
18561
  var {
18562
18562
  ENABLE_V5_BREAKING_CHANGES: ENABLE_V5_BREAKING_CHANGES2,
18563
- serializeJSONWithDate: serializeJSONWithDate2,
18563
+ serializeJSONWithSpecialTypes: serializeJSONWithSpecialTypes2,
18564
18564
  validateFps: validateFps2,
18565
18565
  validateDimension: validateDimension2,
18566
18566
  validateDurationInFrames: validateDurationInFrames2
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda-client"
4
4
  },
5
5
  "name": "@remotion/lambda-client",
6
- "version": "4.0.290",
6
+ "version": "4.0.292",
7
7
  "main": "dist/index.js",
8
8
  "sideEffects": false,
9
9
  "author": "Jonny Burger <jonny@remotion.dev>",
@@ -26,8 +26,8 @@
26
26
  "eslint": "9.19.0",
27
27
  "next": "15.2.4",
28
28
  "@types/mime-types": "2.1.1",
29
- "@remotion/serverless-client": "4.0.290",
30
- "@remotion/eslint-config-internal": "4.0.290"
29
+ "@remotion/serverless-client": "4.0.292",
30
+ "@remotion/eslint-config-internal": "4.0.292"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"