@metatrongg/sdk 0.8.0-dev.5f0a52b → 0.8.0-dev.621c099

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,67 @@ 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
+ challengeId?: string;
629
+ signature?: string;
630
+ };
631
+ type ReviewCommentListResponse = {
632
+ comments: Array<ReviewComment>;
633
+ total: number;
634
+ hasMore: boolean;
635
+ };
636
+ type ReviewComment = {
637
+ id: string;
638
+ body: ReviewCommentBody;
639
+ author: ReviewAuthor;
640
+ createdAt: string;
641
+ };
642
+ type ReviewCommentBody = string;
643
+ type CreateReviewCommentResponse = {
644
+ comment: ReviewComment;
645
+ commentCount: number;
646
+ };
647
+ type CreateReviewCommentRequest = {
648
+ body: ReviewCommentBody;
649
+ };
650
+ type DeleteReviewCommentResponse = {
651
+ commentCount: number;
652
+ };
576
653
  type ReviewReplyResponse = {
577
654
  developerReply: ReviewReply;
578
655
  };
@@ -680,6 +757,8 @@ type ActivityRow = ({
680
757
  } & ActivityRowTronPot) | ({
681
758
  kind: "tron_cashout";
682
759
  } & ActivityRowTronCashout) | ({
760
+ kind: "tron_transfer";
761
+ } & ActivityRowTronTransfer) | ({
683
762
  kind: "referral_earning";
684
763
  } & ActivityRowReferralEarning);
