@metatrongg/sdk 0.8.0-dev.e892968 → 0.8.0-dev.f0f6902

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.
@@ -485,9 +485,16 @@ type PublicAppPage = {
485
485
  chapters: AppPageChapters;
486
486
  links: AppPageLinks;
487
487
  studio: PublicAppPageStudio;
488
+ platforms: AppPagePlatforms;
489
+ gameType: AppPageGameType;
490
+ ageRating: AppPageAgeRating;
491
+ languages: AppPageLanguages;
492
+ releaseStatus: AppPageReleaseStatus;
493
+ paymentsMode: AppPagePaymentsMode;
488
494
  oauthScopes: Array<string>;
489
495
  chains: Array<string>;
490
496
  publishedAt: string;
497
+ updatedAt: string;
491
498
  };
492
499
  type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
493
500
  type AppPageTagline = string;
@@ -510,12 +517,19 @@ type AppPageLink = {
510
517
  order: number;
511
518
  };
512
519
  type PublicAppPageStudio = {
520
+ ownerUserId: string | null;
513
521
  name: string | null;
514
522
  logoUrl: string | null;
515
523
  websiteUrl: string | null;
516
524
  xHandle: string | null;
517
525
  githubUrl: string | null;
518
526
  };
527
+ type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
528
+ type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
529
+ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
530
+ type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
531
+ type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
532
+ type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
519
533
  type ReviewListResponse = {
520
534
  aggregate: ReviewAggregate;
521
535
  reviews: Array<Review>;
@@ -523,38 +537,49 @@ type ReviewListResponse = {
523
537
  hasMore: boolean;
524
538
  };
525
539
  type ReviewAggregate = {
526
- average: number | null;
527
540
  count: number;
528
- distribution: ReviewDistribution;
529
- };
530
- type ReviewDistribution = {
531
- 1: number;
532
- 2: number;
533
- 3: number;
534
- 4: number;
535
- 5: number;
541
+ recommendedCount: number;
542
+ recommendedPct: number | null;
543
+ summaryLabel: ReviewSummaryLabel;
536
544
  };
545
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
537
546
  type Review = {
538
547
  id: string;
539
- rating: ReviewRating;
548
+ recommended: ReviewRecommended;
540
549
  body: ReviewBody;
550
+ reactions: ReviewReactionCounts;
551
+ tippedCents: number;
552
+ commentCount: number;
541
553
  author: ReviewAuthor;
554
+ authorStats: ReviewerStats;
542
555
  developerReply: ReviewReply;
543
556
  createdAt: string;
544
557
  updatedAt: string;
545
558
  };
546
- type ReviewRating = number;
559
+ type ReviewRecommended = boolean;
547
560
  type ReviewBody = string;
561
+ type ReviewReactionCounts = {
562
+ helpful: number;
563
+ unhelpful: number;
564
+ funny: number;
565
+ };
548
566
  type ReviewAuthor = {
567
+ userId: string;
568
+ handle: string | null;
549
569
  name: string | null;
550
570
  avatarUrl: string | null;
551
571
  };
572
+ type ReviewerStats = {
573
+ playtimeSecondsThisGame: number;
574
+ gamesPlayed: number;
575
+ reviewsWritten: number;
576
+ };
552
577
  type ReviewReply = {
553
578
  body: ReviewReplyBody;
554
579
  repliedAt: string;
555
580
  } | null;
556
581
  type ReviewReplyBody = string;
557
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
582
+ type ReviewSort = "newest" | "oldest" | "helpful";
558
583
  type MyReviewResponse = {
559
584
  eligible: boolean;
560
585
  eligibleVia: ReviewEligibilityReason;
@@ -564,15 +589,65 @@ type MyReviewResponse = {
564
589
  type ReviewEligibilityReason = "payment" | "reward" | null;
565
590
  type OwnReview = {
566
591
  id: string;
567
- rating: ReviewRating;
592
+ recommended: ReviewRecommended;
568
593
  body: ReviewBody;
569
594
  createdAt: string;
570
595
  updatedAt: string;
571
596
  } | null;
572
597
  type UpsertReviewRequest = {
573
- rating: ReviewRating;
598
+ recommended: ReviewRecommended;
574
599
  body: ReviewBody;
575
600
  };
601
+ type MyReviewReactionsResponse = {
602
+ reactions: Array<MyReviewReaction>;
603
+ };
604
+ type MyReviewReaction = {
605
+ reviewId: string;
606
+ vote: ReviewVote;
607
+ funny: boolean;
608
+ };
609
+ type ReviewVote = "helpful" | "unhelpful" | null;
610
+ type SetReviewReactionResponse = {
611
+ reactions: ReviewReactionCounts;
612
+ vote: ReviewVote;
613
+ funny: boolean;
614
+ };
615
+ type SetReviewReactionRequest = {
616
+ vote: ReviewVote;
617
+ funny: boolean;
618
+ };
619
+ type TipReviewResponse = {
620
+ status: "completed";
621
+ amountCents: number;
622
+ balanceCents: number;
623
+ tippedCents: number;
624
+ };
625
+ type TipReviewRequest = {
626
+ amountCents: number;
627
+ note?: string;
628
+ };
629
+ type ReviewCommentListResponse = {
630
+ comments: Array<ReviewComment>;
631
+ total: number;
632
+ hasMore: boolean;
633
+ };
634
+ type ReviewComment = {
635
+ id: string;
636
+ body: ReviewCommentBody;
637
+ author: ReviewAuthor;
638
+ createdAt: string;
639
+ };
640
+ type ReviewCommentBody = string;
641
+ type CreateReviewCommentResponse = {
642
+ comment: ReviewComment;
643
+ commentCount: number;
644
+ };
645
+ type CreateReviewCommentRequest = {
646
+ body: ReviewCommentBody;
647
+ };
648
+ type DeleteReviewCommentResponse = {
649
+ commentCount: number;
650
+ };
576
651
  type ReviewReplyResponse = {
577
652
  developerReply: ReviewReply;
578
653
  };
@@ -680,6 +755,8 @@ type ActivityRow = ({
680
755
  } & ActivityRowTronPot) | ({
681
756
  kind: "tron_cashout";
682
757
  } & ActivityRowTronCashout) | ({
758
+ kind: "tron_transfer";
759
+ } & ActivityRowTronTransfer) | ({
683
760
  kind: "referral_earning";
684
761
  } & ActivityRowReferralEarning);
685
762
  type ActivityRowPayment = {
@@ -963,6 +1040,20 @@ type ActivityRowTronCashout = {
963
1040
  rejectionReason: string | null;
964
1041
  settledAt: string | null;
965
1042
  };
1043
+ type ActivityRowTronTransfer = {
1044
+ kind: "tron_transfer";
1045
+ groupId: string | null;
1046
+ id: string;
1047
+ occurredAt: string;
1048
+ role: "incoming" | "outgoing";
1049
+ amountCents: number;
1050
+ usdCents: number;
1051
+ status: "settled";
1052
+ counterpartyUserId: string | null;
1053
+ counterpartyHandle: string | null;
1054
+ counterpartyDisplayName: string | null;
1055
+ note: string | null;
1056
+ };
966
1057
  type ActivityRowReferralEarning = {
967
1058
  kind: "referral_earning";
968
1059
  groupId: string | null;
@@ -1028,7 +1119,7 @@ type TronLedgerResponse = {
1028
1119
  };
1029
1120
  type TronLedgerEntry = {
1030
1121
  id: string;
1031
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
1122
+ kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
1032
1123
  amountCents: number;
1033
1124
  currency: string;
1034
1125
  createdAt: string;
@@ -1043,6 +1134,21 @@ type TronDepositResponse = {
1043
1134
  type TronDepositRequest = {
1044
1135
  amountCents: number;
1045
1136
  };
1137
+ type TronTransferResponse = {
1138
+ status: "completed";
1139
+ amountCents: number;
1140
+ balanceCents: number;
1141
+ recipient: {
1142
+ userId: string;
1143
+ handle: string | null;
1144
+ displayName: string | null;
1145
+ };
1146
+ };
1147
+ type TronTransferRequest = {
1148
+ recipientUserId: string;
1149
+ amountCents: number;
1150
+ note?: string;
1151
+ };
1046
1152
  type TronGameBalanceResponse = {
1047
1153
  balanceCents: number;
1048
1154
  rakeBps: number;
@@ -1823,7 +1929,7 @@ type ProfileRecentReview = {
1823
1929
  appId: string;
1824
1930
  appName: string;
1825
1931
  appLogoUrl: string | null;
1826
- rating: number;
1932
+ recommended: boolean;
1827
1933
  body: string;
1828
1934
  createdAt: string;
1829
1935
  };
@@ -2183,6 +2289,11 @@ type AppPageDraft = {
2183
2289
  gallery: AppPageGallery;
2184
2290
  chapters: AppPageChapters;
2185
2291
  links: AppPageLinks;
2292
+ platforms: AppPagePlatforms;
2293
+ gameType: AppPageGameType;
2294
+ ageRating: AppPageAgeRating;
2295
+ languages: AppPageLanguages;
2296
+ releaseStatus: AppPageReleaseStatus;
2186
2297
  firstPublishedAt: string | null;
2187
2298
  reviewedAt: string | null;
2188
2299
  reviewNotes: string | null;
@@ -2205,6 +2316,11 @@ type UpdateAppPage = {
2205
2316
  gallery?: AppPageGallery;
2206
2317
  chapters?: AppPageChapters;
2207
2318
  links?: AppPageLinks;
2319
+ platforms?: AppPagePlatforms;
2320
+ gameType?: AppPageGameType;
2321
+ ageRating?: AppPageAgeRating;
2322
+ languages?: AppPageLanguages;
2323
+ releaseStatus?: AppPageReleaseStatus;
2208
2324
  };
2209
2325
  type AppPageGalleryUploadResponse = {
2210
2326
  url: string;
@@ -3642,6 +3758,194 @@ type PutMeReviewsBySlugResponses = {
3642
3758
  200: MyReviewResponse;
3643
3759
  };
3644
3760
  type PutMeReviewsBySlugResponse = PutMeReviewsBySlugResponses[keyof PutMeReviewsBySlugResponses];
3761
+ type GetMeReviewsBySlugReactionsData = {
3762
+ body?: never;
3763
+ path: {
3764
+ slug: string;
3765
+ };
3766
+ query?: never;
3767
+ url: "/me/reviews/{slug}/reactions";
3768
+ };
3769
+ type GetMeReviewsBySlugReactionsErrors = {
3770
+ /**
3771
+ * Request error
3772
+ */
3773
+ 401: ErrorResponse;
3774
+ /**
3775
+ * Request error
3776
+ */
3777
+ 404: ErrorResponse;
3778
+ };
3779
+ type GetMeReviewsBySlugReactionsError = GetMeReviewsBySlugReactionsErrors[keyof GetMeReviewsBySlugReactionsErrors];
3780
+ type GetMeReviewsBySlugReactionsResponses = {
3781
+ /**
3782
+ * The caller's per-review reactions
3783
+ */
3784
+ 200: MyReviewReactionsResponse;
3785
+ };
3786
+ type GetMeReviewsBySlugReactionsResponse = GetMeReviewsBySlugReactionsResponses[keyof GetMeReviewsBySlugReactionsResponses];
3787
+ type PostMeReviewsBySlugReactionsByReviewIdData = {
3788
+ body?: SetReviewReactionRequest;
3789
+ path: {
3790
+ slug: string;
3791
+ reviewId: string;
3792
+ };
3793
+ query?: never;
3794
+ url: "/me/reviews/{slug}/reactions/{reviewId}";
3795
+ };
3796
+ type PostMeReviewsBySlugReactionsByReviewIdErrors = {
3797
+ /**
3798
+ * Request error
3799
+ */
3800
+ 400: ErrorResponse;
3801
+ /**
3802
+ * Request error
3803
+ */
3804
+ 401: ErrorResponse;
3805
+ /**
3806
+ * Request error
3807
+ */
3808
+ 403: ErrorResponse;
3809
+ /**
3810
+ * Request error
3811
+ */
3812
+ 404: ErrorResponse;
3813
+ };
3814
+ type PostMeReviewsBySlugReactionsByReviewIdError = PostMeReviewsBySlugReactionsByReviewIdErrors[keyof PostMeReviewsBySlugReactionsByReviewIdErrors];
3815
+ type PostMeReviewsBySlugReactionsByReviewIdResponses = {
3816
+ /**
3817
+ * The review's updated reaction counts + the caller's stored state
3818
+ */
3819
+ 200: SetReviewReactionResponse;
3820
+ };
3821
+ type PostMeReviewsBySlugReactionsByReviewIdResponse = PostMeReviewsBySlugReactionsByReviewIdResponses[keyof PostMeReviewsBySlugReactionsByReviewIdResponses];
3822
+ type PostMeReviewsBySlugTipsByReviewIdData = {
3823
+ body?: TipReviewRequest;
3824
+ path: {
3825
+ slug: string;
3826
+ reviewId: string;
3827
+ };
3828
+ query?: never;
3829
+ url: "/me/reviews/{slug}/tips/{reviewId}";
3830
+ };
3831
+ type PostMeReviewsBySlugTipsByReviewIdErrors = {
3832
+ /**
3833
+ * Request error
3834
+ */
3835
+ 400: ErrorResponse;
3836
+ /**
3837
+ * Request error
3838
+ */
3839
+ 401: ErrorResponse;
3840
+ /**
3841
+ * Request error
3842
+ */
3843
+ 403: ErrorResponse;
3844
+ /**
3845
+ * Request error
3846
+ */
3847
+ 404: ErrorResponse;
3848
+ /**
3849
+ * Request error
3850
+ */
3851
+ 409: ErrorResponse;
3852
+ };
3853
+ type PostMeReviewsBySlugTipsByReviewIdError = PostMeReviewsBySlugTipsByReviewIdErrors[keyof PostMeReviewsBySlugTipsByReviewIdErrors];
3854
+ type PostMeReviewsBySlugTipsByReviewIdResponses = {
3855
+ /**
3856
+ * Tip completed; the sender's balance after + the review's new total tipped
3857
+ */
3858
+ 200: TipReviewResponse;
3859
+ };
3860
+ type PostMeReviewsBySlugTipsByReviewIdResponse = PostMeReviewsBySlugTipsByReviewIdResponses[keyof PostMeReviewsBySlugTipsByReviewIdResponses];
3861
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsData = {
3862
+ body?: never;
3863
+ path: {
3864
+ slug: string;
3865
+ reviewId: string;
3866
+ };
3867
+ query?: {
3868
+ limit?: number;
3869
+ offset?: number | null;
3870
+ };
3871
+ url: "/public/apps/{slug}/reviews/{reviewId}/comments";
3872
+ };
3873
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors = {
3874
+ /**
3875
+ * Request error
3876
+ */
3877
+ 400: ErrorResponse;
3878
+ /**
3879
+ * Request error
3880
+ */
3881
+ 404: ErrorResponse;
3882
+ };
3883
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsError = GetPublicAppsBySlugReviewsByReviewIdCommentsErrors[keyof GetPublicAppsBySlugReviewsByReviewIdCommentsErrors];
3884
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses = {
3885
+ /**
3886
+ * The review's comment page
3887
+ */
3888
+ 200: ReviewCommentListResponse;
3889
+ };
3890
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse = GetPublicAppsBySlugReviewsByReviewIdCommentsResponses[keyof GetPublicAppsBySlugReviewsByReviewIdCommentsResponses];
3891
+ type PostMeReviewsBySlugCommentsByReviewIdData = {
3892
+ body?: CreateReviewCommentRequest;
3893
+ path: {
3894
+ slug: string;
3895
+ reviewId: string;
3896
+ };
3897
+ query?: never;
3898
+ url: "/me/reviews/{slug}/comments/{reviewId}";
3899
+ };
3900
+ type PostMeReviewsBySlugCommentsByReviewIdErrors = {
3901
+ /**
3902
+ * Request error
3903
+ */
3904
+ 400: ErrorResponse;
3905
+ /**
3906
+ * Request error
3907
+ */
3908
+ 401: ErrorResponse;
3909
+ /**
3910
+ * Request error
3911
+ */
3912
+ 404: ErrorResponse;
3913
+ };
3914
+ type PostMeReviewsBySlugCommentsByReviewIdError = PostMeReviewsBySlugCommentsByReviewIdErrors[keyof PostMeReviewsBySlugCommentsByReviewIdErrors];
3915
+ type PostMeReviewsBySlugCommentsByReviewIdResponses = {
3916
+ /**
3917
+ * The created comment + the review's new comment count
3918
+ */
3919
+ 201: CreateReviewCommentResponse;
3920
+ };
3921
+ type PostMeReviewsBySlugCommentsByReviewIdResponse = PostMeReviewsBySlugCommentsByReviewIdResponses[keyof PostMeReviewsBySlugCommentsByReviewIdResponses];
3922
+ type DeleteMeReviewsBySlugCommentsByCommentIdData = {
3923
+ body?: never;
3924
+ path: {
3925
+ slug: string;
3926
+ commentId: string;
3927
+ };
3928
+ query?: never;
3929
+ url: "/me/reviews/{slug}/comments/{commentId}";
3930
+ };
3931
+ type DeleteMeReviewsBySlugCommentsByCommentIdErrors = {
3932
+ /**
3933
+ * Request error
3934
+ */
3935
+ 401: ErrorResponse;
3936
+ /**
3937
+ * Request error
3938
+ */
3939
+ 404: ErrorResponse;
3940
+ };
3941
+ type DeleteMeReviewsBySlugCommentsByCommentIdError = DeleteMeReviewsBySlugCommentsByCommentIdErrors[keyof DeleteMeReviewsBySlugCommentsByCommentIdErrors];
3942
+ type DeleteMeReviewsBySlugCommentsByCommentIdResponses = {
3943
+ /**
3944
+ * Comment removed; the review's new comment count
3945
+ */
3946
+ 200: DeleteReviewCommentResponse;
3947
+ };
3948
+ type DeleteMeReviewsBySlugCommentsByCommentIdResponse = DeleteMeReviewsBySlugCommentsByCommentIdResponses[keyof DeleteMeReviewsBySlugCommentsByCommentIdResponses];
3645
3949
  type GetMeDeveloperAppsByAppIdReviewsData = {
3646
3950
  body?: never;
3647
3951
  path: {
@@ -4165,6 +4469,42 @@ type PostPaymentsMeTronDepositResponses = {
4165
4469
  200: TronDepositResponse;
4166
4470
  };
4167
4471
  type PostPaymentsMeTronDepositResponse = PostPaymentsMeTronDepositResponses[keyof PostPaymentsMeTronDepositResponses];
4472
+ type PostPaymentsMeTronTransferData = {
4473
+ body: TronTransferRequest;
4474
+ path?: never;
4475
+ query?: never;
4476
+ url: "/payments/me/tron/transfer";
4477
+ };
4478
+ type PostPaymentsMeTronTransferErrors = {
4479
+ /**
4480
+ * Request error
4481
+ */
4482
+ 400: ErrorResponse;
4483
+ /**
4484
+ * Request error
4485
+ */
4486
+ 401: ErrorResponse;
4487
+ /**
4488
+ * Request error
4489
+ */
4490
+ 404: ErrorResponse;
4491
+ /**
4492
+ * Request error
4493
+ */
4494
+ 409: ErrorResponse;
4495
+ /**
4496
+ * Request error
4497
+ */
4498
+ 503: ErrorResponse;
4499
+ };
4500
+ type PostPaymentsMeTronTransferError = PostPaymentsMeTronTransferErrors[keyof PostPaymentsMeTronTransferErrors];
4501
+ type PostPaymentsMeTronTransferResponses = {
4502
+ /**
4503
+ * Transfer completed; carries the sender's remaining balance + recipient identity
4504
+ */
4505
+ 200: TronTransferResponse;
4506
+ };
4507
+ type PostPaymentsMeTronTransferResponse = PostPaymentsMeTronTransferResponses[keyof PostPaymentsMeTronTransferResponses];
4168
4508
  type GetOauthPaymentsTronBalanceData = {
4169
4509
  body?: never;
4170
4510
  path?: never;
@@ -10534,12 +10874,63 @@ declare const zAppPageLinks: z$1.ZodArray<z$1.ZodObject<{
10534
10874
  order: z$1.ZodInt;
10535
10875
  }, z$1.core.$strip>>;
10536
10876
  declare const zPublicAppPageStudio: z$1.ZodObject<{
10877
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
10537
10878
  name: z$1.ZodNullable<z$1.ZodString>;
10538
10879
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
10539
10880
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
10540
10881
  xHandle: z$1.ZodNullable<z$1.ZodString>;
10541
10882
  githubUrl: z$1.ZodNullable<z$1.ZodURL>;
10542
10883
  }, z$1.core.$strip>;
10884
+ declare const zAppPagePlatforms: z$1.ZodArray<z$1.ZodEnum<{
10885
+ web: "web";
10886
+ ios: "ios";
10887
+ android: "android";
10888
+ pc: "pc";
10889
+ playstation: "playstation";
10890
+ xbox: "xbox";
10891
+ switch: "switch";
10892
+ }>>;
10893
+ declare const zAppPageGameType: z$1.ZodNullable<z$1.ZodEnum<{
10894
+ single_player: "single_player";
10895
+ multiplayer: "multiplayer";
10896
+ both: "both";
10897
+ }>>;
10898
+ declare const zAppPageAgeRating: z$1.ZodNullable<z$1.ZodEnum<{
10899
+ everyone: "everyone";
10900
+ "13_plus": "13_plus";
10901
+ "16_plus": "16_plus";
10902
+ "18_plus": "18_plus";
10903
+ }>>;
10904
+ declare const zAppPageLanguages: z$1.ZodArray<z$1.ZodEnum<{
10905
+ id: "id";
10906
+ en: "en";
10907
+ es: "es";
10908
+ fr: "fr";
10909
+ de: "de";
10910
+ pt: "pt";
10911
+ it: "it";
10912
+ ru: "ru";
10913
+ ja: "ja";
10914
+ ko: "ko";
10915
+ zh: "zh";
10916
+ hi: "hi";
10917
+ ar: "ar";
10918
+ tr: "tr";
10919
+ vi: "vi";
10920
+ th: "th";
10921
+ pl: "pl";
10922
+ nl: "nl";
10923
+ }>>;
10924
+ declare const zAppPageReleaseStatus: z$1.ZodEnum<{
10925
+ live: "live";
10926
+ open_beta: "open_beta";
10927
+ coming_soon: "coming_soon";
10928
+ }>;
10929
+ declare const zAppPagePaymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
10930
+ both: "both";
10931
+ tron: "tron";
10932
+ onchain: "onchain";
10933
+ }>>;
10543
10934
  declare const zPublicAppPage: z$1.ZodObject<{
10544
10935
  appId: z$1.ZodUUID;
10545
10936
  slug: z$1.ZodString;
@@ -10598,40 +10989,111 @@ declare const zPublicAppPage: z$1.ZodObject<{
10598
10989
  order: z$1.ZodInt;
10599
10990
  }, z$1.core.$strip>>;
10600
10991
  studio: z$1.ZodObject<{
10992
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
10601
10993
  name: z$1.ZodNullable<z$1.ZodString>;
10602
10994
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
10603
10995
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
10604
10996
  xHandle: z$1.ZodNullable<z$1.ZodString>;
10605
10997
  githubUrl: z$1.ZodNullable<z$1.ZodURL>;
10606
10998
  }, z$1.core.$strip>;
10999
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
11000
+ web: "web";
11001
+ ios: "ios";
11002
+ android: "android";
11003
+ pc: "pc";
11004
+ playstation: "playstation";
11005
+ xbox: "xbox";
11006
+ switch: "switch";
11007
+ }>>;
11008
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
11009
+ single_player: "single_player";
11010
+ multiplayer: "multiplayer";
11011
+ both: "both";
11012
+ }>>;
11013
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
11014
+ everyone: "everyone";
11015
+ "13_plus": "13_plus";
11016
+ "16_plus": "16_plus";
11017
+ "18_plus": "18_plus";
11018
+ }>>;
11019
+ languages: z$1.ZodArray<z$1.ZodEnum<{
11020
+ id: "id";
11021
+ en: "en";
11022
+ es: "es";
11023
+ fr: "fr";
11024
+ de: "de";
11025
+ pt: "pt";
11026
+ it: "it";
11027
+ ru: "ru";
11028
+ ja: "ja";
11029
+ ko: "ko";
11030
+ zh: "zh";
11031
+ hi: "hi";
11032
+ ar: "ar";
11033
+ tr: "tr";
11034
+ vi: "vi";
11035
+ th: "th";
11036
+ pl: "pl";
11037
+ nl: "nl";
11038
+ }>>;
11039
+ releaseStatus: z$1.ZodEnum<{
11040
+ live: "live";
11041
+ open_beta: "open_beta";
11042
+ coming_soon: "coming_soon";
11043
+ }>;
11044
+ paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
11045
+ both: "both";
11046
+ tron: "tron";
11047
+ onchain: "onchain";
11048
+ }>>;
10607
11049
  oauthScopes: z$1.ZodArray<z$1.ZodString>;
10608
11050
  chains: z$1.ZodArray<z$1.ZodString>;
10609
11051
  publishedAt: z$1.ZodISODateTime;
11052
+ updatedAt: z$1.ZodISODateTime;
10610
11053
  }, z$1.core.$strip>;
10611
- declare const zReviewDistribution: z$1.ZodObject<{
10612
- 1: z$1.ZodInt;
10613
- 2: z$1.ZodInt;
10614
- 3: z$1.ZodInt;
10615
- 4: z$1.ZodInt;
10616
- 5: z$1.ZodInt;
10617
- }, z$1.core.$strip>;
11054
+ declare const zReviewSummaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
11055
+ overwhelmingly_positive: "overwhelmingly_positive";
11056
+ very_positive: "very_positive";
11057
+ positive: "positive";
11058
+ mostly_positive: "mostly_positive";
11059
+ mixed: "mixed";
11060
+ mostly_negative: "mostly_negative";
11061
+ negative: "negative";
11062
+ overwhelmingly_negative: "overwhelmingly_negative";
11063
+ }>>;
10618
11064
  declare const zReviewAggregate: z$1.ZodObject<{
10619
- average: z$1.ZodNullable<z$1.ZodNumber>;
10620
11065
  count: z$1.ZodInt;
10621
- distribution: z$1.ZodObject<{
10622
- 1: z$1.ZodInt;
10623
- 2: z$1.ZodInt;
10624
- 3: z$1.ZodInt;
10625
- 4: z$1.ZodInt;
10626
- 5: z$1.ZodInt;
10627
- }, z$1.core.$strip>;
11066
+ recommendedCount: z$1.ZodInt;
11067
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
11068
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
11069
+ overwhelmingly_positive: "overwhelmingly_positive";
11070
+ very_positive: "very_positive";
11071
+ positive: "positive";
11072
+ mostly_positive: "mostly_positive";
11073
+ mixed: "mixed";
11074
+ mostly_negative: "mostly_negative";
11075
+ negative: "negative";
11076
+ overwhelmingly_negative: "overwhelmingly_negative";
11077
+ }>>;
10628
11078
  }, z$1.core.$strip>;
10629
- declare const zReviewRating: z$1.ZodInt;
11079
+ declare const zReviewRecommended: z$1.ZodBoolean;
10630
11080
  declare const zReviewBody: z$1.ZodString;
11081
+ declare const zReviewReactionCounts: z$1.ZodObject<{
11082
+ helpful: z$1.ZodInt;
11083
+ unhelpful: z$1.ZodInt;
11084
+ funny: z$1.ZodInt;
11085
+ }, z$1.core.$strip>;
10631
11086
  declare const zReviewAuthor: z$1.ZodObject<{
11087
+ userId: z$1.ZodUUID;
11088
+ handle: z$1.ZodNullable<z$1.ZodString>;
10632
11089
  name: z$1.ZodNullable<z$1.ZodString>;
10633
11090
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10634
11091
  }, z$1.core.$strip>;
11092
+ declare const zReviewerStats: z$1.ZodObject<{
11093
+ playtimeSecondsThisGame: z$1.ZodInt;
11094
+ gamesPlayed: z$1.ZodInt;
11095
+ reviewsWritten: z$1.ZodInt;
11096
+ }, z$1.core.$strip>;
10635
11097
  declare const zReviewReplyBody: z$1.ZodString;
10636
11098
  declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
10637
11099
  body: z$1.ZodString;
@@ -10639,12 +11101,26 @@ declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
10639
11101
  }, z$1.core.$strip>>;
10640
11102
  declare const zReview: z$1.ZodObject<{
10641
11103
  id: z$1.ZodUUID;
10642
- rating: z$1.ZodInt;
11104
+ recommended: z$1.ZodBoolean;
10643
11105
  body: z$1.ZodString;
11106
+ reactions: z$1.ZodObject<{
11107
+ helpful: z$1.ZodInt;
11108
+ unhelpful: z$1.ZodInt;
11109
+ funny: z$1.ZodInt;
11110
+ }, z$1.core.$strip>;
11111
+ tippedCents: z$1.ZodInt;
11112
+ commentCount: z$1.ZodInt;
10644
11113
  author: z$1.ZodObject<{
11114
+ userId: z$1.ZodUUID;
11115
+ handle: z$1.ZodNullable<z$1.ZodString>;
10645
11116
  name: z$1.ZodNullable<z$1.ZodString>;
10646
11117
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10647
11118
  }, z$1.core.$strip>;
11119
+ authorStats: z$1.ZodObject<{
11120
+ playtimeSecondsThisGame: z$1.ZodInt;
11121
+ gamesPlayed: z$1.ZodInt;
11122
+ reviewsWritten: z$1.ZodInt;
11123
+ }, z$1.core.$strip>;
10648
11124
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10649
11125
  body: z$1.ZodString;
10650
11126
  repliedAt: z$1.ZodISODateTime;
@@ -10654,24 +11130,42 @@ declare const zReview: z$1.ZodObject<{
10654
11130
  }, z$1.core.$strip>;
10655
11131
  declare const zReviewListResponse: z$1.ZodObject<{
10656
11132
  aggregate: z$1.ZodObject<{
10657
- average: z$1.ZodNullable<z$1.ZodNumber>;
10658
11133
  count: z$1.ZodInt;
10659
- distribution: z$1.ZodObject<{
10660
- 1: z$1.ZodInt;
10661
- 2: z$1.ZodInt;
10662
- 3: z$1.ZodInt;
10663
- 4: z$1.ZodInt;
10664
- 5: z$1.ZodInt;
10665
- }, z$1.core.$strip>;
11134
+ recommendedCount: z$1.ZodInt;
11135
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
11136
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
11137
+ overwhelmingly_positive: "overwhelmingly_positive";
11138
+ very_positive: "very_positive";
11139
+ positive: "positive";
11140
+ mostly_positive: "mostly_positive";
11141
+ mixed: "mixed";
11142
+ mostly_negative: "mostly_negative";
11143
+ negative: "negative";
11144
+ overwhelmingly_negative: "overwhelmingly_negative";
11145
+ }>>;
10666
11146
  }, z$1.core.$strip>;
10667
11147
  reviews: z$1.ZodArray<z$1.ZodObject<{
10668
11148
  id: z$1.ZodUUID;
10669
- rating: z$1.ZodInt;
11149
+ recommended: z$1.ZodBoolean;
10670
11150
  body: z$1.ZodString;
11151
+ reactions: z$1.ZodObject<{
11152
+ helpful: z$1.ZodInt;
11153
+ unhelpful: z$1.ZodInt;
11154
+ funny: z$1.ZodInt;
11155
+ }, z$1.core.$strip>;
11156
+ tippedCents: z$1.ZodInt;
11157
+ commentCount: z$1.ZodInt;
10671
11158
  author: z$1.ZodObject<{
11159
+ userId: z$1.ZodUUID;
11160
+ handle: z$1.ZodNullable<z$1.ZodString>;
10672
11161
  name: z$1.ZodNullable<z$1.ZodString>;
10673
11162
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10674
11163
  }, z$1.core.$strip>;
11164
+ authorStats: z$1.ZodObject<{
11165
+ playtimeSecondsThisGame: z$1.ZodInt;
11166
+ gamesPlayed: z$1.ZodInt;
11167
+ reviewsWritten: z$1.ZodInt;
11168
+ }, z$1.core.$strip>;
10675
11169
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10676
11170
  body: z$1.ZodString;
10677
11171
  repliedAt: z$1.ZodISODateTime;
@@ -10683,10 +11177,9 @@ declare const zReviewListResponse: z$1.ZodObject<{
10683
11177
  hasMore: z$1.ZodBoolean;
10684
11178
  }, z$1.core.$strip>;
10685
11179
  declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
11180
+ helpful: "helpful";
10686
11181
  newest: "newest";
10687
11182
  oldest: "oldest";
10688
- highest: "highest";
10689
- lowest: "lowest";
10690
11183
  }>>;
10691
11184
  declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
10692
11185
  payment: "payment";
@@ -10694,7 +11187,7 @@ declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
10694
11187
  }>>;
10695
11188
  declare const zOwnReview: z$1.ZodNullable<z$1.ZodObject<{
10696
11189
  id: z$1.ZodUUID;
10697
- rating: z$1.ZodInt;
11190
+ recommended: z$1.ZodBoolean;
10698
11191
  body: z$1.ZodString;
10699
11192
  createdAt: z$1.ZodISODateTime;
10700
11193
  updatedAt: z$1.ZodISODateTime;
@@ -10707,17 +11200,117 @@ declare const zMyReviewResponse: z$1.ZodObject<{
10707
11200
  }>>;
10708
11201
  review: z$1.ZodNullable<z$1.ZodObject<{
10709
11202
  id: z$1.ZodUUID;
10710
- rating: z$1.ZodInt;
11203
+ recommended: z$1.ZodBoolean;
10711
11204
  body: z$1.ZodString;
10712
11205
  createdAt: z$1.ZodISODateTime;
10713
11206
  updatedAt: z$1.ZodISODateTime;
10714
11207
  }, z$1.core.$strip>>;
10715
11208
  isAppOwner: z$1.ZodBoolean;
10716
11209
  }, z$1.core.$strip>;
10717
- declare const zUpsertReviewRequest: z$1.ZodObject<{
10718
- rating: z$1.ZodInt;
11210
+ declare const zUpsertReviewRequest: z$1.ZodObject<{
11211
+ recommended: z$1.ZodBoolean;
11212
+ body: z$1.ZodString;
11213
+ }, z$1.core.$strip>;
11214
+ declare const zReviewVote: z$1.ZodNullable<z$1.ZodEnum<{
11215
+ helpful: "helpful";
11216
+ unhelpful: "unhelpful";
11217
+ }>>;
11218
+ declare const zMyReviewReaction: z$1.ZodObject<{
11219
+ reviewId: z$1.ZodUUID;
11220
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11221
+ helpful: "helpful";
11222
+ unhelpful: "unhelpful";
11223
+ }>>;
11224
+ funny: z$1.ZodBoolean;
11225
+ }, z$1.core.$strip>;
11226
+ declare const zMyReviewReactionsResponse: z$1.ZodObject<{
11227
+ reactions: z$1.ZodArray<z$1.ZodObject<{
11228
+ reviewId: z$1.ZodUUID;
11229
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11230
+ helpful: "helpful";
11231
+ unhelpful: "unhelpful";
11232
+ }>>;
11233
+ funny: z$1.ZodBoolean;
11234
+ }, z$1.core.$strip>>;
11235
+ }, z$1.core.$strip>;
11236
+ declare const zSetReviewReactionResponse: z$1.ZodObject<{
11237
+ reactions: z$1.ZodObject<{
11238
+ helpful: z$1.ZodInt;
11239
+ unhelpful: z$1.ZodInt;
11240
+ funny: z$1.ZodInt;
11241
+ }, z$1.core.$strip>;
11242
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11243
+ helpful: "helpful";
11244
+ unhelpful: "unhelpful";
11245
+ }>>;
11246
+ funny: z$1.ZodBoolean;
11247
+ }, z$1.core.$strip>;
11248
+ declare const zSetReviewReactionRequest: z$1.ZodObject<{
11249
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11250
+ helpful: "helpful";
11251
+ unhelpful: "unhelpful";
11252
+ }>>;
11253
+ funny: z$1.ZodBoolean;
11254
+ }, z$1.core.$strip>;
11255
+ declare const zTipReviewResponse: z$1.ZodObject<{
11256
+ status: z$1.ZodEnum<{
11257
+ completed: "completed";
11258
+ }>;
11259
+ amountCents: z$1.ZodInt;
11260
+ balanceCents: z$1.ZodInt;
11261
+ tippedCents: z$1.ZodInt;
11262
+ }, z$1.core.$strip>;
11263
+ declare const zTipReviewRequest: z$1.ZodObject<{
11264
+ amountCents: z$1.ZodInt;
11265
+ note: z$1.ZodOptional<z$1.ZodString>;
11266
+ }, z$1.core.$strip>;
11267
+ declare const zReviewCommentBody: z$1.ZodString;
11268
+ declare const zReviewComment: z$1.ZodObject<{
11269
+ id: z$1.ZodUUID;
11270
+ body: z$1.ZodString;
11271
+ author: z$1.ZodObject<{
11272
+ userId: z$1.ZodUUID;
11273
+ handle: z$1.ZodNullable<z$1.ZodString>;
11274
+ name: z$1.ZodNullable<z$1.ZodString>;
11275
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
11276
+ }, z$1.core.$strip>;
11277
+ createdAt: z$1.ZodISODateTime;
11278
+ }, z$1.core.$strip>;
11279
+ declare const zReviewCommentListResponse: z$1.ZodObject<{
11280
+ comments: z$1.ZodArray<z$1.ZodObject<{
11281
+ id: z$1.ZodUUID;
11282
+ body: z$1.ZodString;
11283
+ author: z$1.ZodObject<{
11284
+ userId: z$1.ZodUUID;
11285
+ handle: z$1.ZodNullable<z$1.ZodString>;
11286
+ name: z$1.ZodNullable<z$1.ZodString>;
11287
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
11288
+ }, z$1.core.$strip>;
11289
+ createdAt: z$1.ZodISODateTime;
11290
+ }, z$1.core.$strip>>;
11291
+ total: z$1.ZodInt;
11292
+ hasMore: z$1.ZodBoolean;
11293
+ }, z$1.core.$strip>;
11294
+ declare const zCreateReviewCommentResponse: z$1.ZodObject<{
11295
+ comment: z$1.ZodObject<{
11296
+ id: z$1.ZodUUID;
11297
+ body: z$1.ZodString;
11298
+ author: z$1.ZodObject<{
11299
+ userId: z$1.ZodUUID;
11300
+ handle: z$1.ZodNullable<z$1.ZodString>;
11301
+ name: z$1.ZodNullable<z$1.ZodString>;
11302
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
11303
+ }, z$1.core.$strip>;
11304
+ createdAt: z$1.ZodISODateTime;
11305
+ }, z$1.core.$strip>;
11306
+ commentCount: z$1.ZodInt;
11307
+ }, z$1.core.$strip>;
11308
+ declare const zCreateReviewCommentRequest: z$1.ZodObject<{
10719
11309
  body: z$1.ZodString;
10720
11310
  }, z$1.core.$strip>;
11311
+ declare const zDeleteReviewCommentResponse: z$1.ZodObject<{
11312
+ commentCount: z$1.ZodInt;
11313
+ }, z$1.core.$strip>;
10721
11314
  declare const zReviewReplyResponse: z$1.ZodObject<{
10722
11315
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10723
11316
  body: z$1.ZodString;
@@ -11356,6 +11949,27 @@ declare const zActivityRowTronCashout: z$1.ZodObject<{
11356
11949
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
11357
11950
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
11358
11951
  }, z$1.core.$strip>;
11952
+ declare const zActivityRowTronTransfer: z$1.ZodObject<{
11953
+ kind: z$1.ZodEnum<{
11954
+ tron_transfer: "tron_transfer";
11955
+ }>;
11956
+ groupId: z$1.ZodNullable<z$1.ZodString>;
11957
+ id: z$1.ZodString;
11958
+ occurredAt: z$1.ZodISODateTime;
11959
+ role: z$1.ZodEnum<{
11960
+ outgoing: "outgoing";
11961
+ incoming: "incoming";
11962
+ }>;
11963
+ amountCents: z$1.ZodInt;
11964
+ usdCents: z$1.ZodInt;
11965
+ status: z$1.ZodEnum<{
11966
+ settled: "settled";
11967
+ }>;
11968
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
11969
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
11970
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
11971
+ note: z$1.ZodNullable<z$1.ZodString>;
11972
+ }, z$1.core.$strip>;
11359
11973
  declare const zActivityRowReferralEarning: z$1.ZodObject<{
11360
11974
  kind: z$1.ZodEnum<{
11361
11975
  referral_earning: "referral_earning";
@@ -11779,6 +12393,24 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
11779
12393
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
11780
12394
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
11781
12395
  kind: z$1.ZodLiteral<"tron_cashout">;
12396
+ }, z$1.core.$strip>, z$1.ZodObject<{
12397
+ groupId: z$1.ZodNullable<z$1.ZodString>;
12398
+ id: z$1.ZodString;
12399
+ occurredAt: z$1.ZodISODateTime;
12400
+ role: z$1.ZodEnum<{
12401
+ outgoing: "outgoing";
12402
+ incoming: "incoming";
12403
+ }>;
12404
+ amountCents: z$1.ZodInt;
12405
+ usdCents: z$1.ZodInt;
12406
+ status: z$1.ZodEnum<{
12407
+ settled: "settled";
12408
+ }>;
12409
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
12410
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
12411
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
12412
+ note: z$1.ZodNullable<z$1.ZodString>;
12413
+ kind: z$1.ZodLiteral<"tron_transfer">;
11782
12414
  }, z$1.core.$strip>, z$1.ZodObject<{
11783
12415
  groupId: z$1.ZodNullable<z$1.ZodString>;
11784
12416
  id: z$1.ZodString;
@@ -12201,6 +12833,24 @@ declare const zActivityResponse: z$1.ZodObject<{
12201
12833
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
12202
12834
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
12203
12835
  kind: z$1.ZodLiteral<"tron_cashout">;
12836
+ }, z$1.core.$strip>, z$1.ZodObject<{
12837
+ groupId: z$1.ZodNullable<z$1.ZodString>;
12838
+ id: z$1.ZodString;
12839
+ occurredAt: z$1.ZodISODateTime;
12840
+ role: z$1.ZodEnum<{
12841
+ outgoing: "outgoing";
12842
+ incoming: "incoming";
12843
+ }>;
12844
+ amountCents: z$1.ZodInt;
12845
+ usdCents: z$1.ZodInt;
12846
+ status: z$1.ZodEnum<{
12847
+ settled: "settled";
12848
+ }>;
12849
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
12850
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
12851
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
12852
+ note: z$1.ZodNullable<z$1.ZodString>;
12853
+ kind: z$1.ZodLiteral<"tron_transfer">;
12204
12854
  }, z$1.core.$strip>, z$1.ZodObject<{
12205
12855
  groupId: z$1.ZodNullable<z$1.ZodString>;
12206
12856
  id: z$1.ZodString;
@@ -12242,9 +12892,9 @@ declare const zOutstandingResponse: z$1.ZodObject<{
12242
12892
  declare const zMoonpayAvailabilityResponse: z$1.ZodObject<{
12243
12893
  enabled: z$1.ZodBoolean;
12244
12894
  direction: z$1.ZodNullable<z$1.ZodEnum<{
12895
+ both: "both";
12245
12896
  buy: "buy";
12246
12897
  sell: "sell";
12247
- both: "both";
12248
12898
  }>>;
12249
12899
  countryCode: z$1.ZodNullable<z$1.ZodString>;
12250
12900
  regionSupported: z$1.ZodBoolean;
@@ -12292,6 +12942,7 @@ declare const zTronLedgerEntry: z$1.ZodObject<{
12292
12942
  dispute_unfreeze: "dispute_unfreeze";
12293
12943
  hosted_billing: "hosted_billing";
12294
12944
  store_purchase: "store_purchase";
12945
+ peer_transfer: "peer_transfer";
12295
12946
  }>;
12296
12947
  amountCents: z$1.ZodInt;
12297
12948
  currency: z$1.ZodString;
@@ -12312,6 +12963,7 @@ declare const zTronLedgerResponse: z$1.ZodObject<{
12312
12963
  dispute_unfreeze: "dispute_unfreeze";
12313
12964
  hosted_billing: "hosted_billing";
12314
12965
  store_purchase: "store_purchase";
12966
+ peer_transfer: "peer_transfer";
12315
12967
  }>;
12316
12968
  amountCents: z$1.ZodInt;
12317
12969
  currency: z$1.ZodString;
@@ -12329,6 +12981,23 @@ declare const zTronDepositResponse: z$1.ZodObject<{
12329
12981
  declare const zTronDepositRequest: z$1.ZodObject<{
12330
12982
  amountCents: z$1.ZodInt;
12331
12983
  }, z$1.core.$strip>;
12984
+ declare const zTronTransferResponse: z$1.ZodObject<{
12985
+ status: z$1.ZodEnum<{
12986
+ completed: "completed";
12987
+ }>;
12988
+ amountCents: z$1.ZodInt;
12989
+ balanceCents: z$1.ZodInt;
12990
+ recipient: z$1.ZodObject<{
12991
+ userId: z$1.ZodUUID;
12992
+ handle: z$1.ZodNullable<z$1.ZodString>;
12993
+ displayName: z$1.ZodNullable<z$1.ZodString>;
12994
+ }, z$1.core.$strip>;
12995
+ }, z$1.core.$strip>;
12996
+ declare const zTronTransferRequest: z$1.ZodObject<{
12997
+ recipientUserId: z$1.ZodUUID;
12998
+ amountCents: z$1.ZodInt;
12999
+ note: z$1.ZodOptional<z$1.ZodString>;
13000
+ }, z$1.core.$strip>;
12332
13001
  declare const zTronGameBalanceResponse: z$1.ZodObject<{
12333
13002
  balanceCents: z$1.ZodInt;
12334
13003
  rakeBps: z$1.ZodInt;
@@ -14261,7 +14930,7 @@ declare const zProfileRecentReview: z$1.ZodObject<{
14261
14930
  appId: z$1.ZodString;
14262
14931
  appName: z$1.ZodString;
14263
14932
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
14264
- rating: z$1.ZodInt;
14933
+ recommended: z$1.ZodBoolean;
14265
14934
  body: z$1.ZodString;
14266
14935
  createdAt: z$1.ZodISODateTime;
14267
14936
  }, z$1.core.$strip>;
@@ -14343,7 +15012,7 @@ declare const zPublicProfile: z$1.ZodObject<{
14343
15012
  appId: z$1.ZodString;
14344
15013
  appName: z$1.ZodString;
14345
15014
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
14346
- rating: z$1.ZodInt;
15015
+ recommended: z$1.ZodBoolean;
14347
15016
  body: z$1.ZodString;
14348
15017
  createdAt: z$1.ZodISODateTime;
14349
15018
  }, z$1.core.$strip>>;
@@ -15090,6 +15759,51 @@ declare const zAppPageDraft: z$1.ZodObject<{
15090
15759
  url: z$1.ZodURL;
15091
15760
  order: z$1.ZodInt;
15092
15761
  }, z$1.core.$strip>>;
15762
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
15763
+ web: "web";
15764
+ ios: "ios";
15765
+ android: "android";
15766
+ pc: "pc";
15767
+ playstation: "playstation";
15768
+ xbox: "xbox";
15769
+ switch: "switch";
15770
+ }>>;
15771
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
15772
+ single_player: "single_player";
15773
+ multiplayer: "multiplayer";
15774
+ both: "both";
15775
+ }>>;
15776
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
15777
+ everyone: "everyone";
15778
+ "13_plus": "13_plus";
15779
+ "16_plus": "16_plus";
15780
+ "18_plus": "18_plus";
15781
+ }>>;
15782
+ languages: z$1.ZodArray<z$1.ZodEnum<{
15783
+ id: "id";
15784
+ en: "en";
15785
+ es: "es";
15786
+ fr: "fr";
15787
+ de: "de";
15788
+ pt: "pt";
15789
+ it: "it";
15790
+ ru: "ru";
15791
+ ja: "ja";
15792
+ ko: "ko";
15793
+ zh: "zh";
15794
+ hi: "hi";
15795
+ ar: "ar";
15796
+ tr: "tr";
15797
+ vi: "vi";
15798
+ th: "th";
15799
+ pl: "pl";
15800
+ nl: "nl";
15801
+ }>>;
15802
+ releaseStatus: z$1.ZodEnum<{
15803
+ live: "live";
15804
+ open_beta: "open_beta";
15805
+ coming_soon: "coming_soon";
15806
+ }>;
15093
15807
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
15094
15808
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
15095
15809
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -15153,6 +15867,51 @@ declare const zUpdateAppPage: z$1.ZodObject<{
15153
15867
  url: z$1.ZodURL;
15154
15868
  order: z$1.ZodInt;
15155
15869
  }, z$1.core.$strip>>>;
15870
+ platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
15871
+ web: "web";
15872
+ ios: "ios";
15873
+ android: "android";
15874
+ pc: "pc";
15875
+ playstation: "playstation";
15876
+ xbox: "xbox";
15877
+ switch: "switch";
15878
+ }>>>;
15879
+ gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
15880
+ single_player: "single_player";
15881
+ multiplayer: "multiplayer";
15882
+ both: "both";
15883
+ }>>>;
15884
+ ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
15885
+ everyone: "everyone";
15886
+ "13_plus": "13_plus";
15887
+ "16_plus": "16_plus";
15888
+ "18_plus": "18_plus";
15889
+ }>>>;
15890
+ languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
15891
+ id: "id";
15892
+ en: "en";
15893
+ es: "es";
15894
+ fr: "fr";
15895
+ de: "de";
15896
+ pt: "pt";
15897
+ it: "it";
15898
+ ru: "ru";
15899
+ ja: "ja";
15900
+ ko: "ko";
15901
+ zh: "zh";
15902
+ hi: "hi";
15903
+ ar: "ar";
15904
+ tr: "tr";
15905
+ vi: "vi";
15906
+ th: "th";
15907
+ pl: "pl";
15908
+ nl: "nl";
15909
+ }>>>;
15910
+ releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
15911
+ live: "live";
15912
+ open_beta: "open_beta";
15913
+ coming_soon: "coming_soon";
15914
+ }>>;
15156
15915
  }, z$1.core.$strip>;
15157
15916
  declare const zAppPageGalleryUploadResponse: z$1.ZodObject<{
15158
15917
  url: z$1.ZodURL;
@@ -17049,25 +17808,76 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
17049
17808
  order: z$1.ZodInt;
17050
17809
  }, z$1.core.$strip>>;
17051
17810
  studio: z$1.ZodObject<{
17811
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
17052
17812
  name: z$1.ZodNullable<z$1.ZodString>;
17053
17813
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
17054
17814
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
17055
17815
  xHandle: z$1.ZodNullable<z$1.ZodString>;
17056
17816
  githubUrl: z$1.ZodNullable<z$1.ZodURL>;
17057
17817
  }, z$1.core.$strip>;
17818
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
17819
+ web: "web";
17820
+ ios: "ios";
17821
+ android: "android";
17822
+ pc: "pc";
17823
+ playstation: "playstation";
17824
+ xbox: "xbox";
17825
+ switch: "switch";
17826
+ }>>;
17827
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
17828
+ single_player: "single_player";
17829
+ multiplayer: "multiplayer";
17830
+ both: "both";
17831
+ }>>;
17832
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
17833
+ everyone: "everyone";
17834
+ "13_plus": "13_plus";
17835
+ "16_plus": "16_plus";
17836
+ "18_plus": "18_plus";
17837
+ }>>;
17838
+ languages: z$1.ZodArray<z$1.ZodEnum<{
17839
+ id: "id";
17840
+ en: "en";
17841
+ es: "es";
17842
+ fr: "fr";
17843
+ de: "de";
17844
+ pt: "pt";
17845
+ it: "it";
17846
+ ru: "ru";
17847
+ ja: "ja";
17848
+ ko: "ko";
17849
+ zh: "zh";
17850
+ hi: "hi";
17851
+ ar: "ar";
17852
+ tr: "tr";
17853
+ vi: "vi";
17854
+ th: "th";
17855
+ pl: "pl";
17856
+ nl: "nl";
17857
+ }>>;
17858
+ releaseStatus: z$1.ZodEnum<{
17859
+ live: "live";
17860
+ open_beta: "open_beta";
17861
+ coming_soon: "coming_soon";
17862
+ }>;
17863
+ paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
17864
+ both: "both";
17865
+ tron: "tron";
17866
+ onchain: "onchain";
17867
+ }>>;
17058
17868
  oauthScopes: z$1.ZodArray<z$1.ZodString>;
