@remotion/renderer 4.0.409 → 4.0.411
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/client.d.ts +20 -5
- package/dist/esm/client.mjs +269 -221
- package/dist/esm/index.mjs +22 -14
- package/dist/index.d.ts +4 -3
- package/dist/options/index.d.ts +16 -1
- package/dist/options/index.js +2 -0
- package/dist/options/is-production.d.ts +15 -0
- package/dist/options/is-production.js +38 -0
- package/dist/options/license-key.d.ts +1 -1
- package/dist/options/license-key.js +1 -1
- package/dist/options/options-map.d.ts +4 -4
- package/dist/render-media.d.ts +5 -2
- package/dist/render-media.js +6 -3
- package/dist/render-still.d.ts +9 -2
- package/dist/render-still.js +10 -8
- package/package.json +13 -13
package/dist/client.d.ts
CHANGED
|
@@ -901,7 +901,7 @@ export declare const BrowserSafeApis: {
|
|
|
901
901
|
};
|
|
902
902
|
licenseKeyOption: {
|
|
903
903
|
name: string;
|
|
904
|
-
cliFlag: "
|
|
904
|
+
cliFlag: "license-key";
|
|
905
905
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
906
906
|
ssrName: "licenseKey";
|
|
907
907
|
docLink: string;
|
|
@@ -1010,6 +1010,21 @@ export declare const BrowserSafeApis: {
|
|
|
1010
1010
|
setConfig: (value: string | null) => void;
|
|
1011
1011
|
type: string | null;
|
|
1012
1012
|
};
|
|
1013
|
+
isProductionOption: {
|
|
1014
|
+
name: string;
|
|
1015
|
+
cliFlag: "is-production";
|
|
1016
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1017
|
+
ssrName: "isProduction";
|
|
1018
|
+
docLink: string;
|
|
1019
|
+
getValue: ({ commandLine }: {
|
|
1020
|
+
commandLine: Record<string, unknown>;
|
|
1021
|
+
}) => {
|
|
1022
|
+
source: string;
|
|
1023
|
+
value: boolean | null;
|
|
1024
|
+
};
|
|
1025
|
+
setConfig: (value: boolean | null) => void;
|
|
1026
|
+
type: boolean | null;
|
|
1027
|
+
};
|
|
1013
1028
|
askAIOption: {
|
|
1014
1029
|
name: string;
|
|
1015
1030
|
cliFlag: "disable-ask-ai";
|
|
@@ -1455,7 +1470,7 @@ export declare const BrowserSafeApis: {
|
|
|
1455
1470
|
};
|
|
1456
1471
|
readonly licenseKey: {
|
|
1457
1472
|
name: string;
|
|
1458
|
-
cliFlag: "
|
|
1473
|
+
cliFlag: "license-key";
|
|
1459
1474
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1460
1475
|
ssrName: "licenseKey";
|
|
1461
1476
|
docLink: string;
|
|
@@ -1661,7 +1676,7 @@ export declare const BrowserSafeApis: {
|
|
|
1661
1676
|
};
|
|
1662
1677
|
readonly licenseKey: {
|
|
1663
1678
|
name: string;
|
|
1664
|
-
cliFlag: "
|
|
1679
|
+
cliFlag: "license-key";
|
|
1665
1680
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1666
1681
|
ssrName: "licenseKey";
|
|
1667
1682
|
docLink: string;
|
|
@@ -2374,7 +2389,7 @@ export declare const BrowserSafeApis: {
|
|
|
2374
2389
|
};
|
|
2375
2390
|
readonly licenseKey: {
|
|
2376
2391
|
name: string;
|
|
2377
|
-
cliFlag: "
|
|
2392
|
+
cliFlag: "license-key";
|
|
2378
2393
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
2379
2394
|
ssrName: "licenseKey";
|
|
2380
2395
|
docLink: string;
|
|
@@ -2538,7 +2553,7 @@ export declare const BrowserSafeApis: {
|
|
|
2538
2553
|
};
|
|
2539
2554
|
readonly licenseKey: {
|
|
2540
2555
|
name: string;
|
|
2541
|
-
cliFlag: "
|
|
2556
|
+
cliFlag: "license-key";
|
|
2542
2557
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
2543
2558
|
ssrName: "licenseKey";
|
|
2544
2559
|
docLink: string;
|