685
764
  type ActivityRowPayment = {
@@ -927,6 +1006,8 @@ type ActivityRowTronPot = {
927
1006
  role: "incoming" | "outgoing";
928
1007
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
929
1008
  amountCents: number;
1009
+ usdCents: number;
1010
+ status: "settled";
930
1011
  app: {
931
1012
  id: string;
932
1013
  name: string;
@@ -934,8 +1015,16 @@ type ActivityRowTronPot = {
934
1015
  slug: string | null;
935
1016
  bannerUrl: string | null;
936
1017
  } | null;
1018
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
937
1019
  metadata?: PaymentMetadata | null;
938
1020
  };
1021
+ type ActivityTronInvolvedUser = {
1022
+ userId: string;
1023
+ handle: string | null;
1024
+ displayName: string | null;
1025
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
1026
+ amountCents: number;
1027
+ };
939
1028
  type ActivityRowTronCashout = {
940
1029
  kind: "tron_cashout";
941
1030
  groupId: string | null;
@@ -953,6 +1042,20 @@ type ActivityRowTronCashout = {
953
1042
  rejectionReason: string | null;
954
1043
  settledAt: string | null;
955
1044
  };
1045
+ type ActivityRowTronTransfer = {
1046
+ kind: "tron_transfer";
1047
+ groupId: string | null;
1048
+ id: string;
1049
+ occurredAt: string;
1050
+ role: "incoming" | "outgoing";
1051
+ amountCents: number;
1052
+ usdCents: number;
1053
+ status: "settled";
1054
+ counterpartyUserId: string | null;
1055
+ counterpartyHandle: string | null;
1056
+ counterpartyDisplayName: string | null;
1057
+ note: string | null;
1058
+ };
956
1059
  type ActivityRowReferralEarning = {
957
1060
  kind: "referral_earning";
958
1061
  groupId: string | null;
@@ -1018,7 +1121,7 @@ type TronLedgerResponse = {
1018
1121
  };
1019
1122
  type TronLedgerEntry = {
1020
1123
  id: string;
1021
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
1124
+ kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
1022
1125
  amountCents: number;
1023
1126
  currency: string;
1024
1127
  createdAt: string;
@@ -1033,6 +1136,45 @@ type TronDepositResponse = {
1033
1136
  type TronDepositRequest = {
1034
1137
  amountCents: number;
1035
1138
  };
1139
+ type TronTransferResponse = {
1140
+ status: "completed";
1141
+ amountCents: number;
1142
+ balanceCents: number;
1143
+ recipient: {
1144
+ userId: string;
1145
+ handle: string | null;
1146
+ displayName: string | null;
1147
+ };
1148
+ };
1149
+ type TronTransferRequest = {
1150
+ recipientUserId: string;
1151
+ amountCents: number;
1152
+ note?: string;
1153
+ challengeId?: string;
1154
+ signature?: string;
1155
+ threadId?: string;
1156
+ };
1157
+ type TronSecuritySetting = {
1158
+ requireSignature: boolean;
1159
+ };
1160
+ type TronTransferChallengeResponse = ({
1161
+ required: false;
1162
+ } & TronTransferChallengeNotRequired) | ({
1163
+ required: true;
1164
+ } & TronTransferChallengeRequired);
1165
+ type TronTransferChallengeNotRequired = {
1166
+ required: false;
1167
+ };
1168
+ type TronTransferChallengeRequired = {
1169
+ required: true;
1170
+ challengeId: string;
1171
+ message: string;
1172
+ expiresAt: string;
1173
+ };
1174
+ type TronTransferChallengeRequest = {
1175
+ recipientUserId: string;
1176
+ amountCents: number;
1177
+ };
1036
1178
  type TronGameBalanceResponse = {
1037
1179
  balanceCents: number;
1038
1180
  rakeBps: number;
@@ -1307,6 +1449,7 @@ type ThreadLastMessagePreview = {
1307
1449
  url: string;
1308
1450
  count: number;
1309
1451
  } | null;
1452
+ transaction?: MessageTransaction;
1310
1453
  sentAt: string;
1311
1454
  } | null;
1312
1455
  type MessageEnvelope = {
@@ -1318,6 +1461,11 @@ type MessageEnvelope = {
1318
1461
  iv: string;
1319
1462
  ct: string;
1320
1463
  } | null;
1464
+ type MessageTransaction = {
1465
+ kind: "tron_transfer";
1466
+ amountCents: number;
1467
+ recipientUserId: string;
1468
+ } | null;
1321
1469
  type GroupThreadSummary = {
1322
1470
  kind: "group";
1323
1471
  id: string;
@@ -1374,6 +1522,7 @@ type MessageItem = {
1374
1522
  id: string;
1375
1523
  threadId: string;
1376
1524
  senderUserId: string;
1525
+ transaction?: MessageTransaction;
1377
1526
  body: string;
1378
1527
  envelope?: MessageEnvelope;
1379
1528
  sentAt: string;
@@ -1813,7 +1962,7 @@ type ProfileRecentReview = {
1813
1962
  appId: string;
1814
1963
  appName: string;
1815
1964
  appLogoUrl: string | null;
1816
- rating: number;
1965
+ recommended: boolean;
1817
1966
  body: string;
1818
1967
  createdAt: string;
1819
1968
  };
@@ -2173,6 +2322,11 @@ type AppPageDraft = {
2173
2322
  gallery: AppPageGallery;
2174
2323
  chapters: AppPageChapters;
2175
2324
  links: AppPageLinks;
2325
+ platforms: AppPagePlatforms;
2326
+ gameType: AppPageGameType;
2327
+ ageRating: AppPageAgeRating;
2328
+ languages: AppPageLanguages;
2329
+ releaseStatus: AppPageReleaseStatus;
2176
2330
  firstPublishedAt: string | null;
2177
2331
  reviewedAt: string | null;
2178
2332
  reviewNotes: string | null;
@@ -2195,6 +2349,11 @@ type UpdateAppPage = {
2195
2349
  gallery?: AppPageGallery;
2196
2350
  chapters?: AppPageChapters;
2197
2351
  links?: AppPageLinks;
2352
+ platforms?: AppPagePlatforms;
2353
+ gameType?: AppPageGameType;
2354
+ ageRating?: AppPageAgeRating;
2355
+ languages?: AppPageLanguages;
2356
+ releaseStatus?: AppPageReleaseStatus;
2198
2357
  };
2199
2358
  type AppPageGalleryUploadResponse = {
2200
2359
  url: string;
@@ -3632,6 +3791,194 @@ type PutMeReviewsBySlugResponses = {
3632
3791
  200: MyReviewResponse;
3633
3792
  };
3634
3793
  type PutMeReviewsBySlugResponse = PutMeReviewsBySlugResponses[keyof PutMeReviewsBySlugResponses];
3794
+ type GetMeReviewsBySlugReactionsData = {
3795
+ body?: never;
3796
+ path: {
3797
+ slug: string;
3798
+ };
3799
+ query?: never;
3800
+ url: "/me/reviews/{slug}/reactions";
3801
+ };
3802
+ type GetMeReviewsBySlugReactionsErrors = {
3803
+ /**
3804
+ * Request error
3805
+ */
3806
+ 401: ErrorResponse;
3807
+ /**
3808
+ * Request error
3809
+ */
3810
+ 404: ErrorResponse;
3811
+ };
3812
+ type GetMeReviewsBySlugReactionsError = GetMeReviewsBySlugReactionsErrors[keyof GetMeReviewsBySlugReactionsErrors];
3813
+ type GetMeReviewsBySlugReactionsResponses = {
3814
+ /**
3815
+ * The caller's per-review reactions
3816
+ */
3817
+ 200: MyReviewReactionsResponse;
3818
+ };
3819
+ type GetMeReviewsBySlugReactionsResponse = GetMeReviewsBySlugReactionsResponses[keyof GetMeReviewsBySlugReactionsResponses];
3820
+ type PostMeReviewsBySlugReactionsByReviewIdData = {
3821
+ body?: SetReviewReactionRequest;
3822
+ path: {
3823
+ slug: string;
3824
+ reviewId: string;
3825
+ };
3826
+ query?: never;
3827
+ url: "/me/reviews/{slug}/reactions/{reviewId}";
3828
+ };
3829
+ type PostMeReviewsBySlugReactionsByReviewIdErrors = {
3830
+ /**
3831
+ * Request error
3832
+ */
3833
+ 400: ErrorResponse;
3834
+ /**
3835
+ * Request error
3836
+ */
3837
+ 401: ErrorResponse;
3838
+ /**
3839
+ * Request error
3840
+ */
3841
+ 403: ErrorResponse;
3842
+ /**
3843
+ * Request error
3844
+ */
3845
+ 404: ErrorResponse;
3846
+ };
3847
+ type PostMeReviewsBySlugReactionsByReviewIdError = PostMeReviewsBySlugReactionsByReviewIdErrors[keyof PostMeReviewsBySlugReactionsByReviewIdErrors];
3848
+ type PostMeReviewsBySlugReactionsByReviewIdResponses = {
3849
+ /**
3850
+ * The review's updated reaction counts + the caller's stored state
3851
+ */
3852
+ 200: SetReviewReactionResponse;
3853
+ };
3854
+ type PostMeReviewsBySlugReactionsByReviewIdResponse = PostMeReviewsBySlugReactionsByReviewIdResponses[keyof PostMeReviewsBySlugReactionsByReviewIdResponses];
3855
+ type PostMeReviewsBySlugTipsByReviewIdData = {
3856
+ body?: TipReviewRequest;
3857
+ path: {
3858
+ slug: string;
3859
+ reviewId: string;
3860
+ };
3861
+ query?: never;
3862
+ url: "/me/reviews/{slug}/tips/{reviewId}";
3863
+ };
3864
+ type PostMeReviewsBySlugTipsByReviewIdErrors = {
3865
+ /**
3866
+ * Request error
3867
+ */
3868
+ 400: ErrorResponse;
3869
+ /**
3870
+ * Request error
3871
+ */
3872
+ 401: ErrorResponse;
3873
+ /**
3874
+ * Request error
3875
+ */
3876
+ 403: ErrorResponse;
3877
+ /**
3878
+ * Request error
3879
+ */
3880
+ 404: ErrorResponse;
3881
+ /**
3882
+ * Request error
3883
+ */
3884
+ 409: ErrorResponse;
3885
+ };
3886
+ type PostMeReviewsBySlugTipsByReviewIdError = PostMeReviewsBySlugTipsByReviewIdErrors[keyof PostMeReviewsBySlugTipsByReviewIdErrors];
3887
+ type PostMeReviewsBySlugTipsByReviewIdResponses = {
3888
+ /**
3889
+ * Tip completed; the sender's balance after + the review's new total tipped
3890
+ */
3891
+ 200: TipReviewResponse;
3892
+ };
3893
+ type PostMeReviewsBySlugTipsByReviewIdResponse = PostMeReviewsBySlugTipsByReviewIdResponses[keyof PostMeReviewsBySlugTipsByReviewIdResponses];
3894
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsData = {
3895
+ body?: never;
3896
+ path: {
3897
+ slug: string;
3898
+ reviewId: string;
3899
+ };
3900
+ query?: {
3901
+ limit?: number;
3902
+ offset?: number | null;
3903
+ };
3904
+ url: "/public/apps/{slug}/reviews/{reviewId}/comments";
3905
+ };
3906
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors = {
3907
+ /**
3908
+ * Request error
3909
+ */
3910
+ 400: ErrorResponse;
3911
+ /**
3912
+ * Request error
3913
+ */
3914
+ 404: ErrorResponse;
3915
+ };
3916
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsError = GetPublicAppsBySlugReviewsByReviewIdCommentsErrors[keyof GetPublicAppsBySlugReviewsByReviewIdCommentsErrors];
3917
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses = {
3918
+ /**
3919
+ * The review's comment page
3920
+ */
3921
+ 200: ReviewCommentListResponse;
3922
+ };
3923
+ type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse = GetPublicAppsBySlugReviewsByReviewIdCommentsResponses[keyof GetPublicAppsBySlugReviewsByReviewIdCommentsResponses];
3924
+ type PostMeReviewsBySlugCommentsByReviewIdData = {
3925
+ body?: CreateReviewCommentRequest;
3926
+ path: {
3927
+ slug: string;
3928
+ reviewId: string;
3929
+ };
3930
+ query?: never;
3931
+ url: "/me/reviews/{slug}/comments/{reviewId}";
3932
+ };
3933
+ type PostMeReviewsBySlugCommentsByReviewIdErrors = {
3934
+ /**
3935
+ * Request error
3936
+ */
3937
+ 400: ErrorResponse;
3938
+ /**
3939
+ * Request error
3940
+ */
3941
+ 401: ErrorResponse;
3942
+ /**
3943
+ * Request error
3944
+ */
3945
+ 404: ErrorResponse;
3946
+ };
3947
+ type PostMeReviewsBySlugCommentsByReviewIdError = PostMeReviewsBySlugCommentsByReviewIdErrors[keyof PostMeReviewsBySlugCommentsByReviewIdErrors];
3948
+ type PostMeReviewsBySlugCommentsByReviewIdResponses = {
3949
+ /**
3950
+ * The created comment + the review's new comment count
3951
+ */
3952
+ 201: CreateReviewCommentResponse;
3953
+ };
3954
+ type PostMeReviewsBySlugCommentsByReviewIdResponse = PostMeReviewsBySlugCommentsByReviewIdResponses[keyof PostMeReviewsBySlugCommentsByReviewIdResponses];
3955
+ type DeleteMeReviewsBySlugCommentsByCommentIdData = {
3956
+ body?: never;
3957
+ path: {
3958
+ slug: string;
3959
+ commentId: string;
3960
+ };
3961
+ query?: never;
3962
+ url: "/me/reviews/{slug}/comments/{commentId}";
3963
+ };
3964
+ type DeleteMeReviewsBySlugCommentsByCommentIdErrors = {
3965
+ /**
3966
+ * Request error
3967
+ */
3968
+ 401: ErrorResponse;
3969
+ /**
3970
+ * Request error
3971
+ */
3972
+ 404: ErrorResponse;
3973
+ };
3974
+ type DeleteMeReviewsBySlugCommentsByCommentIdError = DeleteMeReviewsBySlugCommentsByCommentIdErrors[keyof DeleteMeReviewsBySlugCommentsByCommentIdErrors];
3975
+ type DeleteMeReviewsBySlugCommentsByCommentIdResponses = {
3976
+ /**
3977
+ * Comment removed; the review's new comment count
3978
+ */
3979
+ 200: DeleteReviewCommentResponse;
3980
+ };
3981
+ type DeleteMeReviewsBySlugCommentsByCommentIdResponse = DeleteMeReviewsBySlugCommentsByCommentIdResponses[keyof DeleteMeReviewsBySlugCommentsByCommentIdResponses];
3635
3982
  type GetMeDeveloperAppsByAppIdReviewsData = {
3636
3983
  body?: never;
3637
3984
  path: {
@@ -4155,6 +4502,122 @@ type PostPaymentsMeTronDepositResponses = {
4155
4502
  200: TronDepositResponse;
4156
4503
  };
4157
4504
  type PostPaymentsMeTronDepositResponse = PostPaymentsMeTronDepositResponses[keyof PostPaymentsMeTronDepositResponses];
4505
+ type PostPaymentsMeTronTransferData = {
4506
+ body: TronTransferRequest;
4507
+ path?: never;
4508
+ query?: never;
4509
+ url: "/payments/me/tron/transfer";
4510
+ };
4511
+ type PostPaymentsMeTronTransferErrors = {
4512
+ /**
4513
+ * Request error
4514
+ */
4515
+ 400: ErrorResponse;
4516
+ /**
4517
+ * Request error
4518
+ */
4519
+ 401: ErrorResponse;
4520
+ /**
4521
+ * Request error
4522
+ */
4523
+ 404: ErrorResponse;
4524
+ /**
4525
+ * Request error
4526
+ */
4527
+ 409: ErrorResponse;
4528
+ /**
4529
+ * Request error
4530
+ */
4531
+ 503: ErrorResponse;
4532
+ };
4533
+ type PostPaymentsMeTronTransferError = PostPaymentsMeTronTransferErrors[keyof PostPaymentsMeTronTransferErrors];
4534
+ type PostPaymentsMeTronTransferResponses = {
4535
+ /**
4536
+ * Transfer completed; carries the sender's remaining balance + recipient identity
4537
+ */
4538
+ 200: TronTransferResponse;
4539
+ };
4540
+ type PostPaymentsMeTronTransferResponse = PostPaymentsMeTronTransferResponses[keyof PostPaymentsMeTronTransferResponses];
4541
+ type GetPaymentsMeTronSecurityData = {
4542
+ body?: never;
4543
+ path?: never;
4544
+ query?: never;
4545
+ url: "/payments/me/tron/security";
4546
+ };
4547
+ type GetPaymentsMeTronSecurityErrors = {
4548
+ /**
4549
+ * Request error
4550
+ */
4551
+ 401: ErrorResponse;
4552
+ };
4553
+ type GetPaymentsMeTronSecurityError = GetPaymentsMeTronSecurityErrors[keyof GetPaymentsMeTronSecurityErrors];
4554
+ type GetPaymentsMeTronSecurityResponses = {
4555
+ /**
4556
+ * The caller's require-signature setting
4557
+ */
4558
+ 200: TronSecuritySetting;
4559
+ };
4560
+ type GetPaymentsMeTronSecurityResponse = GetPaymentsMeTronSecurityResponses[keyof GetPaymentsMeTronSecurityResponses];
4561
+ type PutPaymentsMeTronSecurityData = {
4562
+ body: TronSecuritySetting;
4563
+ path?: never;
4564
+ query?: never;
4565
+ url: "/payments/me/tron/security";
4566
+ };
4567
+ type PutPaymentsMeTronSecurityErrors = {
4568
+ /**
4569
+ * Request error
4570
+ */
4571
+ 400: ErrorResponse;
4572
+ /**
4573
+ * Request error
4574
+ */
4575
+ 401: ErrorResponse;
4576
+ /**
4577
+ * Request error
4578
+ */
4579
+ 409: ErrorResponse;
4580
+ };
4581
+ type PutPaymentsMeTronSecurityError = PutPaymentsMeTronSecurityErrors[keyof PutPaymentsMeTronSecurityErrors];
4582
+ type PutPaymentsMeTronSecurityResponses = {
4583
+ /**
4584
+ * The saved setting
4585
+ */
4586
+ 200: TronSecuritySetting;
4587
+ };
4588
+ type PutPaymentsMeTronSecurityResponse = PutPaymentsMeTronSecurityResponses[keyof PutPaymentsMeTronSecurityResponses];
4589
+ type PostPaymentsMeTronTransferChallengeData = {
4590
+ body: TronTransferChallengeRequest;
4591
+ path?: never;
4592
+ query?: never;
4593
+ url: "/payments/me/tron/transfer/challenge";
4594
+ };
4595
+ type PostPaymentsMeTronTransferChallengeErrors = {
4596
+ /**
4597
+ * Request error
4598
+ */
4599
+ 400: ErrorResponse;
4600
+ /**
4601
+ * Request error
4602
+ */
4603
+ 401: ErrorResponse;
4604
+ /**
4605
+ * Request error
4606
+ */
4607
+ 409: ErrorResponse;
4608
+ /**
4609
+ * Request error
4610
+ */
4611
+ 503: ErrorResponse;
4612
+ };
4613
+ type PostPaymentsMeTronTransferChallengeError = PostPaymentsMeTronTransferChallengeErrors[keyof PostPaymentsMeTronTransferChallengeErrors];
4614
+ type PostPaymentsMeTronTransferChallengeResponses = {
4615
+ /**
4616
+ * Either `required: false`, or the challenge to sign
4617
+ */
4618
+ 200: TronTransferChallengeResponse;
4619
+ };
4620
+ type PostPaymentsMeTronTransferChallengeResponse = PostPaymentsMeTronTransferChallengeResponses[keyof PostPaymentsMeTronTransferChallengeResponses];
4158
4621
  type GetOauthPaymentsTronBalanceData = {
4159
4622
  body?: never;
4160
4623
  path?: never;
@@ -10524,12 +10987,63 @@ declare const zAppPageLinks: z$1.ZodArray<z$1.ZodObject<{
10524
10987
  order: z$1.ZodInt;
10525
10988
  }, z$1.core.$strip>>;
10526
10989
  declare const zPublicAppPageStudio: z$1.ZodObject<{
10990
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
10527
10991
  name: z$1.ZodNullable<z$1.ZodString>;
10528
10992
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
10529
10993
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
10530
10994
  xHandle: z$1.ZodNullable<z$1.ZodString>;
10531
10995
  githubUrl: z$1.ZodNullable<z$1.ZodURL>;
10532
10996
  }, z$1.core.$strip>;
10997
+ declare const zAppPagePlatforms: z$1.ZodArray<z$1.ZodEnum<{
10998
+ web: "web";
10999
+ ios: "ios";
11000
+ android: "android";
11001
+ pc: "pc";
11002
+ playstation: "playstation";
11003
+ xbox: "xbox";
11004
+ switch: "switch";
11005
+ }>>;
11006
+ declare const zAppPageGameType: z$1.ZodNullable<z$1.ZodEnum<{
11007
+ single_player: "single_player";
11008
+ multiplayer: "multiplayer";
11009
+ both: "both";
11010
+ }>>;
11011
+ declare const zAppPageAgeRating: z$1.ZodNullable<z$1.ZodEnum<{
11012
+ everyone: "everyone";
11013
+ "13_plus": "13_plus";
11014
+ "16_plus": "16_plus";
11015
+ "18_plus": "18_plus";
11016
+ }>>;
11017
+ declare const zAppPageLanguages: z$1.ZodArray<z$1.ZodEnum<{
11018
+ id: "id";
11019
+ en: "en";
11020
+ es: "es";
11021
+ fr: "fr";
11022
+ de: "de";
11023
+ pt: "pt";
11024
+ it: "it";
11025
+ ru: "ru";
11026
+ ja: "ja";
11027
+ ko: "ko";
11028
+ zh: "zh";
11029
+ hi: "hi";
11030
+ ar: "ar";
11031
+ tr: "tr";
11032
+ vi: "vi";
11033
+ th: "th";
11034
+ pl: "pl";
11035
+ nl: "nl";
11036
+ }>>;
11037
+ declare const zAppPageReleaseStatus: z$1.ZodEnum<{
11038
+ live: "live";
11039
+ open_beta: "open_beta";
11040
+ coming_soon: "coming_soon";
11041
+ }>;
11042
+ declare const zAppPagePaymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
11043
+ both: "both";
11044
+ tron: "tron";
11045
+ onchain: "onchain";
11046
+ }>>;
10533
11047
  declare const zPublicAppPage: z$1.ZodObject<{
10534
11048
  appId: z$1.ZodUUID;
10535
11049
  slug: z$1.ZodString;
@@ -10588,40 +11102,111 @@ declare const zPublicAppPage: z$1.ZodObject<{
10588
11102
  order: z$1.ZodInt;
10589
11103
  }, z$1.core.$strip>>;
10590
11104
  studio: z$1.ZodObject<{
11105
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
10591
11106
  name: z$1.ZodNullable<z$1.ZodString>;
10592
11107
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
10593
11108
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
10594
11109
  xHandle: z$1.ZodNullable<z$1.ZodString>;
10595
11110
  githubUrl: z$1.ZodNullable<z$1.ZodURL>;
10596
11111
  }, z$1.core.$strip>;
11112
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
11113
+ web: "web";
11114
+ ios: "ios";
11115
+ android: "android";
11116
+ pc: "pc";
11117
+ playstation: "playstation";
11118
+ xbox: "xbox";
11119
+ switch: "switch";
11120
+ }>>;
11121
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
11122
+ single_player: "single_player";
11123
+ multiplayer: "multiplayer";
11124
+ both: "both";
11125
+ }>>;
11126
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
11127
+ everyone: "everyone";
11128
+ "13_plus": "13_plus";
11129
+ "16_plus": "16_plus";
11130
+ "18_plus": "18_plus";
11131
+ }>>;
11132
+ languages: z$1.ZodArray<z$1.ZodEnum<{
11133
+ id: "id";
11134
+ en: "en";
11135
+ es: "es";
11136
+ fr: "fr";
11137
+ de: "de";
11138
+ pt: "pt";
11139
+ it: "it";
11140
+ ru: "ru";
11141
+ ja: "ja";
11142
+ ko: "ko";
11143
+ zh: "zh";
11144
+ hi: "hi";
11145
+ ar: "ar";
11146
+ tr: "tr";
11147
+ vi: "vi";
11148
+ th: "th";
11149
+ pl: "pl";
11150
+ nl: "nl";
11151
+ }>>;
11152
+ releaseStatus: z$1.ZodEnum<{
11153
+ live: "live";
11154
+ open_beta: "open_beta";
11155
+ coming_soon: "coming_soon";
11156
+ }>;
11157
+ paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
11158
+ both: "both";
11159
+ tron: "tron";
11160
+ onchain: "onchain";
11161
+ }>>;
10597
11162
  oauthScopes: z$1.ZodArray<z$1.ZodString>;
10598
11163
  chains: z$1.ZodArray<z$1.ZodString>;
10599
11164
  publishedAt: z$1.ZodISODateTime;
11165
+ updatedAt: z$1.ZodISODateTime;
10600
11166
  }, z$1.core.$strip>;
10601
- declare const zReviewDistribution: z$1.ZodObject<{
10602
- 1: z$1.ZodInt;
10603
- 2: z$1.ZodInt;
10604
- 3: z$1.ZodInt;
10605
- 4: z$1.ZodInt;
10606
- 5: z$1.ZodInt;
10607
- }, z$1.core.$strip>;
11167
+ declare const zReviewSummaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
11168
+ overwhelmingly_positive: "overwhelmingly_positive";
11169
+ very_positive: "very_positive";
11170
+ positive: "positive";
11171
+ mostly_positive: "mostly_positive";
11172
+ mixed: "mixed";
11173
+ mostly_negative: "mostly_negative";
11174
+ negative: "negative";
11175
+ overwhelmingly_negative: "overwhelmingly_negative";
11176
+ }>>;
10608
11177
  declare const zReviewAggregate: z$1.ZodObject<{
10609
- average: z$1.ZodNullable<z$1.ZodNumber>;
10610
11178
  count: z$1.ZodInt;
10611
- distribution: 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>;
11179
+ recommendedCount: z$1.ZodInt;
11180
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
11181
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
11182
+ overwhelmingly_positive: "overwhelmingly_positive";
11183
+ very_positive: "very_positive";
11184
+ positive: "positive";
11185
+ mostly_positive: "mostly_positive";
11186
+ mixed: "mixed";
11187
+ mostly_negative: "mostly_negative";
11188
+ negative: "negative";
11189
+ overwhelmingly_negative: "overwhelmingly_negative";
11190
+ }>>;
10618
11191
  }, z$1.core.$strip>;
10619
- declare const zReviewRating: z$1.ZodInt;
11192
+ declare const zReviewRecommended: z$1.ZodBoolean;
10620
11193
  declare const zReviewBody: z$1.ZodString;
11194
+ declare const zReviewReactionCounts: z$1.ZodObject<{
11195
+ helpful: z$1.ZodInt;
11196
+ unhelpful: z$1.ZodInt;
11197
+ funny: z$1.ZodInt;
11198
+ }, z$1.core.$strip>;
10621
11199
  declare const zReviewAuthor: z$1.ZodObject<{
11200
+ userId: z$1.ZodUUID;
11201
+ handle: z$1.ZodNullable<z$1.ZodString>;
10622
11202
  name: z$1.ZodNullable<z$1.ZodString>;
10623
11203
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10624
11204
  }, z$1.core.$strip>;
11205
+ declare const zReviewerStats: z$1.ZodObject<{
11206
+ playtimeSecondsThisGame: z$1.ZodInt;
11207
+ gamesPlayed: z$1.ZodInt;
11208
+ reviewsWritten: z$1.ZodInt;
11209
+ }, z$1.core.$strip>;
10625
11210
  declare const zReviewReplyBody: z$1.ZodString;
10626
11211
  declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
10627
11212
  body: z$1.ZodString;
@@ -10629,12 +11214,26 @@ declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
10629
11214
  }, z$1.core.$strip>>;
10630
11215
  declare const zReview: z$1.ZodObject<{
10631
11216
  id: z$1.ZodUUID;
10632
- rating: z$1.ZodInt;
11217
+ recommended: z$1.ZodBoolean;
10633
11218
  body: z$1.ZodString;
11219
+ reactions: z$1.ZodObject<{
11220
+ helpful: z$1.ZodInt;
11221
+ unhelpful: z$1.ZodInt;
11222
+ funny: z$1.ZodInt;
11223
+ }, z$1.core.$strip>;
11224
+ tippedCents: z$1.ZodInt;
11225
+ commentCount: z$1.ZodInt;
10634
11226
  author: z$1.ZodObject<{
11227
+ userId: z$1.ZodUUID;
11228
+ handle: z$1.ZodNullable<z$1.ZodString>;
10635
11229
  name: z$1.ZodNullable<z$1.ZodString>;
10636
11230
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10637
11231
  }, z$1.core.$strip>;
11232
+ authorStats: z$1.ZodObject<{
11233
+ playtimeSecondsThisGame: z$1.ZodInt;
11234
+ gamesPlayed: z$1.ZodInt;
11235
+ reviewsWritten: z$1.ZodInt;
11236
+ }, z$1.core.$strip>;
10638
11237
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10639
11238
  body: z$1.ZodString;
10640
11239
  repliedAt: z$1.ZodISODateTime;
@@ -10644,24 +11243,42 @@ declare const zReview: z$1.ZodObject<{
10644
11243
  }, z$1.core.$strip>;
10645
11244
  declare const zReviewListResponse: z$1.ZodObject<{
10646
11245
  aggregate: z$1.ZodObject<{
10647
- average: z$1.ZodNullable<z$1.ZodNumber>;
10648
11246
  count: z$1.ZodInt;
10649
- distribution: z$1.ZodObject<{
10650
- 1: z$1.ZodInt;
10651
- 2: z$1.ZodInt;
10652
- 3: z$1.ZodInt;
10653
- 4: z$1.ZodInt;
10654
- 5: z$1.ZodInt;
10655
- }, z$1.core.$strip>;
11247
+ recommendedCount: z$1.ZodInt;
11248
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
11249
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
11250
+ overwhelmingly_positive: "overwhelmingly_positive";
11251
+ very_positive: "very_positive";
11252
+ positive: "positive";
11253
+ mostly_positive: "mostly_positive";
11254
+ mixed: "mixed";
11255
+ mostly_negative: "mostly_negative";
11256
+ negative: "negative";
11257
+ overwhelmingly_negative: "overwhelmingly_negative";
11258
+ }>>;
10656
11259
  }, z$1.core.$strip>;
10657
11260
  reviews: z$1.ZodArray<z$1.ZodObject<{
10658
11261
  id: z$1.ZodUUID;
10659
- rating: z$1.ZodInt;
11262
+ recommended: z$1.ZodBoolean;
10660
11263
  body: z$1.ZodString;
11264
+ reactions: z$1.ZodObject<{
11265
+ helpful: z$1.ZodInt;
11266
+ unhelpful: z$1.ZodInt;
11267
+ funny: z$1.ZodInt;
11268
+ }, z$1.core.$strip>;
11269
+ tippedCents: z$1.ZodInt;
11270
+ commentCount: z$1.ZodInt;
10661
11271
  author: z$1.ZodObject<{
11272
+ userId: z$1.ZodUUID;
11273
+ handle: z$1.ZodNullable<z$1.ZodString>;
10662
11274
  name: z$1.ZodNullable<z$1.ZodString>;
10663
11275
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10664
11276
  }, z$1.core.$strip>;
11277
+ authorStats: z$1.ZodObject<{
11278
+ playtimeSecondsThisGame: z$1.ZodInt;
11279
+ gamesPlayed: z$1.ZodInt;
11280
+ reviewsWritten: z$1.ZodInt;
11281
+ }, z$1.core.$strip>;
10665
11282
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10666
11283
  body: z$1.ZodString;
10667
11284
  repliedAt: z$1.ZodISODateTime;
@@ -10673,10 +11290,9 @@ declare const zReviewListResponse: z$1.ZodObject<{
10673
11290
  hasMore: z$1.ZodBoolean;
10674
11291
  }, z$1.core.$strip>;
10675
11292
  declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
11293
+ helpful: "helpful";
10676
11294
  newest: "newest";
10677
11295
  oldest: "oldest";
10678
- highest: "highest";
10679
- lowest: "lowest";
10680
11296
  }>>;
10681
11297
  declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
10682
11298
  payment: "payment";
@@ -10684,7 +11300,7 @@ declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
10684
11300
  }>>;
10685
11301
  declare const zOwnReview: z$1.ZodNullable<z$1.ZodObject<{
10686
11302
  id: z$1.ZodUUID;
10687
- rating: z$1.ZodInt;
11303
+ recommended: z$1.ZodBoolean;
10688
11304
  body: z$1.ZodString;
10689
11305
  createdAt: z$1.ZodISODateTime;
10690
11306
  updatedAt: z$1.ZodISODateTime;
@@ -10697,7 +11313,7 @@ declare const zMyReviewResponse: z$1.ZodObject<{
10697
11313
  }>>;
10698
11314
  review: z$1.ZodNullable<z$1.ZodObject<{
10699
11315
  id: z$1.ZodUUID;
10700
- rating: z$1.ZodInt;
11316
+ recommended: z$1.ZodBoolean;
10701
11317
  body: z$1.ZodString;
10702
11318
  createdAt: z$1.ZodISODateTime;
10703
11319
  updatedAt: z$1.ZodISODateTime;
@@ -10705,9 +11321,111 @@ declare const zMyReviewResponse: z$1.ZodObject<{
10705
11321
  isAppOwner: z$1.ZodBoolean;
10706
11322
  }, z$1.core.$strip>;
10707
11323
  declare const zUpsertReviewRequest: z$1.ZodObject<{
10708
- rating: z$1.ZodInt;
11324
+ recommended: z$1.ZodBoolean;
11325
+ body: z$1.ZodString;
11326
+ }, z$1.core.$strip>;
11327
+ declare const zReviewVote: z$1.ZodNullable<z$1.ZodEnum<{
11328
+ helpful: "helpful";
11329
+ unhelpful: "unhelpful";
11330
+ }>>;
11331
+ declare const zMyReviewReaction: z$1.ZodObject<{
11332
+ reviewId: z$1.ZodUUID;
11333
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11334
+ helpful: "helpful";
11335
+ unhelpful: "unhelpful";
11336
+ }>>;
11337
+ funny: z$1.ZodBoolean;
11338
+ }, z$1.core.$strip>;
11339
+ declare const zMyReviewReactionsResponse: z$1.ZodObject<{
11340
+ reactions: z$1.ZodArray<z$1.ZodObject<{
11341
+ reviewId: z$1.ZodUUID;
11342
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11343
+ helpful: "helpful";
11344
+ unhelpful: "unhelpful";
11345
+ }>>;
11346
+ funny: z$1.ZodBoolean;
11347
+ }, z$1.core.$strip>>;
11348
+ }, z$1.core.$strip>;
11349
+ declare const zSetReviewReactionResponse: z$1.ZodObject<{
11350
+ reactions: z$1.ZodObject<{
11351
+ helpful: z$1.ZodInt;
11352
+ unhelpful: z$1.ZodInt;
11353
+ funny: z$1.ZodInt;
11354
+ }, z$1.core.$strip>;
11355
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11356
+ helpful: "helpful";
11357
+ unhelpful: "unhelpful";
11358
+ }>>;
11359
+ funny: z$1.ZodBoolean;
11360
+ }, z$1.core.$strip>;
11361
+ declare const zSetReviewReactionRequest: z$1.ZodObject<{
11362
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
11363
+ helpful: "helpful";
11364
+ unhelpful: "unhelpful";
11365
+ }>>;
11366
+ funny: z$1.ZodBoolean;
11367
+ }, z$1.core.$strip>;
11368
+ declare const zTipReviewResponse: z$1.ZodObject<{
11369
+ status: z$1.ZodEnum<{
11370
+ completed: "completed";
11371
+ }>;
11372
+ amountCents: z$1.ZodInt;
11373
+ balanceCents: z$1.ZodInt;
11374
+ tippedCents: z$1.ZodInt;
11375
+ }, z$1.core.$strip>;
11376
+ declare const zTipReviewRequest: z$1.ZodObject<{
11377
+ amountCents: z$1.ZodInt;
11378
+ note: z$1.ZodOptional<z$1.ZodString>;
11379
+ challengeId: z$1.ZodOptional<z$1.ZodUUID>;
11380
+ signature: z$1.ZodOptional<z$1.ZodString>;
11381
+ }, z$1.core.$strip>;
11382
+ declare const zReviewCommentBody: z$1.ZodString;
11383
+ declare const zReviewComment: z$1.ZodObject<{
11384
+ id: z$1.ZodUUID;
11385
+ body: z$1.ZodString;
11386
+ author: z$1.ZodObject<{
11387
+ userId: z$1.ZodUUID;
11388
+ handle: z$1.ZodNullable<z$1.ZodString>;
11389
+ name: z$1.ZodNullable<z$1.ZodString>;
11390
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
11391
+ }, z$1.core.$strip>;
11392
+ createdAt: z$1.ZodISODateTime;
11393
+ }, z$1.core.$strip>;
11394
+ declare const zReviewCommentListResponse: z$1.ZodObject<{
11395
+ comments: z$1.ZodArray<z$1.ZodObject<{
11396
+ id: z$1.ZodUUID;
11397
+ body: z$1.ZodString;
11398
+ author: z$1.ZodObject<{
11399
+ userId: z$1.ZodUUID;
11400
+ handle: z$1.ZodNullable<z$1.ZodString>;
11401
+ name: z$1.ZodNullable<z$1.ZodString>;
11402
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
11403
+ }, z$1.core.$strip>;
11404
+ createdAt: z$1.ZodISODateTime;
11405
+ }, z$1.core.$strip>>;
11406
+ total: z$1.ZodInt;
11407
+ hasMore: z$1.ZodBoolean;
11408
+ }, z$1.core.$strip>;
11409
+ declare const zCreateReviewCommentResponse: z$1.ZodObject<{
11410
+ comment: z$1.ZodObject<{
11411
+ id: z$1.ZodUUID;
11412
+ body: z$1.ZodString;
11413
+ author: z$1.ZodObject<{
11414
+ userId: z$1.ZodUUID;
11415
+ handle: z$1.ZodNullable<z$1.ZodString>;
11416
+ name: z$1.ZodNullable<z$1.ZodString>;
11417
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
11418
+ }, z$1.core.$strip>;
11419
+ createdAt: z$1.ZodISODateTime;
11420
+ }, z$1.core.$strip>;
11421
+ commentCount: z$1.ZodInt;
11422
+ }, z$1.core.$strip>;
11423
+ declare const zCreateReviewCommentRequest: z$1.ZodObject<{
10709
11424
  body: z$1.ZodString;
10710
11425
  }, z$1.core.$strip>;
11426
+ declare const zDeleteReviewCommentResponse: z$1.ZodObject<{
11427
+ commentCount: z$1.ZodInt;
11428
+ }, z$1.core.$strip>;
10711
11429
  declare const zReviewReplyResponse: z$1.ZodObject<{
10712
11430
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10713
11431
  body: z$1.ZodString;
@@ -11248,6 +11966,19 @@ declare const zActivityRowTronDeposit: z$1.ZodObject<{
11248
11966
  receiptUrl: z$1.ZodNullable<z$1.ZodURL>;
11249
11967
  paymentIntentId: z$1.ZodNullable<z$1.ZodString>;
11250
11968
  }, z$1.core.$strip>;
11969
+ declare const zActivityTronInvolvedUser: z$1.ZodObject<{
11970
+ userId: z$1.ZodString;
11971
+ handle: z$1.ZodNullable<z$1.ZodString>;
11972
+ displayName: z$1.ZodNullable<z$1.ZodString>;
11973
+ role: z$1.ZodEnum<{
11974
+ stake: "stake";
11975
+ payout: "payout";
11976
+ dev_cut: "dev_cut";
11977
+ purchase: "purchase";
11978
+ referral: "referral";
11979
+ }>;
11980
+ amountCents: z$1.ZodInt;
11981
+ }, z$1.core.$strip>;
11251
11982
  declare const zActivityRowTronPot: z$1.ZodObject<{
11252
11983
  kind: z$1.ZodEnum<{
11253
11984
  tron_pot: "tron_pot";
@@ -11267,6 +11998,10 @@ declare const zActivityRowTronPot: z$1.ZodObject<{
11267
11998
  referral: "referral";
11268
11999
  }>;
11269
12000
  amountCents: z$1.ZodInt;
12001
+ usdCents: z$1.ZodInt;
12002
+ status: z$1.ZodEnum<{
12003
+ settled: "settled";
12004
+ }>;
11270
12005
  app: z$1.ZodNullable<z$1.ZodObject<{
11271
12006
  id: z$1.ZodString;
11272
12007
  name: z$1.ZodString;
@@ -11274,6 +12009,19 @@ declare const zActivityRowTronPot: z$1.ZodObject<{
11274
12009
  slug: z$1.ZodNullable<z$1.ZodString>;
11275
12010
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
11276
12011
  }, z$1.core.$strip>>;
12012
+ involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
12013
+ userId: z$1.ZodString;
12014
+ handle: z$1.ZodNullable<z$1.ZodString>;
12015
+ displayName: z$1.ZodNullable<z$1.ZodString>;
12016
+ role: z$1.ZodEnum<{
12017
+ stake: "stake";
12018
+ payout: "payout";
12019
+ dev_cut: "dev_cut";
12020
+ purchase: "purchase";
12021
+ referral: "referral";
12022
+ }>;
12023
+ amountCents: z$1.ZodInt;
12024
+ }, z$1.core.$strip>>>>;
11277
12025
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
11278
12026
  purpose: z$1.ZodOptional<z$1.ZodString>;
11279
12027
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -11309,13 +12057,34 @@ declare const zActivityRowTronCashout: z$1.ZodObject<{
11309
12057
  approved: "approved";
11310
12058
  pending: "pending";
11311
12059
  failed: "failed";
11312
- rejected: "rejected";
11313
12060
  settled: "settled";
12061
+ rejected: "rejected";
11314
12062
  }>;
11315
12063
  stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
11316
12064
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
11317
12065
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
11318
12066
  }, z$1.core.$strip>;
12067
+ declare const zActivityRowTronTransfer: z$1.ZodObject<{
12068
+ kind: z$1.ZodEnum<{
12069
+ tron_transfer: "tron_transfer";
12070
+ }>;
12071
+ groupId: z$1.ZodNullable<z$1.ZodString>;
12072
+ id: z$1.ZodString;
12073
+ occurredAt: z$1.ZodISODateTime;
12074
+ role: z$1.ZodEnum<{
12075
+ outgoing: "outgoing";
12076
+ incoming: "incoming";
12077
+ }>;
12078
+ amountCents: z$1.ZodInt;
12079
+ usdCents: z$1.ZodInt;
12080
+ status: z$1.ZodEnum<{
12081
+ settled: "settled";
12082
+ }>;
12083
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
12084
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
12085
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
12086
+ note: z$1.ZodNullable<z$1.ZodString>;
12087
+ }, z$1.core.$strip>;
11319
12088
  declare const zActivityRowReferralEarning: z$1.ZodObject<{
11320
12089
  kind: z$1.ZodEnum<{
11321
12090
  referral_earning: "referral_earning";
@@ -11676,6 +12445,10 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
11676
12445
  referral: "referral";
11677
12446
  }>;
11678
12447
  amountCents: z$1.ZodInt;
12448
+ usdCents: z$1.ZodInt;
12449
+ status: z$1.ZodEnum<{
12450
+ settled: "settled";
12451
+ }>;
11679
12452
  app: z$1.ZodNullable<z$1.ZodObject<{
11680
12453
  id: z$1.ZodString;
11681
12454
  name: z$1.ZodString;
@@ -11683,6 +12456,19 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
11683
12456
  slug: z$1.ZodNullable<z$1.ZodString>;
11684
12457
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
11685
12458
  }, z$1.core.$strip>>;
12459
+ involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
12460
+ userId: z$1.ZodString;
12461
+ handle: z$1.ZodNullable<z$1.ZodString>;
12462
+ displayName: z$1.ZodNullable<z$1.ZodString>;
12463
+ role: z$1.ZodEnum<{
12464
+ stake: "stake";
12465
+ payout: "payout";
12466
+ dev_cut: "dev_cut";
12467
+ purchase: "purchase";
12468
+ referral: "referral";
12469
+ }>;
12470
+ amountCents: z$1.ZodInt;
12471
+ }, z$1.core.$strip>>>>;
11686
12472
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
11687
12473
  purpose: z$1.ZodOptional<z$1.ZodString>;
11688
12474
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -11715,13 +12501,31 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
11715
12501
  approved: "approved";
11716
12502
  pending: "pending";
11717
12503
  failed: "failed";
11718
- rejected: "rejected";
11719
12504
  settled: "settled";
12505
+ rejected: "rejected";
11720
12506
  }>;
11721
12507
  stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
11722
12508
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
11723
12509
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
11724
12510
  kind: z$1.ZodLiteral<"tron_cashout">;
12511
+ }, z$1.core.$strip>, z$1.ZodObject<{
12512
+ groupId: z$1.ZodNullable<z$1.ZodString>;
12513
+ id: z$1.ZodString;
12514
+ occurredAt: z$1.ZodISODateTime;
12515
+ role: z$1.ZodEnum<{
12516
+ outgoing: "outgoing";
12517
+ incoming: "incoming";
12518
+ }>;
12519
+ amountCents: z$1.ZodInt;
12520
+ usdCents: z$1.ZodInt;
12521
+ status: z$1.ZodEnum<{
12522
+ settled: "settled";
12523
+ }>;
12524
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
12525
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
12526
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
12527
+ note: z$1.ZodNullable<z$1.ZodString>;
12528
+ kind: z$1.ZodLiteral<"tron_transfer">;
11725
12529
  }, z$1.core.$strip>, z$1.ZodObject<{
11726
12530
  groupId: z$1.ZodNullable<z$1.ZodString>;
11727
12531
  id: z$1.ZodString;
@@ -12081,6 +12885,10 @@ declare const zActivityResponse: z$1.ZodObject<{
12081
12885
  referral: "referral";
12082
12886
  }>;
12083
12887
  amountCents: z$1.ZodInt;
12888
+ usdCents: z$1.ZodInt;
12889
+ status: z$1.ZodEnum<{
12890
+ settled: "settled";
12891
+ }>;
12084
12892
  app: z$1.ZodNullable<z$1.ZodObject<{
12085
12893
  id: z$1.ZodString;
12086
12894
  name: z$1.ZodString;
@@ -12088,6 +12896,19 @@ declare const zActivityResponse: z$1.ZodObject<{
12088
12896
  slug: z$1.ZodNullable<z$1.ZodString>;
12089
12897
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
12090
12898
  }, z$1.core.$strip>>;
12899
+ involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
12900
+ userId: z$1.ZodString;
12901
+ handle: z$1.ZodNullable<z$1.ZodString>;
12902
+ displayName: z$1.ZodNullable<z$1.ZodString>;
12903
+ role: z$1.ZodEnum<{
12904
+ stake: "stake";
12905
+ payout: "payout";
12906
+ dev_cut: "dev_cut";
12907
+ purchase: "purchase";
12908
+ referral: "referral";
12909
+ }>;
12910
+ amountCents: z$1.ZodInt;
12911
+ }, z$1.core.$strip>>>>;
12091
12912
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
12092
12913
  purpose: z$1.ZodOptional<z$1.ZodString>;
12093
12914
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -12120,13 +12941,31 @@ declare const zActivityResponse: z$1.ZodObject<{
12120
12941
  approved: "approved";
12121
12942
  pending: "pending";
12122
12943
  failed: "failed";
12123
- rejected: "rejected";
12124
12944
  settled: "settled";
12945
+ rejected: "rejected";
12125
12946
  }>;
12126
12947
  stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
12127
12948
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
12128
12949
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
12129
12950
  kind: z$1.ZodLiteral<"tron_cashout">;
12951
+ }, z$1.core.$strip>, z$1.ZodObject<{
12952
+ groupId: z$1.ZodNullable<z$1.ZodString>;
12953
+ id: z$1.ZodString;
12954
+ occurredAt: z$1.ZodISODateTime;
12955
+ role: z$1.ZodEnum<{
12956
+ outgoing: "outgoing";
12957
+ incoming: "incoming";
12958
+ }>;
12959
+ amountCents: z$1.ZodInt;
12960
+ usdCents: z$1.ZodInt;
12961
+ status: z$1.ZodEnum<{
12962
+ settled: "settled";
12963
+ }>;
12964
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
12965
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
12966
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
12967
+ note: z$1.ZodNullable<z$1.ZodString>;
12968
+ kind: z$1.ZodLiteral<"tron_transfer">;
12130
12969
  }, z$1.core.$strip>, z$1.ZodObject<{
12131
12970
  groupId: z$1.ZodNullable<z$1.ZodString>;
12132
12971
  id: z$1.ZodString;
@@ -12168,9 +13007,9 @@ declare const zOutstandingResponse: z$1.ZodObject<{
12168
13007
  declare const zMoonpayAvailabilityResponse: z$1.ZodObject<{
12169
13008
  enabled: z$1.ZodBoolean;
12170
13009
  direction: z$1.ZodNullable<z$1.ZodEnum<{
13010
+ both: "both";
12171
13011
  buy: "buy";
12172
13012
  sell: "sell";
12173
- both: "both";
12174
13013
  }>>;
12175
13014
  countryCode: z$1.ZodNullable<z$1.ZodString>;
12176
13015
  regionSupported: z$1.ZodBoolean;
@@ -12218,6 +13057,7 @@ declare const zTronLedgerEntry: z$1.ZodObject<{
12218
13057
  dispute_unfreeze: "dispute_unfreeze";
12219
13058
  hosted_billing: "hosted_billing";
12220
13059
  store_purchase: "store_purchase";
13060
+ peer_transfer: "peer_transfer";
12221
13061
  }>;
12222
13062
  amountCents: z$1.ZodInt;
12223
13063
  currency: z$1.ZodString;
@@ -12238,6 +13078,7 @@ declare const zTronLedgerResponse: z$1.ZodObject<{
12238
13078
  dispute_unfreeze: "dispute_unfreeze";
12239
13079
  hosted_billing: "hosted_billing";
12240
13080
  store_purchase: "store_purchase";
13081
+ peer_transfer: "peer_transfer";
12241
13082
  }>;
12242
13083
  amountCents: z$1.ZodInt;
12243
13084
  currency: z$1.ZodString;
@@ -12255,6 +13096,50 @@ declare const zTronDepositResponse: z$1.ZodObject<{
12255
13096
  declare const zTronDepositRequest: z$1.ZodObject<{
12256
13097
  amountCents: z$1.ZodInt;
12257
13098
  }, z$1.core.$strip>;
13099
+ declare const zTronTransferResponse: z$1.ZodObject<{
13100
+ status: z$1.ZodEnum<{
13101
+ completed: "completed";
13102
+ }>;
13103
+ amountCents: z$1.ZodInt;
13104
+ balanceCents: z$1.ZodInt;
13105
+ recipient: z$1.ZodObject<{
13106
+ userId: z$1.ZodUUID;
13107
+ handle: z$1.ZodNullable<z$1.ZodString>;
13108
+ displayName: z$1.ZodNullable<z$1.ZodString>;
13109
+ }, z$1.core.$strip>;
13110
+ }, z$1.core.$strip>;
13111
+ declare const zTronTransferRequest: z$1.ZodObject<{
13112
+ recipientUserId: z$1.ZodUUID;
13113
+ amountCents: z$1.ZodInt;
13114
+ note: z$1.ZodOptional<z$1.ZodString>;
13115
+ challengeId: z$1.ZodOptional<z$1.ZodUUID>;
13116
+ signature: z$1.ZodOptional<z$1.ZodString>;
13117
+ threadId: z$1.ZodOptional<z$1.ZodUUID>;
13118
+ }, z$1.core.$strip>;
13119
+ declare const zTronSecuritySetting: z$1.ZodObject<{
13120
+ requireSignature: z$1.ZodBoolean;
13121
+ }, z$1.core.$strip>;
13122
+ declare const zTronTransferChallengeNotRequired: z$1.ZodObject<{
13123
+ required: z$1.ZodLiteral<false>;
13124
+ }, z$1.core.$strip>;
13125
+ declare const zTronTransferChallengeRequired: z$1.ZodObject<{
13126
+ required: z$1.ZodLiteral<true>;
13127
+ challengeId: z$1.ZodUUID;
13128
+ message: z$1.ZodString;
13129
+ expiresAt: z$1.ZodISODateTime;
13130
+ }, z$1.core.$strip>;
13131
+ declare const zTronTransferChallengeResponse: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
13132
+ required: z$1.ZodLiteral<false>;
13133
+ }, z$1.core.$strip>, z$1.ZodObject<{
13134
+ challengeId: z$1.ZodUUID;
13135
+ message: z$1.ZodString;
13136
+ expiresAt: z$1.ZodISODateTime;
13137
+ required: z$1.ZodLiteral<true>;
13138
+ }, z$1.core.$strip>], "required">;
13139
+ declare const zTronTransferChallengeRequest: z$1.ZodObject<{
13140
+ recipientUserId: z$1.ZodUUID;
13141
+ amountCents: z$1.ZodInt;
13142
+ }, z$1.core.$strip>;
12258
13143
  declare const zTronGameBalanceResponse: z$1.ZodObject<{
12259
13144
  balanceCents: z$1.ZodInt;
12260
13145
  rakeBps: z$1.ZodInt;
@@ -12445,8 +13330,8 @@ declare const zTronCashoutItem: z$1.ZodObject<{
12445
13330
  approved: "approved";
12446
13331
  pending: "pending";
12447
13332
  failed: "failed";
12448
- rejected: "rejected";
12449
13333
  settled: "settled";
13334
+ rejected: "rejected";
12450
13335
  }>;
12451
13336
  amountCents: z$1.ZodInt;
12452
13337
  feeCents: z$1.ZodInt;
@@ -12477,8 +13362,8 @@ declare const zTronCashoutListResponse: z$1.ZodObject<{
12477
13362
  approved: "approved";
12478
13363
  pending: "pending";
12479
13364
  failed: "failed";
12480
- rejected: "rejected";
12481
13365
  settled: "settled";
13366
+ rejected: "rejected";
12482
13367
  }>;
12483
13368
  amountCents: z$1.ZodInt;
12484
13369
  feeCents: z$1.ZodInt;
@@ -12501,8 +13386,8 @@ declare const zAdminTronCashoutItem: z$1.ZodObject<{
12501
13386
  approved: "approved";
12502
13387
  pending: "pending";
12503
13388
  failed: "failed";
12504
- rejected: "rejected";
12505
13389
  settled: "settled";
13390
+ rejected: "rejected";
12506
13391
  }>;
12507
13392
  amountCents: z$1.ZodInt;
12508
13393
  feeCents: z$1.ZodInt;
@@ -12531,8 +13416,8 @@ declare const zAdminTronCashoutListResponse: z$1.ZodObject<{
12531
13416
  approved: "approved";
12532
13417
  pending: "pending";
12533
13418
  failed: "failed";
12534
- rejected: "rejected";
12535
13419
  settled: "settled";
13420
+ rejected: "rejected";
12536
13421
  }>;
12537
13422
  amountCents: z$1.ZodInt;
12538
13423
  feeCents: z$1.ZodInt;
@@ -12784,6 +13669,13 @@ declare const zMessageEnvelope: z$1.ZodNullable<z$1.ZodObject<{
12784
13669
  iv: z$1.ZodString;
12785
13670
  ct: z$1.ZodString;
12786
13671
  }, z$1.core.$strip>>;
13672
+ declare const zMessageTransaction: z$1.ZodNullable<z$1.ZodObject<{
13673
+ kind: z$1.ZodEnum<{
13674
+ tron_transfer: "tron_transfer";
13675
+ }>;
13676
+ amountCents: z$1.ZodInt;
13677
+ recipientUserId: z$1.ZodString;
13678
+ }, z$1.core.$strip>>;
12787
13679
  declare const zThreadLastMessagePreview: z$1.ZodNullable<z$1.ZodObject<{
12788
13680
  id: z$1.ZodString;
12789
13681
  senderUserId: z$1.ZodString;
@@ -12803,6 +13695,13 @@ declare const zThreadLastMessagePreview: z$1.ZodNullable<z$1.ZodObject<{
12803
13695
  url: z$1.ZodURL;
12804
13696
  count: z$1.ZodInt;
12805
13697
  }, z$1.core.$strip>>;
13698
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13699
+ kind: z$1.ZodEnum<{
13700
+ tron_transfer: "tron_transfer";
13701
+ }>;
13702
+ amountCents: z$1.ZodInt;
13703
+ recipientUserId: z$1.ZodString;
13704
+ }, z$1.core.$strip>>>;
12806
13705
  sentAt: z$1.ZodISODateTime;
12807
13706
  }, z$1.core.$strip>>;
12808
13707
  declare const zDirectThreadSummary: z$1.ZodObject<{
@@ -12835,6 +13734,13 @@ declare const zDirectThreadSummary: z$1.ZodObject<{
12835
13734
  url: z$1.ZodURL;
12836
13735
  count: z$1.ZodInt;
12837
13736
  }, z$1.core.$strip>>;
13737
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13738
+ kind: z$1.ZodEnum<{
13739
+ tron_transfer: "tron_transfer";
13740
+ }>;
13741
+ amountCents: z$1.ZodInt;
13742
+ recipientUserId: z$1.ZodString;
13743
+ }, z$1.core.$strip>>>;
12838
13744
  sentAt: z$1.ZodISODateTime;
12839
13745
  }, z$1.core.$strip>>;
12840
13746
  unreadCount: z$1.ZodInt;
@@ -12899,6 +13805,13 @@ declare const zGroupThreadSummary: z$1.ZodObject<{
12899
13805
  url: z$1.ZodURL;
12900
13806
  count: z$1.ZodInt;
12901
13807
  }, z$1.core.$strip>>;
13808
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13809
+ kind: z$1.ZodEnum<{
13810
+ tron_transfer: "tron_transfer";
13811
+ }>;
13812
+ amountCents: z$1.ZodInt;
13813
+ recipientUserId: z$1.ZodString;
13814
+ }, z$1.core.$strip>>>;
12902
13815
  sentAt: z$1.ZodISODateTime;
12903
13816
  }, z$1.core.$strip>>;
12904
13817
  unreadCount: z$1.ZodInt;
@@ -12932,6 +13845,13 @@ declare const zThreadSummary: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
12932
13845
  url: z$1.ZodURL;
12933
13846
  count: z$1.ZodInt;
12934
13847
  }, z$1.core.$strip>>;
13848
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13849
+ kind: z$1.ZodEnum<{
13850
+ tron_transfer: "tron_transfer";
13851
+ }>;
13852
+ amountCents: z$1.ZodInt;
13853
+ recipientUserId: z$1.ZodString;
13854
+ }, z$1.core.$strip>>>;
12935
13855
  sentAt: z$1.ZodISODateTime;
12936
13856
  }, z$1.core.$strip>>;
