@quesmed/types-rn 2.6.207 → 2.6.209
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/models/Video.d.ts
CHANGED
|
@@ -9,6 +9,12 @@ export declare enum EVideoFilter {
|
|
|
9
9
|
PERSONAL = 2,
|
|
10
10
|
LIVE = 3
|
|
11
11
|
}
|
|
12
|
+
export type IVideoTokens = {
|
|
13
|
+
playback: string;
|
|
14
|
+
thumbnail: string;
|
|
15
|
+
storyboard: string;
|
|
16
|
+
gif: string;
|
|
17
|
+
};
|
|
12
18
|
export interface IVideo {
|
|
13
19
|
id: Id;
|
|
14
20
|
createdAt: number | Date;
|
|
@@ -18,6 +24,8 @@ export interface IVideo {
|
|
|
18
24
|
endTime: number | Date;
|
|
19
25
|
title: string;
|
|
20
26
|
museId: string;
|
|
27
|
+
assetId: string;
|
|
28
|
+
playbackId: string;
|
|
21
29
|
thumbnail: string;
|
|
22
30
|
views: number;
|
|
23
31
|
live: boolean;
|
|
@@ -34,6 +42,7 @@ export interface IVideo {
|
|
|
34
42
|
viewsToday?: number | null;
|
|
35
43
|
status?: EUserLearningStatus | null;
|
|
36
44
|
userViewed?: boolean;
|
|
45
|
+
tokens: IVideoTokens;
|
|
37
46
|
}
|
|
38
47
|
export interface IVideoOsceStation {
|
|
39
48
|
id: Id;
|
package/package.json
CHANGED