@remotion/renderer 4.0.314 → 4.0.315
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/dist/browser/BrowserFetcher.js +3 -3
- package/dist/client.d.ts +30 -0
- package/dist/esm/client.mjs +325 -287
- package/dist/esm/index.mjs +3 -3
- package/dist/options/disallow-parallel-encoding.d.ts +15 -0
- package/dist/options/disallow-parallel-encoding.js +35 -0
- package/dist/options/index.d.ts +15 -0
- package/dist/options/index.js +2 -0
- package/dist/options/options-map.d.ts +15 -0
- package/dist/options/options-map.js +2 -0
- package/dist/set-props-and-env.js +1 -1
- package/package.json +12 -12
|
@@ -60,10 +60,10 @@ const node_util_1 = require("node:util");
|
|
|
60
60
|
const download_file_1 = require("../assets/download-file");
|
|
61
61
|
const make_file_executable_1 = require("../compositor/make-file-executable");
|
|
62
62
|
const get_download_destination_1 = require("./get-download-destination");
|
|
63
|
-
const TESTED_VERSION = '
|
|
64
|
-
// https://github.com/microsoft/playwright/tree/v1.
|
|
63
|
+
const TESTED_VERSION = '134.0.6998.35';
|
|
64
|
+
// https://github.com/microsoft/playwright/tree/v1.51.0
|
|
65
65
|
// packages/playwright-core/browsers.json
|
|
66
|
-
const PLAYWRIGHT_VERSION = '
|
|
66
|
+
const PLAYWRIGHT_VERSION = '1161'; // 134.0.6998.35
|
|
67
67
|
function getChromeDownloadUrl({ platform, version, chromeMode, }) {
|
|
68
68
|
if (platform === 'linux-arm64') {
|
|
69
69
|
return `https://playwright.azureedge.net/builds/chromium/${version !== null && version !== void 0 ? version : PLAYWRIGHT_VERSION}/chromium-headless-shell-linux-arm64.zip`;
|
package/dist/client.d.ts
CHANGED
|
@@ -452,6 +452,21 @@ export declare const BrowserSafeApis: {
|
|
|
452
452
|
};
|
|
453
453
|
setConfig: (value: import(".").DeleteAfter | null) => void;
|
|
454
454
|
};
|
|
455
|
+
disallowParallelEncodingOption: {
|
|
456
|
+
name: string;
|
|
457
|
+
cliFlag: "disallow-parallel-encoding";
|
|
458
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
459
|
+
ssrName: string;
|
|
460
|
+
docLink: string;
|
|
461
|
+
type: boolean;
|
|
462
|
+
getValue: ({ commandLine }: {
|
|
463
|
+
commandLine: Record<string, unknown>;
|
|
464
|
+
}) => {
|
|
465
|
+
value: boolean;
|
|
466
|
+
source: string;
|
|
467
|
+
};
|
|
468
|
+
setConfig(value: boolean): void;
|
|
469
|
+
};
|
|
455
470
|
folderExpiryOption: {
|
|
456
471
|
name: string;
|
|
457
472
|
cliFlag: "enable-folder-expiry";
|
|
@@ -1092,6 +1107,21 @@ export declare const BrowserSafeApis: {
|
|
|
1092
1107
|
};
|
|
1093
1108
|
setConfig: (newCodec: import("./codec").CodecOrUndefined) => void;
|
|
1094
1109
|
};
|
|
1110
|
+
readonly disallowParallelEncoding: {
|
|
1111
|
+
name: string;
|
|
1112
|
+
cliFlag: "disallow-parallel-encoding";
|
|
1113
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1114
|
+
ssrName: string;
|
|
1115
|
+
docLink: string;
|
|
1116
|
+
type: boolean;
|
|
1117
|
+
getValue: ({ commandLine }: {
|
|
1118
|
+
commandLine: Record<string, unknown>;
|
|
1119
|
+
}) => {
|
|
1120
|
+
value: boolean;
|
|
1121
|
+
source: string;
|
|
1122
|
+
};
|
|
1123
|
+
setConfig(value: boolean): void;
|
|
1124
|
+
};
|
|
1095
1125
|
readonly jpegQuality: {
|
|
1096
1126
|
name: string;
|
|
1097
1127
|
cliFlag: "jpeg-quality";
|