12937
13857
  unreadCount: z$1.ZodInt;
@@ -12976,6 +13896,13 @@ declare const zThreadSummary: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
12976
13896
  url: z$1.ZodURL;
12977
13897
  count: z$1.ZodInt;
12978
13898
  }, z$1.core.$strip>>;
13899
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13900
+ kind: z$1.ZodEnum<{
13901
+ tron_transfer: "tron_transfer";
13902
+ }>;
13903
+ amountCents: z$1.ZodInt;
13904
+ recipientUserId: z$1.ZodString;
13905
+ }, z$1.core.$strip>>>;
12979
13906
  sentAt: z$1.ZodISODateTime;
12980
13907
  }, z$1.core.$strip>>;
12981
13908
  unreadCount: z$1.ZodInt;
@@ -13011,6 +13938,13 @@ declare const zThreadListResponse: z$1.ZodObject<{
13011
13938
  url: z$1.ZodURL;
13012
13939
  count: z$1.ZodInt;
13013
13940
  }, z$1.core.$strip>>;
13941
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13942
+ kind: z$1.ZodEnum<{
13943
+ tron_transfer: "tron_transfer";
13944
+ }>;
13945
+ amountCents: z$1.ZodInt;
13946
+ recipientUserId: z$1.ZodString;
13947
+ }, z$1.core.$strip>>>;
13014
13948
  sentAt: z$1.ZodISODateTime;
