-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.d.ts
873 lines (833 loc) · 20.8 KB
/
types.d.ts
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
type StreamUser = {
__typename: 'User'
displayName: string
id: string
login: string
profileImageURL: string
primaryColorHex: string
}
type Game = {
__typename: 'Game'
boxArtURL: string
displayName: string
id: string
name: string
}
type FreeformTag = {
__typename: 'FreeformTag'
id: string
name: string
}
type StreamNode = {
__typename: 'Stream'
broadcaster: StreamUser
freeformTags: FreeformTag[]
game: Game
id: string
previewImageURL: string
title: string
type: string
viewersCount: number
}
type StreamEdge = {
__typename: 'StreamEdge'
cursor: string
trackingID: string
node: StreamNode
}
type SearchSuggestionChannel = {
__typename: 'SearchSuggestionChannel'
id: string
isLive: boolean
isVerified: boolean
login: string
profileImageURL: string
user: {
id: string
stream: {
id: string
game: {
id: string
__typename: 'Game'
}
__typename: 'Stream'
}
__typename: 'User'
}
}
type SearchSuggestionNode = {
__typename: 'SearchSuggestion'
content: SearchSuggestionChannel
matchingCharacters: {
__typename: 'SearchSuggestionHighlight'
start: number
end: number
}
id: string
text: string
}
type SearchSuggestionEdge = {
__typename: 'SearchSuggestionEdge'
node: SearchSuggestionNode
}
type DataWrapper<Data> = {
data: Data
extensions: {
durationMilliseconds: number
operationName: string
requestID: string
}
}
export type HomepageResponse = DataWrapper<{
streams: {
edges: StreamEdge[]
pageInfo: {
__typename: 'PageInfo'
hasNextPage: boolean
}
}
}>
export type SearchSuggestionsResponse = DataWrapper<{
searchSuggestions: {
__typename: 'SearchSuggestionsConnection'
tracking: {
__typename: 'SearchSuggestionTracking'
modelTrackingID: string
responseID: string
}
edges: SearchSuggestionEdge[]
}
}>
type ChannelSearchResponse = {
broadcastSettings: {
__typename: 'BroadcastSettings'
id: string
title: string
}
displayName: string
followers: {
totalCount: number
__typename: 'FollowerConnection'
}
id: string
lastBroadcast: {
__typename: 'Broadcast'
id: string
startedAt: string
}
login: string
profileImageURL: string
description: string
channel: {
__typename: 'Channel'
id: string
schedule: {
__typename: 'Schedule'
nextSegment: {
__typename: 'ScheduleSegment'
id: string
startTime: string
title: string
}
id: string
}
}
self: any
latestVideo: {
__typename: 'VideoConnection'
edges: {
__typename: 'VideoEdge'
node: {
__typename: 'Video'
id: string
title: string
lengthSeconds: number
previewThumbnailURL: string
}
}[]
}
topClip: {
__typename: 'ClipConnection'
edges: {
__typename: 'ClipEdge'
node: {
__typename: 'Clip'
id: string
title: string
durationSeconds: number
thumbnailURL: string
slug: string
}
}[]
}
roles: {
isPartner: boolean
__typename: 'UserRoles'
}
stream: {
__typename: 'Stream'
id: string
viewersCount: number
previewImageURL: string
game: {
__typename: 'Game'
id: string
name: string
displayName: string
}
freeformTags: {
__typename: 'FreeformTag'
id: string
name: string
}[]
}
watchParty: any
__typename: 'User'
}
type GameSearchResponse = {
__typename: 'Game'
id: string
displayName: string
name: string
boxArtURL: string
tags: {
__typename: 'Tag'
id: string
tagName: string
localizedName: string
isLanguageTag: boolean
}[]
viewersCount: number
}
type VideoSearchResponse = {
__typename: 'Video'
id: string
title: string
lengthSeconds: number
previewThumbnailURL: string
createdAt: string
viewCount: number
owner: {
__typename: 'User'
displayName: string
id: string
login: string
roles: {
__typename: 'UserRoles'
isPartner: boolean
}
}
game: {
__typename: 'Game'
id: string
displayName: string
name: string
}
}
type RelatedLiveSearchResponse = {
__typename: 'User'
id: string
watchParty: any
stream: {
__typename: 'Stream'
id: string
viewersCount: number
previewImageURL: string
game: {
__typename: 'Game'
id: string
name: string
}
broadcaster: {
__typename: 'User'
id: string
primaryColorHex: string
login: string
displayName: string
broadcastSettings: {
id: string
title: string
__typename: 'BroadcastSettings'
}
roles: {
__typename: 'UserRoles'
isPartner: boolean
}
}
}
}
type SearchEdgeWrapper<ItemType> = {
__typename: string
score: number
totalMatches: number
cursor: string
edges: { trackingID: string; item: ItemType; __typename: 'SearchForEdge' }[]
}
export type AllSearchResponse = DataWrapper<{
searchFor: {
__typename: 'SearchFor'
channels: SearchEdgeWrapper<ChannelSearchResponse>
channelsWithTag: SearchEdgeWrapper<ChannelSearchResponse>
games: SearchEdgeWrapper<GameSearchResponse>
videos: SearchEdgeWrapper<VideoSearchResponse>
relatedLiveChannels: SearchEdgeWrapper<RelatedLiveSearchResponse>
}
}>
type TeamBase = {
__typename: 'Team'
id: string
displayName: string
name: string
}
export type StreamMetadataResponse = DataWrapper<{
user: {
__typename: 'User'
id: string
primaryColorHex?: string
isPartner: boolean
profileImageURL: string
primaryTeam: TeamBase
squadStream: Object
channel: {
__typename: 'Channel'
id: string
chanlets?: any[]
}
lastBroadcast: {
__typename: 'Broadcast'
id: string
title: string
}
stream: {
__typename: 'Stream'
id: string
type: string
game: {
__typename: 'Game'
id: string
name: string
}
}
}
}>
export type UseLiveResponse = DataWrapper<{
user: {
__typename: 'User'
id: string
login: string
stream: {
__typename: 'Stream'
id: string
createdAt: string
}
}
}>
export type ChannelAboutResponse = DataWrapper<{
currentUser?: any
user: {
__typename: 'User'
id: string
displayName: string
description: string
isPartner: boolean
primaryColorHex: string
profileImageURL: string
followers: {
__typename: 'FollowerConnection'
totalCount: number
}
channel: {
__typename: 'Channel'
id: string
schedule: {
__typename: 'Schedule'
id: string
nextSegment: {
__typename: 'ScheduleSegment'
id: string
startAt: string
hasReminder: boolean
}
}
socialMedias: {
id: string
name: string
title: string
url: string
__typename: 'SocialMedia'
}[]
}
lastBroadcast: {
__typename: 'Broadcast'
id: string
game: {
__typename: 'Game'
id: string
displayName: string
}
}
primaryTeam: TeamBase
videos: {
__typename: 'VideoConnection'
edges: {
__typename: 'VideoEdge'
node: {
__typename: 'Video'
id: string
status: string
game: {
__typename: 'Game'
id: string
displayName: string
}
}
}[]
}
}
}>
export type ViewCountResponse = DataWrapper<{
user: {
__typename: 'User'
id: string
stream: {
__typename: 'Stream'
id: string
viewersCount: number
}
}
}>
export type ChannelShellResponse = DataWrapper<{
userOrError: {
__typename: 'User'
id: string
displayName: string
login: string
primaryColorHex: string
profileImageURL: string
bannerImageURL: string
stream: {
__typename: 'Stream'
id: string
viewersCount: number
}
channel: {
__typename: 'Channel'
id: string
self: {
__typename: 'ChannelSelfEdge'
isAuthorized: boolean
restrictionType?: string
}
trailer: {
__typename: 'Trailer'
video?: {
__typename: 'Video'
id: string
title: string
lengthSeconds: number
previewThumbnailURL: string
}
}
home: {
__typename: 'ChannelHome'
preferences: {
__typename: 'ChannelHomePreferences'
heroPreset: string
}
}
}
}
}>
export type PersonalSection = {
__typename: 'PersonalSectionChannel'
trackingID: string
promotionsCampaignID: string
user: {
__typename: 'User'
id: string
displayName: string
login: string
profileImageURL: string
primaryColorHex: string
broadcastSettings: {
__typename: 'BroadcastSettings'
title: string
id: string
}
}
label: string
content: {
__typename: 'Stream'
id: string
viewersCount: number
previewImageURL: string
game: {
__typename: 'Game'
id: string
displayName: string
name: string
}
broadcaster: {
__typename: 'User'
id: string
broadcastSettings: {
__typename: 'BroadcastSettings'
title: string
id: string
}
}
}
}
export type PersonalSectionsResponse = DataWrapper<{
personalSections: {
type: 'RECOMMENDED_SECTION'
title: {
__typename: 'PersonalSectionTitle'
localizedFallback: string
localizedTokens: {
__typename: 'PersonalSectionTextToken'
value: string
}[]
}
items: PersonalSection[]
}[]
}>
export type PersonalSectionsFollowedResponse = DataWrapper<{
personalSections: {
type: 'RECS_FOLLOWED_SECTION'
title: {
__typename: 'PersonalSectionTitle'
localizedFallback: string
localizedTokens: {
__typename: 'PersonalSectionTextToken'
value: string
}[]
}
items: {
__typename: 'PersonalSectionChannel'
trackingID: string
promotionsCampaignID: string
user: {
__typename: 'User'
id: string
displayName: string
login: string
profileImageURL: string
primaryColorHex: string
broadcastSettings: {
__typename: 'BroadcastSettings'
title: string
id: string
}
}
label: string
content: {
__typename: 'VideoConnection' | 'Stream'
id: string
previewImageURL: string
broadcaster: {
__typename: 'User'
id: string
broadcastSettings: {
__typename: 'BroadcastSettings'
title: string
id: string
}
}
viewersCount: number
game: {
__typename: 'Game'
id: string
displayName: string
name: string
}
type: 'live'
}
}[]
}[]
}>
export type PlaybackAccessTokenResponse = DataWrapper<{
streamPlaybackAccessToken?: {
__typename: 'StreamPlaybackAccessToken'
value: string
signature: string
}
videoPlaybackAccessToken?: {
__typename: 'PlaybackAccessToken'
value: string
signature: string
}
}>
export type ChannelVideoCoreResponse = DataWrapper<{
video: {
__typename: 'Video'
id: string
owner: {
__typename: 'User'
id: string
login: string
displayName: string
primaryColorHex: string
profileImageURL: string
stream?: Object
channel: {
__typename: 'Channel'
id: string
self: {
__typename: 'ChannelSelfEdge'
isAuthorized: boolean
restrictionType?: string
}
trailer: {
__typename: 'Trailer'
video?: {
__typename: 'Video'
id: string
title: string
lengthSeconds: number
previewThumbnailURL: string
}
}
}
}
}
}>
export type VideoMetadataResponse = DataWrapper<{
user: {
__typename: 'User'
id: string
primaryColorHex: string
isPartner: boolean
profileImageURL: string
lastBroadcast: {
__typename: 'Broadcast'
id: string
startedAt: string
}
}
video: {
__typename: 'Video'
id: string
title: string
description?: string
previewThumbnailURL: string
createdAt: string
viewCount: number
publishedAt: string
lengthSeconds: number
broadcastType: string
owner: {
__typename: 'User'
id: string
login: string
displayName: string
}
game: {
__typename: 'Game'
id: string
displayName: string
name: string
boxArtURL: string
}
}
}>
export type VideoTowerResponse = DataWrapper<{
user: {
__typename: 'User'
id: string
videos: {
__typename: 'VideoConnection'
pageInfo: {
__typename: 'PageInfo'
hasNextPage: boolean
}
edges: {
__typename: 'VideoEdge'
cursor: string
node: {
__typename: 'Video'
id: string
animatedPreviewURL: string
game: {
__typename: 'Game'
id: string
displayName: string
name: string
boxArtURL: string
}
lengthSeconds: number
owner: {
__typename: 'User'
id: string
login: string
displayName: string
profileImageURL: string
primaryColorHex: string
}
previewThumbnailURL: string
publishedAt: string
self: {
__typename: 'VideoSelfEdge'
isRestricted: boolean
viewingHistory: {
__typename: 'VideoViewingHistory'
viewedAt: string
}
}
title: string
viewCount: number
contentTags: {
__typename: 'Tag'
id: string
tagName: string
localizedName: string
isLanguageTag: boolean
}[]
}
}[]
}
}
}>
export type BrowsePopularResponse = DataWrapper<{
streams: {
__typename: 'StreamConnection'
pageInfo: {
__typename: 'PageInfo'
hasNextPage: boolean
}
edges: {
__typename: 'StreamEdge'
cursor: string
trackingID: string
node: {
__typename: 'Stream'
id: string
title: string
viewersCount: number
previewImageURL: string
broadcaster: {
__typename: 'User'
id: string
displayName: string
login: string
profileImageURL: string
primaryColorHex: string
}
freeformTags: {
__typename: 'FreeformTag'
id: string
name: string
}[]
game: {
__typename: 'Game'
id: string
displayName: string
name: string
boxArtURL: string
}
type: 'live'
}
}[]
}
}>
export type PagerBaseContext = {
page: number
page_size: number
}
export type SearchContext = {
q: string
page_size: number
cursor?: string
results_returned: number
}
export type HomeContext = {
cursor?: string
page_size: number
}
export type URLContext = {
url: string
page_size: number
cursor?: string
}
export type LiveEventsContext = {
// object of emoji id to emoji name
emojis: { [key: string]: string }
events: LiveEvent[]
channel_id: string
login: string
}
export type RecentChat = {
id: string
deletedAt?: string
sentAt: string
content: {
text: string
fragments: {
text: string
content?:
| {
emoteID: string
setID: string
token: string
__typename: 'Emote'
}
| {
id: string
login: string
displayName: string
__typename: 'User'
}
__typename: 'MessageFragment'
}[]
__typename: 'MessageContent'
}
parentMessage?: string
sender: {
id: string
login: string
chatColor: string
displayName: string
__typename: 'User'
}
senderBadges: {
setID: string
version: string
id: string
__typename: 'Badge'
}[]
}
export type RecentChatsResponse = DataWrapper<{
channel: {
__typename: 'Channel'
id: string
recentChatMessages: RecentChat[]
}
}>
type Badge = {
id: string
setID: string
version: string
title: string
image1x: string
image2x: string
image4x: string
clickAction: string
clickURL: string
__typename: 'Badge'
}
type BadgeUser = {
id: string
primaryColorHex: string
broadcastBadges: Badge[]
self: {
selectedBadge?: Badge
displayBadges: Badge[]
__typename: 'UserSelfConnection'
}
squadStream: any
__typename: 'User'
}
export type BadgeListResponse = DataWrapper<{
user: BadgeUser
badges: Badge[]
}>