forked from daylamtayari/Twitch-GQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstrospectionSchema.json
2937 lines (2937 loc) · 166 KB
/
instrospectionSchema.json
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
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_queryType": "Query",
"_mutationType": "Mutation",
"_subscriptionType": null,
"_directives": [
{
"name": "deprecated",
"description": "Marks an element of a GraphQL schema as no longer supported.",
"locations": ["FIELD_DEFINITION", "ENUM_VALUE"],
"args": [
{
"name": "reason",
"description": "Explains why this element was deprecated, usually also including a suggestion\nfor how to access supported similar data. Formatted in\n[Markdown](https://daringfireball.net/projects/markdown/).",
"type": "String",
"defaultValue": "No longer supported"
}
]
},
{
"name": "include",
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
"locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
"args": [
{
"name": "if",
"description": "Included when true.",
"type": "Boolean!"
}
]
},
{
"name": "skip",
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
"locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
"args": [
{
"name": "if",
"description": "Skipped when true.",
"type": "Boolean!"
}
]
}
],
"_typeMap": {
"Query": "Query",
"AdRequestContext": "AdRequestContext",
"ID": "ID",
"AdRequestClientContext": "AdRequestClientContext",
"Boolean": "Boolean",
"String": "String",
"Int": "Int",
"AdRequestPlayerContext": "AdRequestPlayerContext",
"AdRequestContentType": "AdRequestContentType",
"AdrollType": "AdrollType",
"AdContext": "AdContext",
"AdContextDeclineState": "AdContextDeclineState",
"AdCreative": "AdCreative",
"Float": "Float",
"Cursor": "Cursor",
"TagScope": "TagScope",
"TagConnection": "TagConnection",
"TagEdge": "TagEdge",
"Tag": "Tag",
"Time": "Time",
"PageInfo": "PageInfo",
"AutoModContentInput": "AutoModContentInput",
"DetailedAutoModLevelsInput": "DetailedAutoModLevelsInput",
"AutoModContent": "AutoModContent",
"AutoModFailureReason": "AutoModFailureReason",
"DetailedAutoModConfiguration": "DetailedAutoModConfiguration",
"AutoModContentError": "AutoModContentError",
"AutoModContentErrorCode": "AutoModContentErrorCode",
"Badge": "Badge",
"BadgeClickAction": "BadgeClickAction",
"BadgeImageSize": "BadgeImageSize",
"BadgeSelfEdge": "BadgeSelfEdge",
"User": "User",
"AccountConnectionSet": "AccountConnectionSet",
"UserBlizzardConnectionLink": "UserBlizzardConnectionLink",
"UserFacebookConnectionLink": "UserFacebookConnectionLink",
"UserRiotConnectionLink": "UserRiotConnectionLink",
"UserSteamConnectionLink": "UserSteamConnectionLink",
"UserTwitterConnectionLink": "UserTwitterConnectionLink",
"UserYoutubeConnectionLink": "UserYoutubeConnectionLink",
"UserAccountHealth": "UserAccountHealth",
"PasswordStatus": "PasswordStatus",
"TwoFactorMethod": "TwoFactorMethod",
"ChannelChallengeSort": "ChannelChallengeSort",
"SortOrder": "SortOrder",
"ChannelChallengeConnection": "ChannelChallengeConnection",
"ChannelChallengeEdge": "ChannelChallengeEdge",
"ChannelChallenge": "ChannelChallenge",
"ChannelChallengeSelfEdge": "ChannelChallengeSelfEdge",
"ChannelChallengeParticipant": "ChannelChallengeParticipant",
"ChannelChallengeStatus": "ChannelChallengeStatus",
"Activity": "Activity",
"ActivityType": "ActivityType",
"AdProperties": "AdProperties",
"ADASProperties": "ADASProperties",
"Density": "Density",
"AdSlot": "AdSlot",
"AdScheduleConfig": "AdScheduleConfig",
"AdReminderConfig": "AdReminderConfig",
"AdSnoozeConfig": "AdSnoozeConfig",
"DisablePrerollsAbility": "DisablePrerollsAbility",
"DisablePrerollsFreeTime": "DisablePrerollsFreeTime",
"MultiplayerAdOffer": "MultiplayerAdOffer",
"GDPRConsent": "GDPRConsent",
"TrackingPixel": "TrackingPixel",
"TrackingPixelType": "TrackingPixelType",
"UserAmazonConnection": "UserAmazonConnection",
"AssociatesStore": "AssociatesStore",
"AuthenticatedSession": "AuthenticatedSession",
"AutoModProperties": "AutoModProperties",
"AutoRefill": "AutoRefill",
"PaymentProvider": "PaymentProvider",
"CheckoutAction": "CheckoutAction",
"AutoRefillProfile": "AutoRefillProfile",
"ChargeInstrument": "ChargeInstrument",
"PaymentMethod": "PaymentMethod",
"PaymentCardType": "PaymentCardType",
"PaymentScheme": "PaymentScheme",
"PaymentInstrumentType": "PaymentInstrumentType",
"PurchaseProfile": "PurchaseProfile",
"SubscriptionProductType": "SubscriptionProductType",
"PurchaseProfileState": "PurchaseProfileState",
"SubscriptionBenefit": "SubscriptionBenefit",
"SubscriptionGift": "SubscriptionGift",
"PaidUpgrade": "PaidUpgrade",
"PriceInfo": "PriceInfo",
"Currency": "Currency",
"DiscountBreakdown": "DiscountBreakdown",
"PendingSubscription": "PendingSubscription",
"PendingSubType": "PendingSubType",
"SubscriptionPlatform": "SubscriptionPlatform",
"SubscriptionProduct": "SubscriptionProduct",
"EmoteModifier": "EmoteModifier",
"PermanentEmoteModifier": "PermanentEmoteModifier",
"SubscriptionSummaryTier": "SubscriptionSummaryTier",
"EmoteStateFilter": "EmoteStateFilter",
"EmoteSet": "EmoteSet",
"Emote": "Emote",
"EmoteAssetType": "EmoteAssetType",
"EmoteBitsBadgeTierSummary": "EmoteBitsBadgeTierSummary",
"EmoteBitsBadgeTierSummarySelfEdge": "EmoteBitsBadgeTierSummarySelfEdge",
"EmoteState": "EmoteState",
"SubscriptionSummary": "SubscriptionSummary",
"SubscriptionOffer": "SubscriptionOffer",
"SubscriptionSummarySelf": "SubscriptionSummarySelf",
"EmoteType": "EmoteType",
"EmoteGroupAssetType": "EmoteGroupAssetType",
"SubscriptionGiftOfferPlatform": "SubscriptionGiftOfferPlatform",
"SubscriptionGiftType": "SubscriptionGiftType",
"SubscriptionGiftOffer": "SubscriptionGiftOffer",
"SubscriptionGiftPromotion": "SubscriptionGiftPromotion",
"SubscriptionPromotionDiscountType": "SubscriptionPromotionDiscountType",
"SubscriptionPromotion": "SubscriptionPromotion",
"ProductPurchase": "ProductPurchase",
"CheckoutPriceSummary": "CheckoutPriceSummary",
"ProductPurchaseErrorCode": "ProductPurchaseErrorCode",
"TaxRegion": "TaxRegion",
"SubscriptionGifting": "SubscriptionGifting",
"SubscriptionCommunityGifting": "SubscriptionCommunityGifting",
"SubscriptionCommunityGiftingAssets": "SubscriptionCommunityGiftingAssets",
"Offer": "Offer",
"OfferEligibility": "OfferEligibility",
"OfferPurchaseType": "OfferPurchaseType",
"OfferIneligibilityReasonCode": "OfferIneligibilityReasonCode",
"GiftType": "GiftType",
"OfferListing": "OfferListing",
"CancellationPolicyType": "CancellationPolicyType",
"ChargeModel": "ChargeModel",
"CreditChargeModel": "CreditChargeModel",
"CreditType": "CreditType",
"ExternalChargeModel": "ExternalChargeModel",
"ExternalChargeModelSelfEdge": "ExternalChargeModelSelfEdge",
"InternalChargeModel": "InternalChargeModel",
"ChargeModelPlan": "ChargeModelPlan",
"ChargeModelPlanInterval": "ChargeModelPlanInterval",
"ChargeModelPlanIntervalUnit": "ChargeModelPlanIntervalUnit",
"RenewalPolicy": "RenewalPolicy",
"InternalChargeModelSelfEdge": "InternalChargeModelSelfEdge",
"OfferPlatform": "OfferPlatform",
"OfferPromotion": "OfferPromotion",
"PromotionDisplay": "PromotionDisplay",
"PromoDiscountType": "PromoDiscountType",
"Range": "Range",
"OfferSelfEdge": "OfferSelfEdge",
"PaymentSession": "PaymentSession",
"CheckoutConfiguration": "CheckoutConfiguration",
"PurchaseableProductType": "PurchaseableProductType",
"OfferTagBindingInput": "OfferTagBindingInput",
"Xsolla": "Xsolla",
"XsollaIneligibilityReason": "XsollaIneligibilityReason",
"EligiblePaymentMethod": "EligiblePaymentMethod",
"PaymentMethodAvailabilityStatus": "PaymentMethodAvailabilityStatus",
"EligiblePaymentMethodName": "EligiblePaymentMethodName",
"OfferTagBinding": "OfferTagBinding",
"SubscriptionCommunityGiftingType": "SubscriptionCommunityGiftingType",
"SubscriptionStandardGifting": "SubscriptionStandardGifting",
"SubscriptionInterval": "SubscriptionInterval",
"SubscriptionIntervalUnit": "SubscriptionIntervalUnit",
"RevenueConfig": "RevenueConfig",
"SubscriptionProductSelfConnection": "SubscriptionProductSelfConnection",
"CheckoutConfigurationInput": "CheckoutConfigurationInput",
"SubscriptionCheckoutConfigs": "SubscriptionCheckoutConfigs",
"PaymentProviderConfigs": "PaymentProviderConfigs",
"RecurlyConfigs": "RecurlyConfigs",
"PayWithAmazonConfigs": "PayWithAmazonConfigs",
"XsollaConfigs": "XsollaConfigs",
"ZuoraConfigs": "ZuoraConfigs",
"PurchaseIneligibilityReason": "PurchaseIneligibilityReason",
"SubscriptionPurchase": "SubscriptionPurchase",
"SubscriptionPurchaseDetails": "SubscriptionPurchaseDetails",
"SubscriptionPurchaseState": "SubscriptionPurchaseState",
"SubscriptionTenureMethod": "SubscriptionTenureMethod",
"SubscriptionTenure": "SubscriptionTenure",
"SubscriptionState": "SubscriptionState",
"SubscriptionBenefitStateHistory": "SubscriptionBenefitStateHistory",
"SubscriptionBenefitState": "SubscriptionBenefitState",
"RecurringPaymentDetail": "RecurringPaymentDetail",
"AutohostChannelConnection": "AutohostChannelConnection",
"AutohostSettings": "AutohostSettings",
"AutohostSettingsIncomingRaidsPolicy": "AutohostSettingsIncomingRaidsPolicy",
"AutohostSettingsStrategy": "AutohostSettingsStrategy",
"AutohostedByChannelConnection": "AutohostedByChannelConnection",
"Availability": "Availability",
"BadgeDomain": "BadgeDomain",
"WalletType": "WalletType",
"Balance": "Balance",
"ChannelBannedUser": "ChannelBannedUser",
"BitsEventConnectionCriteriaInput": "BitsEventConnectionCriteriaInput",
"BitsEventSort": "BitsEventSort",
"BitsEventSortDirection": "BitsEventSortDirection",
"BitsEventType": "BitsEventType",
"BitsEventConnection": "BitsEventConnection",
"BitsEventEdge": "BitsEventEdge",
"BitsEvent": "BitsEvent",
"BitsOffer": "BitsOffer",
"BitsOfferType": "BitsOfferType",
"BitsPaymentMethods": "BitsPaymentMethods",
"BitsPaymentMethodType": "BitsPaymentMethodType",
"BitsProductProvider": "BitsProductProvider",
"BitsProduct": "BitsProduct",
"BitsProductPromotion": "BitsProductPromotion",
"BitsProductSelfEdge": "BitsProductSelfEdge",
"BitsProductEligibility": "BitsProductEligibility",
"BitsProductPurchaseInfo": "BitsProductPurchaseInfo",
"BitsProductPurchaseInfoError": "BitsProductPurchaseInfoError",
"BitsProductPurchaseInfoErrorCode": "BitsProductPurchaseInfoErrorCode",
"BitsProductType": "BitsProductType",
"BitsUserSettings": "BitsUserSettings",
"FirstCheerTutorial": "FirstCheerTutorial",
"BitsUserState": "BitsUserState",
"BlizzardUser": "BlizzardUser",
"ChannelBlockedTerm": "ChannelBlockedTerm",
"Bounty": "Bounty",
"BountyCampaign": "BountyCampaign",
"Game": "Game",
"Directory": "Directory",
"DirectoryType": "DirectoryType",
"StreamConnection": "StreamConnection",
"StreamEdge": "StreamEdge",
"Stream": "Stream",
"Video": "Video",
"VideoBookmarkConnection": "VideoBookmarkConnection",
"VideoBookmarkEdge": "VideoBookmarkEdge",
"VideoBookmark": "VideoBookmark",
"VideoBookmarkConnectionError": "VideoBookmarkConnectionError",
"VideoBookmarkConnectionErrorCode": "VideoBookmarkConnectionErrorCode",
"BroadcastType": "BroadcastType",
"ClipConnection": "ClipConnection",
"ClipEdge": "ClipEdge",
"Clip": "Clip",
"Broadcast": "Broadcast",
"ClipCreationState": "ClipCreationState",
"Language": "Language",
"PlaybackAccessTokenParams": "PlaybackAccessTokenParams",
"PlaybackAccessToken": "PlaybackAccessToken",
"ClipRawMedia": "ClipRawMedia",
"ClipVideoQuality": "ClipVideoQuality",
"Reaction": "Reaction",
"ReactionSelfConnection": "ReactionSelfConnection",
"ClipRelatedClips": "ClipRelatedClips",
"VideoCommentConnection": "VideoCommentConnection",
"VideoCommentEdge": "VideoCommentEdge",
"VideoComment": "VideoComment",
"VideoCommentMessage": "VideoCommentMessage",
"VideoCommentMessageFragment": "VideoCommentMessageFragment",
"EmbeddedEmote": "EmbeddedEmote",
"VideoCommentSource": "VideoCommentSource",
"VideoCommentState": "VideoCommentState",
"VideoDownload": "VideoDownload",
"VideoDownloadStatus": "VideoDownloadStatus",
"Duration": "Duration",
"VideoMomentType": "VideoMomentType",
"VideoMomentRequestType": "VideoMomentRequestType",
"VideoMomentConnection": "VideoMomentConnection",
"VideoMomentEdge": "VideoMomentEdge",
"VideoMoment": "VideoMoment",
"VideoMomentDetails": "VideoMomentDetails",
"GameChangeMomentDetails": "GameChangeMomentDetails",
"HearthstoneMomentDetails": "HearthstoneMomentDetails",
"HearthstoneMomentHero": "HearthstoneMomentHero",
"HearthsoneMomentGameMode": "HearthsoneMomentGameMode",
"OverwatchMomentDetails": "OverwatchMomentDetails",
"PUBGMomentDetails": "PUBGMomentDetails",
"VideoMuteInfo": "VideoMuteInfo",
"VideoMutedSegmentConnection": "VideoMutedSegmentConnection",
"VideoMutedSegment": "VideoMutedSegment",
"FlaggedTrack": "FlaggedTrack",
"FlaggedTrackAppeal": "FlaggedTrackAppeal",
"FlaggedTrackAppealStatus": "FlaggedTrackAppealStatus",
"ResourceRestriction": "ResourceRestriction",
"ResourceRestrictionExemption": "ResourceRestrictionExemption",
"ResourceRestrictionExemptionAction": "ResourceRestrictionExemptionAction",
"ResourceRestrictionExemptionType": "ResourceRestrictionExemptionType",
"ResourceRestrictionOption": "ResourceRestrictionOption",
"ResourceRestrictionType": "ResourceRestrictionType",
"VideoRestriction": "VideoRestriction",
"VideoPrivacyScope": "VideoPrivacyScope",
"VideoSelfEdge": "VideoSelfEdge",
"VideoViewingHistory": "VideoViewingHistory",
"VideoStatus": "VideoStatus",
"VideoSuggestedHighlight": "VideoSuggestedHighlight",
"VideoSuggestedSegment": "VideoSuggestedSegment",
"SegmentsStatusType": "SegmentsStatusType",
"VideoTopClipsInput": "VideoTopClipsInput",
"ClipsPeriod": "ClipsPeriod",
"ClipsSort": "ClipsSort",
"Channel": "Channel",
"PredictionEvent": "PredictionEvent",
"PredictionEventActor": "PredictionEventActor",
"ExtensionClient": "ExtensionClient",
"OrganizationMember": "OrganizationMember",
"OrganizationMemberRole": "OrganizationMemberRole",
"Organization": "Organization",
"BountyCampaignStatus": "BountyCampaignStatus",
"BountyCampaignConnection": "BountyCampaignConnection",
"BountyCampaignEdge": "BountyCampaignEdge",
"BrandPortalSettings": "BrandPortalSettings",
"DropCampaign": "DropCampaign",
"DropCampaignACL": "DropCampaignACL",
"Drop": "Drop",
"EventBasedDrop": "EventBasedDrop",
"DropType": "DropType",
"DropBenefitEdge": "DropBenefitEdge",
"DropBenefit": "DropBenefit",
"DropEventCondition": "DropEventCondition",
"DropEventConditionOperator": "DropEventConditionOperator",
"ManualTriggerBasedDrop": "ManualTriggerBasedDrop",
"DropCampaignSelfEdge": "DropCampaignSelfEdge",
"DropCampaignStatus": "DropCampaignStatus",
"TimeBasedDrop": "TimeBasedDrop",
"TimeBasedDropSelfEdge": "TimeBasedDropSelfEdge",
"CampaignType": "CampaignType",
"OrganizationDrops": "OrganizationDrops",
"BroadcasterViewerReach": "BroadcasterViewerReach",
"OrganizationInviteConnection": "OrganizationInviteConnection",
"OrganizationInviteEdge": "OrganizationInviteEdge",
"OrganizationInvite": "OrganizationInvite",
"OrganizationMembersInput": "OrganizationMembersInput",
"OrganizationMemberConnection": "OrganizationMemberConnection",
"OrganizationMemberEdge": "OrganizationMemberEdge",
"OrganizationSelfEdge": "OrganizationSelfEdge",
"OrganizationType": "OrganizationType",
"PredictionOutcome": "PredictionOutcome",
"PredictionOutcomeColor": "PredictionOutcomeColor",
"Prediction": "Prediction",
"PredictionResult": "PredictionResult",
"PredictionEventSelfEdge": "PredictionEventSelfEdge",
"UserPredictionEventRestriction": "UserPredictionEventRestriction",
"PredictionEventStatus": "PredictionEventStatus",
"AdContentMetadata": "AdContentMetadata",
"CategoryProperties": "CategoryProperties",
"AutoModConfiguration": "AutoModConfiguration",
"MultiviewContentAttribute": "MultiviewContentAttribute",
"DropObject": "DropObject",
"DropAction": "DropAction",
"DropActionType": "DropActionType",
"DropRule": "DropRule",
"ChannelBannedUserConnection": "ChannelBannedUserConnection",
"ChannelBannedUserEdge": "ChannelBannedUserEdge",
"ChannelBlockedTermConnection": "ChannelBlockedTermConnection",
"ChannelBlockedTermEdge": "ChannelBlockedTermEdge",
"BoostSettings": "BoostSettings",
"CelebrationConfig": "CelebrationConfig",
"Celebration": "Celebration",
"CelebrationArea": "CelebrationArea",
"CelebrationEffect": "CelebrationEffect",
"CelebrationEventType": "CelebrationEventType",
"ChanletSort": "ChanletSort",
"ChattersInfo": "ChattersInfo",
"Chatter": "Chatter",
"ChannelClipsSettings": "ChannelClipsSettings",
"ChannelClipsCreationRestrictedTo": "ChannelClipsCreationRestrictedTo",
"ChannelClipsCreationRestrictionOptions": "ChannelClipsCreationRestrictionOptions",
"CommunityPointsCustomRewardRedemption": "CommunityPointsCustomRewardRedemption",
"CommunityPointsCustomReward": "CommunityPointsCustomReward",
"CommunityPointsImage": "CommunityPointsImage",
"CommunityPointsCustomRewardGlobalCooldownSetting": "CommunityPointsCustomRewardGlobalCooldownSetting",
"CommunityPointsCustomRewardMaxPerStreamSetting": "CommunityPointsCustomRewardMaxPerStreamSetting",
"CommunityPointsCustomRewardMaxPerUserPerStreamSetting": "CommunityPointsCustomRewardMaxPerUserPerStreamSetting",
"CommunityPointsCustomRewardRedemptionStatus": "CommunityPointsCustomRewardRedemptionStatus",
"CommunityPointsRedemptionQueueOptions": "CommunityPointsRedemptionQueueOptions",
"CommunityPointsCustomRewardRedemptionQueueSortOrder": "CommunityPointsCustomRewardRedemptionQueueSortOrder",
"CommunityPointsCustomRewardRedemptionConnection": "CommunityPointsCustomRewardRedemptionConnection",
"CommunityPointsCustomRewardRedemptionEdge": "CommunityPointsCustomRewardRedemptionEdge",
"CommunityPointsChannelSettings": "CommunityPointsChannelSettings",
"CommunityPointsCommunityGoalConnection": "CommunityPointsCommunityGoalConnection",
"CommunityPointsCommunityGoalEdge": "CommunityPointsCommunityGoalEdge",
"CommunityPointsCommunityGoal": "CommunityPointsCommunityGoal",
"CommunityPointsCommunityGoalStatus": "CommunityPointsCommunityGoalStatus",
"CommunityPointsCommunityGoalType": "CommunityPointsCommunityGoalType",
"CommunityPointsAutomaticReward": "CommunityPointsAutomaticReward",
"CommunityPointsAutomaticRewardType": "CommunityPointsAutomaticRewardType",
"CommunityPointsCustomRewardTemplateCollection": "CommunityPointsCustomRewardTemplateCollection",
"CommunityPointsCustomRewardTemplateCollectionCategory": "CommunityPointsCustomRewardTemplateCollectionCategory",
"CommunityPointsCustomRewardTemplate": "CommunityPointsCustomRewardTemplate",
"CommunityPointsEarlyAccessSettings": "CommunityPointsEarlyAccessSettings",
"CommunityPointsChannelEarningSettings": "CommunityPointsChannelEarningSettings",
"CommunityPointsMultiplier": "CommunityPointsMultiplier",
"CommunityPointsMultiplierReason": "CommunityPointsMultiplierReason",
"CommunityPointsWatchStreakEarningSettings": "CommunityPointsWatchStreakEarningSettings",
"CommunityPointsEmoteVariant": "CommunityPointsEmoteVariant",
"CommunityPointsEmote": "CommunityPointsEmote",
"CommunityPointsEmoteModification": "CommunityPointsEmoteModification",
"CommunityPointsEmoteModifier": "CommunityPointsEmoteModifier",
"SmartCostsAcknowledgement": "SmartCostsAcknowledgement",
"CommunityPointsRewardSummary": "CommunityPointsRewardSummary",
"CommunityPointsUpdateCustomRewardRedemptionStatusesProgress": "CommunityPointsUpdateCustomRewardRedemptionStatusesProgress",
"CommunityPointsUpdateCustomRewardRedemptionStatusesMethod": "CommunityPointsUpdateCustomRewardRedemptionStatusesMethod",
"CreatorBadgeFlair": "CreatorBadgeFlair",
"CreatorBadgeFlairSetting": "CreatorBadgeFlairSetting",
"CreatorBadgeFlairAsset": "CreatorBadgeFlairAsset",
"CreatorBadgeFlairTier": "CreatorBadgeFlairTier",
"CrowdChants": "CrowdChants",
"ChannelCrowdChantSettings": "ChannelCrowdChantSettings",
"CrowdChant": "CrowdChant",
"RadioCurrentlyPlaying": "RadioCurrentlyPlaying",
"RadioContentPromotion": "RadioContentPromotion",
"RadioIconFormat": "RadioIconFormat",
"RadioIconThemeAssets": "RadioIconThemeAssets",
"RadioTrack": "RadioTrack",
"RadioAlbum": "RadioAlbum",
"RadioArtist": "RadioArtist",
"ChannelDashboardViewType": "ChannelDashboardViewType",
"ChannelDashboardView": "ChannelDashboardView",
"ChannelDashboardLayout": "ChannelDashboardLayout",
"ChannelDashboardViewOptions": "ChannelDashboardViewOptions",
"ChannelHome": "ChannelHome",
"ChannelHomePreferences": "ChannelHomePreferences",
"HeroPreset": "HeroPreset",
"StreamerShelfType": "StreamerShelfType",
"ChannelHomeShelves": "ChannelHomeShelves",
"ChannelHomeCategoryShelf": "ChannelHomeCategoryShelf",
"ChannelHomeCategoryShelfEdge": "ChannelHomeCategoryShelfEdge",
"ChannelHomeCategorySuggestionsShelf": "ChannelHomeCategorySuggestionsShelf",
"ChannelHomeCategorySuggestionsShelfEdge": "ChannelHomeCategorySuggestionsShelfEdge",
"ChannelHomeStreamerShelf": "ChannelHomeStreamerShelf",
"ChannelHomeStreamerShelfEdge": "ChannelHomeStreamerShelfEdge",
"HypeTrain": "HypeTrain",
"HypeTrainConfig": "HypeTrainConfig",
"HypeTrainConductorReward": "HypeTrainConductorReward",
"HypeTrainReward": "HypeTrainReward",
"HypeTrainRewardType": "HypeTrainRewardType",
"HypeTrainParticipationSource": "HypeTrainParticipationSource",
"HypeTrainConductorType": "HypeTrainConductorType",
"HypeTrainDifficulty": "HypeTrainDifficulty",
"HypeTrainDifficultySettings": "HypeTrainDifficultySettings",
"HypeTrainLevel": "HypeTrainLevel",
"HypeTrainKickoffConfig": "HypeTrainKickoffConfig",
"HypeTrainNotificationThreshold": "HypeTrainNotificationThreshold",
"HypeTrainParticipationAction": "HypeTrainParticipationAction",
"HypeTrainParticipationConversionRate": "HypeTrainParticipationConversionRate",
"HypeTrainExecution": "HypeTrainExecution",
"HypeTrainConductor": "HypeTrainConductor",
"HypeTrainParticipation": "HypeTrainParticipation",
"HypeTrainEndReason": "HypeTrainEndReason",
"HypeTrainProgress": "HypeTrainProgress",
"LeaderboardSet": "LeaderboardSet",
"UserLeaderboard": "UserLeaderboard",
"UserLeaderboardItemConnection": "UserLeaderboardItemConnection",
"UserLeaderboardItemEdge": "UserLeaderboardItemEdge",
"UserLeaderboardItem": "UserLeaderboardItem",
"LeaderboardTimePeriodType": "LeaderboardTimePeriodType",
"VideoSort": "VideoSort",
"VideoConnection": "VideoConnection",
"VideoEdge": "VideoEdge",
"ModerationLogs": "ModerationLogs",
"ChannelModerationActionConnection": "ChannelModerationActionConnection",
"ChannelModerationActionEdge": "ChannelModerationActionEdge",
"ChannelModerationActionEntry": "ChannelModerationActionEntry",
"ModerationAction": "ModerationAction",
"OwnerChanletAttributes": "OwnerChanletAttributes",
"ChannelPermittedTermConnection": "ChannelPermittedTermConnection",
"ChannelPermittedTermEdge": "ChannelPermittedTermEdge",
"ChannelPermittedTerm": "ChannelPermittedTerm",
"ChannelPredictionSettings": "ChannelPredictionSettings",
"Message": "Message",
"MessageContent": "MessageContent",
"MessageFragment": "MessageFragment",
"FragmentContent": "FragmentContent",
"AutoMod": "AutoMod",
"AutoModTopic": "AutoModTopic",
"CheermoteToken": "CheermoteToken",
"RoomMessageGroupMention": "RoomMessageGroupMention",
"RoomMessageMentionType": "RoomMessageMentionType",
"MessageReplyConnection": "MessageReplyConnection",
"PredictionEventConnection": "PredictionEventConnection",
"PredictionEventEdge": "PredictionEventEdge",
"Schedule": "Schedule",
"ScheduleInterruption": "ScheduleInterruption",
"ScheduleInterruptionReason": "ScheduleInterruptionReason",
"ScheduleSegment": "ScheduleSegment",
"ScheduleSegmentListInput": "ScheduleSegmentListInput",
"ScheduleSegmentListConnection": "ScheduleSegmentListConnection",
"ScheduleSegmentListEdge": "ScheduleSegmentListEdge",
"ChannelSelfEdge": "ChannelSelfEdge",
"CommunityPointsProperties": "CommunityPointsProperties",
"CommunityPointsClaim": "CommunityPointsClaim",
"CommunityPointsCommunityGoalContribution": "CommunityPointsCommunityGoalContribution",
"CommunityPointsLastViewedContentByType": "CommunityPointsLastViewedContentByType",
"CommunityPointsContentType": "CommunityPointsContentType",
"CommunityPointsLimitedEarnings": "CommunityPointsLimitedEarnings",
"CommunityPointsCustomRewardUserRedemption": "CommunityPointsCustomRewardUserRedemption",
"UnbanRequest": "UnbanRequest",
"UnbanRequestStatus": "UnbanRequestStatus",
"ModLogsMessageConnection": "ModLogsMessageConnection",
"ModLogsMessageEdge": "ModLogsMessageEdge",
"ModLogsMessageResult": "ModLogsMessageResult",
"AutoModCaughtMessage": "AutoModCaughtMessage",
"AutoModCaughtMessageCategory": "AutoModCaughtMessageCategory",
"ModLogsMessage": "ModLogsMessage",
"ModLogsMessageContent": "ModLogsMessageContent",
"ModLogsMessageFragment": "ModLogsMessageFragment",
"AutoModCaughtMessageStatus": "AutoModCaughtMessageStatus",
"ModLogsTargetedModActionsEntry": "ModLogsTargetedModActionsEntry",
"ModLogsAction": "ModLogsAction",
"TargetedModActionDetails": "TargetedModActionDetails",
"ChannelPermission": "ChannelPermission",
"UnbanRequestRestrictionReason": "UnbanRequestRestrictionReason",
"ExtensionInstallationSelfEdge": "ExtensionInstallationSelfEdge",
"ExtensionInstallation": "ExtensionInstallation",
"ExtensionInstallationAbilities": "ExtensionInstallationAbilities",
"ExtensionActivationConfig": "ExtensionActivationConfig",
"ExtensionAnchor": "ExtensionAnchor",
"ActivationState": "ActivationState",
"Extension": "Extension",
"ExtensionBitsSupportLevel": "ExtensionBitsSupportLevel",
"ExtensionCategory": "ExtensionCategory",
"ExtensionConnection": "ExtensionConnection",
"ExtensionEdge": "ExtensionEdge",
"ExtensionCategorySortKey": "ExtensionCategorySortKey",
"ExtensionCategoryType": "ExtensionCategoryType",
"ExtensionChallengeConditionByIDInput": "ExtensionChallengeConditionByIDInput",
"ChallengeCondition": "ChallengeCondition",
"ChallengeEffectSettings": "ChallengeEffectSettings",
"ChallengeEffectSettingsDetails": "ChallengeEffectSettingsDetails",
"ChallengeUseBitsEffectSettingsDetails": "ChallengeUseBitsEffectSettingsDetails",
"ChallengeUseBitsPoolRecipientWeightedShare": "ChallengeUseBitsPoolRecipientWeightedShare",
"ChallengeEffectType": "ChallengeEffectType",
"ChallengeConditionParticipantSummaryByState": "ChallengeConditionParticipantSummaryByState",
"ChallengeConditionParticipantSummary": "ChallengeConditionParticipantSummary",
"ChallengeEffectSummary": "ChallengeEffectSummary",
"ChallengeUseBitsEffectSummary": "ChallengeUseBitsEffectSummary",
"ChallengeConditionState": "ChallengeConditionState",
"ExtensionChallengeConditionParticipantsInput": "ExtensionChallengeConditionParticipantsInput",
"ChallengeConditionParticipantEndState": "ChallengeConditionParticipantEndState",
"ExtensionChallengeConditionParticipantConnection": "ExtensionChallengeConditionParticipantConnection",
"ExtensionChallengeConditionParticipantEdge": "ExtensionChallengeConditionParticipantEdge",
"ChallengeConditionParticipant": "ChallengeConditionParticipant",
"ChallengeEffect": "ChallengeEffect",
"ChallengeEffectDetails": "ChallengeEffectDetails",
"ChallengeUseBitsEffectDetails": "ChallengeUseBitsEffectDetails",
"ChallengeConditionParticipantProcessingState": "ChallengeConditionParticipantProcessingState",
"ExtensionChallengeConditionsInput": "ExtensionChallengeConditionsInput",
"ExtensionChallengeConditionConnection": "ExtensionChallengeConditionConnection",
"ExtensionChallengeConditionEdge": "ExtensionChallengeConditionEdge",
"ExtensionIcons": "ExtensionIcons",
"ExtensionSelfConnection": "ExtensionSelfConnection",
"ExtensionState": "ExtensionState",
"ExtensionSubscriptionsSupportLevel": "ExtensionSubscriptionsSupportLevel",
"ExtensionViews": "ExtensionViews",
"ComponentView": "ComponentView",
"ExtensionView": "ExtensionView",
"ConfigView": "ConfigView",
"HiddenView": "HiddenView",
"LiveConfigView": "LiveConfigView",
"MobileView": "MobileView",
"PanelView": "PanelView",
"VideoOverlayView": "VideoOverlayView",
"ExtensionInstallationFeatureFlags": "ExtensionInstallationFeatureFlags",
"ExtensionInstallationDynamicManagement": "ExtensionInstallationDynamicManagement",
"ExtensionRequiredAction": "ExtensionRequiredAction",
"ExtensionRequiredActionType": "ExtensionRequiredActionType",
"ExtensionInstallationSelfConnection": "ExtensionInstallationSelfConnection",
"ExtensionToken": "ExtensionToken",
"ExtensionConfiguration": "ExtensionConfiguration",
"ExtensionConfigurationRecord": "ExtensionConfigurationRecord",
"SocialMedia": "SocialMedia",
"Trailer": "Trailer",
"UnbanRequestsOptions": "UnbanRequestsOptions",
"UnbanRequestsSortOrder": "UnbanRequestsSortOrder",
"UnbanRequestConnection": "UnbanRequestConnection",
"UnbanRequestEdge": "UnbanRequestEdge",
"UnbanRequestsSettings": "UnbanRequestsSettings",
"VideoStreamSettings": "VideoStreamSettings",
"StreamKeyResult": "StreamKeyResult",
"StreamKey": "StreamKey",
"StreamKeyError": "StreamKeyError",
"Platform": "Platform",
"PlayStation": "PlayStation",
"SCETitle": "SCETitle",
"SCEUser": "SCEUser",
"StreamSelfConnection": "StreamSelfConnection",
"GameClipsInput": "GameClipsInput",
"ClipsFilter": "ClipsFilter",
"DropAccountLink": "DropAccountLink",
"EnhancedExperiencesClient": "EnhancedExperiencesClient",
"ESRBRating": "ESRBRating",
"ExtensionRecommendation": "ExtensionRecommendation",
"GameUpcomingStreamConnection": "GameUpcomingStreamConnection",
"GameSelfConnection": "GameSelfConnection",
"GameFollow": "GameFollow",
"GameStreamOptions": "GameStreamOptions",
"StreamRestrictionType": "StreamRestrictionType",
"RecommendationsContext": "RecommendationsContext",
"StreamSort": "StreamSort",
"StreamMetadataFilterInput": "StreamMetadataFilterInput",
"AVCProfile": "AVCProfile",
"TagType": "TagType",
"BountyCampaignBrandDetails": "BountyCampaignBrandDetails",
"BountyCampaignReporting": "BountyCampaignReporting",
"BountyCampaignPerformanceMetric": "BountyCampaignPerformanceMetric",
"BountyChatCTA": "BountyChatCTA",
"BountyCampaignKeyDescriptor": "BountyCampaignKeyDescriptor",
"BountyCampaignType": "BountyCampaignType",
"BountyCampaignVideo": "BountyCampaignVideo",
"BountyProductKey": "BountyProductKey",
"BountyKeyProductType": "BountyKeyProductType",
"BountyModerationMetadata": "BountyModerationMetadata",
"BountyModerationFailReason": "BountyModerationFailReason",
"BountyModerationStatus": "BountyModerationStatus",
"BountyRestriction": "BountyRestriction",
"BountyStatus": "BountyStatus",
"BountyVideo": "BountyVideo",
"BountyConnection": "BountyConnection",
"BountyEdge": "BountyEdge",
"BountyBoardSettings": "BountyBoardSettings",
"BountyBoardUserStatus": "BountyBoardUserStatus",
"BroadcastSettings": "BroadcastSettings",
"LiveUpNotificationInfo": "LiveUpNotificationInfo",
"Campaign": "Campaign",
"CampaignObjective": "CampaignObjective",
"CampaignCheergroup": "CampaignCheergroup",
"Milestone": "Milestone",
"TournamentReward": "TournamentReward",
"CampaignRewardMetadata": "CampaignRewardMetadata",
"CampaignProperties": "CampaignProperties",
"CampaignTrigger": "CampaignTrigger",
"TriggerType": "TriggerType",
"CelebrationUserSettings": "CelebrationUserSettings",
"ChannelAnalyticsContentOverlap": "ChannelAnalyticsContentOverlap",
"ChannelOverlap": "ChannelOverlap",
"GameOverlap": "GameOverlap",
"Feed": "Feed",
"FeedItemConnection": "FeedItemConnection",
"FeedItemEdge": "FeedItemEdge",
"FeedItem": "FeedItem",
"FeedItemContent": "FeedItemContent",
"Post": "Post",
"MessageBody": "MessageBody",
"PostEmbed": "PostEmbed",
"LinkOEmbed": "LinkOEmbed",
"OEmbed": "OEmbed",
"ThumbnailOEmbed": "ThumbnailOEmbed",
"PhotoOEmbed": "PhotoOEmbed",
"RichOEmbed": "RichOEmbed",
"VideoOEmbed": "VideoOEmbed",
"PostSelfConnection": "PostSelfConnection",
"PostPermissionSet": "PostPermissionSet",
"Share": "Share",
"ShareTarget": "ShareTarget",
"FeedItemReason": "FeedItemReason",
"FeedItemTracking": "FeedItemTracking",
"Room": "Room",
"RoomMemberConnection": "RoomMemberConnection",
"RoomMemberEdge": "RoomMemberEdge",
"RoomMemberType": "RoomMemberType",
"RoomMessageConnection": "RoomMessageConnection",
"RoomMessageEdge": "RoomMessageEdge",
"RoomMessageItem": "RoomMessageItem",
"RoomMessage": "RoomMessage",
"RoomMessageContent": "RoomMessageContent",
"RoomMessageFragment": "RoomMessageFragment",
"RoomRole": "RoomRole",
"RoomModes": "RoomModes",
"RoomRolePermissions": "RoomRolePermissions",
"RoomView": "RoomView",
"RoomPermissions": "RoomPermissions",
"ChatSettings": "ChatSettings",
"ChatUISettings": "ChatUISettings",
"ChatPauseSetting": "ChatPauseSetting",
"DeletedMessageDisplaySetting": "DeletedMessageDisplaySetting",
"CheerInfo": "CheerInfo",
"BadgeTierEmotesFilter": "BadgeTierEmotesFilter",
"CheermoteGroup": "CheermoteGroup",
"Cheermote": "Cheermote",
"CheermoteCampaign": "CheermoteCampaign",
"CheermoteCampaignSelfEdge": "CheermoteCampaignSelfEdge",
"CheermoteCampaignThreshold": "CheermoteCampaignThreshold",
"CheermoteTier": "CheermoteTier",
"ChatTheme": "ChatTheme",
"CheermoteImage": "CheermoteImage",
"CheermoteType": "CheermoteType",
"BitsHashtagConnection": "BitsHashtagConnection",
"BitsHashtagEdge": "BitsHashtagEdge",
"BitsHashtagEntry": "BitsHashtagEntry",
"CheerImage": "CheerImage",
"BitsLeaderboard": "BitsLeaderboard",
"BitsLeaderboardConnection": "BitsLeaderboardConnection",
"BitsLeaderboardEdge": "BitsLeaderboardEdge",
"BitsLeaderboardEntry": "BitsLeaderboardEntry",
"BitsLeaderboardItemConnection": "BitsLeaderboardItemConnection",
"BitsLeaderboardItemEdge": "BitsLeaderboardItemEdge",
"BitsLeaderboardItem": "BitsLeaderboardItem",
"CheerSettings": "CheerSettings",
"BitsLeaderboardSettings": "BitsLeaderboardSettings",
"ClientAuthorization": "ClientAuthorization",
"UserClipsInput": "UserClipsInput",
"CollectionsOptions": "CollectionsOptions",
"CollectionsConnection": "CollectionsConnection",
"CollectionsItemEdge": "CollectionsItemEdge",
"Collection": "Collection",
"CollectionConnection": "CollectionConnection",
"CollectionItemEdge": "CollectionItemEdge",
"CollectionItem": "CollectionItem",
"CollectionType": "CollectionType",
"CommunityPointsUserProperties": "CommunityPointsUserProperties",
"CommunityPointsLastViewedContentByTypeAndID": "CommunityPointsLastViewedContentByTypeAndID",
"Company": "Company",
"CompetitionPlayerState": "CompetitionPlayerState",
"CompetitionState": "CompetitionState",
"UserCompetitionRelationship": "UserCompetitionRelationship",
"CompetitionConnection": "CompetitionConnection",
"CompetitionEdge": "CompetitionEdge",
"Competition": "Competition",
"CompetitionFormat": "CompetitionFormat",
"FormatTypeDetails": "FormatTypeDetails",
"LeaderboardDetails": "LeaderboardDetails",
"TiebreakerLabel": "TiebreakerLabel",
"FormatType": "FormatType",
"CompetitionContactInfo": "CompetitionContactInfo",
"CompetitionParticipantType": "CompetitionParticipantType",
"CompetitionParticipantConnection": "CompetitionParticipantConnection",
"CompetitionParticipantEdge": "CompetitionParticipantEdge",
"CompetitionParticipant": "CompetitionParticipant",
"CompetitionPlayer": "CompetitionPlayer",
"CompetitionTeam": "CompetitionTeam",
"CompetitionTeamSelfEdge": "CompetitionTeamSelfEdge",
"CompetitionPhase": "CompetitionPhase",
"CompetitionLobby": "CompetitionLobby",
"CompetitionLobbyParticipant": "CompetitionLobbyParticipant",
"LobbyState": "LobbyState",
"PhaseState": "PhaseState",
"CompetitionPhaseType": "CompetitionPhaseType",
"CompetitionPlayerConnection": "CompetitionPlayerConnection",
"CompetitionPlayerEdge": "CompetitionPlayerEdge",
"RegistrationType": "RegistrationType",
"CompetitionSelfEdge": "CompetitionSelfEdge",
"CompetitionStandingConnection": "CompetitionStandingConnection",
"CompetitionStandingEdge": "CompetitionStandingEdge",
"CompetitionStanding": "CompetitionStanding",
"HistoricalCompetitionLobby": "HistoricalCompetitionLobby",
"CompetitionPlacement": "CompetitionPlacement",
"CompetitionTeamConnection": "CompetitionTeamConnection",
"CompetitionTeamEdge": "CompetitionTeamEdge",
"CompetitionVisibilityState": "CompetitionVisibilityState",
"CreatorGifting": "CreatorGifting",
"CreatorMetricsByInterval": "CreatorMetricsByInterval",
"CreatorMetricsByIntervalItem": "CreatorMetricsByIntervalItem",
"CreatorReferralLinkConnection": "CreatorReferralLinkConnection",
"CreatorReferralLinkEdge": "CreatorReferralLinkEdge",
"CreatorReferralLink": "CreatorReferralLink",
"CreatorReferralSummary": "CreatorReferralSummary",
"CreatorReferralSummaryDay": "CreatorReferralSummaryDay",
"CreatorReferralLinkStat": "CreatorReferralLinkStat",
"CreatorReferralTrend": "CreatorReferralTrend",
"DashboardActivityFeedActivityConnection": "DashboardActivityFeedActivityConnection",
"DashboardActivityFeedActivityEdge": "DashboardActivityFeedActivityEdge",
"DashboardActivityFeedActivity": "DashboardActivityFeedActivity",
"DashboardActivityFeedActivityAlertStatus": "DashboardActivityFeedActivityAlertStatus",
"DashboardAlertQueueActivityConnection": "DashboardAlertQueueActivityConnection",
"DashboardAlertQueueActivityEdge": "DashboardAlertQueueActivityEdge",
"DashboardAlertQueuePreferences": "DashboardAlertQueuePreferences",
"UserDirectoryConnection": "UserDirectoryConnection",
"DropCurrentSession": "DropCurrentSession",
"EditableChannelConnection": "EditableChannelConnection",
"EditableChannelEdge": "EditableChannelEdge",
"EditorConnection": "EditorConnection",
"EditorEdge": "EditorEdge",
"EmoteSetDomain": "EmoteSetDomain",
"EmoticonPrefix": "EmoticonPrefix",
"EmoticonPrefixState": "EmoticonPrefixState",
"EndorsedChannelConnection": "EndorsedChannelConnection",
"EndorsedChannelEdge": "EndorsedChannelEdge",
"ExpiredSubscriptionConnection": "ExpiredSubscriptionConnection",
"ExpiredSubscriptionEdge": "ExpiredSubscriptionEdge",
"ExpiredSubscription": "ExpiredSubscription",
"FeatureFlags": "FeatureFlags",
"Follow": "Follow",
"FollowedGamesType": "FollowedGamesType",
"FollowedGameConnection": "FollowedGameConnection",
"FollowedHostConnection": "FollowedHostConnection",
"FollowedLiveUserConnection": "FollowedLiveUserConnection",
"FollowedLiveUserEdge": "FollowedLiveUserEdge",
"FollowerConnection": "FollowerConnection",
"FollowerEdge": "FollowerEdge",
"ChannelNotificationSettings": "ChannelNotificationSettings",
"ChannelNotificationSetting": "ChannelNotificationSetting",
"FollowsFilter": "FollowsFilter",
"FollowConnection": "FollowConnection",
"FollowEdge": "FollowEdge",
"FriendConnection": "FriendConnection",
"FriendEdge": "FriendEdge",
"GoLiveNotificationConnection": "GoLiveNotificationConnection",
"GoLiveNotificationEdge": "GoLiveNotificationEdge",
"GoLiveNotification": "GoLiveNotification",
"Granularity": "Granularity",
"GoLiveNotificationTimeseries": "GoLiveNotificationTimeseries",
"GoLiveNotificationTimeseriesItem": "GoLiveNotificationTimeseriesItem",
"Hero": "Hero",
"HeroConfiguration": "HeroConfiguration",
"HeroAsset": "HeroAsset",
"HeroSkeleton": "HeroSkeleton",
"HeroAssetPosition": "HeroAssetPosition",
"HeroAssetType": "HeroAssetType",
"HostConnection": "HostConnection",
"HostEdge": "HostEdge",
"FriendSort": "FriendSort",
"IncomingFriendRequestConnection": "IncomingFriendRequestConnection",
"IncomingFriendRequestEdge": "IncomingFriendRequestEdge",
"SquadStreamInvitationConnection": "SquadStreamInvitationConnection",
"SquadStreamInvitation": "SquadStreamInvitation",
"SquadStreamInvitationNetworkType": "SquadStreamInvitationNetworkType",
"SquadStreamInvitationRejectedReason": "SquadStreamInvitationRejectedReason",
"SquadStream": "SquadStream",
"SquadStreamInvitationStatus": "SquadStreamInvitationStatus",
"SquadStreamStatus": "SquadStreamStatus",
"Inventory": "Inventory",
"UserDropAwardConnection": "UserDropAwardConnection",
"DropAward": "DropAward",
"UserDropReward": "UserDropReward",
"Team": "Team",
"CreatorTimeseriesMetrics": "CreatorTimeseriesMetrics",
"CreatorTimeseriesMetric": "CreatorTimeseriesMetric",
"CreatorTimeseriesItem": "CreatorTimeseriesItem",
"UserConnection": "UserConnection",
"UserEdge": "UserEdge",
"MemberMetricsRevealedParams": "MemberMetricsRevealedParams",
"ReferralsFilter": "ReferralsFilter",
"ReferralsDimension": "ReferralsDimension",
"VideoPlayReferrals": "VideoPlayReferrals",
"AggregatedReferrals": "AggregatedReferrals",
"KeyPoolConnection": "KeyPoolConnection",
"KeyPoolEdge": "KeyPoolEdge",
"KeyPoolNode": "KeyPoolNode",
"KeyBatchConnection": "KeyBatchConnection",
"KeyBatchEdge": "KeyBatchEdge",
"KeyBatchNode": "KeyBatchNode",
"KeyBatchStatus": "KeyBatchStatus",
"KeyPoolStatus": "KeyPoolStatus",
"Poll": "Poll",
"PollChoice": "PollChoice",
"PollChoiceSelfEdge": "PollChoiceSelfEdge",
"PollVoter": "PollVoter",
"PollVoterChoice": "PollVoterChoice",
"PollTokenBreakdown": "PollTokenBreakdown",
"PollVoteBreakdown": "PollVoteBreakdown",
"PollVoterConnectionSort": "PollVoterConnectionSort",
"PollVoterConnectionSortDirection": "PollVoterConnectionSortDirection",
"PollChoiceVoterConnection": "PollChoiceVoterConnection",
"PollVoterConnectionEdge": "PollVoterConnectionEdge",
"PollSelfEdge": "PollSelfEdge",
"PollSettings": "PollSettings",
"PollSettingsBitsVotes": "PollSettingsBitsVotes",
"PollSettingsCommunityPointsVotes": "PollSettingsCommunityPointsVotes",
"PollSettingsMultichoice": "PollSettingsMultichoice",
"PollSettingsSubscriberMultiplier": "PollSettingsSubscriberMultiplier",
"PollSettingsSubscriberOnly": "PollSettingsSubscriberOnly",
"PollStatus": "PollStatus",
"PollTopBitsContributor": "PollTopBitsContributor",
"PollTopCommunityPointsContributor": "PollTopCommunityPointsContributor",
"PollTopContributor": "PollTopContributor",
"LoyaltyBadge": "LoyaltyBadge",
"ModLogs": "ModLogs",
"ModLogsCommentConnection": "ModLogsCommentConnection",
"ModLogsCommentEdge": "ModLogsCommentEdge",
"ModLogsComment": "ModLogsComment",
"ModLogsCommentDetails": "ModLogsCommentDetails",
"ModLogsTargetedModActionsConnection": "ModLogsTargetedModActionsConnection",
"ModLogsTargetedModActionsEdge": "ModLogsTargetedModActionsEdge",
"ModLogsAccess": "ModLogsAccess",
"ModLogsAccessLevel": "ModLogsAccessLevel",
"ChannelUserRole": "ChannelUserRole",
"ModViewSettings": "ModViewSettings",
"TutorialState": "TutorialState",
"ModConnection": "ModConnection",
"ModEdge": "ModEdge",
"EventNotificationSetting": "EventNotificationSetting",
"PlatformEventSetting": "PlatformEventSetting",
"OnsiteNotificationDisplayType": "OnsiteNotificationDisplayType",
"OnsiteNotificationsCapability": "OnsiteNotificationsCapability",
"OnsiteNotificationConnection": "OnsiteNotificationConnection",
"OnsiteNotificationEdge": "OnsiteNotificationEdge",
"OnsiteNotification": "OnsiteNotification",
"OnsiteNotificationAction": "OnsiteNotificationAction",
"OnsiteNotificationContent": "OnsiteNotificationContent",
"OnsiteNotificationExternalLink": "OnsiteNotificationExternalLink",
"OnsiteNotificationRenderStyle": "OnsiteNotificationRenderStyle",
"OnsiteNotificationsSummary": "OnsiteNotificationsSummary",
"OnsiteNotificationsUnreadSummary": "OnsiteNotificationsUnreadSummary",
"OAuthAppConnection": "OAuthAppConnection",
"OAuthAppEdge": "OAuthAppEdge",
"OAuthApp": "OAuthApp",
"OAuthAppCategory": "OAuthAppCategory",
"Onboarding": "Onboarding",
"OnboardingInvitations": "OnboardingInvitations",
"PayoutInvite": "PayoutInvite",
"PayoutOnboardingCategory": "PayoutOnboardingCategory",
"PayoutOnboardingWorkflow": "PayoutOnboardingWorkflow",
"PayoutOnboardingStep": "PayoutOnboardingStep",
"PayoutRegistration": "PayoutRegistration",
"TaxInterviewType": "TaxInterviewType",
"TaxInterview": "TaxInterview",
"TaxInterviewOption": "TaxInterviewOption",
"TaxMismatchError": "TaxMismatchError",
"OrganizationInviteUserConnection": "OrganizationInviteUserConnection",
"OutgoingFriendRequestConnection": "OutgoingFriendRequestConnection",
"OutgoingFriendRequestEdge": "OutgoingFriendRequestEdge",
"Panel": "Panel",
"PanelType": "PanelType",
"PartnershipApplication": "PartnershipApplication",
"PayableStatus": "PayableStatus",
"PaymentIncentiveMetricsRollup": "PaymentIncentiveMetricsRollup",
"PaymentTransactionConnectionCriteriaInput": "PaymentTransactionConnectionCriteriaInput",
"PaymentTransactionSort": "PaymentTransactionSort",
"PaymentTransactionTypeFilter": "PaymentTransactionTypeFilter",
"PaymentTransactionConnection": "PaymentTransactionConnection",
"PaymentTransactionEdge": "PaymentTransactionEdge",
"PaymentTransaction": "PaymentTransaction",
"PaymentTransactionProduct": "PaymentTransactionProduct",
"PaymentTransactionType": "PaymentTransactionType",
"Payout": "Payout",
"PayoutHistory": "PayoutHistory",
"PayoutBalance": "PayoutBalance",
"PayoutPlan": "PayoutPlan",
"PayoutCategory": "PayoutCategory",
"PayoutPlanTag": "PayoutPlanTag",
"PollSort": "PollSort",
"PollConnection": "PollConnection",
"PollEdge": "PollEdge",
"UserPredictionSettings": "UserPredictionSettings",
"PrimePayoutDetails": "PrimePayoutDetails",
"PrimePayoutDetail": "PrimePayoutDetail",
"CurrentPrimePayout": "CurrentPrimePayout",
"DeferredPrimePayout": "DeferredPrimePayout",
"PrimeSettings": "PrimeSettings",
"PrimeEmoticons": "PrimeEmoticons",
"PrimeEmoticonsSetName": "PrimeEmoticonsSetName",
"SmiliesSet": "SmiliesSet",
"InvitationType": "InvitationType",
"ProgramAgreement": "ProgramAgreement",
"PurchaseOrder": "PurchaseOrder",
"PurchaseOrderFailureReason": "PurchaseOrderFailureReason",
"PurchaseOrderState": "PurchaseOrderState",
"Quests": "Quests",
"BuildACommunity": "BuildACommunity",
"QuestGoalInt": "QuestGoalInt",
"ItBegins": "ItBegins",
"PathToAffiliate": "PathToAffiliate",
"QuestGoalFloat": "QuestGoalFloat",
"AffiliateInvitationStatus": "AffiliateInvitationStatus",
"PathToPartner": "PathToPartner",
"QuestEvaluationInterval": "QuestEvaluationInterval",
"Radio": "Radio",
"RadioAccount": "RadioAccount",
"RadioPlaylist": "RadioPlaylist",
"RadioPlaylistFilter": "RadioPlaylistFilter",
"RadioRecentlyPlayedFilter": "RadioRecentlyPlayedFilter",
"RadioRecentlyPlayed": "RadioRecentlyPlayed",
"RadioRecentlyPlayedType": "RadioRecentlyPlayedType",
"RadioStation": "RadioStation",
"Raid": "Raid",
"RaidSettings": "RaidSettings",
"IncomingRaidsPolicy": "IncomingRaidsPolicy",
"RecommendationFeedbackConnection": "RecommendationFeedbackConnection",
"RecommendationFeedbackEdge": "RecommendationFeedbackEdge",
"RecommendationFeedback": "RecommendationFeedback",