@rendley/sdk 1.11.16 → 1.11.17

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.
Files changed (25) hide show
  1. package/dist/Engine.d.ts +11 -3
  2. package/dist/index.cjs +1 -1
  3. package/dist/index.js +1 -1
  4. package/dist/modules/clip/Clip.d.ts +9 -0
  5. package/dist/modules/clip/clips/audio/AudioClip.d.ts +1 -0
  6. package/dist/modules/clip/clips/custom/CustomClip.d.ts +1 -0
  7. package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +1 -0
  8. package/dist/modules/clip/clips/lottie/LottieClip.d.ts +1 -0
  9. package/dist/modules/clip/clips/shape/ShapeClip.d.ts +1 -0
  10. package/dist/modules/clip/clips/text/TextClip.d.ts +1 -0
  11. package/dist/modules/clip/clips/video/VideoClip.d.ts +52 -21
  12. package/dist/modules/event-emitter/types/EventEmitter.types.d.ts +8 -0
  13. package/dist/modules/ffmpeg/FFmpeg.d.ts +2 -0
  14. package/dist/modules/filmstrip-extractor/FilmstripExtractor.d.ts +30 -0
  15. package/dist/modules/filmstrip-extractor/FilmstripExtractor.types.d.ts +34 -0
  16. package/dist/modules/filmstrip-extractor/FilmstripExtractorWorker.d.ts +5 -0
  17. package/dist/modules/library/Library.d.ts +13 -1
  18. package/dist/modules/library/MediaData.d.ts +32 -3
  19. package/dist/modules/settings/Settings.d.ts +56 -0
  20. package/dist/modules/storage/StorageProviderBase.d.ts +1 -0
  21. package/dist/modules/subtitles/SubtitleManager.d.ts +4 -4
  22. package/package.json +1 -1
  23. /package/dist/modules/background-timer/{background-timer.d.ts → BackgroundTimer.d.ts} +0 -0
  24. /package/dist/modules/background-timer/{backround-timer.types.d.ts → BackgroundTimer.types.d.ts} +0 -0
  25. /package/dist/modules/background-timer/{background-timer-worker.d.ts → BackgroundTimerWorker.d.ts} +0 -0
@@ -223,7 +223,7 @@ export declare const SubtitlesManagerSchema: z.ZodObject<{
223
223
  scale: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
224
224
  }, "strip", z.ZodTypeAny, {
225
225
  scale: number;
226
- textMode: "full" | "partial";
226
+ textMode: "partial" | "full";
227
227
  highlightAnimation: HighlightAnimationEnum;
228
228
  highlightAnimationSpeed: number;
229
229
  mainTextStyle: {
@@ -257,7 +257,7 @@ export declare const SubtitlesManagerSchema: z.ZodObject<{
257
257
  };
258
258
  position?: [number, number] | undefined;
259
259
  }, {
260
- textMode: "full" | "partial";
260
+ textMode: "partial" | "full";
261
261
  highlightAnimation: HighlightAnimationEnum;
262
262
  highlightAnimationSpeed: number;
263
263
  mainTextStyle: {
@@ -327,7 +327,7 @@ export declare class SubtitlesManager {
327
327
  getScale(): number;
328
328
  setTextMode(mode: TextModeType): void;
329
329
  setMainTextStyle(style: Partial<MainTextStyle>, reset?: boolean): void;
330
- getTextMode(): "full" | "partial";
330
+ getTextMode(): "partial" | "full";
331
331
  getMainTextStyle(): {
332
332
  color: string;
333
333
  strokeColor: string;
@@ -376,7 +376,7 @@ export declare class SubtitlesManager {
376
376
  destroy(): void;
377
377
  serialize(): {
378
378
  scale: number;
379
- textMode: "full" | "partial";
379
+ textMode: "partial" | "full";
380
380
  highlightAnimation: HighlightAnimationEnum;
381
381
  highlightAnimationSpeed: number;
382
382
  mainTextStyle: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rendley/sdk",
3
- "version": "1.11.16",
3
+ "version": "1.11.17",
4
4
  "license": "LICENSE",
5
5
  "author": "Onix Technologies",
6
6
  "homepage": "https://rendley.com",