13015
13949
  }, z$1.core.$strip>>;
13016
13950
  unreadCount: z$1.ZodInt;
@@ -13055,6 +13989,13 @@ declare const zThreadListResponse: z$1.ZodObject<{
13055
13989
  url: z$1.ZodURL;
13056
13990
  count: z$1.ZodInt;
13057
13991
  }, z$1.core.$strip>>;
13992
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13993
+ kind: z$1.ZodEnum<{
13994
+ tron_transfer: "tron_transfer";
13995
+ }>;
13996
+ amountCents: z$1.ZodInt;
13997
+ recipientUserId: z$1.ZodString;
13998
+ }, z$1.core.$strip>>>;
13058
13999
  sentAt: z$1.ZodISODateTime;
13059
14000
  }, z$1.core.$strip>>;
13060
14001
  unreadCount: z$1.ZodInt;
@@ -13091,6 +14032,13 @@ declare const zCreateThreadResponse: z$1.ZodObject<{
13091
14032
  url: z$1.ZodURL;
13092
14033
  count: z$1.ZodInt;
13093
14034
  }, z$1.core.$strip>>;
14035
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
14036
+ kind: z$1.ZodEnum<{
14037
+ tron_transfer: "tron_transfer";
14038
+ }>;
14039
+ amountCents: z$1.ZodInt;
14040
+ recipientUserId: z$1.ZodString;
14041
+ }, z$1.core.$strip>>>;
13094
14042
  sentAt: z$1.ZodISODateTime;