17059
17869
  chains: z$1.ZodArray<z$1.ZodString>;
17060
17870
  publishedAt: z$1.ZodISODateTime;
17871
+ updatedAt: z$1.ZodISODateTime;
17061
17872
  }, z$1.core.$strip>;
17062
17873
  declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
17063
17874
  slug: z$1.ZodString;
17064
17875
  }, z$1.core.$strip>;
17065
17876
  declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
17066
17877
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
17878
+ helpful: "helpful";
17067
17879
  newest: "newest";
17068
17880
  oldest: "oldest";
17069
- highest: "highest";
17070
- lowest: "lowest";
17071
17881
  }>>>;
17072
17882
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
17073
17883
  offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
@@ -17077,24 +17887,42 @@ declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
17077
17887
  */
17078
17888
  declare const zGetPublicAppsBySlugReviewsResponse: z$1.ZodObject<{
17079
17889
  aggregate: z$1.ZodObject<{
17080
- average: z$1.ZodNullable<z$1.ZodNumber>;
17081
17890
  count: z$1.ZodInt;
17082
- distribution: z$1.ZodObject<{
17083
- 1: z$1.ZodInt;
17084
- 2: z$1.ZodInt;
17085
- 3: z$1.ZodInt;
17086
- 4: z$1.ZodInt;
17087
- 5: z$1.ZodInt;
17088
- }, z$1.core.$strip>;
17891
+ recommendedCount: z$1.ZodInt;
17892
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
17893
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
17894
+ overwhelmingly_positive: "overwhelmingly_positive";
17895
+ very_positive: "very_positive";
17896
+ positive: "positive";
17897
+ mostly_positive: "mostly_positive";
17898
+ mixed: "mixed";
17899
+ mostly_negative: "mostly_negative";
17900
+ negative: "negative";
17901
+ overwhelmingly_negative: "overwhelmingly_negative";
17902
+ }>>;
17089
17903
  }, z$1.core.$strip>;
