@quesmed/types-rn 2.6.207 → 2.6.208

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,10 @@ 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
+ };
12
16
  export interface IVideo {
13
17
  id: Id;
14
18
  createdAt: number | Date;
@@ -18,6 +22,8 @@ export interface IVideo {
18
22
  endTime: number | Date;
19
23
  title: string;
20
24
  museId: string;
25
+ assetId: string;
26
+ playbackId: string;
21
27
  thumbnail: string;
22
28
  views: number;
23
29
  live: boolean;
@@ -34,6 +40,7 @@ export interface IVideo {
34
40
  viewsToday?: number | null;
35
41
  status?: EUserLearningStatus | null;
36
42
  userViewed?: boolean;
43
+ tokens: IVideoTokens;
37
44
  }
38
45
  export interface IVideoOsceStation {
39
46
  id: Id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.207",
3
+ "version": "2.6.208",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -16,6 +16,12 @@ exports.VIDEO = (0, client_1.gql) `
16
16
  views
17
17
  userViewed
18
18
  thumbnail
19
+ playbackId
20
+ assetId
21
+ tokens {
22
+ playback
23
+ thumbnail
24
+ }
19
25
  concepts {
20
26
  id
21
27
  name
@@ -61,6 +61,12 @@ exports.SAMPLE_VIDEO = (0, client_1.gql) `
61
61
  views
62
62
  userViewed
63
63
  thumbnail
64
+ playbackId
65
+ assetId
66
+ tokens {
67
+ playback
68
+ thumbnail
69
+ }
64
70
  concepts {
65
71
  id
66
72
  name