13095
14043
  }, z$1.core.$strip>>;
13096
14044
  unreadCount: z$1.ZodInt;
@@ -13135,6 +14083,13 @@ declare const zCreateThreadResponse: z$1.ZodObject<{
13135
14083
  url: z$1.ZodURL;
13136
14084
  count: z$1.ZodInt;
13137
14085
  }, z$1.core.$strip>>;
14086
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
14087
+ kind: z$1.ZodEnum<{
14088
+ tron_transfer: "tron_transfer";
14089
+ }>;
14090
+ amountCents: z$1.ZodInt;
14091
+ recipientUserId: z$1.ZodString;
14092
+ }, z$1.core.$strip>>>;
13138
14093
  sentAt: z$1.ZodISODateTime;
13139
14094
  }, z$1.core.$strip>>;
13140
14095
  unreadCount: z$1.ZodInt;
@@ -13203,6 +14158,13 @@ declare const zGroupThreadMutationResponse: z$1.ZodObject<{
13203
14158
  url: z$1.ZodURL;
13204
14159
  count: z$1.ZodInt;
13205
14160
  }, z$1.core.$strip>>;
14161
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
14162
+ kind: z$1.ZodEnum<{
14163
+ tron_transfer: "tron_transfer";
14164
+ }>;
14165
+ amountCents: z$1.ZodInt;
14166
+ recipientUserId: z$1.ZodString;
14167
+ }, z$1.core.$strip>>>;
13206
14168
  sentAt: z$1.ZodISODateTime;
13207
14169
  }, z$1.core.$strip>>;
13208
14170
  unreadCount: z$1.ZodInt;
@@ -13288,6 +14250,13 @@ declare const zMessageItem: z$1.ZodObject<{
13288
14250
  id: z$1.ZodString;
13289
14251
  threadId: z$1.ZodString;
13290
14252
  senderUserId: z$1.ZodString;
14253
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
14254
+ kind: z$1.ZodEnum<{
14255
+ tron_transfer: "tron_transfer";
14256
+ }>;
14257
+ amountCents: z$1.ZodInt;
14258
+ recipientUserId: z$1.ZodString;
14259
+ }, z$1.core.$strip>>>;
13291
14260
  body: z$1.ZodString;
13292
14261
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13293
14262
  v: z$1.ZodLiteral<1>;
@@ -13362,6 +14331,13 @@ declare const zMessagesPageResponse: z$1.ZodObject<{
13362
14331
  id: z$1.ZodString;
13363
14332
  threadId: z$1.ZodString;
13364
14333
  senderUserId: z$1.ZodString;
14334
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
14335
+ kind: z$1.ZodEnum<{
14336
+ tron_transfer: "tron_transfer";
14337
+ }>;
14338
+ amountCents: z$1.ZodInt;
14339
+ recipientUserId: z$1.ZodString;
14340
+ }, z$1.core.$strip>>>;
13365
14341
  body: z$1.ZodString;
13366
14342
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13367
14343
  v: z$1.ZodLiteral<1>;
@@ -14187,7 +15163,7 @@ declare const zProfileRecentReview: z$1.ZodObject<{
14187
15163
  appId: z$1.ZodString;
14188
15164
  appName: z$1.ZodString;
14189
15165
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
14190
- rating: z$1.ZodInt;
15166
+ recommended: z$1.ZodBoolean;
14191
15167
  body: z$1.ZodString;
14192
15168
  createdAt: z$1.ZodISODateTime;
14193
15169
  }, z$1.core.$strip>;
@@ -14269,7 +15245,7 @@ declare const zPublicProfile: z$1.ZodObject<{
14269
15245
  appId: z$1.ZodString;
14270
15246
  appName: z$1.ZodString;
14271
15247
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
14272
- rating: z$1.ZodInt;
15248
+ recommended: z$1.ZodBoolean;
14273
15249
  body: z$1.ZodString;
14274
15250
  createdAt: z$1.ZodISODateTime;
14275
15251
  }, z$1.core.$strip>>;
@@ -15016,6 +15992,51 @@ declare const zAppPageDraft: z$1.ZodObject<{
15016
15992
  url: z$1.ZodURL;
15017
15993
  order: z$1.ZodInt;
15018
15994
  }, z$1.core.$strip>>;
15995
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
15996
+ web: "web";
15997
+ ios: "ios";
15998
+ android: "android";
15999
+ pc: "pc";
16000
+ playstation: "playstation";
16001
+ xbox: "xbox";
16002
+ switch: "switch";
16003
+ }>>;
16004
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
16005
+ single_player: "single_player";
16006
+ multiplayer: "multiplayer";
16007
+ both: "both";
16008
+ }>>;
16009
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
16010
+ everyone: "everyone";
16011
+ "13_plus": "13_plus";
16012
+ "16_plus": "16_plus";
16013
+ "18_plus": "18_plus";
16014
+ }>>;
16015
+ languages: z$1.ZodArray<z$1.ZodEnum<{
16016
+ id: "id";
16017
+ en: "en";
16018
+ es: "es";
16019
+ fr: "fr";
16020
+ de: "de";
16021
+ pt: "pt";
16022
+ it: "it";
16023
+ ru: "ru";
16024
+ ja: "ja";
16025
+ ko: "ko";
16026
+ zh: "zh";
16027
+ hi: "hi";
16028
+ ar: "ar";
16029
+ tr: "tr";
16030
+ vi: "vi";
16031
+ th: "th";
16032
+ pl: "pl";
16033
+ nl: "nl";
16034
+ }>>;
16035
+ releaseStatus: z$1.ZodEnum<{
16036
+ live: "live";
16037
+ open_beta: "open_beta";
16038
+ coming_soon: "coming_soon";
16039
+ }>;
15019
16040
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
15020
16041
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
15021
16042
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -15079,6 +16100,51 @@ declare const zUpdateAppPage: z$1.ZodObject<{
15079
16100
  url: z$1.ZodURL;
15080
16101
  order: z$1.ZodInt;
15081
16102
  }, z$1.core.$strip>>>;
16103
+ platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
16104
+ web: "web";
16105
+ ios: "ios";
16106
+ android: "android";
16107
+ pc: "pc";
16108
+ playstation: "playstation";
16109
+ xbox: "xbox";
16110
+ switch: "switch";
16111
+ }>>>;
16112
+ gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
16113
+ single_player: "single_player";
16114
+ multiplayer: "multiplayer";
16115
+ both: "both";
16116
+ }>>>;
16117
+ ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
16118
+ everyone: "everyone";
16119
+ "13_plus": "13_plus";
16120
+ "16_plus": "16_plus";
16121
+ "18_plus": "18_plus";
16122
+ }>>>;
16123
+ languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
16124
+ id: "id";
16125
+ en: "en";
16126
+ es: "es";
16127
+ fr: "fr";
16128
+ de: "de";
16129
+ pt: "pt";
16130
+ it: "it";
16131
+ ru: "ru";
16132
+ ja: "ja";
16133
+ ko: "ko";
16134
+ zh: "zh";
16135
+ hi: "hi";
16136
+ ar: "ar";
16137
+ tr: "tr";
16138
+ vi: "vi";
16139
+ th: "th";
16140
+ pl: "pl";
16141
+ nl: "nl";
16142
+ }>>>;
16143
+ releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
16144
+ live: "live";
16145
+ open_beta: "open_beta";
16146
+ coming_soon: "coming_soon";
16147
+ }>>;
15082
16148
  }, z$1.core.$strip>;
15083
16149
  declare const zAppPageGalleryUploadResponse: z$1.ZodObject<{
15084
16150
  url: z$1.ZodURL;
@@ -16975,25 +18041,76 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
16975
18041
  order: z$1.ZodInt;
16976
18042
  }, z$1.core.$strip>>;
16977
18043
  studio: z$1.ZodObject<{
18044
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
16978
18045
  name: z$1.ZodNullable<z$1.ZodString>;
16979
18046
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
16980
18047
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
16981
18048
  xHandle: z$1.ZodNullable<z$1.ZodString>;
16982
18049
  githubUrl: z$1.ZodNullable<z$1.ZodURL>;
16983
18050
  }, z$1.core.$strip>;
18051
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
18052
+ web: "web";
18053
+ ios: "ios";
18054
+ android: "android";
18055
+ pc: "pc";
18056
+ playstation: "playstation";
18057
+ xbox: "xbox";
18058
+ switch: "switch";
18059
+ }>>;
18060
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
18061
+ single_player: "single_player";
18062
+ multiplayer: "multiplayer";
18063
+ both: "both";
18064
+ }>>;
18065
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
18066
+ everyone: "everyone";
18067
+ "13_plus": "13_plus";
18068
+ "16_plus": "16_plus";
18069
+ "18_plus": "18_plus";
18070
+ }>>;
18071
+ languages: z$1.ZodArray<z$1.ZodEnum<{
18072
+ id: "id";
18073
+ en: "en";
18074
+ es: "es";
18075
+ fr: "fr";
18076
+ de: "de";
18077
+ pt: "pt";
18078
+ it: "it";
18079
+ ru: "ru";
18080
+ ja: "ja";
18081
+ ko: "ko";
18082
+ zh: "zh";
18083
+ hi: "hi";
18084
+ ar: "ar";
18085
+ tr: "tr";
18086
+ vi: "vi";
18087
+ th: "th";
18088
+ pl: "pl";
18089
+ nl: "nl";
18090
+ }>>;
18091
+ releaseStatus: z$1.ZodEnum<{
18092
+ live: "live";
18093
+ open_beta: "open_beta";
18094
+ coming_soon: "coming_soon";
18095
+ }>;
18096
+ paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
18097
+ both: "both";
18098
+ tron: "tron";
18099
+ onchain: "onchain";
18100
+ }>>;
16984
18101
  oauthScopes: z$1.ZodArray<z$1.ZodString>;
16985
18102
  chains: z$1.ZodArray<z$1.ZodString>;
16986
18103
  publishedAt: z$1.ZodISODateTime;
18104
+ updatedAt: z$1.ZodISODateTime;
16987
18105
  }, z$1.core.$strip>;
16988
18106
  declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
16989
18107
  slug: z$1.ZodString;
16990
18108
  }, z$1.core.$strip>;
16991
18109
  declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
16992
18110
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
18111
+ helpful: "helpful";
16993
18112
  newest: "newest";
16994
18113
  oldest: "oldest";
16995
- highest: "highest";
16996
- lowest: "lowest";
16997
18114
  }>>>;
16998
18115
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
16999
18116
  offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
@@ -17003,24 +18120,42 @@ declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
17003
18120
  */
17004
18121
  declare const zGetPublicAppsBySlugReviewsResponse: z$1.ZodObject<{
17005
18122
  aggregate: z$1.ZodObject<{
17006
- average: z$1.ZodNullable<z$1.ZodNumber>;
17007
18123
  count: z$1.ZodInt;
17008
- distribution: z$1.ZodObject<{
17009
- 1: z$1.ZodInt;
17010
- 2: z$1.ZodInt;
17011
- 3: z$1.ZodInt;
17012
- 4: z$1.ZodInt;
17013
- 5: z$1.ZodInt;
17014
- }, z$1.core.$strip>;
18124
+ recommendedCount: z$1.ZodInt;
18125
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
18126
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
18127
+ overwhelmingly_positive: "overwhelmingly_positive";
18128
+ very_positive: "very_positive";
18129
+ positive: "positive";
18130
+ mostly_positive: "mostly_positive";
18131
+ mixed: "mixed";
18132
+ mostly_negative: "mostly_negative";
18133
+ negative: "negative";
18134
+ overwhelmingly_negative: "overwhelmingly_negative";
18135
+ }>>;
17015
18136
  }, z$1.core.$strip>;