17090
17904
  reviews: z$1.ZodArray<z$1.ZodObject<{
17091
17905
  id: z$1.ZodUUID;
17092
- rating: z$1.ZodInt;
17906
+ recommended: z$1.ZodBoolean;
17093
17907
  body: z$1.ZodString;
17908
+ reactions: z$1.ZodObject<{
17909
+ helpful: z$1.ZodInt;
17910
+ unhelpful: z$1.ZodInt;
17911
+ funny: z$1.ZodInt;
17912
+ }, z$1.core.$strip>;
17913
+ tippedCents: z$1.ZodInt;
17914
+ commentCount: z$1.ZodInt;
17094
17915
  author: z$1.ZodObject<{
17916
+ userId: z$1.ZodUUID;
17917
+ handle: z$1.ZodNullable<z$1.ZodString>;
17095
17918
  name: z$1.ZodNullable<z$1.ZodString>;
17096
17919
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
17097
17920
  }, z$1.core.$strip>;
17921
+ authorStats: z$1.ZodObject<{
17922
+ playtimeSecondsThisGame: z$1.ZodInt;
17923
+ gamesPlayed: z$1.ZodInt;
17924
+ reviewsWritten: z$1.ZodInt;
17925
+ }, z$1.core.$strip>;
17098
17926
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
17099
17927
  body: z$1.ZodString;
17100
17928
  repliedAt: z$1.ZodISODateTime;
@@ -17119,7 +17947,7 @@ declare const zDeleteMeReviewsBySlugResponse: z$1.ZodObject<{
17119
17947
  }>>;
17120
17948
  review: z$1.ZodNullable<z$1.ZodObject<{
17121
17949
  id: z$1.ZodUUID;
17122
- rating: z$1.ZodInt;
17950
+ recommended: z$1.ZodBoolean;
17123
17951
  body: z$1.ZodString;
17124
17952
  createdAt: z$1.ZodISODateTime;
17125
17953
  updatedAt: z$1.ZodISODateTime;
@@ -17140,7 +17968,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
17140
17968
  }>>;
17141
17969
  review: z$1.ZodNullable<z$1.ZodObject<{
17142
17970
  id: z$1.ZodUUID;
17143
- rating: z$1.ZodInt;
17971
+ recommended: z$1.ZodBoolean;
17144
17972
  body: z$1.ZodString;
17145
17973
  createdAt: z$1.ZodISODateTime;
17146
17974
  updatedAt: z$1.ZodISODateTime;
@@ -17148,7 +17976,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
17148
17976
  isAppOwner: z$1.ZodBoolean;
17149
17977
  }, z$1.core.$strip>;
17150
17978
  declare const zPutMeReviewsBySlugBody: z$1.ZodObject<{
17151
- rating: z$1.ZodInt;
17979
+ recommended: z$1.ZodBoolean;
17152
17980
  body: z$1.ZodString;
17153
17981
  }, z$1.core.$strip>;
17154
17982
  declare const zPutMeReviewsBySlugPath: z$1.ZodObject<{
@@ -17165,22 +17993,142 @@ declare const zPutMeReviewsBySlugResponse: z$1.ZodObject<{
17165
17993
  }>>;
17166
17994
  review: z$1.ZodNullable<z$1.ZodObject<{
17167
17995
  id: z$1.ZodUUID;
17168
- rating: z$1.ZodInt;
17996
+ recommended: z$1.ZodBoolean;
17169
17997
  body: z$1.ZodString;
17170
17998
  createdAt: z$1.ZodISODateTime;
17171
17999
  updatedAt: z$1.ZodISODateTime;
17172
18000
  }, z$1.core.$strip>>;
17173
18001
  isAppOwner: z$1.ZodBoolean;
17174
18002
  }, z$1.core.$strip>;
18003
+ declare const zGetMeReviewsBySlugReactionsPath: z$1.ZodObject<{
18004
+ slug: z$1.ZodString;
18005
+ }, z$1.core.$strip>;
18006
+ /**
18007
+ * The caller's per-review reactions
18008
+ */
18009
+ declare const zGetMeReviewsBySlugReactionsResponse: z$1.ZodObject<{
18010
+ reactions: z$1.ZodArray<z$1.ZodObject<{
18011
+ reviewId: z$1.ZodUUID;
18012
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
18013
+ helpful: "helpful";
18014
+ unhelpful: "unhelpful";
18015
+ }>>;
18016
+ funny: z$1.ZodBoolean;
18017
+ }, z$1.core.$strip>>;
18018
+ }, z$1.core.$strip>;
18019
+ declare const zPostMeReviewsBySlugReactionsByReviewIdBody: z$1.ZodObject<{
18020
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
18021
+ helpful: "helpful";
18022
+ unhelpful: "unhelpful";
18023
+ }>>;
18024
+ funny: z$1.ZodBoolean;
18025
+ }, z$1.core.$strip>;
18026
+ declare const zPostMeReviewsBySlugReactionsByReviewIdPath: z$1.ZodObject<{
18027
+ slug: z$1.ZodString;
18028
+ reviewId: z$1.ZodUUID;
18029
+ }, z$1.core.$strip>;
18030
+ /**
18031
+ * The review's updated reaction counts + the caller's stored state
18032
+ */
18033
+ declare const zPostMeReviewsBySlugReactionsByReviewIdResponse: z$1.ZodObject<{
18034
+ reactions: z$1.ZodObject<{
18035
+ helpful: z$1.ZodInt;
18036
+ unhelpful: z$1.ZodInt;
18037
+ funny: z$1.ZodInt;
18038
+ }, z$1.core.$strip>;
18039
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
18040
+ helpful: "helpful";
18041
+ unhelpful: "unhelpful";
18042
+ }>>;
18043
+ funny: z$1.ZodBoolean;
18044
+ }, z$1.core.$strip>;
18045
+ declare const zPostMeReviewsBySlugTipsByReviewIdBody: z$1.ZodObject<{
18046
+ amountCents: z$1.ZodInt;
18047
+ note: z$1.ZodOptional<z$1.ZodString>;
18048
+ }, z$1.core.$strip>;
18049
+ declare const zPostMeReviewsBySlugTipsByReviewIdPath: z$1.ZodObject<{
18050
+ slug: z$1.ZodString;
18051
+ reviewId: z$1.ZodUUID;
18052
+ }, z$1.core.$strip>;
18053
+ /**
18054
+ * Tip completed; the sender's balance after + the review's new total tipped
18055
+ */
18056
+ declare const zPostMeReviewsBySlugTipsByReviewIdResponse: z$1.ZodObject<{
18057
+ status: z$1.ZodEnum<{
18058
+ completed: "completed";
18059
+ }>;
18060
+ amountCents: z$1.ZodInt;
18061
+ balanceCents: z$1.ZodInt;
18062
+ tippedCents: z$1.ZodInt;
18063
+ }, z$1.core.$strip>;
18064
+ declare const zGetPublicAppsBySlugReviewsByReviewIdCommentsPath: z$1.ZodObject<{
18065
+ slug: z$1.ZodString;
18066
+ reviewId: z$1.ZodUUID;
18067
+ }, z$1.core.$strip>;
18068
+ declare const zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery: z$1.ZodObject<{
18069
+ limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
18070
+ offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
18071
+ }, z$1.core.$strip>;
18072
+ /**
18073
+ * The review's comment page
18074
+ */
18075
+ declare const zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse: z$1.ZodObject<{
18076
+ comments: z$1.ZodArray<z$1.ZodObject<{
18077
+ id: z$1.ZodUUID;
18078
+ body: z$1.ZodString;
18079
+ author: z$1.ZodObject<{
18080
+ userId: z$1.ZodUUID;
18081
+ handle: z$1.ZodNullable<z$1.ZodString>;
18082
+ name: z$1.ZodNullable<z$1.ZodString>;
18083
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
18084
+ }, z$1.core.$strip>;
18085
+ createdAt: z$1.ZodISODateTime;
18086
+ }, z$1.core.$strip>>;
18087
+ total: z$1.ZodInt;
18088
+ hasMore: z$1.ZodBoolean;
18089
+ }, z$1.core.$strip>;
18090
+ declare const zPostMeReviewsBySlugCommentsByReviewIdBody: z$1.ZodObject<{
18091
+ body: z$1.ZodString;
18092
+ }, z$1.core.$strip>;
18093
+ declare const zPostMeReviewsBySlugCommentsByReviewIdPath: z$1.ZodObject<{
18094
+ slug: z$1.ZodString;
18095
+ reviewId: z$1.ZodUUID;
18096
+ }, z$1.core.$strip>;
18097
+ /**
18098
+ * The created comment + the review's new comment count
18099
+ */
18100
+ declare const zPostMeReviewsBySlugCommentsByReviewIdResponse: z$1.ZodObject<{
18101
+ comment: z$1.ZodObject<{
18102
+ id: z$1.ZodUUID;
18103
+ body: z$1.ZodString;
18104
+ author: z$1.ZodObject<{
18105
+ userId: z$1.ZodUUID;
18106
+ handle: z$1.ZodNullable<z$1.ZodString>;
18107
+ name: z$1.ZodNullable<z$1.ZodString>;
18108
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
18109
+ }, z$1.core.$strip>;
18110
+ createdAt: z$1.ZodISODateTime;
18111
+ }, z$1.core.$strip>;
18112
+ commentCount: z$1.ZodInt;
18113
+ }, z$1.core.$strip>;
18114
+ declare const zDeleteMeReviewsBySlugCommentsByCommentIdPath: z$1.ZodObject<{
18115
+ slug: z$1.ZodString;
18116
+ commentId: z$1.ZodUUID;
18117
+ }, z$1.core.$strip>;
18118
+ /**
18119
+ * Comment removed; the review's new comment count
18120
+ */
18121
+ declare const zDeleteMeReviewsBySlugCommentsByCommentIdResponse: z$1.ZodObject<{
18122
+ commentCount: z$1.ZodInt;
18123
+ }, z$1.core.$strip>;
17175
18124
  declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
