@remotion/renderer 4.0.397 → 4.0.399
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 +78 -3
- package/dist/esm/client.mjs +275 -187
- package/dist/esm/index.mjs +12 -8
- package/dist/index.d.ts +15 -0
- package/dist/options/index.d.ts +30 -0
- package/dist/options/index.js +4 -0
- package/dist/options/license-key.d.ts +15 -0
- package/dist/options/license-key.js +29 -0
- package/dist/options/options-map.d.ts +48 -3
- package/dist/options/options-map.js +5 -1
- package/dist/options/private-license-key.d.ts +15 -0
- package/dist/options/private-license-key.js +35 -0
- package/dist/options/public-license-key.d.ts +15 -0
- package/dist/options/public-license-key.js +38 -0
- package/dist/render-media.d.ts +14 -4
- package/dist/render-media.js +8 -6
- package/dist/render-still.js +4 -2
- package/package.json +13 -13
package/dist/client.d.ts
CHANGED
|
@@ -899,6 +899,21 @@ export declare const BrowserSafeApis: {
|
|
|
899
899
|
};
|
|
900
900
|
setConfig: (value: string | null) => void;
|
|
901
901
|
};
|
|
902
|
+
licenseKeyOption: {
|
|
903
|
+
name: string;
|
|
904
|
+
cliFlag: "licenseKey-key";
|
|
905
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
906
|
+
ssrName: "licenseKey";
|
|
907
|
+
docLink: string;
|
|
908
|
+
type: string | null;
|
|
909
|
+
getValue: ({ commandLine }: {
|
|
910
|
+
commandLine: Record<string, unknown>;
|
|
911
|
+
}) => {
|
|
912
|
+
source: string;
|
|
913
|
+
value: string | null;
|
|
914
|
+
};
|
|
915
|
+
setConfig: (value: string | null) => void;
|
|
916
|
+
};
|
|
902
917
|
audioLatencyHintOption: {
|
|
903
918
|
name: string;
|
|
904
919
|
cliFlag: "audio-latency-hint";
|
|
@@ -980,6 +995,21 @@ export declare const BrowserSafeApis: {
|
|
|
980
995
|
};
|
|
981
996
|
setConfig: (value: boolean) => void;
|
|
982
997
|
};
|
|
998
|
+
publicLicenseKeyOption: {
|
|
999
|
+
name: string;
|
|
1000
|
+
cliFlag: "public-license-key";
|
|
1001
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1002
|
+
ssrName: "publicLicenseKey";
|
|
1003
|
+
docLink: string;
|
|
1004
|
+
getValue: ({ commandLine }: {
|
|
1005
|
+
commandLine: Record<string, unknown>;
|
|
1006
|
+
}) => {
|
|
1007
|
+
source: string;
|
|
1008
|
+
value: string | null;
|
|
1009
|
+
};
|
|
1010
|
+
setConfig: (value: string | null) => void;
|
|
1011
|
+
type: string | null;
|
|
1012
|
+
};
|
|
983
1013
|
};
|
|
984
1014
|
validColorSpaces: readonly ["default", "bt709", "bt2020-ncl"];
|
|
985
1015
|
optionsMap: {
|
|
@@ -1378,11 +1408,11 @@ export declare const BrowserSafeApis: {
|
|
|
1378
1408
|
setConfig: (newChromeMode: import("./options/chrome-mode").ChromeMode) => void;
|
|
1379
1409
|
type: import("./options/chrome-mode").ChromeMode;
|
|
1380
1410
|
};
|
|
1381
|
-
readonly
|
|
1411
|
+
readonly licenseKey: {
|
|
1382
1412
|
name: string;
|
|
1383
|
-
cliFlag: "
|
|
1413
|
+
cliFlag: "licenseKey-key";
|
|
1384
1414
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1385
|
-
ssrName: "
|
|
1415
|
+
ssrName: "licenseKey";
|
|
1386
1416
|
docLink: string;
|
|
1387
1417
|
type: string | null;
|
|
1388
1418
|
getValue: ({ commandLine }: {
|
|
@@ -1584,6 +1614,21 @@ export declare const BrowserSafeApis: {
|
|
|
1584
1614
|
};
|
|
1585
1615
|
setConfig: (value: string | null) => void;
|
|
1586
1616
|
};
|
|
1617
|
+
readonly licenseKey: {
|
|
1618
|
+
name: string;
|
|
1619
|
+
cliFlag: "licenseKey-key";
|
|
1620
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1621
|
+
ssrName: "licenseKey";
|
|
1622
|
+
docLink: string;
|
|
1623
|
+
type: string | null;
|
|
1624
|
+
getValue: ({ commandLine }: {
|
|
1625
|
+
commandLine: Record<string, unknown>;
|
|
1626
|
+
}) => {
|
|
1627
|
+
source: string;
|
|
1628
|
+
value: string | null;
|
|
1629
|
+
};
|
|
1630
|
+
setConfig: (value: string | null) => void;
|
|
1631
|
+
};
|
|
1587
1632
|
};
|
|
1588
1633
|
readonly getCompositions: {
|
|
1589
1634
|
readonly mediaCacheSizeInBytes: {
|
|
@@ -2282,6 +2327,21 @@ export declare const BrowserSafeApis: {
|
|
|
2282
2327
|
};
|
|
2283
2328
|
setConfig: (value: string | null) => void;
|
|
2284
2329
|
};
|
|
2330
|
+
readonly licenseKey: {
|
|
2331
|
+
name: string;
|
|
2332
|
+
cliFlag: "licenseKey-key";
|
|
2333
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
2334
|
+
ssrName: "licenseKey";
|
|
2335
|
+
docLink: string;
|
|
2336
|
+
type: string | null;
|
|
2337
|
+
getValue: ({ commandLine }: {
|
|
2338
|
+
commandLine: Record<string, unknown>;
|
|
2339
|
+
}) => {
|
|
2340
|
+
source: string;
|
|
2341
|
+
value: string | null;
|
|
2342
|
+
};
|
|
2343
|
+
setConfig: (value: string | null) => void;
|
|
2344
|
+
};
|
|
2285
2345
|
};
|
|
2286
2346
|
readonly renderStillOnLambda: {
|
|
2287
2347
|
readonly mediaCacheSizeInBytes: {
|
|
@@ -2431,6 +2491,21 @@ export declare const BrowserSafeApis: {
|
|
|
2431
2491
|
};
|
|
2432
2492
|
setConfig: (value: string | null) => void;
|
|
2433
2493
|
};
|
|
2494
|
+
readonly licenseKey: {
|
|
2495
|
+
name: string;
|
|
2496
|
+
cliFlag: "licenseKey-key";
|
|
2497
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
2498
|
+
ssrName: "licenseKey";
|
|
2499
|
+
docLink: string;
|
|
2500
|
+
type: string | null;
|
|
2501
|
+
getValue: ({ commandLine }: {
|
|
2502
|
+
commandLine: Record<string, unknown>;
|
|
2503
|
+
}) => {
|
|
2504
|
+
source: string;
|
|
2505
|
+
value: string | null;
|
|
2506
|
+
};
|
|
2507
|
+
setConfig: (value: string | null) => void;
|
|
2508
|
+
};
|
|
2434
2509
|
};
|
|
2435
2510
|
readonly getCompositionsOnLambda: {
|
|
2436
2511
|
readonly mediaCacheSizeInBytes: {
|