17016
18137
  reviews: z$1.ZodArray<z$1.ZodObject<{
17017
18138
  id: z$1.ZodUUID;
17018
- rating: z$1.ZodInt;
18139
+ recommended: z$1.ZodBoolean;
17019
18140
  body: z$1.ZodString;
18141
+ reactions: z$1.ZodObject<{
18142
+ helpful: z$1.ZodInt;
18143
+ unhelpful: z$1.ZodInt;
18144
+ funny: z$1.ZodInt;
18145
+ }, z$1.core.$strip>;
18146
+ tippedCents: z$1.ZodInt;
18147
+ commentCount: z$1.ZodInt;
17020
18148
  author: z$1.ZodObject<{
18149
+ userId: z$1.ZodUUID;
18150
+ handle: z$1.ZodNullable<z$1.ZodString>;
17021
18151
  name: z$1.ZodNullable<z$1.ZodString>;
17022
18152
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
17023
18153
  }, z$1.core.$strip>;
18154
+ authorStats: z$1.ZodObject<{
18155
+ playtimeSecondsThisGame: z$1.ZodInt;
18156
+ gamesPlayed: z$1.ZodInt;
18157
+ reviewsWritten: z$1.ZodInt;
18158
+ }, z$1.core.$strip>;
17024
18159
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
17025
18160
  body: z$1.ZodString;
17026
18161
  repliedAt: z$1.ZodISODateTime;
@@ -17045,7 +18180,7 @@ declare const zDeleteMeReviewsBySlugResponse: z$1.ZodObject<{
17045
18180
  }>>;
17046
18181
  review: z$1.ZodNullable<z$1.ZodObject<{
17047
18182
  id: z$1.ZodUUID;
17048
- rating: z$1.ZodInt;
18183
+ recommended: z$1.ZodBoolean;
17049
18184
  body: z$1.ZodString;
17050
18185
  createdAt: z$1.ZodISODateTime;
17051
18186
  updatedAt: z$1.ZodISODateTime;
@@ -17066,7 +18201,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
17066
18201
  }>>;
17067
18202
  review: z$1.ZodNullable<z$1.ZodObject<{
17068
18203
  id: z$1.ZodUUID;
17069
- rating: z$1.ZodInt;
18204
+ recommended: z$1.ZodBoolean;
17070
18205
  body: z$1.ZodString;
17071
18206
  createdAt: z$1.ZodISODateTime;
17072
18207
  updatedAt: z$1.ZodISODateTime;
@@ -17074,7 +18209,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
17074
18209
  isAppOwner: z$1.ZodBoolean;
17075
18210
  }, z$1.core.$strip>;
17076
18211
  declare const zPutMeReviewsBySlugBody: z$1.ZodObject<{
17077
- rating: z$1.ZodInt;
18212
+ recommended: z$1.ZodBoolean;
17078
18213
  body: z$1.ZodString;
17079
18214
  }, z$1.core.$strip>;
17080
18215
  declare const zPutMeReviewsBySlugPath: z$1.ZodObject<{
@@ -17091,22 +18226,144 @@ declare const zPutMeReviewsBySlugResponse: z$1.ZodObject<{
17091
18226
  }>>;
17092
18227
  review: z$1.ZodNullable<z$1.ZodObject<{
17093
18228
  id: z$1.ZodUUID;
17094
- rating: z$1.ZodInt;
18229
+ recommended: z$1.ZodBoolean;
17095
18230
  body: z$1.ZodString;
17096
18231
  createdAt: z$1.ZodISODateTime;
17097
18232
  updatedAt: z$1.ZodISODateTime;
17098
18233
  }, z$1.core.$strip>>;
17099
18234
  isAppOwner: z$1.ZodBoolean;
17100
18235
  }, z$1.core.$strip>;
18236
+ declare const zGetMeReviewsBySlugReactionsPath: z$1.ZodObject<{
18237
+ slug: z$1.ZodString;
18238
+ }, z$1.core.$strip>;
18239
+ /**
18240
+ * The caller's per-review reactions
18241
+ */
18242
+ declare const zGetMeReviewsBySlugReactionsResponse: z$1.ZodObject<{
18243
+ reactions: z$1.ZodArray<z$1.ZodObject<{
18244
+ reviewId: z$1.ZodUUID;
18245
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
18246
+ helpful: "helpful";
18247
+ unhelpful: "unhelpful";
18248
+ }>>;
18249
+ funny: z$1.ZodBoolean;
18250
+ }, z$1.core.$strip>>;
18251
+ }, z$1.core.$strip>;
18252
+ declare const zPostMeReviewsBySlugReactionsByReviewIdBody: z$1.ZodObject<{
18253
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
18254
+ helpful: "helpful";
18255
+ unhelpful: "unhelpful";
18256
+ }>>;
18257
+ funny: z$1.ZodBoolean;
18258
+ }, z$1.core.$strip>;
18259
+ declare const zPostMeReviewsBySlugReactionsByReviewIdPath: z$1.ZodObject<{
18260
+ slug: z$1.ZodString;
18261
+ reviewId: z$1.ZodUUID;
18262
+ }, z$1.core.$strip>;
18263
+ /**
18264
+ * The review's updated reaction counts + the caller's stored state
18265
+ */
18266
+ declare const zPostMeReviewsBySlugReactionsByReviewIdResponse: z$1.ZodObject<{
18267
+ reactions: z$1.ZodObject<{
18268
+ helpful: z$1.ZodInt;
18269
+ unhelpful: z$1.ZodInt;
18270
+ funny: z$1.ZodInt;
18271
+ }, z$1.core.$strip>;
18272
+ vote: z$1.ZodNullable<z$1.ZodEnum<{
18273
+ helpful: "helpful";
18274
+ unhelpful: "unhelpful";
18275
+ }>>;
18276
+ funny: z$1.ZodBoolean;
18277
+ }, z$1.core.$strip>;
18278
+ declare const zPostMeReviewsBySlugTipsByReviewIdBody: z$1.ZodObject<{
18279
+ amountCents: z$1.ZodInt;
18280
+ note: z$1.ZodOptional<z$1.ZodString>;
18281
+ challengeId: z$1.ZodOptional<z$1.ZodUUID>;
18282
+ signature: z$1.ZodOptional<z$1.ZodString>;
18283
+ }, z$1.core.$strip>;
18284
+ declare const zPostMeReviewsBySlugTipsByReviewIdPath: z$1.ZodObject<{
18285
+ slug: z$1.ZodString;
18286
+ reviewId: z$1.ZodUUID;
18287
+ }, z$1.core.$strip>;
18288
+ /**
18289
+ * Tip completed; the sender's balance after + the review's new total tipped
18290
+ */
18291
+ declare const zPostMeReviewsBySlugTipsByReviewIdResponse: z$1.ZodObject<{
18292
+ status: z$1.ZodEnum<{
18293
+ completed: "completed";
18294
+ }>;
18295
+ amountCents: z$1.ZodInt;
18296
+ balanceCents: z$1.ZodInt;
18297
+ tippedCents: z$1.ZodInt;
18298
+ }, z$1.core.$strip>;
18299
+ declare const zGetPublicAppsBySlugReviewsByReviewIdCommentsPath: z$1.ZodObject<{
18300
+ slug: z$1.ZodString;
18301
+ reviewId: z$1.ZodUUID;
18302
+ }, z$1.core.$strip>;
18303
+ declare const zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery: z$1.ZodObject<{
18304
+ limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
18305
+ offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
18306
+ }, z$1.core.$strip>;
18307
+ /**
18308
+ * The review's comment page
18309
+ */
18310
+ declare const zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse: z$1.ZodObject<{
18311
+ comments: z$1.ZodArray<z$1.ZodObject<{
18312
+ id: z$1.ZodUUID;
18313
+ body: z$1.ZodString;
18314
+ author: z$1.ZodObject<{
18315
+ userId: z$1.ZodUUID;
18316
+ handle: z$1.ZodNullable<z$1.ZodString>;
18317
+ name: z$1.ZodNullable<z$1.ZodString>;
18318
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
18319
+ }, z$1.core.$strip>;
18320
+ createdAt: z$1.ZodISODateTime;
18321
+ }, z$1.core.$strip>>;
18322
+ total: z$1.ZodInt;
18323
+ hasMore: z$1.ZodBoolean;
18324
+ }, z$1.core.$strip>;
18325
+ declare const zPostMeReviewsBySlugCommentsByReviewIdBody: z$1.ZodObject<{
18326
+ body: z$1.ZodString;
18327
+ }, z$1.core.$strip>;
18328
+ declare const zPostMeReviewsBySlugCommentsByReviewIdPath: z$1.ZodObject<{
18329
+ slug: z$1.ZodString;
18330
+ reviewId: z$1.ZodUUID;
18331
+ }, z$1.core.$strip>;
18332
+ /**
18333
+ * The created comment + the review's new comment count
18334
+ */
18335
+ declare const zPostMeReviewsBySlugCommentsByReviewIdResponse: z$1.ZodObject<{
18336
+ comment: z$1.ZodObject<{
18337
+ id: z$1.ZodUUID;
18338
+ body: z$1.ZodString;
18339
+ author: z$1.ZodObject<{
18340
+ userId: z$1.ZodUUID;
18341
+ handle: z$1.ZodNullable<z$1.ZodString>;
18342
+ name: z$1.ZodNullable<z$1.ZodString>;
18343
+ avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
18344
+ }, z$1.core.$strip>;
18345
+ createdAt: z$1.ZodISODateTime;
18346
+ }, z$1.core.$strip>;
18347
+ commentCount: z$1.ZodInt;
18348
+ }, z$1.core.$strip>;
18349
+ declare const zDeleteMeReviewsBySlugCommentsByCommentIdPath: z$1.ZodObject<{
18350
+ slug: z$1.ZodString;
18351
+ commentId: z$1.ZodUUID;
18352
+ }, z$1.core.$strip>;
18353
+ /**
18354
+ * Comment removed; the review's new comment count
18355
+ */
18356
+ declare const zDeleteMeReviewsBySlugCommentsByCommentIdResponse: z$1.ZodObject<{
18357
+ commentCount: z$1.ZodInt;
18358
+ }, z$1.core.$strip>;
17101
18359
  declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
17102
18360
  appId: z$1.ZodUUID;
17103
18361
  }, z$1.core.$strip>;
17104
18362
  declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
17105
18363
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
18364
+ helpful: "helpful";
17106
18365
  newest: "newest";
17107
18366
  oldest: "oldest";
17108
- highest: "highest";
17109
- lowest: "lowest";
17110
18367
  }>>>;
17111
18368
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
17112
18369
  offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
@@ -17116,24 +18373,42 @@ declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
17116
18373
  */
17117
18374
  declare const zGetMeDeveloperAppsByAppIdReviewsResponse: z$1.ZodObject<{
17118
18375
  aggregate: z$1.ZodObject<{
17119
- average: z$1.ZodNullable<z$1.ZodNumber>;
17120
18376
  count: z$1.ZodInt;
17121
- distribution: z$1.ZodObject<{
17122
- 1: z$1.ZodInt;
17123
- 2: z$1.ZodInt;
17124
- 3: z$1.ZodInt;
17125
- 4: z$1.ZodInt;
17126
- 5: z$1.ZodInt;
17127
- }, z$1.core.$strip>;
18377
+ recommendedCount: z$1.ZodInt;
18378
+ recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
18379
+ summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
18380
+ overwhelmingly_positive: "overwhelmingly_positive";
18381
+ very_positive: "very_positive";
18382
+ positive: "positive";
18383
+ mostly_positive: "mostly_positive";
18384
+ mixed: "mixed";
18385
+ mostly_negative: "mostly_negative";
18386
+ negative: "negative";
18387
+ overwhelmingly_negative: "overwhelmingly_negative";
18388
+ }>>;
17128
18389
  }, z$1.core.$strip>;
17129
18390
  reviews: z$1.ZodArray<z$1.ZodObject<{
17130
18391
  id: z$1.ZodUUID;
17131
- rating: z$1.ZodInt;
18392
+ recommended: z$1.ZodBoolean;
17132
18393
  body: z$1.ZodString;
18394
+ reactions: z$1.ZodObject<{
18395
+ helpful: z$1.ZodInt;
18396
+ unhelpful: z$1.ZodInt;
18397
+ funny: z$1.ZodInt;
18398
+ }, z$1.core.$strip>;
18399
+ tippedCents: z$1.ZodInt;
18400
+ commentCount: z$1.ZodInt;
17133
18401
  author: z$1.ZodObject<{
18402
+ userId: z$1.ZodUUID;
18403
+ handle: z$1.ZodNullable<z$1.ZodString>;
17134
18404
  name: z$1.ZodNullable<z$1.ZodString>;
17135
18405
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
17136
18406
  }, z$1.core.$strip>;
18407
+ authorStats: z$1.ZodObject<{
18408
+ playtimeSecondsThisGame: z$1.ZodInt;
18409
+ gamesPlayed: z$1.ZodInt;
18410
+ reviewsWritten: z$1.ZodInt;
18411
+ }, z$1.core.$strip>;
17137
18412
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
17138
18413
  body: z$1.ZodString;
17139
18414
  repliedAt: z$1.ZodISODateTime;
@@ -17695,6 +18970,10 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
17695
18970
  referral: "referral";
17696
18971
  }>;
17697
18972
  amountCents: z$1.ZodInt;
18973
+ usdCents: z$1.ZodInt;
18974
+ status: z$1.ZodEnum<{
18975
+ settled: "settled";
18976
+ }>;
17698
18977
  app: z$1.ZodNullable<z$1.ZodObject<{
17699
18978
  id: z$1.ZodString;
17700
18979
  name: z$1.ZodString;
@@ -17702,6 +18981,19 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
17702
18981
  slug: z$1.ZodNullable<z$1.ZodString>;
17703
18982
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
17704
18983
  }, z$1.core.$strip>>;
18984
+ involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
18985
+ userId: z$1.ZodString;
18986
+ handle: z$1.ZodNullable<z$1.ZodString>;
18987
+ displayName: z$1.ZodNullable<z$1.ZodString>;
18988
+ role: z$1.ZodEnum<{
18989
+ stake: "stake";
18990
+ payout: "payout";
18991
+ dev_cut: "dev_cut";
18992
+ purchase: "purchase";
18993
+ referral: "referral";
18994
+ }>;
18995
+ amountCents: z$1.ZodInt;
18996
+ }, z$1.core.$strip>>>>;
17705
18997
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
17706
18998
  purpose: z$1.ZodOptional<z$1.ZodString>;
17707
18999
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -17734,13 +19026,31 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
17734
19026
  approved: "approved";
17735
19027
  pending: "pending";
17736
19028
  failed: "failed";
17737
- rejected: "rejected";
17738
19029
  settled: "settled";
19030
+ rejected: "rejected";
17739
19031
  }>;
17740
19032
  stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
17741
19033
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
17742
19034
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
17743
19035
  kind: z$1.ZodLiteral<"tron_cashout">;
19036
+ }, z$1.core.$strip>, z$1.ZodObject<{
19037
+ groupId: z$1.ZodNullable<z$1.ZodString>;
19038
+ id: z$1.ZodString;
19039
+ occurredAt: z$1.ZodISODateTime;
19040
+ role: z$1.ZodEnum<{
19041
+ outgoing: "outgoing";
19042
+ incoming: "incoming";
19043
+ }>;
19044
+ amountCents: z$1.ZodInt;
19045
+ usdCents: z$1.ZodInt;
19046
+ status: z$1.ZodEnum<{
19047
+ settled: "settled";
19048
+ }>;
19049
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
19050
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
19051
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
19052
+ note: z$1.ZodNullable<z$1.ZodString>;
19053
+ kind: z$1.ZodLiteral<"tron_transfer">;
17744
19054
  }, z$1.core.$strip>, z$1.ZodObject<{
17745
19055
  groupId: z$1.ZodNullable<z$1.ZodString>;
17746
19056
  id: z$1.ZodString;
@@ -18110,6 +19420,10 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
18110
19420
  referral: "referral";
18111
19421
  }>;
18112
19422
  amountCents: z$1.ZodInt;
19423
+ usdCents: z$1.ZodInt;
19424
+ status: z$1.ZodEnum<{
19425
+ settled: "settled";
19426
+ }>;
18113
19427
  app: z$1.ZodNullable<z$1.ZodObject<{
18114
19428
  id: z$1.ZodString;
18115
19429
  name: z$1.ZodString;
@@ -18117,6 +19431,19 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
18117
19431
  slug: z$1.ZodNullable<z$1.ZodString>;
18118
19432
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
18119
19433
  }, z$1.core.$strip>>;
19434
+ involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
19435
+ userId: z$1.ZodString;
19436
+ handle: z$1.ZodNullable<z$1.ZodString>;
19437
+ displayName: z$1.ZodNullable<z$1.ZodString>;
19438
+ role: z$1.ZodEnum<{
19439
+ stake: "stake";
19440
+ payout: "payout";
19441
+ dev_cut: "dev_cut";
19442
+ purchase: "purchase";
19443
+ referral: "referral";
19444
+ }>;
19445
+ amountCents: z$1.ZodInt;
19446
+ }, z$1.core.$strip>>>>;
18120
19447
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
18121
19448
  purpose: z$1.ZodOptional<z$1.ZodString>;
18122
19449
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -18149,13 +19476,31 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
18149
19476
  approved: "approved";
18150
19477
  pending: "pending";
18151
19478
  failed: "failed";
18152
- rejected: "rejected";
18153
19479
  settled: "settled";
19480
+ rejected: "rejected";
18154
19481
  }>;
18155
19482
  stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
18156
19483
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
18157
19484
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
18158
19485
  kind: z$1.ZodLiteral<"tron_cashout">;