17176
18125
  appId: z$1.ZodUUID;
17177
18126
  }, z$1.core.$strip>;
17178
18127
  declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
17179
18128
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
18129
+ helpful: "helpful";
17180
18130
  newest: "newest";
17181
18131
  oldest: "oldest";
17182
- highest: "highest";
17183
- lowest: "lowest";
17184
18132
  }>>>;
17185
18133
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
17186
18134
  offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
@@ -17190,24 +18138,42 @@ declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
17190
18138
  */
17191
18139
  declare const zGetMeDeveloperAppsByAppIdReviewsResponse: z$1.ZodObject<{
17192
18140
  aggregate: z$1.ZodObject<{
17193
- average: z$1.ZodNullable<z$1.ZodNumber>;
17194
18141
  count: z$1.ZodInt;
17195
- distribution: z$1.ZodObject<{
17196
- 1: z$1.ZodInt;
17197
- 2: z$1.ZodInt;
17198
- 3: z$1.ZodInt;
17199
- 4: z$1.ZodInt;
17200
- 5: z$1.ZodInt;
17201
- }, z$1.core.$strip>;
18142
+ recommendedCount: z$1.ZodInt;
18143
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
18144
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
18145
+ overwhelmingly_positive: "overwhelmingly_positive";
18146
+ very_positive: "very_positive";
18147
+ positive: "positive";
18148
+ mostly_positive: "mostly_positive";
18149
+ mixed: "mixed";
18150
+ mostly_negative: "mostly_negative";
18151
+ negative: "negative";
18152
+ overwhelmingly_negative: "overwhelmingly_negative";
18153
+ }>>;
17202
18154
  }, z$1.core.$strip>;
