@rendley/sdk 1.14.0 → 1.14.2
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/Engine.d.ts +55 -55
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +4 -4
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -1
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +4 -4
- package/dist/modules/clip/clips/text/TextClip.d.ts +1 -1
- package/dist/modules/clip/clips/text/TextStyle.d.ts +4 -4
- package/dist/modules/clip/clips/video/VideoClip.d.ts +2 -0
- package/dist/modules/library/Library.d.ts +33 -33
- package/dist/modules/library/MediaData.d.ts +9 -1
- package/dist/utils/browser/checkVideoCompatibilityOrTranscode.d.ts +1 -1
- package/dist/utils/transcode/transcodeMedia.d.ts +2 -2
- package/dist/utils/transcode/transcodeOutputPath.d.ts +1 -0
- package/package.json +1 -1
package/dist/Engine.d.ts
CHANGED
|
@@ -517,6 +517,17 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
517
517
|
wordTimings?: number[] | undefined;
|
|
518
518
|
}[];
|
|
519
519
|
}[];
|
|
520
|
+
media: {
|
|
521
|
+
type: string;
|
|
522
|
+
id: string;
|
|
523
|
+
filename: string;
|
|
524
|
+
name?: string | undefined;
|
|
525
|
+
permanentUrl?: string | undefined;
|
|
526
|
+
hash?: string | undefined;
|
|
527
|
+
mimeType?: string | undefined;
|
|
528
|
+
customData?: [string, unknown][] | undefined;
|
|
529
|
+
placeholderClipIds?: string[] | undefined;
|
|
530
|
+
}[];
|
|
520
531
|
transitions: {
|
|
521
532
|
name: string;
|
|
522
533
|
properties: {
|
|
@@ -575,17 +586,6 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
575
586
|
blendMode?: import("./types").BlendModeEnum | undefined;
|
|
576
587
|
padding?: number | undefined;
|
|
577
588
|
}[];
|
|
578
|
-
media: {
|
|
579
|
-
type: string;
|
|
580
|
-
id: string;
|
|
581
|
-
filename: string;
|
|
582
|
-
name?: string | undefined;
|
|
583
|
-
permanentUrl?: string | undefined;
|
|
584
|
-
hash?: string | undefined;
|
|
585
|
-
mimeType?: string | undefined;
|
|
586
|
-
customData?: [string, unknown][] | undefined;
|
|
587
|
-
placeholderClipIds?: string[] | undefined;
|
|
588
|
-
}[];
|
|
589
589
|
customData?: [string, unknown][] | undefined;
|
|
590
590
|
}, {
|
|
591
591
|
subtitles: {
|
|
@@ -599,6 +599,17 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
599
599
|
wordTimings?: number[] | undefined;
|
|
600
600
|
}[];
|
|
601
601
|
}[];
|
|
602
|
+
media: {
|
|
603
|
+
type: string;
|
|
604
|
+
id: string;
|
|
605
|
+
filename: string;
|
|
606
|
+
name?: string | undefined;
|
|
607
|
+
permanentUrl?: string | undefined;
|
|
608
|
+
hash?: string | undefined;
|
|
609
|
+
mimeType?: string | undefined;
|
|
610
|
+
customData?: [string, unknown][] | undefined;
|
|
611
|
+
placeholderClipIds?: string[] | undefined;
|
|
612
|
+
}[];
|
|
602
613
|
transitions: {
|
|
603
614
|
name: string;
|
|
604
615
|
properties: {
|
|
@@ -657,17 +668,6 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
657
668
|
blendMode?: import("./types").BlendModeEnum | undefined;
|
|
658
669
|
padding?: number | undefined;
|
|
659
670
|
}[];
|
|
660
|
-
media: {
|
|
661
|
-
type: string;
|
|
662
|
-
id: string;
|
|
663
|
-
filename: string;
|
|
664
|
-
name?: string | undefined;
|
|
665
|
-
permanentUrl?: string | undefined;
|
|
666
|
-
hash?: string | undefined;
|
|
667
|
-
mimeType?: string | undefined;
|
|
668
|
-
customData?: [string, unknown][] | undefined;
|
|
669
|
-
placeholderClipIds?: string[] | undefined;
|
|
670
|
-
}[];
|
|
671
671
|
customData?: [string, unknown][] | undefined;
|
|
672
672
|
}>;
|
|
673
673
|
subtitlesManager: z.ZodOptional<z.ZodObject<{
|
|
@@ -1011,6 +1011,17 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1011
1011
|
wordTimings?: number[] | undefined;
|
|
1012
1012
|
}[];
|
|
1013
1013
|
}[];
|
|
1014
|
+
media: {
|
|
1015
|
+
type: string;
|
|
1016
|
+
id: string;
|
|
1017
|
+
filename: string;
|
|
1018
|
+
name?: string | undefined;
|
|
1019
|
+
permanentUrl?: string | undefined;
|
|
1020
|
+
hash?: string | undefined;
|
|
1021
|
+
mimeType?: string | undefined;
|
|
1022
|
+
customData?: [string, unknown][] | undefined;
|
|
1023
|
+
placeholderClipIds?: string[] | undefined;
|
|
1024
|
+
}[];
|
|
1014
1025
|
transitions: {
|
|
1015
1026
|
name: string;
|
|
1016
1027
|
properties: {
|
|
@@ -1069,17 +1080,6 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1069
1080
|
blendMode?: import("./types").BlendModeEnum | undefined;
|
|
1070
1081
|
padding?: number | undefined;
|
|
1071
1082
|
}[];
|
|
1072
|
-
media: {
|
|
1073
|
-
type: string;
|
|
1074
|
-
id: string;
|
|
1075
|
-
filename: string;
|
|
1076
|
-
name?: string | undefined;
|
|
1077
|
-
permanentUrl?: string | undefined;
|
|
1078
|
-
hash?: string | undefined;
|
|
1079
|
-
mimeType?: string | undefined;
|
|
1080
|
-
customData?: [string, unknown][] | undefined;
|
|
1081
|
-
placeholderClipIds?: string[] | undefined;
|
|
1082
|
-
}[];
|
|
1083
1083
|
customData?: [string, unknown][] | undefined;
|
|
1084
1084
|
};
|
|
1085
1085
|
version?: string | undefined;
|
|
@@ -1212,6 +1212,17 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1212
1212
|
wordTimings?: number[] | undefined;
|
|
1213
1213
|
}[];
|
|
1214
1214
|
}[];
|
|
1215
|
+
media: {
|
|
1216
|
+
type: string;
|
|
1217
|
+
id: string;
|
|
1218
|
+
filename: string;
|
|
1219
|
+
name?: string | undefined;
|
|
1220
|
+
permanentUrl?: string | undefined;
|
|
1221
|
+
hash?: string | undefined;
|
|
1222
|
+
mimeType?: string | undefined;
|
|
1223
|
+
customData?: [string, unknown][] | undefined;
|
|
1224
|
+
placeholderClipIds?: string[] | undefined;
|
|
1225
|
+
}[];
|
|
1215
1226
|
transitions: {
|
|
1216
1227
|
name: string;
|
|
1217
1228
|
properties: {
|
|
@@ -1270,17 +1281,6 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1270
1281
|
blendMode?: import("./types").BlendModeEnum | undefined;
|
|
1271
1282
|
padding?: number | undefined;
|
|
1272
1283
|
}[];
|
|
1273
|
-
media: {
|
|
1274
|
-
type: string;
|
|
1275
|
-
id: string;
|
|
1276
|
-
filename: string;
|
|
1277
|
-
name?: string | undefined;
|
|
1278
|
-
permanentUrl?: string | undefined;
|
|
1279
|
-
hash?: string | undefined;
|
|
1280
|
-
mimeType?: string | undefined;
|
|
1281
|
-
customData?: [string, unknown][] | undefined;
|
|
1282
|
-
placeholderClipIds?: string[] | undefined;
|
|
1283
|
-
}[];
|
|
1284
1284
|
customData?: [string, unknown][] | undefined;
|
|
1285
1285
|
};
|
|
1286
1286
|
version?: string | undefined;
|
|
@@ -1500,6 +1500,17 @@ export declare class Engine {
|
|
|
1500
1500
|
wordTimings?: number[] | undefined;
|
|
1501
1501
|
}[];
|
|
1502
1502
|
}[];
|
|
1503
|
+
media: {
|
|
1504
|
+
type: string;
|
|
1505
|
+
id: string;
|
|
1506
|
+
filename: string;
|
|
1507
|
+
name?: string | undefined;
|
|
1508
|
+
permanentUrl?: string | undefined;
|
|
1509
|
+
hash?: string | undefined;
|
|
1510
|
+
mimeType?: string | undefined;
|
|
1511
|
+
customData?: [string, unknown][] | undefined;
|
|
1512
|
+
placeholderClipIds?: string[] | undefined;
|
|
1513
|
+
}[];
|
|
1503
1514
|
transitions: {
|
|
1504
1515
|
name: string;
|
|
1505
1516
|
properties: {
|
|
@@ -1558,17 +1569,6 @@ export declare class Engine {
|
|
|
1558
1569
|
blendMode?: import("./types").BlendModeEnum | undefined;
|
|
1559
1570
|
padding?: number | undefined;
|
|
1560
1571
|
}[];
|
|
1561
|
-
media: {
|
|
1562
|
-
type: string;
|
|
1563
|
-
id: string;
|
|
1564
|
-
filename: string;
|
|
1565
|
-
name?: string | undefined;
|
|
1566
|
-
permanentUrl?: string | undefined;
|
|
1567
|
-
hash?: string | undefined;
|
|
1568
|
-
mimeType?: string | undefined;
|
|
1569
|
-
customData?: [string, unknown][] | undefined;
|
|
1570
|
-
placeholderClipIds?: string[] | undefined;
|
|
1571
|
-
}[];
|
|
1572
1572
|
customData?: [string, unknown][] | undefined;
|
|
1573
1573
|
};
|
|
1574
1574
|
version?: string | undefined;
|