@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 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").WarmModeEnum;
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
  };