17203
18155
  reviews: z$1.ZodArray<z$1.ZodObject<{
17204
18156
  id: z$1.ZodUUID;
17205
- rating: z$1.ZodInt;
18157
+ recommended: z$1.ZodBoolean;
17206
18158
  body: z$1.ZodString;
18159
+ reactions: z$1.ZodObject<{
18160
+ helpful: z$1.ZodInt;
18161
+ unhelpful: z$1.ZodInt;
18162
+ funny: z$1.ZodInt;
18163
+ }, z$1.core.$strip>;
18164
+ tippedCents: z$1.ZodInt;
18165
+ commentCount: z$1.ZodInt;
17207
18166
  author: z$1.ZodObject<{
18167
+ userId: z$1.ZodUUID;
18168
+ handle: z$1.ZodNullable<z$1.ZodString>;
17208
18169
  name: z$1.ZodNullable<z$1.ZodString>;
17209
18170
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
17210
18171
  }, z$1.core.$strip>;
18172
+ authorStats: z$1.ZodObject<{
18173
+ playtimeSecondsThisGame: z$1.ZodInt;
18174
+ gamesPlayed: z$1.ZodInt;
18175
+ reviewsWritten: z$1.ZodInt;
18176
+ }, z$1.core.$strip>;
17211
18177
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
17212
18178
  body: z$1.ZodString;
17213
18179
  repliedAt: z$1.ZodISODateTime;
@@ -17832,6 +18798,24 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
17832
18798
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
17833
18799
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
17834
18800
  kind: z$1.ZodLiteral<"tron_cashout">;
18801
+ }, z$1.core.$strip>, z$1.ZodObject<{
18802
+ groupId: z$1.ZodNullable<z$1.ZodString>;
18803
+ id: z$1.ZodString;
18804
+ occurredAt: z$1.ZodISODateTime;
18805
+ role: z$1.ZodEnum<{
18806
+ outgoing: "outgoing";
18807
+ incoming: "incoming";
18808
+ }>;
18809
+ amountCents: z$1.ZodInt;
18810
+ usdCents: z$1.ZodInt;
18811
+ status: z$1.ZodEnum<{
18812
+ settled: "settled";
18813
+ }>;
18814
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
18815
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
18816
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
18817
+ note: z$1.ZodNullable<z$1.ZodString>;
18818
+ kind: z$1.ZodLiteral<"tron_transfer">;
17835
18819
  }, z$1.core.$strip>, z$1.ZodObject<{
17836
18820
  groupId: z$1.ZodNullable<z$1.ZodString>;
17837
18821
  id: z$1.ZodString;
@@ -18264,6 +19248,24 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
18264
19248
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
18265
19249
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
18266
19250
  kind: z$1.ZodLiteral<"tron_cashout">;
19251
+ }, z$1.core.$strip>, z$1.ZodObject<{
19252
+ groupId: z$1.ZodNullable<z$1.ZodString>;
19253
+ id: z$1.ZodString;
19254
+ occurredAt: z$1.ZodISODateTime;
19255
+ role: z$1.ZodEnum<{
19256
+ outgoing: "outgoing";
19257
+ incoming: "incoming";
19258
+ }>;
19259
+ amountCents: z$1.ZodInt;
19260
+ usdCents: z$1.ZodInt;
19261
+ status: z$1.ZodEnum<{
19262
+ settled: "settled";
19263
+ }>;
19264
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
19265
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
19266
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
19267
+ note: z$1.ZodNullable<z$1.ZodString>;
19268
+ kind: z$1.ZodLiteral<"tron_transfer">;
18267
19269
  }, z$1.core.$strip>, z$1.ZodObject<{
18268
19270
  groupId: z$1.ZodNullable<z$1.ZodString>;
18269
19271
  id: z$1.ZodString;
@@ -18307,9 +19309,9 @@ declare const zGetPaymentsMeOutstandingResponse: z$1.ZodObject<{
18307
19309
  declare const zGetPaymentsMeMoonpayAvailabilityResponse: z$1.ZodObject<{
18308
19310
  enabled: z$1.ZodBoolean;
18309
19311
  direction: z$1.ZodNullable<z$1.ZodEnum<{
19312
+ both: "both";
18310
19313
  buy: "buy";
18311
19314
  sell: "sell";
18312
- both: "both";
18313
19315
  }>>;
18314
19316
  countryCode: z$1.ZodNullable<z$1.ZodString>;
18315
19317
  regionSupported: z$1.ZodBoolean;
@@ -18373,6 +19375,7 @@ declare const zGetPaymentsMeTronLedgerResponse: z$1.ZodObject<{
18373
19375
  dispute_unfreeze: "dispute_unfreeze";
18374
19376
  hosted_billing: "hosted_billing";
18375
19377
  store_purchase: "store_purchase";
19378
+ peer_transfer: "peer_transfer";
18376
19379
  }>;
18377
19380
  amountCents: z$1.ZodInt;
18378
19381
  currency: z$1.ZodString;
@@ -18393,6 +19396,26 @@ declare const zPostPaymentsMeTronDepositResponse: z$1.ZodObject<{
18393
19396
  currency: z$1.ZodString;
18394
19397
  depositId: z$1.ZodUUID;
18395
19398
  }, z$1.core.$strip>;
19399
+ declare const zPostPaymentsMeTronTransferBody: z$1.ZodObject<{
19400
+ recipientUserId: z$1.ZodUUID;
19401
+ amountCents: z$1.ZodInt;
19402
+ note: z$1.ZodOptional<z$1.ZodString>;
19403
+ }, z$1.core.$strip>;
19404
+ /**
19405
+ * Transfer completed; carries the sender's remaining balance + recipient identity
19406
+ */
19407
+ declare const zPostPaymentsMeTronTransferResponse: z$1.ZodObject<{
19408
+ status: z$1.ZodEnum<{
19409
+ completed: "completed";
19410
+ }>;
19411
+ amountCents: z$1.ZodInt;
19412
+ balanceCents: z$1.ZodInt;
19413
+ recipient: z$1.ZodObject<{
19414
+ userId: z$1.ZodUUID;
19415
+ handle: z$1.ZodNullable<z$1.ZodString>;
19416
+ displayName: z$1.ZodNullable<z$1.ZodString>;
19417
+ }, z$1.core.$strip>;
19418
+ }, z$1.core.$strip>;
18396
19419
  /**
18397
19420
  * The caller's spendable TRON balance in cents
18398
19421
  */
@@ -20574,7 +21597,7 @@ declare const zGetUsersByHandleResponse: z$1.ZodObject<{
20574
21597
  appId: z$1.ZodString;
20575
21598
  appName: z$1.ZodString;
20576
21599
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
20577
- rating: z$1.ZodInt;
21600
+ recommended: z$1.ZodBoolean;
20578
21601
  body: z$1.ZodString;
20579
21602
  createdAt: z$1.ZodISODateTime;
20580
21603
  }, z$1.core.$strip>>;
@@ -21287,6 +22310,24 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
21287
22310
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
21288
22311
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21289
22312
  kind: z$1.ZodLiteral<"tron_cashout">;
22313
+ }, z$1.core.$strip>, z$1.ZodObject<{
22314
+ groupId: z$1.ZodNullable<z$1.ZodString>;
22315
+ id: z$1.ZodString;
22316
+ occurredAt: z$1.ZodISODateTime;
22317
+ role: z$1.ZodEnum<{
22318
+ outgoing: "outgoing";
22319
+ incoming: "incoming";
22320
+ }>;
22321
+ amountCents: z$1.ZodInt;
22322
+ usdCents: z$1.ZodInt;
22323
+ status: z$1.ZodEnum<{
22324
+ settled: "settled";
22325
+ }>;
22326
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
22327
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
22328
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
22329
+ note: z$1.ZodNullable<z$1.ZodString>;
22330
+ kind: z$1.ZodLiteral<"tron_transfer">;
21290
22331
  }, z$1.core.$strip>, z$1.ZodObject<{
21291
22332
  groupId: z$1.ZodNullable<z$1.ZodString>;
21292
22333
  id: z$1.ZodString;
@@ -21823,6 +22864,51 @@ declare const zGetMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
21823
22864
  url: z$1.ZodURL;
21824
22865
  order: z$1.ZodInt;
21825
22866
  }, z$1.core.$strip>>;
22867
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
22868
+ web: "web";
22869
+ ios: "ios";
22870
+ android: "android";
22871
+ pc: "pc";
22872
+ playstation: "playstation";
22873
+ xbox: "xbox";
22874
+ switch: "switch";
22875
+ }>>;
22876
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
22877
+ single_player: "single_player";
22878
+ multiplayer: "multiplayer";
22879
+ both: "both";
22880
+ }>>;
22881
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
22882
+ everyone: "everyone";
22883
+ "13_plus": "13_plus";
22884
+ "16_plus": "16_plus";
22885
+ "18_plus": "18_plus";
22886
+ }>>;
22887
+ languages: z$1.ZodArray<z$1.ZodEnum<{
22888
+ id: "id";
22889
+ en: "en";
22890
+ es: "es";
22891
+ fr: "fr";
22892
+ de: "de";
22893
+ pt: "pt";
22894
+ it: "it";
22895
+ ru: "ru";
22896
+ ja: "ja";
22897
+ ko: "ko";
22898
+ zh: "zh";
22899
+ hi: "hi";
22900
+ ar: "ar";
22901
+ tr: "tr";
22902
+ vi: "vi";
22903
+ th: "th";
22904
+ pl: "pl";
22905
+ nl: "nl";
22906
+ }>>;
22907
+ releaseStatus: z$1.ZodEnum<{
22908
+ live: "live";
22909
+ open_beta: "open_beta";
22910
+ coming_soon: "coming_soon";
22911
+ }>;
21826
22912
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21827
22913
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21828
22914
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -21886,6 +22972,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageBody: z$1.ZodObject<{
21886
22972
  url: z$1.ZodURL;
21887
22973
  order: z$1.ZodInt;
21888
22974
  }, z$1.core.$strip>>>;