19486
+ }, z$1.core.$strip>, z$1.ZodObject<{
19487
+ groupId: z$1.ZodNullable<z$1.ZodString>;
19488
+ id: z$1.ZodString;
19489
+ occurredAt: z$1.ZodISODateTime;
19490
+ role: z$1.ZodEnum<{
19491
+ outgoing: "outgoing";
19492
+ incoming: "incoming";
19493
+ }>;
19494
+ amountCents: z$1.ZodInt;
19495
+ usdCents: z$1.ZodInt;
19496
+ status: z$1.ZodEnum<{
19497
+ settled: "settled";
19498
+ }>;
19499
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
19500
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
19501
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
19502
+ note: z$1.ZodNullable<z$1.ZodString>;
19503
+ kind: z$1.ZodLiteral<"tron_transfer">;
18159
19504
  }, z$1.core.$strip>, z$1.ZodObject<{
18160
19505
  groupId: z$1.ZodNullable<z$1.ZodString>;
18161
19506
  id: z$1.ZodString;
@@ -18199,9 +19544,9 @@ declare const zGetPaymentsMeOutstandingResponse: z$1.ZodObject<{
18199
19544
  declare const zGetPaymentsMeMoonpayAvailabilityResponse: z$1.ZodObject<{
18200
19545
  enabled: z$1.ZodBoolean;
18201
19546
  direction: z$1.ZodNullable<z$1.ZodEnum<{
19547
+ both: "both";
18202
19548
  buy: "buy";
18203
19549
  sell: "sell";
18204
- both: "both";
18205
19550
  }>>;
18206
19551
  countryCode: z$1.ZodNullable<z$1.ZodString>;
18207
19552
  regionSupported: z$1.ZodBoolean;
@@ -18265,6 +19610,7 @@ declare const zGetPaymentsMeTronLedgerResponse: z$1.ZodObject<{
18265
19610
  dispute_unfreeze: "dispute_unfreeze";
18266
19611
  hosted_billing: "hosted_billing";
18267
19612
  store_purchase: "store_purchase";
19613
+ peer_transfer: "peer_transfer";
18268
19614
  }>;
18269
19615
  amountCents: z$1.ZodInt;
18270
19616
  currency: z$1.ZodString;
@@ -18285,6 +19631,59 @@ declare const zPostPaymentsMeTronDepositResponse: z$1.ZodObject<{
18285
19631
  currency: z$1.ZodString;
18286
19632
  depositId: z$1.ZodUUID;
18287
19633
  }, z$1.core.$strip>;
19634
+ declare const zPostPaymentsMeTronTransferBody: z$1.ZodObject<{
19635
+ recipientUserId: z$1.ZodUUID;
19636
+ amountCents: z$1.ZodInt;
19637
+ note: z$1.ZodOptional<z$1.ZodString>;
19638
+ challengeId: z$1.ZodOptional<z$1.ZodUUID>;
19639
+ signature: z$1.ZodOptional<z$1.ZodString>;
19640
+ threadId: z$1.ZodOptional<z$1.ZodUUID>;
19641
+ }, z$1.core.$strip>;
19642
+ /**
19643
+ * Transfer completed; carries the sender's remaining balance + recipient identity
19644
+ */
19645
+ declare const zPostPaymentsMeTronTransferResponse: z$1.ZodObject<{
19646
+ status: z$1.ZodEnum<{
19647
+ completed: "completed";
19648
+ }>;
19649
+ amountCents: z$1.ZodInt;
19650
+ balanceCents: z$1.ZodInt;
19651
+ recipient: z$1.ZodObject<{
19652
+ userId: z$1.ZodUUID;
19653
+ handle: z$1.ZodNullable<z$1.ZodString>;
19654
+ displayName: z$1.ZodNullable<z$1.ZodString>;
19655
+ }, z$1.core.$strip>;
19656
+ }, z$1.core.$strip>;
19657
+ /**
19658
+ * The caller's require-signature setting
19659
+ */
19660
+ declare const zGetPaymentsMeTronSecurityResponse: z$1.ZodObject<{
19661
+ requireSignature: z$1.ZodBoolean;
19662
+ }, z$1.core.$strip>;
19663
+ declare const zPutPaymentsMeTronSecurityBody: z$1.ZodObject<{
19664
+ requireSignature: z$1.ZodBoolean;
19665
+ }, z$1.core.$strip>;
19666
+ /**
19667
+ * The saved setting
19668
+ */
19669
+ declare const zPutPaymentsMeTronSecurityResponse: z$1.ZodObject<{
19670
+ requireSignature: z$1.ZodBoolean;
19671
+ }, z$1.core.$strip>;
19672
+ declare const zPostPaymentsMeTronTransferChallengeBody: z$1.ZodObject<{
19673
+ recipientUserId: z$1.ZodUUID;
19674
+ amountCents: z$1.ZodInt;
19675
+ }, z$1.core.$strip>;
19676
+ /**
19677
+ * Either `required: false`, or the challenge to sign
19678
+ */
19679
+ declare const zPostPaymentsMeTronTransferChallengeResponse: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
19680
+ required: z$1.ZodLiteral<false>;
19681
+ }, z$1.core.$strip>, z$1.ZodObject<{
19682
+ challengeId: z$1.ZodUUID;
19683
+ message: z$1.ZodString;
19684
+ expiresAt: z$1.ZodISODateTime;
19685
+ required: z$1.ZodLiteral<true>;
19686
+ }, z$1.core.$strip>], "required">;
18288
19687
  /**
18289
19688
  * The caller's spendable TRON balance in cents
18290
19689
  */
@@ -18455,8 +19854,8 @@ declare const zGetPaymentsMeTronCashoutsResponse: z$1.ZodObject<{
18455
19854
  approved: "approved";
18456
19855
  pending: "pending";
18457
19856
  failed: "failed";
18458
- rejected: "rejected";
18459
19857
  settled: "settled";
19858
+ rejected: "rejected";
18460
19859
  }>;
18461
19860
  amountCents: z$1.ZodInt;
18462
19861
  feeCents: z$1.ZodInt;
@@ -18490,8 +19889,8 @@ declare const zPostPaymentsMeTronCashoutsResponse: z$1.ZodObject<{
18490
19889
  approved: "approved";
18491
19890
  pending: "pending";
18492
19891
  failed: "failed";
18493
- rejected: "rejected";
18494
19892
  settled: "settled";
19893
+ rejected: "rejected";
18495
19894
  }>;
18496
19895
  amountCents: z$1.ZodInt;
18497
19896
  feeCents: z$1.ZodInt;
@@ -18517,8 +19916,8 @@ declare const zGetAdminTronCashoutsResponse: z$1.ZodObject<{
18517
19916
  approved: "approved";
18518
19917
  pending: "pending";
18519
19918
  failed: "failed";
18520
- rejected: "rejected";
18521
19919
  settled: "settled";
19920
+ rejected: "rejected";
18522
19921
  }>;
18523
19922
  amountCents: z$1.ZodInt;
18524
19923
  feeCents: z$1.ZodInt;
@@ -18550,8 +19949,8 @@ declare const zPostAdminTronCashoutsByIdApproveResponse: z$1.ZodObject<{
18550
19949
  approved: "approved";
18551
19950
  pending: "pending";
18552
19951
  failed: "failed";
18553
- rejected: "rejected";
18554
19952
  settled: "settled";
19953
+ rejected: "rejected";
18555
19954
  }>;
18556
19955
  amountCents: z$1.ZodInt;
18557
19956
  feeCents: z$1.ZodInt;
@@ -18585,8 +19984,8 @@ declare const zPostAdminTronCashoutsByIdRejectResponse: z$1.ZodObject<{
18585
19984
  approved: "approved";
18586
19985
  pending: "pending";
18587
19986
  failed: "failed";
18588
- rejected: "rejected";
18589
19987
  settled: "settled";
19988
+ rejected: "rejected";
18590
19989
  }>;
18591
19990
  amountCents: z$1.ZodInt;
18592
19991
  feeCents: z$1.ZodInt;
@@ -18903,6 +20302,13 @@ declare const zGetMeThreadsResponse: z$1.ZodObject<{
18903
20302
  url: z$1.ZodURL;
18904
20303
  count: z$1.ZodInt;
18905
20304
  }, z$1.core.$strip>>;
20305
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20306
+ kind: z$1.ZodEnum<{
20307
+ tron_transfer: "tron_transfer";
20308
+ }>;
20309
+ amountCents: z$1.ZodInt;
20310
+ recipientUserId: z$1.ZodString;
20311
+ }, z$1.core.$strip>>>;
18906
20312
  sentAt: z$1.ZodISODateTime;
18907
20313
  }, z$1.core.$strip>>;
18908
20314
  unreadCount: z$1.ZodInt;
@@ -18947,6 +20353,13 @@ declare const zGetMeThreadsResponse: z$1.ZodObject<{
18947
20353
  url: z$1.ZodURL;
18948
20354
  count: z$1.ZodInt;
18949
20355
  }, z$1.core.$strip>>;
20356
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20357
+ kind: z$1.ZodEnum<{
20358
+ tron_transfer: "tron_transfer";
20359
+ }>;
20360
+ amountCents: z$1.ZodInt;
20361
+ recipientUserId: z$1.ZodString;
20362
+ }, z$1.core.$strip>>>;
18950
20363
  sentAt: z$1.ZodISODateTime;
18951
20364
  }, z$1.core.$strip>>;
18952
20365
  unreadCount: z$1.ZodInt;
@@ -18999,6 +20412,13 @@ declare const zPostMeThreadsResponse: z$1.ZodObject<{
18999
20412
  url: z$1.ZodURL;
19000
20413
  count: z$1.ZodInt;
19001
20414
  }, z$1.core.$strip>>;
20415
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20416
+ kind: z$1.ZodEnum<{
20417
+ tron_transfer: "tron_transfer";
20418
+ }>;
20419
+ amountCents: z$1.ZodInt;
20420
+ recipientUserId: z$1.ZodString;
20421
+ }, z$1.core.$strip>>>;
19002
20422
  sentAt: z$1.ZodISODateTime;
19003
20423
  }, z$1.core.$strip>>;
19004
20424
  unreadCount: z$1.ZodInt;
@@ -19043,6 +20463,13 @@ declare const zPostMeThreadsResponse: z$1.ZodObject<{
19043
20463
  url: z$1.ZodURL;
19044
20464
  count: z$1.ZodInt;
19045
20465
  }, z$1.core.$strip>>;
20466
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20467
+ kind: z$1.ZodEnum<{
20468
+ tron_transfer: "tron_transfer";
20469
+ }>;
20470
+ amountCents: z$1.ZodInt;
20471
+ recipientUserId: z$1.ZodString;
20472
+ }, z$1.core.$strip>>>;
19046
20473
  sentAt: z$1.ZodISODateTime;
19047
20474
  }, z$1.core.$strip>>;
19048
20475
  unreadCount: z$1.ZodInt;
@@ -19113,6 +20540,13 @@ declare const zPatchMeThreadsByIdResponse: z$1.ZodObject<{
19113
20540
  url: z$1.ZodURL;
19114
20541
  count: z$1.ZodInt;
19115
20542
  }, z$1.core.$strip>>;
20543
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20544
+ kind: z$1.ZodEnum<{
20545
+ tron_transfer: "tron_transfer";
20546
+ }>;
20547
+ amountCents: z$1.ZodInt;
20548
+ recipientUserId: z$1.ZodString;
20549
+ }, z$1.core.$strip>>>;
19116
20550
  sentAt: z$1.ZodISODateTime;
19117
20551
  }, z$1.core.$strip>>;
19118
20552
  unreadCount: z$1.ZodInt;
@@ -19135,6 +20569,13 @@ declare const zGetMeThreadsByIdMessagesResponse: z$1.ZodObject<{
19135
20569
  id: z$1.ZodString;
19136
20570
  threadId: z$1.ZodString;
19137
20571
  senderUserId: z$1.ZodString;
20572
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20573
+ kind: z$1.ZodEnum<{
20574
+ tron_transfer: "tron_transfer";
20575
+ }>;
20576
+ amountCents: z$1.ZodInt;
20577
+ recipientUserId: z$1.ZodString;
20578
+ }, z$1.core.$strip>>>;
19138
20579
  body: z$1.ZodString;
19139
20580
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
19140
20581
  v: z$1.ZodLiteral<1>;
@@ -19232,6 +20673,13 @@ declare const zPostMeThreadsByIdMessagesResponse: z$1.ZodObject<{
19232
20673
  id: z$1.ZodString;
19233
20674
  threadId: z$1.ZodString;
19234
20675
  senderUserId: z$1.ZodString;
20676
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20677
+ kind: z$1.ZodEnum<{
20678
+ tron_transfer: "tron_transfer";
20679
+ }>;
20680
+ amountCents: z$1.ZodInt;
20681
+ recipientUserId: z$1.ZodString;
20682
+ }, z$1.core.$strip>>>;
19235
20683
  body: z$1.ZodString;
19236
20684
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
19237
20685
  v: z$1.ZodLiteral<1>;
@@ -19336,6 +20784,13 @@ declare const zPatchMeThreadsByIdMessagesByMsgIdResponse: z$1.ZodObject<{
19336
20784
  id: z$1.ZodString;
19337
20785
  threadId: z$1.ZodString;
19338
20786
  senderUserId: z$1.ZodString;
20787
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
20788
+ kind: z$1.ZodEnum<{
20789
+ tron_transfer: "tron_transfer";
20790
+ }>;
20791
+ amountCents: z$1.ZodInt;
20792
+ recipientUserId: z$1.ZodString;
20793
+ }, z$1.core.$strip>>>;
19339
20794
  body: z$1.ZodString;
19340
20795
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
19341
20796
  v: z$1.ZodLiteral<1>;
@@ -19579,6 +21034,13 @@ declare const zPostMeThreadsByIdInviteResponse: z$1.ZodObject<{
19579
21034
  url: z$1.ZodURL;
19580
21035
  count: z$1.ZodInt;
19581
21036
  }, z$1.core.$strip>>;
21037
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
21038
+ kind: z$1.ZodEnum<{
21039
+ tron_transfer: "tron_transfer";
21040
+ }>;
21041
+ amountCents: z$1.ZodInt;
21042
+ recipientUserId: z$1.ZodString;
21043
+ }, z$1.core.$strip>>>;
19582
21044
  sentAt: z$1.ZodISODateTime;
19583
21045
  }, z$1.core.$strip>>;
19584
21046
  unreadCount: z$1.ZodInt;
@@ -19661,6 +21123,13 @@ declare const zDeleteMeThreadsByIdLogoResponse: z$1.ZodObject<{
19661
21123
  url: z$1.ZodURL;
19662
21124
  count: z$1.ZodInt;
19663
21125
  }, z$1.core.$strip>>;
21126
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
21127
+ kind: z$1.ZodEnum<{
21128
+ tron_transfer: "tron_transfer";
21129
+ }>;
21130
+ amountCents: z$1.ZodInt;
21131
+ recipientUserId: z$1.ZodString;
21132
+ }, z$1.core.$strip>>>;
19664
21133
  sentAt: z$1.ZodISODateTime;
19665
21134
  }, z$1.core.$strip>>;
19666
21135
  unreadCount: z$1.ZodInt;
@@ -19719,6 +21188,13 @@ declare const zPostMeThreadsByIdLogoResponse: z$1.ZodObject<{
19719
21188
  url: z$1.ZodURL;
19720
21189
  count: z$1.ZodInt;
19721
21190
  }, z$1.core.$strip>>;
21191
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
21192
+ kind: z$1.ZodEnum<{
21193
+ tron_transfer: "tron_transfer";
21194
+ }>;
21195
+ amountCents: z$1.ZodInt;
21196
+ recipientUserId: z$1.ZodString;
21197
+ }, z$1.core.$strip>>>;
19722
21198
  sentAt: z$1.ZodISODateTime;
