-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypes.d.ts
More file actions
195 lines (184 loc) · 4.08 KB
/
types.d.ts
File metadata and controls
195 lines (184 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
export type HomeContext = {
next?: string
}
export type ChannelContext = {
next?: string
id: string
type: Channel["type"]
}
export type SearchContext = {
page: number
q: string
}
export type SearchChannelContext = {
next?: string
q: string
}
export type ContentRecommendationsContext = {
next?: string
videoId: string
}
type AssetType = {
original: string
webp: string
}
type Category = {
id: string
type: 'category'
slug: string
title: string
assets: {
avatar: string
'avatar-big-dark': string
'avatar-big-light': string
}
images: {
thumbnail?: string
avatar: {
formats: string[]
width: number
height: number
src: string
}
'avatar-big-dark': {
formats: string[]
width: number
height: number
src: string
}
'avatar-big-light': {
formats: string[]
width: number
height: number
src: string
}
}
}
type Channel = {
id: string
type: 'video_channel' | "podcast_channel"
slug: string
slug_aliases: string[]
title: string
published_at: string
description: string
assets: {
avatar: {
16: AssetType
32: AssetType
64: AssetType
128: AssetType
256: AssetType
512: AssetType
}
banner: {
240: AssetType
360: AssetType
480: AssetType
720: AssetType
960: AssetType
1440: AssetType
1920: AssetType
2560: AssetType
}
featured: {
240: AssetType
360: AssetType
480: AssetType
720: AssetType
960: AssetType
1440: AssetType
1920: AssetType
2560: AssetType
}
}
images: {
avatar: {
formats: string[]
width: number
height: number
src: string
}
banner: {
formats: string[]
width: number
height: number
src: string
}
featured: {
formats: string[]
width: number
height: number
src: string
}
}
genre_category_title: string
genre_category_slug: string
genre_category_id: string
categories: Category[]
website?: string
patreon?: string
twitter?: string
instagram?: string
facebook?: string
merch?: string
merch_collection: string
share_url: string
engagement?: any
playlists: {
id: string
type: 'video_playlist'
slug: string
title: string
}[]
zype_id?: string
exclusivity?: string
}
type Content = {
id: string
type: "video_episode" | "lesson" | "podcast_episode"
slug: string
title: string
description: string
short_description: string
duration: number
duration_to_complete: number
published_at: string
channel_id: string
channel_slug: string
channel_slugs: string[]
channel_title: string
category_slugs: string[]
images: {
channel_avatar: {
formats: string[]
width: number
height: number
src: string
}
thumbnail: {
formats: string[]
width: number
height: number
src: string
}
}
engagement?: any
attributes: string[]
share_url: string
primary_channel?: string
zype_id?: string
}
type ResponseWrapper<T> = {
next: string | null
previous: string | null
results: T[]
}
export type HomeResponse = ResponseWrapper<Content>
export type SearchResponse = ResponseWrapper<Content>
export type ChannelContentResponse = ResponseWrapper<Content>
export type SearchChannelResponse = ResponseWrapper<Channel>
export type SubscriptionResponse = ResponseWrapper<Channel>
export type ContentDetail = Content & {
primary_channel: Channel
}