22975
+ platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
22976
+ web: "web";
22977
+ ios: "ios";
22978
+ android: "android";
22979
+ pc: "pc";
22980
+ playstation: "playstation";
22981
+ xbox: "xbox";
22982
+ switch: "switch";
22983
+ }>>>;
22984
+ gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
22985
+ single_player: "single_player";
22986
+ multiplayer: "multiplayer";
22987
+ both: "both";
22988
+ }>>>;
22989
+ ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
22990
+ everyone: "everyone";
22991
+ "13_plus": "13_plus";
22992
+ "16_plus": "16_plus";
22993
+ "18_plus": "18_plus";
22994
+ }>>>;
22995
+ languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
22996
+ id: "id";
22997
+ en: "en";
22998
+ es: "es";
22999
+ fr: "fr";
23000
+ de: "de";
23001
+ pt: "pt";
23002
+ it: "it";
23003
+ ru: "ru";
23004
+ ja: "ja";
23005
+ ko: "ko";
23006
+ zh: "zh";
23007
+ hi: "hi";
23008
+ ar: "ar";
23009
+ tr: "tr";
23010
+ vi: "vi";
23011
+ th: "th";
23012
+ pl: "pl";
23013
+ nl: "nl";
23014
+ }>>>;
23015
+ releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
23016
+ live: "live";
23017
+ open_beta: "open_beta";
23018
+ coming_soon: "coming_soon";
23019
+ }>>;
21889
23020
  }, z$1.core.$strip>;