19723
21199
  }, z$1.core.$strip>>;
19724
21200
  unreadCount: z$1.ZodInt;
@@ -19775,6 +21251,13 @@ declare const zDeleteMeThreadsByIdParticipantsByUserIdResponse: z$1.ZodObject<{
19775
21251
  url: z$1.ZodURL;
19776
21252
  count: z$1.ZodInt;
19777
21253
  }, z$1.core.$strip>>;
21254
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
21255
+ kind: z$1.ZodEnum<{
21256
+ tron_transfer: "tron_transfer";
21257
+ }>;
21258
+ amountCents: z$1.ZodInt;
21259
+ recipientUserId: z$1.ZodString;
21260
+ }, z$1.core.$strip>>>;
19778
21261
  sentAt: z$1.ZodISODateTime;
19779
21262
  }, z$1.core.$strip>>;
19780
21263
  unreadCount: z$1.ZodInt;
@@ -19944,6 +21427,13 @@ declare const zPatchMeThreadsByIdParticipantsByUserIdRoleResponse: z$1.ZodObject
19944
21427
  url: z$1.ZodURL;
19945
21428
  count: z$1.ZodInt;
19946
21429
  }, z$1.core.$strip>>;
21430
+ transaction: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
21431
+ kind: z$1.ZodEnum<{
21432
+ tron_transfer: "tron_transfer";
21433
+ }>;
21434
+ amountCents: z$1.ZodInt;
21435
+ recipientUserId: z$1.ZodString;
21436
+ }, z$1.core.$strip>>>;
19947
21437
  sentAt: z$1.ZodISODateTime;
19948
21438
  }, z$1.core.$strip>>;
19949
21439
  unreadCount: z$1.ZodInt;
@@ -20466,7 +21956,7 @@ declare const zGetUsersByHandleResponse: z$1.ZodObject<{
20466
21956
  appId: z$1.ZodString;
20467
21957
  appName: z$1.ZodString;
20468
21958
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
20469
- rating: z$1.ZodInt;
21959
+ recommended: z$1.ZodBoolean;
20470
21960
  body: z$1.ZodString;
20471
21961
  createdAt: z$1.ZodISODateTime;
20472
21962
  }, z$1.core.$strip>>;
@@ -21116,6 +22606,10 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
21116
22606
  referral: "referral";
21117
22607
  }>;
21118
22608
  amountCents: z$1.ZodInt;
22609
+ usdCents: z$1.ZodInt;
22610
+ status: z$1.ZodEnum<{
22611
+ settled: "settled";
22612
+ }>;
21119
22613
  app: z$1.ZodNullable<z$1.ZodObject<{
21120
22614
  id: z$1.ZodString;
21121
22615
  name: z$1.ZodString;
@@ -21123,6 +22617,19 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
21123
22617
  slug: z$1.ZodNullable<z$1.ZodString>;
21124
22618
  bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
21125
22619
  }, z$1.core.$strip>>;
22620
+ involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
22621
+ userId: z$1.ZodString;
22622
+ handle: z$1.ZodNullable<z$1.ZodString>;
22623
+ displayName: z$1.ZodNullable<z$1.ZodString>;
22624
+ role: z$1.ZodEnum<{
22625
+ stake: "stake";
22626
+ payout: "payout";
22627
+ dev_cut: "dev_cut";
22628
+ purchase: "purchase";
22629
+ referral: "referral";
22630
+ }>;
22631
+ amountCents: z$1.ZodInt;
22632
+ }, z$1.core.$strip>>>>;
21126
22633
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
21127
22634
  purpose: z$1.ZodOptional<z$1.ZodString>;
21128
22635
  title: z$1.ZodOptional<z$1.ZodString>;
@@ -21155,13 +22662,31 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
21155
22662
  approved: "approved";
21156
22663
  pending: "pending";
21157
22664
  failed: "failed";
21158
- rejected: "rejected";
21159
22665
  settled: "settled";
22666
+ rejected: "rejected";
21160
22667
  }>;
21161
22668
  stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
21162
22669
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
21163
22670
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21164
22671
  kind: z$1.ZodLiteral<"tron_cashout">;
22672
+ }, z$1.core.$strip>, z$1.ZodObject<{
22673
+ groupId: z$1.ZodNullable<z$1.ZodString>;
22674
+ id: z$1.ZodString;
22675
+ occurredAt: z$1.ZodISODateTime;
22676
+ role: z$1.ZodEnum<{
22677
+ outgoing: "outgoing";
22678
+ incoming: "incoming";
22679
+ }>;
22680
+ amountCents: z$1.ZodInt;
22681
+ usdCents: z$1.ZodInt;
22682
+ status: z$1.ZodEnum<{
22683
+ settled: "settled";
22684
+ }>;
22685
+ counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
22686
+ counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
22687
+ counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
22688
+ note: z$1.ZodNullable<z$1.ZodString>;
22689
+ kind: z$1.ZodLiteral<"tron_transfer">;
21165
22690
  }, z$1.core.$strip>, z$1.ZodObject<{
21166
22691
  groupId: z$1.ZodNullable<z$1.ZodString>;
21167
22692
  id: z$1.ZodString;
@@ -21698,6 +23223,51 @@ declare const zGetMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
21698
23223
  url: z$1.ZodURL;
21699
23224
  order: z$1.ZodInt;
21700
23225
  }, z$1.core.$strip>>;
23226
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23227
+ web: "web";
23228
+ ios: "ios";
23229
+ android: "android";
23230
+ pc: "pc";
23231
+ playstation: "playstation";
23232
+ xbox: "xbox";
23233
+ switch: "switch";
23234
+ }>>;
23235
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23236
+ single_player: "single_player";
23237
+ multiplayer: "multiplayer";
23238
+ both: "both";
23239
+ }>>;
23240
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23241
+ everyone: "everyone";
23242
+ "13_plus": "13_plus";
23243
+ "16_plus": "16_plus";
23244
+ "18_plus": "18_plus";
23245
+ }>>;
23246
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23247
+ id: "id";
23248
+ en: "en";
23249
+ es: "es";
23250
+ fr: "fr";
23251
+ de: "de";
23252
+ pt: "pt";
23253
+ it: "it";
23254
+ ru: "ru";
23255
+ ja: "ja";
23256
+ ko: "ko";
23257
+ zh: "zh";
23258
+ hi: "hi";
23259
+ ar: "ar";
23260
+ tr: "tr";
23261
+ vi: "vi";
23262
+ th: "th";
23263
+ pl: "pl";
23264
+ nl: "nl";
23265
+ }>>;
23266
+ releaseStatus: z$1.ZodEnum<{
23267
+ live: "live";
23268
+ open_beta: "open_beta";
23269
+ coming_soon: "coming_soon";
23270
+ }>;
21701
23271
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21702
23272
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21703
23273
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -21761,6 +23331,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageBody: z$1.ZodObject<{
21761
23331
  url: z$1.ZodURL;
21762
23332
  order: z$1.ZodInt;
21763
23333
  }, z$1.core.$strip>>>;
23334
+ platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
23335
+ web: "web";
23336
+ ios: "ios";
23337
+ android: "android";
23338
+ pc: "pc";
23339
+ playstation: "playstation";
23340
+ xbox: "xbox";
23341
+ switch: "switch";
23342
+ }>>>;
23343
+ gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
23344
+ single_player: "single_player";
23345
+ multiplayer: "multiplayer";
23346
+ both: "both";
23347
+ }>>>;
23348
+ ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
23349
+ everyone: "everyone";
23350
+ "13_plus": "13_plus";
23351
+ "16_plus": "16_plus";
23352
+ "18_plus": "18_plus";
23353
+ }>>>;
23354
+ languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
23355
+ id: "id";
23356
+ en: "en";
23357
+ es: "es";
23358
+ fr: "fr";
23359
+ de: "de";
23360
+ pt: "pt";
23361
+ it: "it";
23362
+ ru: "ru";
23363
+ ja: "ja";
23364
+ ko: "ko";
23365
+ zh: "zh";
23366
+ hi: "hi";
23367
+ ar: "ar";
23368
+ tr: "tr";
23369
+ vi: "vi";
23370
+ th: "th";
23371
+ pl: "pl";
23372
+ nl: "nl";
23373
+ }>>>;
23374
+ releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
23375
+ live: "live";
23376
+ open_beta: "open_beta";
23377
+ coming_soon: "coming_soon";
23378
+ }>>;
21764
23379
  }, z$1.core.$strip>;
21765
23380
  declare const zPatchMeDeveloperAppsByAppIdPagePath: z$1.ZodObject<{
21766
23381
  appId: z$1.ZodString;
@@ -21831,6 +23446,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
21831
23446
  url: z$1.ZodURL;
21832
23447
  order: z$1.ZodInt;
21833
23448
  }, z$1.core.$strip>>;
23449
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23450
+ web: "web";
23451
+ ios: "ios";
23452
+ android: "android";
23453
+ pc: "pc";
23454
+ playstation: "playstation";
23455
+ xbox: "xbox";
23456
+ switch: "switch";
23457
+ }>>;
23458
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23459
+ single_player: "single_player";
23460
+ multiplayer: "multiplayer";
23461
+ both: "both";
23462
+ }>>;
23463
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23464
+ everyone: "everyone";
23465
+ "13_plus": "13_plus";
23466
+ "16_plus": "16_plus";
23467
+ "18_plus": "18_plus";
23468
+ }>>;
23469
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23470
+ id: "id";
23471
+ en: "en";
23472
+ es: "es";
23473
+ fr: "fr";
23474
+ de: "de";
23475
+ pt: "pt";
23476
+ it: "it";
23477
+ ru: "ru";
23478
+ ja: "ja";
23479
+ ko: "ko";
23480
+ zh: "zh";
23481
+ hi: "hi";
23482
+ ar: "ar";
23483
+ tr: "tr";
23484
+ vi: "vi";
23485
+ th: "th";
23486
+ pl: "pl";
23487
+ nl: "nl";
23488
+ }>>;
23489
+ releaseStatus: z$1.ZodEnum<{
23490
+ live: "live";
23491
+ open_beta: "open_beta";
23492
+ coming_soon: "coming_soon";
23493
+ }>;
21834
23494
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21835
23495
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21836
23496
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -21976,6 +23636,51 @@ declare const zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse: z$1.ZodObj
21976
23636
  url: z$1.ZodURL;
21977
23637
  order: z$1.ZodInt;
21978
23638
  }, z$1.core.$strip>>;
23639
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23640
+ web: "web";
23641
+ ios: "ios";
23642
+ android: "android";
23643
+ pc: "pc";
23644
+ playstation: "playstation";
23645
+ xbox: "xbox";
23646
+ switch: "switch";
23647
+ }>>;
23648
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23649
+ single_player: "single_player";
23650
+ multiplayer: "multiplayer";
23651
+ both: "both";
23652
+ }>>;
23653
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23654
+ everyone: "everyone";
23655
+ "13_plus": "13_plus";
23656
+ "16_plus": "16_plus";
23657
+ "18_plus": "18_plus";
23658
+ }>>;
23659
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23660
+ id: "id";
23661
+ en: "en";
23662
+ es: "es";
23663
+ fr: "fr";
23664
+ de: "de";
23665
+ pt: "pt";
23666
+ it: "it";
23667
+ ru: "ru";
23668
+ ja: "ja";
23669
+ ko: "ko";
23670
+ zh: "zh";
23671
+ hi: "hi";
23672
+ ar: "ar";
23673
+ tr: "tr";
23674
+ vi: "vi";
23675
+ th: "th";
23676
+ pl: "pl";
23677
+ nl: "nl";
23678
+ }>>;
23679
+ releaseStatus: z$1.ZodEnum<{
23680
+ live: "live";
23681
+ open_beta: "open_beta";
23682
+ coming_soon: "coming_soon";
23683
+ }>;
21979
23684
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21980
23685
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21981
23686
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -22052,6 +23757,51 @@ declare const zPostMeDeveloperAppsByAppIdPageUnpublishResponse: z$1.ZodObject<{
22052
23757
  url: z$1.ZodURL;
22053
23758
  order: z$1.ZodInt;
22054
23759
  }, z$1.core.$strip>>;
23760
+ platforms: z$1.ZodArray<z$1.ZodEnum<{
23761
+ web: "web";
23762
+ ios: "ios";
23763
+ android: "android";
23764
+ pc: "pc";
23765
+ playstation: "playstation";
23766
+ xbox: "xbox";
23767
+ switch: "switch";
23768
+ }>>;
23769
+ gameType: z$1.ZodNullable<z$1.ZodEnum<{
23770
+ single_player: "single_player";
23771
+ multiplayer: "multiplayer";
23772
+ both: "both";
23773
+ }>>;
23774
+ ageRating: z$1.ZodNullable<z$1.ZodEnum<{
23775
+ everyone: "everyone";
23776
+ "13_plus": "13_plus";
23777
+ "16_plus": "16_plus";
23778
+ "18_plus": "18_plus";
23779
+ }>>;
23780
+ languages: z$1.ZodArray<z$1.ZodEnum<{
23781
+ id: "id";
23782
+ en: "en";
23783
+ es: "es";
23784
+ fr: "fr";
23785
+ de: "de";
23786
+ pt: "pt";
23787
+ it: "it";
23788
+ ru: "ru";
23789
+ ja: "ja";
23790
+ ko: "ko";
23791
+ zh: "zh";
23792
+ hi: "hi";
23793
+ ar: "ar";
23794
+ tr: "tr";
23795
+ vi: "vi";
23796
+ th: "th";
23797
+ pl: "pl";
23798
+ nl: "nl";
23799
+ }>>;
23800
+ releaseStatus: z$1.ZodEnum<{
23801
+ live: "live";
23802
+ open_beta: "open_beta";
23803
+ coming_soon: "coming_soon";
23804
+ }>;
22055
23805
  firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22056
23806
  reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
22057
23807
  reviewNotes: z$1.ZodNullable<z$1.ZodString>;
@@ -23336,4 +25086,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
23336
25086
  */
23337
25087
  declare const zPostMeConsentResponse: z$1.ZodVoid;
23338
25088
  //#endregion
23339
- 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 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, 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 };
25089
+ 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 GetPaymentsMeTronSecurityData, type GetPaymentsMeTronSecurityError, type GetPaymentsMeTronSecurityErrors, type GetPaymentsMeTronSecurityResponse, type GetPaymentsMeTronSecurityResponses, 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 MessageTransaction, 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 PostPaymentsMeTronTransferChallengeData, type PostPaymentsMeTronTransferChallengeError, type PostPaymentsMeTronTransferChallengeErrors, type PostPaymentsMeTronTransferChallengeResponse, type PostPaymentsMeTronTransferChallengeResponses, 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 PutPaymentsMeTronSecurityData, type PutPaymentsMeTronSecurityError, type PutPaymentsMeTronSecurityErrors, type PutPaymentsMeTronSecurityResponse, type PutPaymentsMeTronSecurityResponses, 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 TronSecuritySetting, type TronTransferChallengeNotRequired, type TronTransferChallengeRequest, type TronTransferChallengeRequired, type TronTransferChallengeResponse, 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, zGetPaymentsMeTronSecurityResponse, 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, zMessageTransaction, 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, zPostPaymentsMeTronTransferChallengeBody, zPostPaymentsMeTronTransferChallengeResponse, 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, zPutPaymentsMeTronSecurityBody, zPutPaymentsMeTronSecurityResponse, 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, zTronSecuritySetting, zTronTransferChallengeNotRequired, zTronTransferChallengeRequest, zTronTransferChallengeRequired, zTronTransferChallengeResponse, 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 };