@metatrongg/sdk 0.8.0-dev.60b34b5 → 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.
@@ -517,6 +517,7 @@ type AppPageLink = {
517
517
  order: number;
518
518
  };
519
519
  type PublicAppPageStudio = {
520
+ ownerUserId: string | null;
520
521
  name: string | null;
521
522
  logoUrl: string | null;
522
523
  websiteUrl: string | null;
@@ -536,38 +537,49 @@ type ReviewListResponse = {
536
537
  hasMore: boolean;
537
538
  };
538
539
  type ReviewAggregate = {
539
- average: number | null;
540
540
  count: number;
541
- distribution: ReviewDistribution;
542
- };
543
- type ReviewDistribution = {
544
- 1: number;
545
- 2: number;
546
- 3: number;
547
- 4: number;
548
- 5: number;
541
+ recommendedCount: number;
542
+ recommendedPct: number | null;
543
+ summaryLabel: ReviewSummaryLabel;
549
544
  };
545
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
550
546
  type Review = {
551
547
  id: string;
552
- rating: ReviewRating;
548
+ recommended: ReviewRecommended;
553
549
  body: ReviewBody;
550
+ reactions: ReviewReactionCounts;
551
+ tippedCents: number;
552
+ commentCount: number;
554
553
  author: ReviewAuthor;
554
+ authorStats: ReviewerStats;
555
555
  developerReply: ReviewReply;
556
556
  createdAt: string;
557
557
  updatedAt: string;
558
558
  };
559
- type ReviewRating = number;
559
+ type ReviewRecommended = boolean;
560
560
  type ReviewBody = string;
561
+ type ReviewReactionCounts = {
562
+ helpful: number;
563
+ unhelpful: number;
564
+ funny: number;
565
+ };
561
566
  type ReviewAuthor = {
567
+ userId: string;
568
+ handle: string | null;
562
569
  name: string | null;
563
570
  avatarUrl: string | null;
564
571
  };
572
+ type ReviewerStats = {
573
+ playtimeSecondsThisGame: number;
574
+ gamesPlayed: number;
575
+ reviewsWritten: number;
576
+ };
565
577
  type ReviewReply = {
566
578
  body: ReviewReplyBody;
567
579
  repliedAt: string;
568
580
  } | null;
569
581
  type ReviewReplyBody = string;
570
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
582
+ type ReviewSort = "newest" | "oldest" | "helpful";
571
583
  type MyReviewResponse = {
572
584
  eligible: boolean;
573
585
  eligibleVia: ReviewEligibilityReason;
@@ -577,15 +589,67 @@ type MyReviewResponse = {
577
589
  type ReviewEligibilityReason = "payment" | "reward" | null;
578
590
  type OwnReview = {
579
591
  id: string;
580
- rating: ReviewRating;
592
+ recommended: ReviewRecommended;
581
593
  body: ReviewBody;
582
594
  createdAt: string;
583
595
  updatedAt: string;
584
596
  } | null;
585
597
  type UpsertReviewRequest = {
586
- rating: ReviewRating;
598
+ recommended: ReviewRecommended;
587
599
  body: ReviewBody;
588
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
+ };
589
653
  type ReviewReplyResponse = {
590
654
  developerReply: ReviewReply;
591
655
  };
@@ -693,6 +757,8 @@ type ActivityRow = ({
693
757
  } & ActivityRowTronPot) | ({
694
758
  kind: "tron_cashout";
695
759
  } & ActivityRowTronCashout) | ({
760
+ kind: "tron_transfer";
761
+ } & ActivityRowTronTransfer) | ({
696
762
  kind: "referral_earning";
697
763
  } & ActivityRowReferralEarning);
698
764
  type ActivityRowPayment = {
@@ -976,6 +1042,20 @@ type ActivityRowTronCashout = {
976
1042
  rejectionReason: string | null;
977
1043
  settledAt: string | null;
978
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
+ };
979
1059
  type ActivityRowReferralEarning = {
980
1060
  kind: "referral_earning";
981
1061
  groupId: string | null;
@@ -1041,7 +1121,7 @@ type TronLedgerResponse = {
1041
1121
  };
1042
1122
  type TronLedgerEntry = {
1043
1123
  id: string;
1044
- 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";
1045
1125
  amountCents: number;
1046
1126
  currency: string;
1047
1127
  createdAt: string;
@@ -1056,6 +1136,45 @@ type TronDepositResponse = {
1056
1136
  type TronDepositRequest = {
1057
1137
  amountCents: number;
1058
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
+ };
1059
1178
  type TronGameBalanceResponse = {
1060
1179
  balanceCents: number;
1061
1180
  rakeBps: number;
@@ -1330,6 +1449,7 @@ type ThreadLastMessagePreview = {
1330
1449
  url: string;
1331
1450
  count: number;
1332
1451
  } | null;
1452
+ transaction?: MessageTransaction;
1333
1453
  sentAt: string;
1334
1454
  } | null;
1335
1455
  type MessageEnvelope = {
@@ -1341,6 +1461,11 @@ type MessageEnvelope = {
1341
1461
  iv: string;
1342
1462
  ct: string;
1343
1463
  } | null;
1464
+ type MessageTransaction = {
1465
+ kind: "tron_transfer";
1466
+ amountCents: number;
1467
+ recipientUserId: string;
1468
+ } | null;
1344
1469
  type GroupThreadSummary = {
1345
1470
  kind: "group";
1346
1471
  id: string;
@@ -1397,6 +1522,7 @@ type MessageItem = {
1397
1522
  id: string;
1398
1523
  threadId: string;
1399
1524
  senderUserId: string;
1525
+ transaction?: MessageTransaction;
1400
1526
  body: string;
1401
1527
  envelope?: MessageEnvelope;
1402
1528
  sentAt: string;
@@ -1836,7 +1962,7 @@ type ProfileRecentReview = {
1836
1962
  appId: string;
1837
1963
  appName: string;
1838
1964
  appLogoUrl: string | null;
1839
- rating: number;
1965
+ recommended: boolean;
1840
1966
  body: string;
1841
1967
  createdAt: string;
1842
1968
  };
@@ -3665,6 +3791,194 @@ type PutMeReviewsBySlugResponses = {
3665
3791
  200: MyReviewResponse;
3666
3792
  };
3667
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];
3668
3982
  type GetMeDeveloperAppsByAppIdReviewsData = {
3669
3983
  body?: never;
3670
3984
  path: {
@@ -4188,6 +4502,122 @@ type PostPaymentsMeTronDepositResponses = {
4188
4502
  200: TronDepositResponse;
4189
4503
  };
4190
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];
4191
4621
  type GetOauthPaymentsTronBalanceData = {
4192
4622
  body?: never;
4193
4623
  path?: never;
@@ -10557,6 +10987,7 @@ declare const zAppPageLinks: z$1.ZodArray<z$1.ZodObject<{
10557
10987
  order: z$1.ZodInt;
10558
10988
  }, z$1.core.$strip>>;
10559
10989
  declare const zPublicAppPageStudio: z$1.ZodObject<{
10990
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
10560
10991
  name: z$1.ZodNullable<z$1.ZodString>;
10561
10992
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
10562
10993
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
@@ -10671,6 +11102,7 @@ declare const zPublicAppPage: z$1.ZodObject<{
10671
11102
  order: z$1.ZodInt;
10672
11103
  }, z$1.core.$strip>>;
10673
11104
  studio: z$1.ZodObject<{
11105
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
10674
11106
  name: z$1.ZodNullable<z$1.ZodString>;
10675
11107
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
10676
11108
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
@@ -10732,30 +11164,49 @@ declare const zPublicAppPage: z$1.ZodObject<{
10732
11164
  publishedAt: z$1.ZodISODateTime;
10733
11165
  updatedAt: z$1.ZodISODateTime;
10734
11166
  }, z$1.core.$strip>;
10735
- declare const zReviewDistribution: z$1.ZodObject<{
10736
- 1: z$1.ZodInt;
10737
- 2: z$1.ZodInt;
10738
- 3: z$1.ZodInt;
10739
- 4: z$1.ZodInt;
10740
- 5: z$1.ZodInt;
10741
- }, 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
+ }>>;
10742
11177
  declare const zReviewAggregate: z$1.ZodObject<{
10743
- average: z$1.ZodNullable<z$1.ZodNumber>;
10744
11178
  count: z$1.ZodInt;
10745
- distribution: z$1.ZodObject<{
10746
- 1: z$1.ZodInt;
10747
- 2: z$1.ZodInt;
10748
- 3: z$1.ZodInt;
10749
- 4: z$1.ZodInt;
10750
- 5: z$1.ZodInt;
10751
- }, 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
+ }>>;
10752
11191
  }, z$1.core.$strip>;
10753
- declare const zReviewRating: z$1.ZodInt;
11192
+ declare const zReviewRecommended: z$1.ZodBoolean;
10754
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>;
10755
11199
  declare const zReviewAuthor: z$1.ZodObject<{
11200
+ userId: z$1.ZodUUID;
11201
+ handle: z$1.ZodNullable<z$1.ZodString>;
10756
11202
  name: z$1.ZodNullable<z$1.ZodString>;
10757
11203
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10758
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>;
10759
11210
  declare const zReviewReplyBody: z$1.ZodString;
10760
11211
  declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
10761
11212
  body: z$1.ZodString;
@@ -10763,12 +11214,26 @@ declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
10763
11214
  }, z$1.core.$strip>>;
10764
11215
  declare const zReview: z$1.ZodObject<{
10765
11216
  id: z$1.ZodUUID;
10766
- rating: z$1.ZodInt;
11217
+ recommended: z$1.ZodBoolean;
10767
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;
10768
11226
  author: z$1.ZodObject<{
11227
+ userId: z$1.ZodUUID;
11228
+ handle: z$1.ZodNullable<z$1.ZodString>;
10769
11229
  name: z$1.ZodNullable<z$1.ZodString>;
10770
11230
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10771
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>;
10772
11237
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10773
11238
  body: z$1.ZodString;
10774
11239
  repliedAt: z$1.ZodISODateTime;
@@ -10778,24 +11243,42 @@ declare const zReview: z$1.ZodObject<{
10778
11243
  }, z$1.core.$strip>;
10779
11244
  declare const zReviewListResponse: z$1.ZodObject<{
10780
11245
  aggregate: z$1.ZodObject<{
10781
- average: z$1.ZodNullable<z$1.ZodNumber>;
10782
11246
  count: z$1.ZodInt;
10783
- distribution: z$1.ZodObject<{
10784
- 1: z$1.ZodInt;
10785
- 2: z$1.ZodInt;
10786
- 3: z$1.ZodInt;
10787
- 4: z$1.ZodInt;
10788
- 5: z$1.ZodInt;
10789
- }, 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
+ }>>;
10790
11259
  }, z$1.core.$strip>;
10791
11260
  reviews: z$1.ZodArray<z$1.ZodObject<{
10792
11261
  id: z$1.ZodUUID;
10793
- rating: z$1.ZodInt;
11262
+ recommended: z$1.ZodBoolean;
10794
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;
10795
11271
  author: z$1.ZodObject<{
11272
+ userId: z$1.ZodUUID;
11273
+ handle: z$1.ZodNullable<z$1.ZodString>;
10796
11274
  name: z$1.ZodNullable<z$1.ZodString>;
10797
11275
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
10798
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>;
10799
11282
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10800
11283
  body: z$1.ZodString;
10801
11284
  repliedAt: z$1.ZodISODateTime;
@@ -10807,10 +11290,9 @@ declare const zReviewListResponse: z$1.ZodObject<{
10807
11290
  hasMore: z$1.ZodBoolean;
10808
11291
  }, z$1.core.$strip>;
10809
11292
  declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
11293
+ helpful: "helpful";
10810
11294
  newest: "newest";
10811
11295
  oldest: "oldest";
10812
- highest: "highest";
10813
- lowest: "lowest";
10814
11296
  }>>;
10815
11297
  declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
10816
11298
  payment: "payment";
@@ -10818,7 +11300,7 @@ declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
10818
11300
  }>>;
10819
11301
  declare const zOwnReview: z$1.ZodNullable<z$1.ZodObject<{
10820
11302
  id: z$1.ZodUUID;
10821
- rating: z$1.ZodInt;
11303
+ recommended: z$1.ZodBoolean;
10822
11304
  body: z$1.ZodString;
10823
11305
  createdAt: z$1.ZodISODateTime;
10824
11306
  updatedAt: z$1.ZodISODateTime;
@@ -10831,7 +11313,7 @@ declare const zMyReviewResponse: z$1.ZodObject<{
10831
11313
  }>>;
10832
11314
  review: z$1.ZodNullable<z$1.ZodObject<{
10833
11315
  id: z$1.ZodUUID;
10834
- rating: z$1.ZodInt;
11316
+ recommended: z$1.ZodBoolean;
10835
11317
  body: z$1.ZodString;
10836
11318
  createdAt: z$1.ZodISODateTime;
10837
11319
  updatedAt: z$1.ZodISODateTime;
@@ -10839,9 +11321,111 @@ declare const zMyReviewResponse: z$1.ZodObject<{
10839
11321
  isAppOwner: z$1.ZodBoolean;
10840
11322
  }, z$1.core.$strip>;
10841
11323
  declare const zUpsertReviewRequest: z$1.ZodObject<{
10842
- rating: z$1.ZodInt;
11324
+ recommended: z$1.ZodBoolean;
10843
11325
  body: z$1.ZodString;
10844
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<{
11424
+ body: z$1.ZodString;
11425
+ }, z$1.core.$strip>;
11426
+ declare const zDeleteReviewCommentResponse: z$1.ZodObject<{
11427
+ commentCount: z$1.ZodInt;
11428
+ }, z$1.core.$strip>;
10845
11429
  declare const zReviewReplyResponse: z$1.ZodObject<{
10846
11430
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
10847
11431
  body: z$1.ZodString;
@@ -11480,6 +12064,27 @@ declare const zActivityRowTronCashout: z$1.ZodObject<{
11480
12064
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
11481
12065
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
11482
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>;
11483
12088
  declare const zActivityRowReferralEarning: z$1.ZodObject<{
11484
12089
  kind: z$1.ZodEnum<{
11485
12090
  referral_earning: "referral_earning";
@@ -11903,6 +12508,24 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
11903
12508
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
11904
12509
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
11905
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">;
11906
12529
  }, z$1.core.$strip>, z$1.ZodObject<{
11907
12530
  groupId: z$1.ZodNullable<z$1.ZodString>;
11908
12531
  id: z$1.ZodString;
@@ -12319,12 +12942,30 @@ declare const zActivityResponse: z$1.ZodObject<{
12319
12942
  pending: "pending";
12320
12943
  failed: "failed";
12321
12944
  settled: "settled";
12322
- rejected: "rejected";
12945
+ rejected: "rejected";
12946
+ }>;
12947
+ stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
12948
+ rejectionReason: z$1.ZodNullable<z$1.ZodString>;
12949
+ settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
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";
12323
12963
  }>;
12324
- stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
12325
- rejectionReason: z$1.ZodNullable<z$1.ZodString>;
12326
- settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
12327
- kind: z$1.ZodLiteral<"tron_cashout">;
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">;
12328
12969
  }, z$1.core.$strip>, z$1.ZodObject<{
12329
12970
  groupId: z$1.ZodNullable<z$1.ZodString>;
12330
12971
  id: z$1.ZodString;
@@ -12416,6 +13057,7 @@ declare const zTronLedgerEntry: z$1.ZodObject<{
12416
13057
  dispute_unfreeze: "dispute_unfreeze";
12417
13058
  hosted_billing: "hosted_billing";
12418
13059
  store_purchase: "store_purchase";
13060
+ peer_transfer: "peer_transfer";
12419
13061
  }>;
12420
13062
  amountCents: z$1.ZodInt;
12421
13063
  currency: z$1.ZodString;
@@ -12436,6 +13078,7 @@ declare const zTronLedgerResponse: z$1.ZodObject<{
12436
13078
  dispute_unfreeze: "dispute_unfreeze";
12437
13079
  hosted_billing: "hosted_billing";
12438
13080
  store_purchase: "store_purchase";
13081
+ peer_transfer: "peer_transfer";
12439
13082
  }>;
12440
13083
  amountCents: z$1.ZodInt;
12441
13084
  currency: z$1.ZodString;
@@ -12453,6 +13096,50 @@ declare const zTronDepositResponse: z$1.ZodObject<{
12453
13096
  declare const zTronDepositRequest: z$1.ZodObject<{
12454
13097
  amountCents: z$1.ZodInt;
12455
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>;
12456
13143
  declare const zTronGameBalanceResponse: z$1.ZodObject<{
12457
13144
  balanceCents: z$1.ZodInt;
12458
13145
  rakeBps: z$1.ZodInt;
@@ -12982,6 +13669,13 @@ declare const zMessageEnvelope: z$1.ZodNullable<z$1.ZodObject<{
12982
13669
  iv: z$1.ZodString;
12983
13670
  ct: z$1.ZodString;
12984
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>>;
12985
13679
  declare const zThreadLastMessagePreview: z$1.ZodNullable<z$1.ZodObject<{
12986
13680
  id: z$1.ZodString;
12987
13681
  senderUserId: z$1.ZodString;
@@ -13001,6 +13695,13 @@ declare const zThreadLastMessagePreview: z$1.ZodNullable<z$1.ZodObject<{
13001
13695
  url: z$1.ZodURL;
13002
13696
  count: z$1.ZodInt;
13003
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>>>;
13004
13705
  sentAt: z$1.ZodISODateTime;
13005
13706
  }, z$1.core.$strip>>;
13006
13707
  declare const zDirectThreadSummary: z$1.ZodObject<{
@@ -13033,6 +13734,13 @@ declare const zDirectThreadSummary: z$1.ZodObject<{
13033
13734
  url: z$1.ZodURL;
13034
13735
  count: z$1.ZodInt;
13035
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>>>;
13036
13744
  sentAt: z$1.ZodISODateTime;
13037
13745
  }, z$1.core.$strip>>;
13038
13746
  unreadCount: z$1.ZodInt;
@@ -13097,6 +13805,13 @@ declare const zGroupThreadSummary: z$1.ZodObject<{
13097
13805
  url: z$1.ZodURL;
13098
13806
  count: z$1.ZodInt;
13099
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>>>;
13100
13815
  sentAt: z$1.ZodISODateTime;
13101
13816
  }, z$1.core.$strip>>;
13102
13817
  unreadCount: z$1.ZodInt;
@@ -13130,6 +13845,13 @@ declare const zThreadSummary: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
13130
13845
  url: z$1.ZodURL;
13131
13846
  count: z$1.ZodInt;
13132
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>>>;
13133
13855
  sentAt: z$1.ZodISODateTime;
13134
13856
  }, z$1.core.$strip>>;
13135
13857
  unreadCount: z$1.ZodInt;
@@ -13174,6 +13896,13 @@ declare const zThreadSummary: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
13174
13896
  url: z$1.ZodURL;
13175
13897
  count: z$1.ZodInt;
13176
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>>>;
13177
13906
  sentAt: z$1.ZodISODateTime;
13178
13907
  }, z$1.core.$strip>>;
13179
13908
  unreadCount: z$1.ZodInt;
@@ -13209,6 +13938,13 @@ declare const zThreadListResponse: z$1.ZodObject<{
13209
13938
  url: z$1.ZodURL;
13210
13939
  count: z$1.ZodInt;
13211
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>>>;
13212
13948
  sentAt: z$1.ZodISODateTime;
13213
13949
  }, z$1.core.$strip>>;
13214
13950
  unreadCount: z$1.ZodInt;
@@ -13253,6 +13989,13 @@ declare const zThreadListResponse: z$1.ZodObject<{
13253
13989
  url: z$1.ZodURL;
13254
13990
  count: z$1.ZodInt;
13255
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>>>;
13256
13999
  sentAt: z$1.ZodISODateTime;
13257
14000
  }, z$1.core.$strip>>;
13258
14001
  unreadCount: z$1.ZodInt;
@@ -13289,6 +14032,13 @@ declare const zCreateThreadResponse: z$1.ZodObject<{
13289
14032
  url: z$1.ZodURL;
13290
14033
  count: z$1.ZodInt;
13291
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>>>;
13292
14042
  sentAt: z$1.ZodISODateTime;
13293
14043
  }, z$1.core.$strip>>;
13294
14044
  unreadCount: z$1.ZodInt;
@@ -13333,6 +14083,13 @@ declare const zCreateThreadResponse: z$1.ZodObject<{
13333
14083
  url: z$1.ZodURL;
13334
14084
  count: z$1.ZodInt;
13335
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>>>;
13336
14093
  sentAt: z$1.ZodISODateTime;
13337
14094
  }, z$1.core.$strip>>;
13338
14095
  unreadCount: z$1.ZodInt;
@@ -13401,6 +14158,13 @@ declare const zGroupThreadMutationResponse: z$1.ZodObject<{
13401
14158
  url: z$1.ZodURL;
13402
14159
  count: z$1.ZodInt;
13403
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>>>;
13404
14168
  sentAt: z$1.ZodISODateTime;
13405
14169
  }, z$1.core.$strip>>;
13406
14170
  unreadCount: z$1.ZodInt;
@@ -13486,6 +14250,13 @@ declare const zMessageItem: z$1.ZodObject<{
13486
14250
  id: z$1.ZodString;
13487
14251
  threadId: z$1.ZodString;
13488
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>>>;
13489
14260
  body: z$1.ZodString;
13490
14261
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13491
14262
  v: z$1.ZodLiteral<1>;
@@ -13560,6 +14331,13 @@ declare const zMessagesPageResponse: z$1.ZodObject<{
13560
14331
  id: z$1.ZodString;
13561
14332
  threadId: z$1.ZodString;
13562
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>>>;
13563
14341
  body: z$1.ZodString;
13564
14342
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
13565
14343
  v: z$1.ZodLiteral<1>;
@@ -14385,7 +15163,7 @@ declare const zProfileRecentReview: z$1.ZodObject<{
14385
15163
  appId: z$1.ZodString;
14386
15164
  appName: z$1.ZodString;
14387
15165
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
14388
- rating: z$1.ZodInt;
15166
+ recommended: z$1.ZodBoolean;
14389
15167
  body: z$1.ZodString;
14390
15168
  createdAt: z$1.ZodISODateTime;
14391
15169
  }, z$1.core.$strip>;
@@ -14467,7 +15245,7 @@ declare const zPublicProfile: z$1.ZodObject<{
14467
15245
  appId: z$1.ZodString;
14468
15246
  appName: z$1.ZodString;
14469
15247
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
14470
- rating: z$1.ZodInt;
15248
+ recommended: z$1.ZodBoolean;
14471
15249
  body: z$1.ZodString;
14472
15250
  createdAt: z$1.ZodISODateTime;
14473
15251
  }, z$1.core.$strip>>;
@@ -17263,6 +18041,7 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
17263
18041
  order: z$1.ZodInt;
17264
18042
  }, z$1.core.$strip>>;
17265
18043
  studio: z$1.ZodObject<{
18044
+ ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
17266
18045
  name: z$1.ZodNullable<z$1.ZodString>;
17267
18046
  logoUrl: z$1.ZodNullable<z$1.ZodURL>;
17268
18047
  websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
@@ -17329,10 +18108,9 @@ declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
17329
18108
  }, z$1.core.$strip>;
17330
18109
  declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
17331
18110
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
18111
+ helpful: "helpful";
17332
18112
  newest: "newest";
17333
18113
  oldest: "oldest";
17334
- highest: "highest";
17335
- lowest: "lowest";
17336
18114
  }>>>;
17337
18115
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
17338
18116
  offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
@@ -17342,24 +18120,42 @@ declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
17342
18120
  */
17343
18121
  declare const zGetPublicAppsBySlugReviewsResponse: z$1.ZodObject<{
17344
18122
  aggregate: z$1.ZodObject<{
17345
- average: z$1.ZodNullable<z$1.ZodNumber>;
17346
18123
  count: z$1.ZodInt;
17347
- distribution: z$1.ZodObject<{
17348
- 1: z$1.ZodInt;
17349
- 2: z$1.ZodInt;
17350
- 3: z$1.ZodInt;
17351
- 4: z$1.ZodInt;
17352
- 5: z$1.ZodInt;
17353
- }, 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
+ }>>;
17354
18136
  }, z$1.core.$strip>;
17355
18137
  reviews: z$1.ZodArray<z$1.ZodObject<{
17356
18138
  id: z$1.ZodUUID;
17357
- rating: z$1.ZodInt;
18139
+ recommended: z$1.ZodBoolean;
17358
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;
17359
18148
  author: z$1.ZodObject<{
18149
+ userId: z$1.ZodUUID;
18150
+ handle: z$1.ZodNullable<z$1.ZodString>;
17360
18151
  name: z$1.ZodNullable<z$1.ZodString>;
17361
18152
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
17362
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>;
17363
18159
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
17364
18160
  body: z$1.ZodString;
17365
18161
  repliedAt: z$1.ZodISODateTime;
@@ -17384,7 +18180,7 @@ declare const zDeleteMeReviewsBySlugResponse: z$1.ZodObject<{
17384
18180
  }>>;
17385
18181
  review: z$1.ZodNullable<z$1.ZodObject<{
17386
18182
  id: z$1.ZodUUID;
17387
- rating: z$1.ZodInt;
18183
+ recommended: z$1.ZodBoolean;
17388
18184
  body: z$1.ZodString;
17389
18185
  createdAt: z$1.ZodISODateTime;
17390
18186
  updatedAt: z$1.ZodISODateTime;
@@ -17405,7 +18201,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
17405
18201
  }>>;
17406
18202
  review: z$1.ZodNullable<z$1.ZodObject<{
17407
18203
  id: z$1.ZodUUID;
17408
- rating: z$1.ZodInt;
18204
+ recommended: z$1.ZodBoolean;
17409
18205
  body: z$1.ZodString;
17410
18206
  createdAt: z$1.ZodISODateTime;
17411
18207
  updatedAt: z$1.ZodISODateTime;
@@ -17413,7 +18209,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
17413
18209
  isAppOwner: z$1.ZodBoolean;
17414
18210
  }, z$1.core.$strip>;
17415
18211
  declare const zPutMeReviewsBySlugBody: z$1.ZodObject<{
17416
- rating: z$1.ZodInt;
18212
+ recommended: z$1.ZodBoolean;
17417
18213
  body: z$1.ZodString;
17418
18214
  }, z$1.core.$strip>;
17419
18215
  declare const zPutMeReviewsBySlugPath: z$1.ZodObject<{
@@ -17430,22 +18226,144 @@ declare const zPutMeReviewsBySlugResponse: z$1.ZodObject<{
17430
18226
  }>>;
17431
18227
  review: z$1.ZodNullable<z$1.ZodObject<{
17432
18228
  id: z$1.ZodUUID;
17433
- rating: z$1.ZodInt;
18229
+ recommended: z$1.ZodBoolean;
17434
18230
  body: z$1.ZodString;
17435
18231
  createdAt: z$1.ZodISODateTime;
17436
18232
  updatedAt: z$1.ZodISODateTime;
17437
18233
  }, z$1.core.$strip>>;
17438
18234
  isAppOwner: z$1.ZodBoolean;
17439
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>;
17440
18359
  declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
17441
18360
  appId: z$1.ZodUUID;
17442
18361
  }, z$1.core.$strip>;
17443
18362
  declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
17444
18363
  sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
18364
+ helpful: "helpful";
17445
18365
  newest: "newest";
17446
18366
  oldest: "oldest";
17447
- highest: "highest";
17448
- lowest: "lowest";
17449
18367
  }>>>;
17450
18368
  limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
17451
18369
  offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
@@ -17455,24 +18373,42 @@ declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
17455
18373
  */
17456
18374
  declare const zGetMeDeveloperAppsByAppIdReviewsResponse: z$1.ZodObject<{
17457
18375
  aggregate: z$1.ZodObject<{
17458
- average: z$1.ZodNullable<z$1.ZodNumber>;
17459
18376
  count: z$1.ZodInt;
17460
- distribution: z$1.ZodObject<{
17461
- 1: z$1.ZodInt;
17462
- 2: z$1.ZodInt;
17463
- 3: z$1.ZodInt;
17464
- 4: z$1.ZodInt;
17465
- 5: z$1.ZodInt;
17466
- }, 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
+ }>>;
17467
18389
  }, z$1.core.$strip>;
17468
18390
  reviews: z$1.ZodArray<z$1.ZodObject<{
17469
18391
  id: z$1.ZodUUID;
17470
- rating: z$1.ZodInt;
18392
+ recommended: z$1.ZodBoolean;
17471
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;
17472
18401
  author: z$1.ZodObject<{
18402
+ userId: z$1.ZodUUID;
18403
+ handle: z$1.ZodNullable<z$1.ZodString>;
17473
18404
  name: z$1.ZodNullable<z$1.ZodString>;
17474
18405
  avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
17475
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>;
17476
18412
  developerReply: z$1.ZodNullable<z$1.ZodObject<{
17477
18413
  body: z$1.ZodString;
17478
18414
  repliedAt: z$1.ZodISODateTime;
@@ -18097,6 +19033,24 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
18097
19033
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
18098
19034
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
18099
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">;
18100
19054
  }, z$1.core.$strip>, z$1.ZodObject<{
18101
19055
  groupId: z$1.ZodNullable<z$1.ZodString>;
18102
19056
  id: z$1.ZodString;
@@ -18529,6 +19483,24 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
18529
19483
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
18530
19484
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
18531
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">;
18532
19504
  }, z$1.core.$strip>, z$1.ZodObject<{
18533
19505
  groupId: z$1.ZodNullable<z$1.ZodString>;
18534
19506
  id: z$1.ZodString;
@@ -18638,6 +19610,7 @@ declare const zGetPaymentsMeTronLedgerResponse: z$1.ZodObject<{
18638
19610
  dispute_unfreeze: "dispute_unfreeze";
18639
19611
  hosted_billing: "hosted_billing";
18640
19612
  store_purchase: "store_purchase";
19613
+ peer_transfer: "peer_transfer";
18641
19614
  }>;
18642
19615
  amountCents: z$1.ZodInt;
18643
19616
  currency: z$1.ZodString;
@@ -18658,6 +19631,59 @@ declare const zPostPaymentsMeTronDepositResponse: z$1.ZodObject<{
18658
19631
  currency: z$1.ZodString;
18659
19632
  depositId: z$1.ZodUUID;
18660
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">;
18661
19687
  /**
18662
19688
  * The caller's spendable TRON balance in cents
18663
19689
  */
@@ -19276,6 +20302,13 @@ declare const zGetMeThreadsResponse: z$1.ZodObject<{
19276
20302
  url: z$1.ZodURL;
19277
20303
  count: z$1.ZodInt;
19278
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>>>;
19279
20312
  sentAt: z$1.ZodISODateTime;
19280
20313
  }, z$1.core.$strip>>;
19281
20314
  unreadCount: z$1.ZodInt;
@@ -19320,6 +20353,13 @@ declare const zGetMeThreadsResponse: z$1.ZodObject<{
19320
20353
  url: z$1.ZodURL;
19321
20354
  count: z$1.ZodInt;
19322
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>>>;
19323
20363
  sentAt: z$1.ZodISODateTime;
19324
20364
  }, z$1.core.$strip>>;
19325
20365
  unreadCount: z$1.ZodInt;
@@ -19372,6 +20412,13 @@ declare const zPostMeThreadsResponse: z$1.ZodObject<{
19372
20412
  url: z$1.ZodURL;
19373
20413
  count: z$1.ZodInt;
19374
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>>>;
19375
20422
  sentAt: z$1.ZodISODateTime;
19376
20423
  }, z$1.core.$strip>>;
19377
20424
  unreadCount: z$1.ZodInt;
@@ -19416,6 +20463,13 @@ declare const zPostMeThreadsResponse: z$1.ZodObject<{
19416
20463
  url: z$1.ZodURL;
19417
20464
  count: z$1.ZodInt;
19418
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>>>;
19419
20473
  sentAt: z$1.ZodISODateTime;
19420
20474
  }, z$1.core.$strip>>;
19421
20475
  unreadCount: z$1.ZodInt;
@@ -19486,6 +20540,13 @@ declare const zPatchMeThreadsByIdResponse: z$1.ZodObject<{
19486
20540
  url: z$1.ZodURL;
19487
20541
  count: z$1.ZodInt;
19488
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>>>;
19489
20550
  sentAt: z$1.ZodISODateTime;
19490
20551
  }, z$1.core.$strip>>;
19491
20552
  unreadCount: z$1.ZodInt;
@@ -19508,6 +20569,13 @@ declare const zGetMeThreadsByIdMessagesResponse: z$1.ZodObject<{
19508
20569
  id: z$1.ZodString;
19509
20570
  threadId: z$1.ZodString;
19510
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>>>;
19511
20579
  body: z$1.ZodString;
19512
20580
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
19513
20581
  v: z$1.ZodLiteral<1>;
@@ -19605,6 +20673,13 @@ declare const zPostMeThreadsByIdMessagesResponse: z$1.ZodObject<{
19605
20673
  id: z$1.ZodString;
19606
20674
  threadId: z$1.ZodString;
19607
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>>>;
19608
20683
  body: z$1.ZodString;
19609
20684
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
19610
20685
  v: z$1.ZodLiteral<1>;
@@ -19709,6 +20784,13 @@ declare const zPatchMeThreadsByIdMessagesByMsgIdResponse: z$1.ZodObject<{
19709
20784
  id: z$1.ZodString;
19710
20785
  threadId: z$1.ZodString;
19711
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>>>;
19712
20794
  body: z$1.ZodString;
19713
20795
  envelope: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
19714
20796
  v: z$1.ZodLiteral<1>;
@@ -19952,6 +21034,13 @@ declare const zPostMeThreadsByIdInviteResponse: z$1.ZodObject<{
19952
21034
  url: z$1.ZodURL;
19953
21035
  count: z$1.ZodInt;
19954
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>>>;
19955
21044
  sentAt: z$1.ZodISODateTime;
19956
21045
  }, z$1.core.$strip>>;
19957
21046
  unreadCount: z$1.ZodInt;
@@ -20034,6 +21123,13 @@ declare const zDeleteMeThreadsByIdLogoResponse: z$1.ZodObject<{
20034
21123
  url: z$1.ZodURL;
20035
21124
  count: z$1.ZodInt;
20036
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>>>;
20037
21133
  sentAt: z$1.ZodISODateTime;
20038
21134
  }, z$1.core.$strip>>;
20039
21135
  unreadCount: z$1.ZodInt;
@@ -20092,6 +21188,13 @@ declare const zPostMeThreadsByIdLogoResponse: z$1.ZodObject<{
20092
21188
  url: z$1.ZodURL;
20093
21189
  count: z$1.ZodInt;
20094
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>>>;
20095
21198
  sentAt: z$1.ZodISODateTime;
20096
21199
  }, z$1.core.$strip>>;
20097
21200
  unreadCount: z$1.ZodInt;
@@ -20148,6 +21251,13 @@ declare const zDeleteMeThreadsByIdParticipantsByUserIdResponse: z$1.ZodObject<{
20148
21251
  url: z$1.ZodURL;
20149
21252
  count: z$1.ZodInt;
20150
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>>>;
20151
21261
  sentAt: z$1.ZodISODateTime;
20152
21262
  }, z$1.core.$strip>>;
20153
21263
  unreadCount: z$1.ZodInt;
@@ -20317,6 +21427,13 @@ declare const zPatchMeThreadsByIdParticipantsByUserIdRoleResponse: z$1.ZodObject
20317
21427
  url: z$1.ZodURL;
20318
21428
  count: z$1.ZodInt;
20319
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>>>;
20320
21437
  sentAt: z$1.ZodISODateTime;
20321
21438
  }, z$1.core.$strip>>;
20322
21439
  unreadCount: z$1.ZodInt;
@@ -20839,7 +21956,7 @@ declare const zGetUsersByHandleResponse: z$1.ZodObject<{
20839
21956
  appId: z$1.ZodString;
20840
21957
  appName: z$1.ZodString;
20841
21958
  appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
20842
- rating: z$1.ZodInt;
21959
+ recommended: z$1.ZodBoolean;
20843
21960
  body: z$1.ZodString;
20844
21961
  createdAt: z$1.ZodISODateTime;
20845
21962
  }, z$1.core.$strip>>;
@@ -21552,6 +22669,24 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
21552
22669
  rejectionReason: z$1.ZodNullable<z$1.ZodString>;
21553
22670
  settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
21554
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">;
21555
22690
  }, z$1.core.$strip>, z$1.ZodObject<{
21556
22691
  groupId: z$1.ZodNullable<z$1.ZodString>;
21557
22692
  id: z$1.ZodString;
@@ -23951,4 +25086,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
23951
25086
  */
23952
25087
  declare const zPostMeConsentResponse: z$1.ZodVoid;
23953
25088
  //#endregion
23954
- export { type AcceptedCurrencies, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type 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 CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryHolding, type InventoryListResponse, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewDistribution, type ReviewEligibilityReason, type ReviewListResponse, type ReviewRating, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TronBalanceResponse, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, 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, 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 };