@rendley/sdk 1.12.18 → 1.12.20
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 +6 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/libs/ffmpeg/classes.d.ts +2 -0
- package/dist/libs/ffmpeg/const.d.ts +1 -0
- package/dist/libs/ffmpeg/types.d.ts +5 -0
- package/dist/modules/clip/Clip.d.ts +32 -27
- package/dist/modules/clip/ClipStyle.d.ts +3 -0
- package/dist/modules/clip/clips/video/VideoClip.d.ts +2 -1
- package/dist/modules/settings/Settings.d.ts +9 -0
- package/dist/types/hash.types.d.ts +4 -0
- package/dist/utils/animation/animation.d.ts +7 -6
- package/dist/utils/browser/isLocalNetworkHost.d.ts +1 -0
- package/package.json +1 -1
package/dist/Engine.d.ts
CHANGED
|
@@ -785,6 +785,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
785
785
|
subtitlesScaleOnResize: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
786
786
|
subtitlesAutoWrapOnResize: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
787
787
|
viewAutoLayoutOnResize: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import(".").AutoLayoutMode>>>;
|
|
788
|
+
mediaHashAlgorithm: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("./types/hash.types").HashAlgorithmEnum>>>;
|
|
788
789
|
}, "strip", z.ZodTypeAny, {
|
|
789
790
|
m3u8MaxResolution: [number, number];
|
|
790
791
|
clipAudioStoreSamples: boolean;
|
|
@@ -826,6 +827,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
826
827
|
subtitlesScaleOnResize: boolean;
|
|
827
828
|
subtitlesAutoWrapOnResize: boolean;
|
|
828
829
|
viewAutoLayoutOnResize: import(".").AutoLayoutMode;
|
|
830
|
+
mediaHashAlgorithm: import("./types/hash.types").HashAlgorithmEnum;
|
|
829
831
|
}, {
|
|
830
832
|
m3u8MaxResolution?: [number, number] | undefined;
|
|
831
833
|
clipAudioStoreSamples?: boolean | undefined;
|
|
@@ -867,6 +869,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
867
869
|
subtitlesScaleOnResize?: boolean | undefined;
|
|
868
870
|
subtitlesAutoWrapOnResize?: boolean | undefined;
|
|
869
871
|
viewAutoLayoutOnResize?: import(".").AutoLayoutMode | undefined;
|
|
872
|
+
mediaHashAlgorithm?: import("./types/hash.types").HashAlgorithmEnum | undefined;
|
|
870
873
|
}>>;
|
|
871
874
|
}, "strip", z.ZodTypeAny, {
|
|
872
875
|
display: {
|
|
@@ -1049,6 +1052,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1049
1052
|
subtitlesScaleOnResize: boolean;
|
|
1050
1053
|
subtitlesAutoWrapOnResize: boolean;
|
|
1051
1054
|
viewAutoLayoutOnResize: import(".").AutoLayoutMode;
|
|
1055
|
+
mediaHashAlgorithm: import("./types/hash.types").HashAlgorithmEnum;
|
|
1052
1056
|
} | undefined;
|
|
1053
1057
|
}, {
|
|
1054
1058
|
display: {
|
|
@@ -1231,6 +1235,7 @@ export declare const EngineSchema: z.ZodObject<{
|
|
|
1231
1235
|
subtitlesScaleOnResize?: boolean | undefined;
|
|
1232
1236
|
subtitlesAutoWrapOnResize?: boolean | undefined;
|
|
1233
1237
|
viewAutoLayoutOnResize?: import(".").AutoLayoutMode | undefined;
|
|
1238
|
+
mediaHashAlgorithm?: import("./types/hash.types").HashAlgorithmEnum | undefined;
|
|
1234
1239
|
} | undefined;
|
|
1235
1240
|
}>;
|
|
1236
1241
|
type CustomClipConstructor<T extends CustomClip = CustomClip> = {
|
|
@@ -1493,6 +1498,7 @@ export declare class Engine {
|
|
|
1493
1498
|
subtitlesScaleOnResize: boolean;
|
|
1494
1499
|
subtitlesAutoWrapOnResize: boolean;
|
|
1495
1500
|
viewAutoLayoutOnResize: import(".").AutoLayoutMode;
|
|
1501
|
+
mediaHashAlgorithm: import("./types/hash.types").HashAlgorithmEnum;
|
|
1496
1502
|
} | undefined;
|
|
1497
1503
|
};
|
|
1498
1504
|
private static _deserializationPromiseAction;
|