@rendley/sdk 1.0.4 → 1.0.6
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 +8 -7
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/clip/Clip.d.ts +7 -6
- package/dist/modules/clip/ClipStyle.d.ts +8 -8
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +4 -0
- package/dist/modules/clip/clips/index.d.ts +1 -0
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -1
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +1 -1
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +1 -1
- package/dist/modules/clip/clips/subtitles/SubtitlesClip.d.ts +9 -0
- package/dist/modules/clip/clips/text/TextClip.d.ts +1 -1
- package/dist/modules/clip/clips/text/TextStyle.d.ts +1 -1
- package/dist/modules/clip/clips/video/VideoClip.d.ts +3 -0
- package/dist/modules/event-emitter/types/EventEmitter.types.d.ts +6 -0
- package/dist/modules/layer/Layer.d.ts +6 -6
- package/dist/modules/library/Library.d.ts +23 -17
- package/dist/modules/library/MediaData.d.ts +5 -4
- package/dist/modules/library/Subtitles.d.ts +15 -1
- package/dist/modules/timeline/Timeline.d.ts +11 -9
- package/dist/types/clip.types.d.ts +2 -1
- package/package.json +2 -2
package/dist/Engine.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export declare class Engine {
|
|
|
73
73
|
startTime: number;
|
|
74
74
|
leftTrim: number;
|
|
75
75
|
rightTrim: number;
|
|
76
|
-
warpMode: import("./types").
|
|
76
|
+
warpMode: import("./types").WarpModeEnum;
|
|
77
77
|
mediaDataId?: string | undefined;
|
|
78
78
|
subtitlesId?: string | undefined;
|
|
79
79
|
style?: unknown;
|
|
@@ -92,14 +92,9 @@ export declare class Engine {
|
|
|
92
92
|
}[];
|
|
93
93
|
};
|
|
94
94
|
library: {
|
|
95
|
-
media: {
|
|
96
|
-
type: string;
|
|
97
|
-
id: string;
|
|
98
|
-
filename: string;
|
|
99
|
-
permanentUrl: string;
|
|
100
|
-
}[];
|
|
101
95
|
subtitles: {
|
|
102
96
|
id: string;
|
|
97
|
+
duration: number;
|
|
103
98
|
language: string;
|
|
104
99
|
textBlocks: {
|
|
105
100
|
text: string;
|
|
@@ -107,6 +102,12 @@ export declare class Engine {
|
|
|
107
102
|
duration: number;
|
|
108
103
|
}[];
|
|
109
104
|
}[];
|
|
105
|
+
media: {
|
|
106
|
+
type: string;
|
|
107
|
+
id: string;
|
|
108
|
+
filename: string;
|
|
109
|
+
permanentUrl?: string | undefined;
|
|
110
|
+
}[];
|
|
110
111
|
};
|
|
111
112
|
version?: string | undefined;
|
|
112
113
|
};
|