21890
23021
  declare const zPatchMeDeveloperAppsByAppIdPagePath: z$1.ZodObject<{
21891
23022
  appId: z$1.ZodString;
@@ -21956,6 +23087,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
21956
23087
  url: z$1.ZodURL;
21957
23088
  order: z$1.ZodInt;
21958
23089
  }, z$1.core.$strip>>;
23090
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23091
+ web: "web";
23092
+ ios: "ios";
23093
+ android: "android";
23094
+ pc: "pc";
23095
+ playstation: "playstation";
23096
+ xbox: "xbox";
23097
+ switch: "switch";
23098
+ }>>;
23099
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23100
+ single_player: "single_player";
23101
+ multiplayer: "multiplayer";
23102
+ both: "both";
23103
+ }>>;
23104
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23105
+ everyone: "everyone";
23106
+ "13_plus": "13_plus";
23107
+ "16_plus": "16_plus";
23108
+ "18_plus": "18_plus";
23109
+ }>>;
23110
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23111
+ id: "id";
23112
+ en: "en";
23113
+ es: "es";
23114
+ fr: "fr";
23115
+ de: "de";
23116
+ pt: "pt";
23117
+ it: "it";
23118
+ ru: "ru";
23119
+ ja: "ja";
23120
+ ko: "ko";
23121
+ zh: "zh";
23122
+ hi: "hi";
23123
+ ar: "ar";
23124
+ tr: "tr";
23125
+ vi: "vi";
23126
+ th: "th";
23127
+ pl: "pl";
23128
+ nl: "nl";
23129
+ }>>;
23130
+ releaseStatus: z$1.ZodEnum<{
23131
+ live: "live";
23132
+ open_beta: "open_beta";
23133
+ coming_soon: "coming_soon";
23134
+ }>;
21959
23135
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21960
23136
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21961
23137
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -22101,6 +23277,51 @@ declare const zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse: z$1.ZodObj
22101
23277
  url: z$1.ZodURL;
22102
23278
  order: z$1.ZodInt;
22103
23279
  }, z$1.core.$strip>>;
23280
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23281
+ web: "web";
23282
+ ios: "ios";
23283
+ android: "android";
23284
+ pc: "pc";
23285
+ playstation: "playstation";
23286
+ xbox: "xbox";
23287
+ switch: "switch";
23288
+ }>>;
23289
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23290
+ single_player: "single_player";
23291
+ multiplayer: "multiplayer";
23292
+ both: "both";
23293
+ }>>;
23294
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23295
+ everyone: "everyone";
23296
+ "13_plus": "13_plus";
23297
+ "16_plus": "16_plus";
23298
+ "18_plus": "18_plus";
23299
+ }>>;
23300
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23301
+ id: "id";
23302
+ en: "en";
23303
+ es: "es";
23304
+ fr: "fr";
23305
+ de: "de";
23306
+ pt: "pt";
23307
+ it: "it";
23308
+ ru: "ru";
23309
+ ja: "ja";
23310
+ ko: "ko";
23311
+ zh: "zh";
23312
+ hi: "hi";
23313
+ ar: "ar";
23314
+ tr: "tr";
23315
+ vi: "vi";
23316
+ th: "th";
23317
+ pl: "pl";
23318
+ nl: "nl";
23319
+ }>>;
23320
+ releaseStatus: z$1.ZodEnum<{
23321
+ live: "live";
23322
+ open_beta: "open_beta";
23323
+ coming_soon: "coming_soon";
23324
+ }>;
22104
23325
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22105
23326
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22106
23327
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -22177,6 +23398,51 @@ declare const zPostMeDeveloperAppsByAppIdPageUnpublishResponse: z$1.ZodObject<{
22177
23398
  url: z$1.ZodURL;
22178
23399
  order: z$1.ZodInt;
22179
23400
  }, z$1.core.$strip>>;
23401
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23402
+ web: "web";
23403
+ ios: "ios";
23404
+ android: "android";
23405
+ pc: "pc";
23406
+ playstation: "playstation";
23407
+ xbox: "xbox";
23408
+ switch: "switch";
23409
+ }>>;
23410
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23411
+ single_player: "single_player";
23412
+ multiplayer: "multiplayer";
23413
+ both: "both";
23414
+ }>>;
23415
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23416
+ everyone: "everyone";
23417
+ "13_plus": "13_plus";
23418
+ "16_plus": "16_plus";
23419
+ "18_plus": "18_plus";
23420
+ }>>;
23421
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23422
+ id: "id";
23423
+ en: "en";
23424
+ es: "es";
23425
+ fr: "fr";
23426
+ de: "de";
23427
+ pt: "pt";
23428
+ it: "it";
23429
+ ru: "ru";
23430
+ ja: "ja";
23431
+ ko: "ko";
23432
+ zh: "zh";
23433
+ hi: "hi";
23434
+ ar: "ar";
23435
+ tr: "tr";
23436
+ vi: "vi";
23437
+ th: "th";
23438
+ pl: "pl";
23439
+ nl: "nl";
23440
+ }>>;
23441
+ releaseStatus: z$1.ZodEnum<{
23442
+ live: "live";
23443
+ open_beta: "open_beta";
23444
+ coming_soon: "coming_soon";
23445
+ }>;
22180
23446
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22181
23447
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22182
23448
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -23461,4 +24727,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
23461
24727
  */
23462
24728
  declare const zPostMeConsentResponse: z$1.ZodVoid;
23463
24729
  //#endregion
23464
- export { type AcceptedCurrencies, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppPageApprovedNotificationPayload, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageLink, type AppPageLinks, type AppPageRejectedNotificationPayload, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryHolding, type InventoryListResponse, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewDistribution, type ReviewEligibilityReason, type ReviewListResponse, type ReviewRating, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TronBalanceResponse, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppPageApprovedNotificationPayload, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageLink, zAppPageLinks, zAppPageRejectedNotificationPayload, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteMeAvatarResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthInventoryResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryHolding, zInventoryListResponse, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewDistribution, zReviewEligibilityReason, zReviewListResponse, zReviewRating, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTronBalanceResponse, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };
24730
+ export { type AcceptedCurrencies, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityRowTronTransfer, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppPageAgeRating, type AppPageApprovedNotificationPayload, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageGameType, type AppPageLanguages, type AppPageLink, type AppPageLinks, type AppPagePaymentsMode, type AppPagePlatforms, type AppPageRejectedNotificationPayload, type AppPageReleaseStatus, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateReviewCommentRequest, type CreateReviewCommentResponse, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugCommentsByCommentIdData, type DeleteMeReviewsBySlugCommentsByCommentIdError, type DeleteMeReviewsBySlugCommentsByCommentIdErrors, type DeleteMeReviewsBySlugCommentsByCommentIdResponse, type DeleteMeReviewsBySlugCommentsByCommentIdResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteReviewCommentResponse, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsByReviewIdCommentsData, type GetPublicAppsBySlugReviewsByReviewIdCommentsError, type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryHolding, type InventoryListResponse, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugCommentsByReviewIdData, type PostMeReviewsBySlugCommentsByReviewIdError, type PostMeReviewsBySlugCommentsByReviewIdErrors, type PostMeReviewsBySlugCommentsByReviewIdResponse, type PostMeReviewsBySlugCommentsByReviewIdResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewComment, type ReviewCommentBody, type ReviewCommentListResponse, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type ReviewerStats, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageGameType, zAppPageLanguages, zAppPageLink, zAppPageLinks, zAppPagePaymentsMode, zAppPagePlatforms, zAppPageRejectedNotificationPayload, zAppPageReleaseStatus, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteMeAvatarResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugCommentsByCommentIdPath, zDeleteMeReviewsBySlugCommentsByCommentIdResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteReviewCommentResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthInventoryResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryHolding, zInventoryListResponse, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugCommentsByReviewIdBody, zPostMeReviewsBySlugCommentsByReviewIdPath, zPostMeReviewsBySlugCommentsByReviewIdResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewComment, zReviewCommentBody, zReviewCommentListResponse, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zReviewerStats, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };