@metatrongg/sdk 0.8.0-dev.cb4b3eb → 0.8.0-dev.d1c3c23
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.
- package/dist/browser/index.d.ts +136 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1232 -94
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +136 -17
- package/dist/node/index.js +1 -1
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +1 -1
|
@@ -485,9 +485,16 @@ type PublicAppPage = {
|
|
|
485
485
|
chapters: AppPageChapters;
|
|
486
486
|
links: AppPageLinks;
|
|
487
487
|
studio: PublicAppPageStudio;
|
|
488
|
+
platforms: AppPagePlatforms;
|
|
489
|
+
gameType: AppPageGameType;
|
|
490
|
+
ageRating: AppPageAgeRating;
|
|
491
|
+
languages: AppPageLanguages;
|
|
492
|
+
releaseStatus: AppPageReleaseStatus;
|
|
493
|
+
paymentsMode: AppPagePaymentsMode;
|
|
488
494
|
oauthScopes: Array<string>;
|
|
489
495
|
chains: Array<string>;
|
|
490
496
|
publishedAt: string;
|
|
497
|
+
updatedAt: string;
|
|
491
498
|
};
|
|
492
499
|
type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
|
|
493
500
|
type AppPageTagline = string;
|
|
@@ -510,12 +517,19 @@ type AppPageLink = {
|
|
|
510
517
|
order: number;
|
|
511
518
|
};
|
|
512
519
|
type PublicAppPageStudio = {
|
|
520
|
+
ownerUserId: string | null;
|
|
513
521
|
name: string | null;
|
|
514
522
|
logoUrl: string | null;
|
|
515
523
|
websiteUrl: string | null;
|
|
516
524
|
xHandle: string | null;
|
|
517
525
|
githubUrl: string | null;
|
|
518
526
|
};
|
|
527
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
528
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
529
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
530
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
531
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
532
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
519
533
|
type ReviewListResponse = {
|
|
520
534
|
aggregate: ReviewAggregate;
|
|
521
535
|
reviews: Array<Review>;
|
|
@@ -523,29 +537,33 @@ type ReviewListResponse = {
|
|
|
523
537
|
hasMore: boolean;
|
|
524
538
|
};
|
|
525
539
|
type ReviewAggregate = {
|
|
526
|
-
average: number | null;
|
|
527
540
|
count: number;
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
1: number;
|
|
532
|
-
2: number;
|
|
533
|
-
3: number;
|
|
534
|
-
4: number;
|
|
535
|
-
5: number;
|
|
541
|
+
recommendedCount: number;
|
|
542
|
+
recommendedPct: number | null;
|
|
543
|
+
summaryLabel: ReviewSummaryLabel;
|
|
536
544
|
};
|
|
545
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
537
546
|
type Review = {
|
|
538
547
|
id: string;
|
|
539
|
-
|
|
548
|
+
recommended: ReviewRecommended;
|
|
540
549
|
body: ReviewBody;
|
|
550
|
+
reactions: ReviewReactionCounts;
|
|
551
|
+
tippedCents: number;
|
|
541
552
|
author: ReviewAuthor;
|
|
542
553
|
developerReply: ReviewReply;
|
|
543
554
|
createdAt: string;
|
|
544
555
|
updatedAt: string;
|
|
545
556
|
};
|
|
546
|
-
type
|
|
557
|
+
type ReviewRecommended = boolean;
|
|
547
558
|
type ReviewBody = string;
|
|
559
|
+
type ReviewReactionCounts = {
|
|
560
|
+
helpful: number;
|
|
561
|
+
unhelpful: number;
|
|
562
|
+
funny: number;
|
|
563
|
+
};
|
|
548
564
|
type ReviewAuthor = {
|
|
565
|
+
userId: string;
|
|
566
|
+
handle: string | null;
|
|
549
567
|
name: string | null;
|
|
550
568
|
avatarUrl: string | null;
|
|
551
569
|
};
|
|
@@ -554,7 +572,7 @@ type ReviewReply = {
|
|
|
554
572
|
repliedAt: string;
|
|
555
573
|
} | null;
|
|
556
574
|
type ReviewReplyBody = string;
|
|
557
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
575
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
558
576
|
type MyReviewResponse = {
|
|
559
577
|
eligible: boolean;
|
|
560
578
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -564,15 +582,43 @@ type MyReviewResponse = {
|
|
|
564
582
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
565
583
|
type OwnReview = {
|
|
566
584
|
id: string;
|
|
567
|
-
|
|
585
|
+
recommended: ReviewRecommended;
|
|
568
586
|
body: ReviewBody;
|
|
569
587
|
createdAt: string;
|
|
570
588
|
updatedAt: string;
|
|
571
589
|
} | null;
|
|
572
590
|
type UpsertReviewRequest = {
|
|
573
|
-
|
|
591
|
+
recommended: ReviewRecommended;
|
|
574
592
|
body: ReviewBody;
|
|
575
593
|
};
|
|
594
|
+
type MyReviewReactionsResponse = {
|
|
595
|
+
reactions: Array<MyReviewReaction>;
|
|
596
|
+
};
|
|
597
|
+
type MyReviewReaction = {
|
|
598
|
+
reviewId: string;
|
|
599
|
+
vote: ReviewVote;
|
|
600
|
+
funny: boolean;
|
|
601
|
+
};
|
|
602
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
603
|
+
type SetReviewReactionResponse = {
|
|
604
|
+
reactions: ReviewReactionCounts;
|
|
605
|
+
vote: ReviewVote;
|
|
606
|
+
funny: boolean;
|
|
607
|
+
};
|
|
608
|
+
type SetReviewReactionRequest = {
|
|
609
|
+
vote: ReviewVote;
|
|
610
|
+
funny: boolean;
|
|
611
|
+
};
|
|
612
|
+
type TipReviewResponse = {
|
|
613
|
+
status: "completed";
|
|
614
|
+
amountCents: number;
|
|
615
|
+
balanceCents: number;
|
|
616
|
+
tippedCents: number;
|
|
617
|
+
};
|
|
618
|
+
type TipReviewRequest = {
|
|
619
|
+
amountCents: number;
|
|
620
|
+
note?: string;
|
|
621
|
+
};
|
|
576
622
|
type ReviewReplyResponse = {
|
|
577
623
|
developerReply: ReviewReply;
|
|
578
624
|
};
|
|
@@ -680,6 +726,8 @@ type ActivityRow = ({
|
|
|
680
726
|
} & ActivityRowTronPot) | ({
|
|
681
727
|
kind: "tron_cashout";
|
|
682
728
|
} & ActivityRowTronCashout) | ({
|
|
729
|
+
kind: "tron_transfer";
|
|
730
|
+
} & ActivityRowTronTransfer) | ({
|
|
683
731
|
kind: "referral_earning";
|
|
684
732
|
} & ActivityRowReferralEarning);
|
|
685
733
|
type ActivityRowPayment = {
|
|
@@ -927,6 +975,8 @@ type ActivityRowTronPot = {
|
|
|
927
975
|
role: "incoming" | "outgoing";
|
|
928
976
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
929
977
|
amountCents: number;
|
|
978
|
+
usdCents: number;
|
|
979
|
+
status: "settled";
|
|
930
980
|
app: {
|
|
931
981
|
id: string;
|
|
932
982
|
name: string;
|
|
@@ -934,8 +984,16 @@ type ActivityRowTronPot = {
|
|
|
934
984
|
slug: string | null;
|
|
935
985
|
bannerUrl: string | null;
|
|
936
986
|
} | null;
|
|
987
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
937
988
|
metadata?: PaymentMetadata | null;
|
|
938
989
|
};
|
|
990
|
+
type ActivityTronInvolvedUser = {
|
|
991
|
+
userId: string;
|
|
992
|
+
handle: string | null;
|
|
993
|
+
displayName: string | null;
|
|
994
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
995
|
+
amountCents: number;
|
|
996
|
+
};
|
|
939
997
|
type ActivityRowTronCashout = {
|
|
940
998
|
kind: "tron_cashout";
|
|
941
999
|
groupId: string | null;
|
|
@@ -953,6 +1011,20 @@ type ActivityRowTronCashout = {
|
|
|
953
1011
|
rejectionReason: string | null;
|
|
954
1012
|
settledAt: string | null;
|
|
955
1013
|
};
|
|
1014
|
+
type ActivityRowTronTransfer = {
|
|
1015
|
+
kind: "tron_transfer";
|
|
1016
|
+
groupId: string | null;
|
|
1017
|
+
id: string;
|
|
1018
|
+
occurredAt: string;
|
|
1019
|
+
role: "incoming" | "outgoing";
|
|
1020
|
+
amountCents: number;
|
|
1021
|
+
usdCents: number;
|
|
1022
|
+
status: "settled";
|
|
1023
|
+
counterpartyUserId: string | null;
|
|
1024
|
+
counterpartyHandle: string | null;
|
|
1025
|
+
counterpartyDisplayName: string | null;
|
|
1026
|
+
note: string | null;
|
|
1027
|
+
};
|
|
956
1028
|
type ActivityRowReferralEarning = {
|
|
957
1029
|
kind: "referral_earning";
|
|
958
1030
|
groupId: string | null;
|
|
@@ -1018,7 +1090,7 @@ type TronLedgerResponse = {
|
|
|
1018
1090
|
};
|
|
1019
1091
|
type TronLedgerEntry = {
|
|
1020
1092
|
id: string;
|
|
1021
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
1093
|
+
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
|
|
1022
1094
|
amountCents: number;
|
|
1023
1095
|
currency: string;
|
|
1024
1096
|
createdAt: string;
|
|
@@ -1033,6 +1105,21 @@ type TronDepositResponse = {
|
|
|
1033
1105
|
type TronDepositRequest = {
|
|
1034
1106
|
amountCents: number;
|
|
1035
1107
|
};
|
|
1108
|
+
type TronTransferResponse = {
|
|
1109
|
+
status: "completed";
|
|
1110
|
+
amountCents: number;
|
|
1111
|
+
balanceCents: number;
|
|
1112
|
+
recipient: {
|
|
1113
|
+
userId: string;
|
|
1114
|
+
handle: string | null;
|
|
1115
|
+
displayName: string | null;
|
|
1116
|
+
};
|
|
1117
|
+
};
|
|
1118
|
+
type TronTransferRequest = {
|
|
1119
|
+
recipientUserId: string;
|
|
1120
|
+
amountCents: number;
|
|
1121
|
+
note?: string;
|
|
1122
|
+
};
|
|
1036
1123
|
type TronGameBalanceResponse = {
|
|
1037
1124
|
balanceCents: number;
|
|
1038
1125
|
rakeBps: number;
|
|
@@ -1813,7 +1900,7 @@ type ProfileRecentReview = {
|
|
|
1813
1900
|
appId: string;
|
|
1814
1901
|
appName: string;
|
|
1815
1902
|
appLogoUrl: string | null;
|
|
1816
|
-
|
|
1903
|
+
recommended: boolean;
|
|
1817
1904
|
body: string;
|
|
1818
1905
|
createdAt: string;
|
|
1819
1906
|
};
|
|
@@ -2173,6 +2260,11 @@ type AppPageDraft = {
|
|
|
2173
2260
|
gallery: AppPageGallery;
|
|
2174
2261
|
chapters: AppPageChapters;
|
|
2175
2262
|
links: AppPageLinks;
|
|
2263
|
+
platforms: AppPagePlatforms;
|
|
2264
|
+
gameType: AppPageGameType;
|
|
2265
|
+
ageRating: AppPageAgeRating;
|
|
2266
|
+
languages: AppPageLanguages;
|
|
2267
|
+
releaseStatus: AppPageReleaseStatus;
|
|
2176
2268
|
firstPublishedAt: string | null;
|
|
2177
2269
|
reviewedAt: string | null;
|
|
2178
2270
|
reviewNotes: string | null;
|
|
@@ -2195,6 +2287,11 @@ type UpdateAppPage = {
|
|
|
2195
2287
|
gallery?: AppPageGallery;
|
|
2196
2288
|
chapters?: AppPageChapters;
|
|
2197
2289
|
links?: AppPageLinks;
|
|
2290
|
+
platforms?: AppPagePlatforms;
|
|
2291
|
+
gameType?: AppPageGameType;
|
|
2292
|
+
ageRating?: AppPageAgeRating;
|
|
2293
|
+
languages?: AppPageLanguages;
|
|
2294
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
2198
2295
|
};
|
|
2199
2296
|
type AppPageGalleryUploadResponse = {
|
|
2200
2297
|
url: string;
|
|
@@ -3632,6 +3729,106 @@ type PutMeReviewsBySlugResponses = {
|
|
|
3632
3729
|
200: MyReviewResponse;
|
|
3633
3730
|
};
|
|
3634
3731
|
type PutMeReviewsBySlugResponse = PutMeReviewsBySlugResponses[keyof PutMeReviewsBySlugResponses];
|
|
3732
|
+
type GetMeReviewsBySlugReactionsData = {
|
|
3733
|
+
body?: never;
|
|
3734
|
+
path: {
|
|
3735
|
+
slug: string;
|
|
3736
|
+
};
|
|
3737
|
+
query?: never;
|
|
3738
|
+
url: "/me/reviews/{slug}/reactions";
|
|
3739
|
+
};
|
|
3740
|
+
type GetMeReviewsBySlugReactionsErrors = {
|
|
3741
|
+
/**
|
|
3742
|
+
* Request error
|
|
3743
|
+
*/
|
|
3744
|
+
401: ErrorResponse;
|
|
3745
|
+
/**
|
|
3746
|
+
* Request error
|
|
3747
|
+
*/
|
|
3748
|
+
404: ErrorResponse;
|
|
3749
|
+
};
|
|
3750
|
+
type GetMeReviewsBySlugReactionsError = GetMeReviewsBySlugReactionsErrors[keyof GetMeReviewsBySlugReactionsErrors];
|
|
3751
|
+
type GetMeReviewsBySlugReactionsResponses = {
|
|
3752
|
+
/**
|
|
3753
|
+
* The caller's per-review reactions
|
|
3754
|
+
*/
|
|
3755
|
+
200: MyReviewReactionsResponse;
|
|
3756
|
+
};
|
|
3757
|
+
type GetMeReviewsBySlugReactionsResponse = GetMeReviewsBySlugReactionsResponses[keyof GetMeReviewsBySlugReactionsResponses];
|
|
3758
|
+
type PostMeReviewsBySlugReactionsByReviewIdData = {
|
|
3759
|
+
body?: SetReviewReactionRequest;
|
|
3760
|
+
path: {
|
|
3761
|
+
slug: string;
|
|
3762
|
+
reviewId: string;
|
|
3763
|
+
};
|
|
3764
|
+
query?: never;
|
|
3765
|
+
url: "/me/reviews/{slug}/reactions/{reviewId}";
|
|
3766
|
+
};
|
|
3767
|
+
type PostMeReviewsBySlugReactionsByReviewIdErrors = {
|
|
3768
|
+
/**
|
|
3769
|
+
* Request error
|
|
3770
|
+
*/
|
|
3771
|
+
400: ErrorResponse;
|
|
3772
|
+
/**
|
|
3773
|
+
* Request error
|
|
3774
|
+
*/
|
|
3775
|
+
401: ErrorResponse;
|
|
3776
|
+
/**
|
|
3777
|
+
* Request error
|
|
3778
|
+
*/
|
|
3779
|
+
403: ErrorResponse;
|
|
3780
|
+
/**
|
|
3781
|
+
* Request error
|
|
3782
|
+
*/
|
|
3783
|
+
404: ErrorResponse;
|
|
3784
|
+
};
|
|
3785
|
+
type PostMeReviewsBySlugReactionsByReviewIdError = PostMeReviewsBySlugReactionsByReviewIdErrors[keyof PostMeReviewsBySlugReactionsByReviewIdErrors];
|
|
3786
|
+
type PostMeReviewsBySlugReactionsByReviewIdResponses = {
|
|
3787
|
+
/**
|
|
3788
|
+
* The review's updated reaction counts + the caller's stored state
|
|
3789
|
+
*/
|
|
3790
|
+
200: SetReviewReactionResponse;
|
|
3791
|
+
};
|
|
3792
|
+
type PostMeReviewsBySlugReactionsByReviewIdResponse = PostMeReviewsBySlugReactionsByReviewIdResponses[keyof PostMeReviewsBySlugReactionsByReviewIdResponses];
|
|
3793
|
+
type PostMeReviewsBySlugTipsByReviewIdData = {
|
|
3794
|
+
body?: TipReviewRequest;
|
|
3795
|
+
path: {
|
|
3796
|
+
slug: string;
|
|
3797
|
+
reviewId: string;
|
|
3798
|
+
};
|
|
3799
|
+
query?: never;
|
|
3800
|
+
url: "/me/reviews/{slug}/tips/{reviewId}";
|
|
3801
|
+
};
|
|
3802
|
+
type PostMeReviewsBySlugTipsByReviewIdErrors = {
|
|
3803
|
+
/**
|
|
3804
|
+
* Request error
|
|
3805
|
+
*/
|
|
3806
|
+
400: ErrorResponse;
|
|
3807
|
+
/**
|
|
3808
|
+
* Request error
|
|
3809
|
+
*/
|
|
3810
|
+
401: ErrorResponse;
|
|
3811
|
+
/**
|
|
3812
|
+
* Request error
|
|
3813
|
+
*/
|
|
3814
|
+
403: ErrorResponse;
|
|
3815
|
+
/**
|
|
3816
|
+
* Request error
|
|
3817
|
+
*/
|
|
3818
|
+
404: ErrorResponse;
|
|
3819
|
+
/**
|
|
3820
|
+
* Request error
|
|
3821
|
+
*/
|
|
3822
|
+
409: ErrorResponse;
|
|
3823
|
+
};
|
|
3824
|
+
type PostMeReviewsBySlugTipsByReviewIdError = PostMeReviewsBySlugTipsByReviewIdErrors[keyof PostMeReviewsBySlugTipsByReviewIdErrors];
|
|
3825
|
+
type PostMeReviewsBySlugTipsByReviewIdResponses = {
|
|
3826
|
+
/**
|
|
3827
|
+
* Tip completed; the sender's balance after + the review's new total tipped
|
|
3828
|
+
*/
|
|
3829
|
+
200: TipReviewResponse;
|
|
3830
|
+
};
|
|
3831
|
+
type PostMeReviewsBySlugTipsByReviewIdResponse = PostMeReviewsBySlugTipsByReviewIdResponses[keyof PostMeReviewsBySlugTipsByReviewIdResponses];
|
|
3635
3832
|
type GetMeDeveloperAppsByAppIdReviewsData = {
|
|
3636
3833
|
body?: never;
|
|
3637
3834
|
path: {
|
|
@@ -4155,6 +4352,42 @@ type PostPaymentsMeTronDepositResponses = {
|
|
|
4155
4352
|
200: TronDepositResponse;
|
|
4156
4353
|
};
|
|
4157
4354
|
type PostPaymentsMeTronDepositResponse = PostPaymentsMeTronDepositResponses[keyof PostPaymentsMeTronDepositResponses];
|
|
4355
|
+
type PostPaymentsMeTronTransferData = {
|
|
4356
|
+
body: TronTransferRequest;
|
|
4357
|
+
path?: never;
|
|
4358
|
+
query?: never;
|
|
4359
|
+
url: "/payments/me/tron/transfer";
|
|
4360
|
+
};
|
|
4361
|
+
type PostPaymentsMeTronTransferErrors = {
|
|
4362
|
+
/**
|
|
4363
|
+
* Request error
|
|
4364
|
+
*/
|
|
4365
|
+
400: ErrorResponse;
|
|
4366
|
+
/**
|
|
4367
|
+
* Request error
|
|
4368
|
+
*/
|
|
4369
|
+
401: ErrorResponse;
|
|
4370
|
+
/**
|
|
4371
|
+
* Request error
|
|
4372
|
+
*/
|
|
4373
|
+
404: ErrorResponse;
|
|
4374
|
+
/**
|
|
4375
|
+
* Request error
|
|
4376
|
+
*/
|
|
4377
|
+
409: ErrorResponse;
|
|
4378
|
+
/**
|
|
4379
|
+
* Request error
|
|
4380
|
+
*/
|
|
4381
|
+
503: ErrorResponse;
|
|
4382
|
+
};
|
|
4383
|
+
type PostPaymentsMeTronTransferError = PostPaymentsMeTronTransferErrors[keyof PostPaymentsMeTronTransferErrors];
|
|
4384
|
+
type PostPaymentsMeTronTransferResponses = {
|
|
4385
|
+
/**
|
|
4386
|
+
* Transfer completed; carries the sender's remaining balance + recipient identity
|
|
4387
|
+
*/
|
|
4388
|
+
200: TronTransferResponse;
|
|
4389
|
+
};
|
|
4390
|
+
type PostPaymentsMeTronTransferResponse = PostPaymentsMeTronTransferResponses[keyof PostPaymentsMeTronTransferResponses];
|
|
4158
4391
|
type GetOauthPaymentsTronBalanceData = {
|
|
4159
4392
|
body?: never;
|
|
4160
4393
|
path?: never;
|
|
@@ -10524,12 +10757,63 @@ declare const zAppPageLinks: z$1.ZodArray<z$1.ZodObject<{
|
|
|
10524
10757
|
order: z$1.ZodInt;
|
|
10525
10758
|
}, z$1.core.$strip>>;
|
|
10526
10759
|
declare const zPublicAppPageStudio: z$1.ZodObject<{
|
|
10760
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
10527
10761
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10528
10762
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10529
10763
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10530
10764
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
10531
10765
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10532
10766
|
}, z$1.core.$strip>;
|
|
10767
|
+
declare const zAppPagePlatforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
10768
|
+
web: "web";
|
|
10769
|
+
ios: "ios";
|
|
10770
|
+
android: "android";
|
|
10771
|
+
pc: "pc";
|
|
10772
|
+
playstation: "playstation";
|
|
10773
|
+
xbox: "xbox";
|
|
10774
|
+
switch: "switch";
|
|
10775
|
+
}>>;
|
|
10776
|
+
declare const zAppPageGameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10777
|
+
single_player: "single_player";
|
|
10778
|
+
multiplayer: "multiplayer";
|
|
10779
|
+
both: "both";
|
|
10780
|
+
}>>;
|
|
10781
|
+
declare const zAppPageAgeRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10782
|
+
everyone: "everyone";
|
|
10783
|
+
"13_plus": "13_plus";
|
|
10784
|
+
"16_plus": "16_plus";
|
|
10785
|
+
"18_plus": "18_plus";
|
|
10786
|
+
}>>;
|
|
10787
|
+
declare const zAppPageLanguages: z$1.ZodArray<z$1.ZodEnum<{
|
|
10788
|
+
id: "id";
|
|
10789
|
+
en: "en";
|
|
10790
|
+
es: "es";
|
|
10791
|
+
fr: "fr";
|
|
10792
|
+
de: "de";
|
|
10793
|
+
pt: "pt";
|
|
10794
|
+
it: "it";
|
|
10795
|
+
ru: "ru";
|
|
10796
|
+
ja: "ja";
|
|
10797
|
+
ko: "ko";
|
|
10798
|
+
zh: "zh";
|
|
10799
|
+
hi: "hi";
|
|
10800
|
+
ar: "ar";
|
|
10801
|
+
tr: "tr";
|
|
10802
|
+
vi: "vi";
|
|
10803
|
+
th: "th";
|
|
10804
|
+
pl: "pl";
|
|
10805
|
+
nl: "nl";
|
|
10806
|
+
}>>;
|
|
10807
|
+
declare const zAppPageReleaseStatus: z$1.ZodEnum<{
|
|
10808
|
+
live: "live";
|
|
10809
|
+
open_beta: "open_beta";
|
|
10810
|
+
coming_soon: "coming_soon";
|
|
10811
|
+
}>;
|
|
10812
|
+
declare const zAppPagePaymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10813
|
+
both: "both";
|
|
10814
|
+
tron: "tron";
|
|
10815
|
+
onchain: "onchain";
|
|
10816
|
+
}>>;
|
|
10533
10817
|
declare const zPublicAppPage: z$1.ZodObject<{
|
|
10534
10818
|
appId: z$1.ZodUUID;
|
|
10535
10819
|
slug: z$1.ZodString;
|
|
@@ -10588,37 +10872,103 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
10588
10872
|
order: z$1.ZodInt;
|
|
10589
10873
|
}, z$1.core.$strip>>;
|
|
10590
10874
|
studio: z$1.ZodObject<{
|
|
10875
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
10591
10876
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10592
10877
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10593
10878
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10594
10879
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
10595
10880
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10596
10881
|
}, z$1.core.$strip>;
|
|
10882
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
10883
|
+
web: "web";
|
|
10884
|
+
ios: "ios";
|
|
10885
|
+
android: "android";
|
|
10886
|
+
pc: "pc";
|
|
10887
|
+
playstation: "playstation";
|
|
10888
|
+
xbox: "xbox";
|
|
10889
|
+
switch: "switch";
|
|
10890
|
+
}>>;
|
|
10891
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10892
|
+
single_player: "single_player";
|
|
10893
|
+
multiplayer: "multiplayer";
|
|
10894
|
+
both: "both";
|
|
10895
|
+
}>>;
|
|
10896
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10897
|
+
everyone: "everyone";
|
|
10898
|
+
"13_plus": "13_plus";
|
|
10899
|
+
"16_plus": "16_plus";
|
|
10900
|
+
"18_plus": "18_plus";
|
|
10901
|
+
}>>;
|
|
10902
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
10903
|
+
id: "id";
|
|
10904
|
+
en: "en";
|
|
10905
|
+
es: "es";
|
|
10906
|
+
fr: "fr";
|
|
10907
|
+
de: "de";
|
|
10908
|
+
pt: "pt";
|
|
10909
|
+
it: "it";
|
|
10910
|
+
ru: "ru";
|
|
10911
|
+
ja: "ja";
|
|
10912
|
+
ko: "ko";
|
|
10913
|
+
zh: "zh";
|
|
10914
|
+
hi: "hi";
|
|
10915
|
+
ar: "ar";
|
|
10916
|
+
tr: "tr";
|
|
10917
|
+
vi: "vi";
|
|
10918
|
+
th: "th";
|
|
10919
|
+
pl: "pl";
|
|
10920
|
+
nl: "nl";
|
|
10921
|
+
}>>;
|
|
10922
|
+
releaseStatus: z$1.ZodEnum<{
|
|
10923
|
+
live: "live";
|
|
10924
|
+
open_beta: "open_beta";
|
|
10925
|
+
coming_soon: "coming_soon";
|
|
10926
|
+
}>;
|
|
10927
|
+
paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10928
|
+
both: "both";
|
|
10929
|
+
tron: "tron";
|
|
10930
|
+
onchain: "onchain";
|
|
10931
|
+
}>>;
|
|
10597
10932
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
10598
10933
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
10599
10934
|
publishedAt: z$1.ZodISODateTime;
|
|
10935
|
+
updatedAt: z$1.ZodISODateTime;
|
|
10600
10936
|
}, z$1.core.$strip>;
|
|
10601
|
-
declare const
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10937
|
+
declare const zReviewSummaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10938
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
10939
|
+
very_positive: "very_positive";
|
|
10940
|
+
positive: "positive";
|
|
10941
|
+
mostly_positive: "mostly_positive";
|
|
10942
|
+
mixed: "mixed";
|
|
10943
|
+
mostly_negative: "mostly_negative";
|
|
10944
|
+
negative: "negative";
|
|
10945
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
10946
|
+
}>>;
|
|
10608
10947
|
declare const zReviewAggregate: z$1.ZodObject<{
|
|
10609
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10610
10948
|
count: z$1.ZodInt;
|
|
10611
|
-
|
|
10612
|
-
|
|
10613
|
-
|
|
10614
|
-
|
|
10615
|
-
|
|
10616
|
-
|
|
10617
|
-
|
|
10949
|
+
recommendedCount: z$1.ZodInt;
|
|
10950
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10951
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10952
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
10953
|
+
very_positive: "very_positive";
|
|
10954
|
+
positive: "positive";
|
|
10955
|
+
mostly_positive: "mostly_positive";
|
|
10956
|
+
mixed: "mixed";
|
|
10957
|
+
mostly_negative: "mostly_negative";
|
|
10958
|
+
negative: "negative";
|
|
10959
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
10960
|
+
}>>;
|
|
10618
10961
|
}, z$1.core.$strip>;
|
|
10619
|
-
declare const
|
|
10962
|
+
declare const zReviewRecommended: z$1.ZodBoolean;
|
|
10620
10963
|
declare const zReviewBody: z$1.ZodString;
|
|
10964
|
+
declare const zReviewReactionCounts: z$1.ZodObject<{
|
|
10965
|
+
helpful: z$1.ZodInt;
|
|
10966
|
+
unhelpful: z$1.ZodInt;
|
|
10967
|
+
funny: z$1.ZodInt;
|
|
10968
|
+
}, z$1.core.$strip>;
|
|
10621
10969
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
10970
|
+
userId: z$1.ZodUUID;
|
|
10971
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10622
10972
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10623
10973
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10624
10974
|
}, z$1.core.$strip>;
|
|
@@ -10629,9 +10979,17 @@ declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
|
|
|
10629
10979
|
}, z$1.core.$strip>>;
|
|
10630
10980
|
declare const zReview: z$1.ZodObject<{
|
|
10631
10981
|
id: z$1.ZodUUID;
|
|
10632
|
-
|
|
10982
|
+
recommended: z$1.ZodBoolean;
|
|
10633
10983
|
body: z$1.ZodString;
|
|
10984
|
+
reactions: z$1.ZodObject<{
|
|
10985
|
+
helpful: z$1.ZodInt;
|
|
10986
|
+
unhelpful: z$1.ZodInt;
|
|
10987
|
+
funny: z$1.ZodInt;
|
|
10988
|
+
}, z$1.core.$strip>;
|
|
10989
|
+
tippedCents: z$1.ZodInt;
|
|
10634
10990
|
author: z$1.ZodObject<{
|
|
10991
|
+
userId: z$1.ZodUUID;
|
|
10992
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10635
10993
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10636
10994
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10637
10995
|
}, z$1.core.$strip>;
|
|
@@ -10644,21 +11002,33 @@ declare const zReview: z$1.ZodObject<{
|
|
|
10644
11002
|
}, z$1.core.$strip>;
|
|
10645
11003
|
declare const zReviewListResponse: z$1.ZodObject<{
|
|
10646
11004
|
aggregate: z$1.ZodObject<{
|
|
10647
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10648
11005
|
count: z$1.ZodInt;
|
|
10649
|
-
|
|
10650
|
-
|
|
10651
|
-
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
11006
|
+
recommendedCount: z$1.ZodInt;
|
|
11007
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
11008
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11009
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
11010
|
+
very_positive: "very_positive";
|
|
11011
|
+
positive: "positive";
|
|
11012
|
+
mostly_positive: "mostly_positive";
|
|
11013
|
+
mixed: "mixed";
|
|
11014
|
+
mostly_negative: "mostly_negative";
|
|
11015
|
+
negative: "negative";
|
|
11016
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
11017
|
+
}>>;
|
|
10656
11018
|
}, z$1.core.$strip>;
|
|
10657
11019
|
reviews: z$1.ZodArray<z$1.ZodObject<{
|
|
10658
11020
|
id: z$1.ZodUUID;
|
|
10659
|
-
|
|
11021
|
+
recommended: z$1.ZodBoolean;
|
|
10660
11022
|
body: z$1.ZodString;
|
|
11023
|
+
reactions: z$1.ZodObject<{
|
|
11024
|
+
helpful: z$1.ZodInt;
|
|
11025
|
+
unhelpful: z$1.ZodInt;
|
|
11026
|
+
funny: z$1.ZodInt;
|
|
11027
|
+
}, z$1.core.$strip>;
|
|
11028
|
+
tippedCents: z$1.ZodInt;
|
|
10661
11029
|
author: z$1.ZodObject<{
|
|
11030
|
+
userId: z$1.ZodUUID;
|
|
11031
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10662
11032
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10663
11033
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10664
11034
|
}, z$1.core.$strip>;
|
|
@@ -10673,10 +11043,9 @@ declare const zReviewListResponse: z$1.ZodObject<{
|
|
|
10673
11043
|
hasMore: z$1.ZodBoolean;
|
|
10674
11044
|
}, z$1.core.$strip>;
|
|
10675
11045
|
declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
|
|
11046
|
+
helpful: "helpful";
|
|
10676
11047
|
newest: "newest";
|
|
10677
11048
|
oldest: "oldest";
|
|
10678
|
-
highest: "highest";
|
|
10679
|
-
lowest: "lowest";
|
|
10680
11049
|
}>>;
|
|
10681
11050
|
declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10682
11051
|
payment: "payment";
|
|
@@ -10684,7 +11053,7 @@ declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
|
|
|
10684
11053
|
}>>;
|
|
10685
11054
|
declare const zOwnReview: z$1.ZodNullable<z$1.ZodObject<{
|
|
10686
11055
|
id: z$1.ZodUUID;
|
|
10687
|
-
|
|
11056
|
+
recommended: z$1.ZodBoolean;
|
|
10688
11057
|
body: z$1.ZodString;
|
|
10689
11058
|
createdAt: z$1.ZodISODateTime;
|
|
10690
11059
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -10697,7 +11066,7 @@ declare const zMyReviewResponse: z$1.ZodObject<{
|
|
|
10697
11066
|
}>>;
|
|
10698
11067
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
10699
11068
|
id: z$1.ZodUUID;
|
|
10700
|
-
|
|
11069
|
+
recommended: z$1.ZodBoolean;
|
|
10701
11070
|
body: z$1.ZodString;
|
|
10702
11071
|
createdAt: z$1.ZodISODateTime;
|
|
10703
11072
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -10705,9 +11074,62 @@ declare const zMyReviewResponse: z$1.ZodObject<{
|
|
|
10705
11074
|
isAppOwner: z$1.ZodBoolean;
|
|
10706
11075
|
}, z$1.core.$strip>;
|
|
10707
11076
|
declare const zUpsertReviewRequest: z$1.ZodObject<{
|
|
10708
|
-
|
|
11077
|
+
recommended: z$1.ZodBoolean;
|
|
10709
11078
|
body: z$1.ZodString;
|
|
10710
11079
|
}, z$1.core.$strip>;
|
|
11080
|
+
declare const zReviewVote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11081
|
+
helpful: "helpful";
|
|
11082
|
+
unhelpful: "unhelpful";
|
|
11083
|
+
}>>;
|
|
11084
|
+
declare const zMyReviewReaction: z$1.ZodObject<{
|
|
11085
|
+
reviewId: z$1.ZodUUID;
|
|
11086
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11087
|
+
helpful: "helpful";
|
|
11088
|
+
unhelpful: "unhelpful";
|
|
11089
|
+
}>>;
|
|
11090
|
+
funny: z$1.ZodBoolean;
|
|
11091
|
+
}, z$1.core.$strip>;
|
|
11092
|
+
declare const zMyReviewReactionsResponse: z$1.ZodObject<{
|
|
11093
|
+
reactions: z$1.ZodArray<z$1.ZodObject<{
|
|
11094
|
+
reviewId: z$1.ZodUUID;
|
|
11095
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11096
|
+
helpful: "helpful";
|
|
11097
|
+
unhelpful: "unhelpful";
|
|
11098
|
+
}>>;
|
|
11099
|
+
funny: z$1.ZodBoolean;
|
|
11100
|
+
}, z$1.core.$strip>>;
|
|
11101
|
+
}, z$1.core.$strip>;
|
|
11102
|
+
declare const zSetReviewReactionResponse: z$1.ZodObject<{
|
|
11103
|
+
reactions: z$1.ZodObject<{
|
|
11104
|
+
helpful: z$1.ZodInt;
|
|
11105
|
+
unhelpful: z$1.ZodInt;
|
|
11106
|
+
funny: z$1.ZodInt;
|
|
11107
|
+
}, z$1.core.$strip>;
|
|
11108
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11109
|
+
helpful: "helpful";
|
|
11110
|
+
unhelpful: "unhelpful";
|
|
11111
|
+
}>>;
|
|
11112
|
+
funny: z$1.ZodBoolean;
|
|
11113
|
+
}, z$1.core.$strip>;
|
|
11114
|
+
declare const zSetReviewReactionRequest: z$1.ZodObject<{
|
|
11115
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11116
|
+
helpful: "helpful";
|
|
11117
|
+
unhelpful: "unhelpful";
|
|
11118
|
+
}>>;
|
|
11119
|
+
funny: z$1.ZodBoolean;
|
|
11120
|
+
}, z$1.core.$strip>;
|
|
11121
|
+
declare const zTipReviewResponse: z$1.ZodObject<{
|
|
11122
|
+
status: z$1.ZodEnum<{
|
|
11123
|
+
completed: "completed";
|
|
11124
|
+
}>;
|
|
11125
|
+
amountCents: z$1.ZodInt;
|
|
11126
|
+
balanceCents: z$1.ZodInt;
|
|
11127
|
+
tippedCents: z$1.ZodInt;
|
|
11128
|
+
}, z$1.core.$strip>;
|
|
11129
|
+
declare const zTipReviewRequest: z$1.ZodObject<{
|
|
11130
|
+
amountCents: z$1.ZodInt;
|
|
11131
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
11132
|
+
}, z$1.core.$strip>;
|
|
10711
11133
|
declare const zReviewReplyResponse: z$1.ZodObject<{
|
|
10712
11134
|
developerReply: z$1.ZodNullable<z$1.ZodObject<{
|
|
10713
11135
|
body: z$1.ZodString;
|
|
@@ -11248,6 +11670,19 @@ declare const zActivityRowTronDeposit: z$1.ZodObject<{
|
|
|
11248
11670
|
receiptUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
11249
11671
|
paymentIntentId: z$1.ZodNullable<z$1.ZodString>;
|
|
11250
11672
|
}, z$1.core.$strip>;
|
|
11673
|
+
declare const zActivityTronInvolvedUser: z$1.ZodObject<{
|
|
11674
|
+
userId: z$1.ZodString;
|
|
11675
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
11676
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11677
|
+
role: z$1.ZodEnum<{
|
|
11678
|
+
stake: "stake";
|
|
11679
|
+
payout: "payout";
|
|
11680
|
+
dev_cut: "dev_cut";
|
|
11681
|
+
purchase: "purchase";
|
|
11682
|
+
referral: "referral";
|
|
11683
|
+
}>;
|
|
11684
|
+
amountCents: z$1.ZodInt;
|
|
11685
|
+
}, z$1.core.$strip>;
|
|
11251
11686
|
declare const zActivityRowTronPot: z$1.ZodObject<{
|
|
11252
11687
|
kind: z$1.ZodEnum<{
|
|
11253
11688
|
tron_pot: "tron_pot";
|
|
@@ -11267,6 +11702,10 @@ declare const zActivityRowTronPot: z$1.ZodObject<{
|
|
|
11267
11702
|
referral: "referral";
|
|
11268
11703
|
}>;
|
|
11269
11704
|
amountCents: z$1.ZodInt;
|
|
11705
|
+
usdCents: z$1.ZodInt;
|
|
11706
|
+
status: z$1.ZodEnum<{
|
|
11707
|
+
settled: "settled";
|
|
11708
|
+
}>;
|
|
11270
11709
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
11271
11710
|
id: z$1.ZodString;
|
|
11272
11711
|
name: z$1.ZodString;
|
|
@@ -11274,6 +11713,19 @@ declare const zActivityRowTronPot: z$1.ZodObject<{
|
|
|
11274
11713
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
11275
11714
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
11276
11715
|
}, z$1.core.$strip>>;
|
|
11716
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
11717
|
+
userId: z$1.ZodString;
|
|
11718
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
11719
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11720
|
+
role: z$1.ZodEnum<{
|
|
11721
|
+
stake: "stake";
|
|
11722
|
+
payout: "payout";
|
|
11723
|
+
dev_cut: "dev_cut";
|
|
11724
|
+
purchase: "purchase";
|
|
11725
|
+
referral: "referral";
|
|
11726
|
+
}>;
|
|
11727
|
+
amountCents: z$1.ZodInt;
|
|
11728
|
+
}, z$1.core.$strip>>>>;
|
|
11277
11729
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
11278
11730
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
11279
11731
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -11309,13 +11761,34 @@ declare const zActivityRowTronCashout: z$1.ZodObject<{
|
|
|
11309
11761
|
approved: "approved";
|
|
11310
11762
|
pending: "pending";
|
|
11311
11763
|
failed: "failed";
|
|
11312
|
-
rejected: "rejected";
|
|
11313
11764
|
settled: "settled";
|
|
11765
|
+
rejected: "rejected";
|
|
11314
11766
|
}>;
|
|
11315
11767
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
11316
11768
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
11317
11769
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
11318
11770
|
}, z$1.core.$strip>;
|
|
11771
|
+
declare const zActivityRowTronTransfer: z$1.ZodObject<{
|
|
11772
|
+
kind: z$1.ZodEnum<{
|
|
11773
|
+
tron_transfer: "tron_transfer";
|
|
11774
|
+
}>;
|
|
11775
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
11776
|
+
id: z$1.ZodString;
|
|
11777
|
+
occurredAt: z$1.ZodISODateTime;
|
|
11778
|
+
role: z$1.ZodEnum<{
|
|
11779
|
+
outgoing: "outgoing";
|
|
11780
|
+
incoming: "incoming";
|
|
11781
|
+
}>;
|
|
11782
|
+
amountCents: z$1.ZodInt;
|
|
11783
|
+
usdCents: z$1.ZodInt;
|
|
11784
|
+
status: z$1.ZodEnum<{
|
|
11785
|
+
settled: "settled";
|
|
11786
|
+
}>;
|
|
11787
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
11788
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
11789
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11790
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
11791
|
+
}, z$1.core.$strip>;
|
|
11319
11792
|
declare const zActivityRowReferralEarning: z$1.ZodObject<{
|
|
11320
11793
|
kind: z$1.ZodEnum<{
|
|
11321
11794
|
referral_earning: "referral_earning";
|
|
@@ -11676,6 +12149,10 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11676
12149
|
referral: "referral";
|
|
11677
12150
|
}>;
|
|
11678
12151
|
amountCents: z$1.ZodInt;
|
|
12152
|
+
usdCents: z$1.ZodInt;
|
|
12153
|
+
status: z$1.ZodEnum<{
|
|
12154
|
+
settled: "settled";
|
|
12155
|
+
}>;
|
|
11679
12156
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
11680
12157
|
id: z$1.ZodString;
|
|
11681
12158
|
name: z$1.ZodString;
|
|
@@ -11683,6 +12160,19 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11683
12160
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
11684
12161
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
11685
12162
|
}, z$1.core.$strip>>;
|
|
12163
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
12164
|
+
userId: z$1.ZodString;
|
|
12165
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12166
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12167
|
+
role: z$1.ZodEnum<{
|
|
12168
|
+
stake: "stake";
|
|
12169
|
+
payout: "payout";
|
|
12170
|
+
dev_cut: "dev_cut";
|
|
12171
|
+
purchase: "purchase";
|
|
12172
|
+
referral: "referral";
|
|
12173
|
+
}>;
|
|
12174
|
+
amountCents: z$1.ZodInt;
|
|
12175
|
+
}, z$1.core.$strip>>>>;
|
|
11686
12176
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
11687
12177
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
11688
12178
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -11715,13 +12205,31 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11715
12205
|
approved: "approved";
|
|
11716
12206
|
pending: "pending";
|
|
11717
12207
|
failed: "failed";
|
|
11718
|
-
rejected: "rejected";
|
|
11719
12208
|
settled: "settled";
|
|
12209
|
+
rejected: "rejected";
|
|
11720
12210
|
}>;
|
|
11721
12211
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
11722
12212
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
11723
12213
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
11724
12214
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
12215
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12216
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12217
|
+
id: z$1.ZodString;
|
|
12218
|
+
occurredAt: z$1.ZodISODateTime;
|
|
12219
|
+
role: z$1.ZodEnum<{
|
|
12220
|
+
outgoing: "outgoing";
|
|
12221
|
+
incoming: "incoming";
|
|
12222
|
+
}>;
|
|
12223
|
+
amountCents: z$1.ZodInt;
|
|
12224
|
+
usdCents: z$1.ZodInt;
|
|
12225
|
+
status: z$1.ZodEnum<{
|
|
12226
|
+
settled: "settled";
|
|
12227
|
+
}>;
|
|
12228
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
12229
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
12230
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12231
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
12232
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
11725
12233
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
11726
12234
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
11727
12235
|
id: z$1.ZodString;
|
|
@@ -12081,6 +12589,10 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12081
12589
|
referral: "referral";
|
|
12082
12590
|
}>;
|
|
12083
12591
|
amountCents: z$1.ZodInt;
|
|
12592
|
+
usdCents: z$1.ZodInt;
|
|
12593
|
+
status: z$1.ZodEnum<{
|
|
12594
|
+
settled: "settled";
|
|
12595
|
+
}>;
|
|
12084
12596
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
12085
12597
|
id: z$1.ZodString;
|
|
12086
12598
|
name: z$1.ZodString;
|
|
@@ -12088,6 +12600,19 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12088
12600
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
12089
12601
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
12090
12602
|
}, z$1.core.$strip>>;
|
|
12603
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
12604
|
+
userId: z$1.ZodString;
|
|
12605
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12606
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12607
|
+
role: z$1.ZodEnum<{
|
|
12608
|
+
stake: "stake";
|
|
12609
|
+
payout: "payout";
|
|
12610
|
+
dev_cut: "dev_cut";
|
|
12611
|
+
purchase: "purchase";
|
|
12612
|
+
referral: "referral";
|
|
12613
|
+
}>;
|
|
12614
|
+
amountCents: z$1.ZodInt;
|
|
12615
|
+
}, z$1.core.$strip>>>>;
|
|
12091
12616
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
12092
12617
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
12093
12618
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -12120,13 +12645,31 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12120
12645
|
approved: "approved";
|
|
12121
12646
|
pending: "pending";
|
|
12122
12647
|
failed: "failed";
|
|
12123
|
-
rejected: "rejected";
|
|
12124
12648
|
settled: "settled";
|
|
12649
|
+
rejected: "rejected";
|
|
12125
12650
|
}>;
|
|
12126
12651
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
12127
12652
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
12128
12653
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12129
12654
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
12655
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12656
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12657
|
+
id: z$1.ZodString;
|
|
12658
|
+
occurredAt: z$1.ZodISODateTime;
|
|
12659
|
+
role: z$1.ZodEnum<{
|
|
12660
|
+
outgoing: "outgoing";
|
|
12661
|
+
incoming: "incoming";
|
|
12662
|
+
}>;
|
|
12663
|
+
amountCents: z$1.ZodInt;
|
|
12664
|
+
usdCents: z$1.ZodInt;
|
|
12665
|
+
status: z$1.ZodEnum<{
|
|
12666
|
+
settled: "settled";
|
|
12667
|
+
}>;
|
|
12668
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
12669
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
12670
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12671
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
12672
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
12130
12673
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12131
12674
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12132
12675
|
id: z$1.ZodString;
|
|
@@ -12168,9 +12711,9 @@ declare const zOutstandingResponse: z$1.ZodObject<{
|
|
|
12168
12711
|
declare const zMoonpayAvailabilityResponse: z$1.ZodObject<{
|
|
12169
12712
|
enabled: z$1.ZodBoolean;
|
|
12170
12713
|
direction: z$1.ZodNullable<z$1.ZodEnum<{
|
|
12714
|
+
both: "both";
|
|
12171
12715
|
buy: "buy";
|
|
12172
12716
|
sell: "sell";
|
|
12173
|
-
both: "both";
|
|
12174
12717
|
}>>;
|
|
12175
12718
|
countryCode: z$1.ZodNullable<z$1.ZodString>;
|
|
12176
12719
|
regionSupported: z$1.ZodBoolean;
|
|
@@ -12218,6 +12761,7 @@ declare const zTronLedgerEntry: z$1.ZodObject<{
|
|
|
12218
12761
|
dispute_unfreeze: "dispute_unfreeze";
|
|
12219
12762
|
hosted_billing: "hosted_billing";
|
|
12220
12763
|
store_purchase: "store_purchase";
|
|
12764
|
+
peer_transfer: "peer_transfer";
|
|
12221
12765
|
}>;
|
|
12222
12766
|
amountCents: z$1.ZodInt;
|
|
12223
12767
|
currency: z$1.ZodString;
|
|
@@ -12238,6 +12782,7 @@ declare const zTronLedgerResponse: z$1.ZodObject<{
|
|
|
12238
12782
|
dispute_unfreeze: "dispute_unfreeze";
|
|
12239
12783
|
hosted_billing: "hosted_billing";
|
|
12240
12784
|
store_purchase: "store_purchase";
|
|
12785
|
+
peer_transfer: "peer_transfer";
|
|
12241
12786
|
}>;
|
|
12242
12787
|
amountCents: z$1.ZodInt;
|
|
12243
12788
|
currency: z$1.ZodString;
|
|
@@ -12255,6 +12800,23 @@ declare const zTronDepositResponse: z$1.ZodObject<{
|
|
|
12255
12800
|
declare const zTronDepositRequest: z$1.ZodObject<{
|
|
12256
12801
|
amountCents: z$1.ZodInt;
|
|
12257
12802
|
}, z$1.core.$strip>;
|
|
12803
|
+
declare const zTronTransferResponse: z$1.ZodObject<{
|
|
12804
|
+
status: z$1.ZodEnum<{
|
|
12805
|
+
completed: "completed";
|
|
12806
|
+
}>;
|
|
12807
|
+
amountCents: z$1.ZodInt;
|
|
12808
|
+
balanceCents: z$1.ZodInt;
|
|
12809
|
+
recipient: z$1.ZodObject<{
|
|
12810
|
+
userId: z$1.ZodUUID;
|
|
12811
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12812
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12813
|
+
}, z$1.core.$strip>;
|
|
12814
|
+
}, z$1.core.$strip>;
|
|
12815
|
+
declare const zTronTransferRequest: z$1.ZodObject<{
|
|
12816
|
+
recipientUserId: z$1.ZodUUID;
|
|
12817
|
+
amountCents: z$1.ZodInt;
|
|
12818
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
12819
|
+
}, z$1.core.$strip>;
|
|
12258
12820
|
declare const zTronGameBalanceResponse: z$1.ZodObject<{
|
|
12259
12821
|
balanceCents: z$1.ZodInt;
|
|
12260
12822
|
rakeBps: z$1.ZodInt;
|
|
@@ -12445,8 +13007,8 @@ declare const zTronCashoutItem: z$1.ZodObject<{
|
|
|
12445
13007
|
approved: "approved";
|
|
12446
13008
|
pending: "pending";
|
|
12447
13009
|
failed: "failed";
|
|
12448
|
-
rejected: "rejected";
|
|
12449
13010
|
settled: "settled";
|
|
13011
|
+
rejected: "rejected";
|
|
12450
13012
|
}>;
|
|
12451
13013
|
amountCents: z$1.ZodInt;
|
|
12452
13014
|
feeCents: z$1.ZodInt;
|
|
@@ -12477,8 +13039,8 @@ declare const zTronCashoutListResponse: z$1.ZodObject<{
|
|
|
12477
13039
|
approved: "approved";
|
|
12478
13040
|
pending: "pending";
|
|
12479
13041
|
failed: "failed";
|
|
12480
|
-
rejected: "rejected";
|
|
12481
13042
|
settled: "settled";
|
|
13043
|
+
rejected: "rejected";
|
|
12482
13044
|
}>;
|
|
12483
13045
|
amountCents: z$1.ZodInt;
|
|
12484
13046
|
feeCents: z$1.ZodInt;
|
|
@@ -12501,8 +13063,8 @@ declare const zAdminTronCashoutItem: z$1.ZodObject<{
|
|
|
12501
13063
|
approved: "approved";
|
|
12502
13064
|
pending: "pending";
|
|
12503
13065
|
failed: "failed";
|
|
12504
|
-
rejected: "rejected";
|
|
12505
13066
|
settled: "settled";
|
|
13067
|
+
rejected: "rejected";
|
|
12506
13068
|
}>;
|
|
12507
13069
|
amountCents: z$1.ZodInt;
|
|
12508
13070
|
feeCents: z$1.ZodInt;
|
|
@@ -12531,8 +13093,8 @@ declare const zAdminTronCashoutListResponse: z$1.ZodObject<{
|
|
|
12531
13093
|
approved: "approved";
|
|
12532
13094
|
pending: "pending";
|
|
12533
13095
|
failed: "failed";
|
|
12534
|
-
rejected: "rejected";
|
|
12535
13096
|
settled: "settled";
|
|
13097
|
+
rejected: "rejected";
|
|
12536
13098
|
}>;
|
|
12537
13099
|
amountCents: z$1.ZodInt;
|
|
12538
13100
|
feeCents: z$1.ZodInt;
|
|
@@ -14187,7 +14749,7 @@ declare const zProfileRecentReview: z$1.ZodObject<{
|
|
|
14187
14749
|
appId: z$1.ZodString;
|
|
14188
14750
|
appName: z$1.ZodString;
|
|
14189
14751
|
appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
14190
|
-
|
|
14752
|
+
recommended: z$1.ZodBoolean;
|
|
14191
14753
|
body: z$1.ZodString;
|
|
14192
14754
|
createdAt: z$1.ZodISODateTime;
|
|
14193
14755
|
}, z$1.core.$strip>;
|
|
@@ -14269,7 +14831,7 @@ declare const zPublicProfile: z$1.ZodObject<{
|
|
|
14269
14831
|
appId: z$1.ZodString;
|
|
14270
14832
|
appName: z$1.ZodString;
|
|
14271
14833
|
appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
14272
|
-
|
|
14834
|
+
recommended: z$1.ZodBoolean;
|
|
14273
14835
|
body: z$1.ZodString;
|
|
14274
14836
|
createdAt: z$1.ZodISODateTime;
|
|
14275
14837
|
}, z$1.core.$strip>>;
|
|
@@ -15016,6 +15578,51 @@ declare const zAppPageDraft: z$1.ZodObject<{
|
|
|
15016
15578
|
url: z$1.ZodURL;
|
|
15017
15579
|
order: z$1.ZodInt;
|
|
15018
15580
|
}, z$1.core.$strip>>;
|
|
15581
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
15582
|
+
web: "web";
|
|
15583
|
+
ios: "ios";
|
|
15584
|
+
android: "android";
|
|
15585
|
+
pc: "pc";
|
|
15586
|
+
playstation: "playstation";
|
|
15587
|
+
xbox: "xbox";
|
|
15588
|
+
switch: "switch";
|
|
15589
|
+
}>>;
|
|
15590
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15591
|
+
single_player: "single_player";
|
|
15592
|
+
multiplayer: "multiplayer";
|
|
15593
|
+
both: "both";
|
|
15594
|
+
}>>;
|
|
15595
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15596
|
+
everyone: "everyone";
|
|
15597
|
+
"13_plus": "13_plus";
|
|
15598
|
+
"16_plus": "16_plus";
|
|
15599
|
+
"18_plus": "18_plus";
|
|
15600
|
+
}>>;
|
|
15601
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
15602
|
+
id: "id";
|
|
15603
|
+
en: "en";
|
|
15604
|
+
es: "es";
|
|
15605
|
+
fr: "fr";
|
|
15606
|
+
de: "de";
|
|
15607
|
+
pt: "pt";
|
|
15608
|
+
it: "it";
|
|
15609
|
+
ru: "ru";
|
|
15610
|
+
ja: "ja";
|
|
15611
|
+
ko: "ko";
|
|
15612
|
+
zh: "zh";
|
|
15613
|
+
hi: "hi";
|
|
15614
|
+
ar: "ar";
|
|
15615
|
+
tr: "tr";
|
|
15616
|
+
vi: "vi";
|
|
15617
|
+
th: "th";
|
|
15618
|
+
pl: "pl";
|
|
15619
|
+
nl: "nl";
|
|
15620
|
+
}>>;
|
|
15621
|
+
releaseStatus: z$1.ZodEnum<{
|
|
15622
|
+
live: "live";
|
|
15623
|
+
open_beta: "open_beta";
|
|
15624
|
+
coming_soon: "coming_soon";
|
|
15625
|
+
}>;
|
|
15019
15626
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15020
15627
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15021
15628
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -15079,6 +15686,51 @@ declare const zUpdateAppPage: z$1.ZodObject<{
|
|
|
15079
15686
|
url: z$1.ZodURL;
|
|
15080
15687
|
order: z$1.ZodInt;
|
|
15081
15688
|
}, z$1.core.$strip>>>;
|
|
15689
|
+
platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
15690
|
+
web: "web";
|
|
15691
|
+
ios: "ios";
|
|
15692
|
+
android: "android";
|
|
15693
|
+
pc: "pc";
|
|
15694
|
+
playstation: "playstation";
|
|
15695
|
+
xbox: "xbox";
|
|
15696
|
+
switch: "switch";
|
|
15697
|
+
}>>>;
|
|
15698
|
+
gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15699
|
+
single_player: "single_player";
|
|
15700
|
+
multiplayer: "multiplayer";
|
|
15701
|
+
both: "both";
|
|
15702
|
+
}>>>;
|
|
15703
|
+
ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15704
|
+
everyone: "everyone";
|
|
15705
|
+
"13_plus": "13_plus";
|
|
15706
|
+
"16_plus": "16_plus";
|
|
15707
|
+
"18_plus": "18_plus";
|
|
15708
|
+
}>>>;
|
|
15709
|
+
languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
15710
|
+
id: "id";
|
|
15711
|
+
en: "en";
|
|
15712
|
+
es: "es";
|
|
15713
|
+
fr: "fr";
|
|
15714
|
+
de: "de";
|
|
15715
|
+
pt: "pt";
|
|
15716
|
+
it: "it";
|
|
15717
|
+
ru: "ru";
|
|
15718
|
+
ja: "ja";
|
|
15719
|
+
ko: "ko";
|
|
15720
|
+
zh: "zh";
|
|
15721
|
+
hi: "hi";
|
|
15722
|
+
ar: "ar";
|
|
15723
|
+
tr: "tr";
|
|
15724
|
+
vi: "vi";
|
|
15725
|
+
th: "th";
|
|
15726
|
+
pl: "pl";
|
|
15727
|
+
nl: "nl";
|
|
15728
|
+
}>>>;
|
|
15729
|
+
releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
15730
|
+
live: "live";
|
|
15731
|
+
open_beta: "open_beta";
|
|
15732
|
+
coming_soon: "coming_soon";
|
|
15733
|
+
}>>;
|
|
15082
15734
|
}, z$1.core.$strip>;
|
|
15083
15735
|
declare const zAppPageGalleryUploadResponse: z$1.ZodObject<{
|
|
15084
15736
|
url: z$1.ZodURL;
|
|
@@ -16975,25 +17627,76 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
16975
17627
|
order: z$1.ZodInt;
|
|
16976
17628
|
}, z$1.core.$strip>>;
|
|
16977
17629
|
studio: z$1.ZodObject<{
|
|
17630
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
16978
17631
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
16979
17632
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16980
17633
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16981
17634
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
16982
17635
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16983
17636
|
}, z$1.core.$strip>;
|
|
17637
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
17638
|
+
web: "web";
|
|
17639
|
+
ios: "ios";
|
|
17640
|
+
android: "android";
|
|
17641
|
+
pc: "pc";
|
|
17642
|
+
playstation: "playstation";
|
|
17643
|
+
xbox: "xbox";
|
|
17644
|
+
switch: "switch";
|
|
17645
|
+
}>>;
|
|
17646
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17647
|
+
single_player: "single_player";
|
|
17648
|
+
multiplayer: "multiplayer";
|
|
17649
|
+
both: "both";
|
|
17650
|
+
}>>;
|
|
17651
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17652
|
+
everyone: "everyone";
|
|
17653
|
+
"13_plus": "13_plus";
|
|
17654
|
+
"16_plus": "16_plus";
|
|
17655
|
+
"18_plus": "18_plus";
|
|
17656
|
+
}>>;
|
|
17657
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
17658
|
+
id: "id";
|
|
17659
|
+
en: "en";
|
|
17660
|
+
es: "es";
|
|
17661
|
+
fr: "fr";
|
|
17662
|
+
de: "de";
|
|
17663
|
+
pt: "pt";
|
|
17664
|
+
it: "it";
|
|
17665
|
+
ru: "ru";
|
|
17666
|
+
ja: "ja";
|
|
17667
|
+
ko: "ko";
|
|
17668
|
+
zh: "zh";
|
|
17669
|
+
hi: "hi";
|
|
17670
|
+
ar: "ar";
|
|
17671
|
+
tr: "tr";
|
|
17672
|
+
vi: "vi";
|
|
17673
|
+
th: "th";
|
|
17674
|
+
pl: "pl";
|
|
17675
|
+
nl: "nl";
|
|
17676
|
+
}>>;
|
|
17677
|
+
releaseStatus: z$1.ZodEnum<{
|
|
17678
|
+
live: "live";
|
|
17679
|
+
open_beta: "open_beta";
|
|
17680
|
+
coming_soon: "coming_soon";
|
|
17681
|
+
}>;
|
|
17682
|
+
paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17683
|
+
both: "both";
|
|
17684
|
+
tron: "tron";
|
|
17685
|
+
onchain: "onchain";
|
|
17686
|
+
}>>;
|
|
16984
17687
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
16985
17688
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
16986
17689
|
publishedAt: z$1.ZodISODateTime;
|
|
17690
|
+
updatedAt: z$1.ZodISODateTime;
|
|
16987
17691
|
}, z$1.core.$strip>;
|
|
16988
17692
|
declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
|
|
16989
17693
|
slug: z$1.ZodString;
|
|
16990
17694
|
}, z$1.core.$strip>;
|
|
16991
17695
|
declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
|
|
16992
17696
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
17697
|
+
helpful: "helpful";
|
|
16993
17698
|
newest: "newest";
|
|
16994
17699
|
oldest: "oldest";
|
|
16995
|
-
highest: "highest";
|
|
16996
|
-
lowest: "lowest";
|
|
16997
17700
|
}>>>;
|
|
16998
17701
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
16999
17702
|
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
@@ -17003,21 +17706,33 @@ declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
|
|
|
17003
17706
|
*/
|
|
17004
17707
|
declare const zGetPublicAppsBySlugReviewsResponse: z$1.ZodObject<{
|
|
17005
17708
|
aggregate: z$1.ZodObject<{
|
|
17006
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17007
17709
|
count: z$1.ZodInt;
|
|
17008
|
-
|
|
17009
|
-
|
|
17010
|
-
|
|
17011
|
-
|
|
17012
|
-
|
|
17013
|
-
|
|
17014
|
-
|
|
17710
|
+
recommendedCount: z$1.ZodInt;
|
|
17711
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17712
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17713
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
17714
|
+
very_positive: "very_positive";
|
|
17715
|
+
positive: "positive";
|
|
17716
|
+
mostly_positive: "mostly_positive";
|
|
17717
|
+
mixed: "mixed";
|
|
17718
|
+
mostly_negative: "mostly_negative";
|
|
17719
|
+
negative: "negative";
|
|
17720
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
17721
|
+
}>>;
|
|
17015
17722
|
}, z$1.core.$strip>;
|
|
17016
17723
|
reviews: z$1.ZodArray<z$1.ZodObject<{
|
|
17017
17724
|
id: z$1.ZodUUID;
|
|
17018
|
-
|
|
17725
|
+
recommended: z$1.ZodBoolean;
|
|
17019
17726
|
body: z$1.ZodString;
|
|
17727
|
+
reactions: z$1.ZodObject<{
|
|
17728
|
+
helpful: z$1.ZodInt;
|
|
17729
|
+
unhelpful: z$1.ZodInt;
|
|
17730
|
+
funny: z$1.ZodInt;
|
|
17731
|
+
}, z$1.core.$strip>;
|
|
17732
|
+
tippedCents: z$1.ZodInt;
|
|
17020
17733
|
author: z$1.ZodObject<{
|
|
17734
|
+
userId: z$1.ZodUUID;
|
|
17735
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
17021
17736
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17022
17737
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17023
17738
|
}, z$1.core.$strip>;
|
|
@@ -17045,7 +17760,7 @@ declare const zDeleteMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17045
17760
|
}>>;
|
|
17046
17761
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
17047
17762
|
id: z$1.ZodUUID;
|
|
17048
|
-
|
|
17763
|
+
recommended: z$1.ZodBoolean;
|
|
17049
17764
|
body: z$1.ZodString;
|
|
17050
17765
|
createdAt: z$1.ZodISODateTime;
|
|
17051
17766
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -17066,7 +17781,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17066
17781
|
}>>;
|
|
17067
17782
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
17068
17783
|
id: z$1.ZodUUID;
|
|
17069
|
-
|
|
17784
|
+
recommended: z$1.ZodBoolean;
|
|
17070
17785
|
body: z$1.ZodString;
|
|
17071
17786
|
createdAt: z$1.ZodISODateTime;
|
|
17072
17787
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -17074,7 +17789,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17074
17789
|
isAppOwner: z$1.ZodBoolean;
|
|
17075
17790
|
}, z$1.core.$strip>;
|
|
17076
17791
|
declare const zPutMeReviewsBySlugBody: z$1.ZodObject<{
|
|
17077
|
-
|
|
17792
|
+
recommended: z$1.ZodBoolean;
|
|
17078
17793
|
body: z$1.ZodString;
|
|
17079
17794
|
}, z$1.core.$strip>;
|
|
17080
17795
|
declare const zPutMeReviewsBySlugPath: z$1.ZodObject<{
|
|
@@ -17091,22 +17806,82 @@ declare const zPutMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17091
17806
|
}>>;
|
|
17092
17807
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
17093
17808
|
id: z$1.ZodUUID;
|
|
17094
|
-
|
|
17809
|
+
recommended: z$1.ZodBoolean;
|
|
17095
17810
|
body: z$1.ZodString;
|
|
17096
17811
|
createdAt: z$1.ZodISODateTime;
|
|
17097
17812
|
updatedAt: z$1.ZodISODateTime;
|
|
17098
17813
|
}, z$1.core.$strip>>;
|
|
17099
17814
|
isAppOwner: z$1.ZodBoolean;
|
|
17100
17815
|
}, z$1.core.$strip>;
|
|
17816
|
+
declare const zGetMeReviewsBySlugReactionsPath: z$1.ZodObject<{
|
|
17817
|
+
slug: z$1.ZodString;
|
|
17818
|
+
}, z$1.core.$strip>;
|
|
17819
|
+
/**
|
|
17820
|
+
* The caller's per-review reactions
|
|
17821
|
+
*/
|
|
17822
|
+
declare const zGetMeReviewsBySlugReactionsResponse: z$1.ZodObject<{
|
|
17823
|
+
reactions: z$1.ZodArray<z$1.ZodObject<{
|
|
17824
|
+
reviewId: z$1.ZodUUID;
|
|
17825
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17826
|
+
helpful: "helpful";
|
|
17827
|
+
unhelpful: "unhelpful";
|
|
17828
|
+
}>>;
|
|
17829
|
+
funny: z$1.ZodBoolean;
|
|
17830
|
+
}, z$1.core.$strip>>;
|
|
17831
|
+
}, z$1.core.$strip>;
|
|
17832
|
+
declare const zPostMeReviewsBySlugReactionsByReviewIdBody: z$1.ZodObject<{
|
|
17833
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17834
|
+
helpful: "helpful";
|
|
17835
|
+
unhelpful: "unhelpful";
|
|
17836
|
+
}>>;
|
|
17837
|
+
funny: z$1.ZodBoolean;
|
|
17838
|
+
}, z$1.core.$strip>;
|
|
17839
|
+
declare const zPostMeReviewsBySlugReactionsByReviewIdPath: z$1.ZodObject<{
|
|
17840
|
+
slug: z$1.ZodString;
|
|
17841
|
+
reviewId: z$1.ZodUUID;
|
|
17842
|
+
}, z$1.core.$strip>;
|
|
17843
|
+
/**
|
|
17844
|
+
* The review's updated reaction counts + the caller's stored state
|
|
17845
|
+
*/
|
|
17846
|
+
declare const zPostMeReviewsBySlugReactionsByReviewIdResponse: z$1.ZodObject<{
|
|
17847
|
+
reactions: z$1.ZodObject<{
|
|
17848
|
+
helpful: z$1.ZodInt;
|
|
17849
|
+
unhelpful: z$1.ZodInt;
|
|
17850
|
+
funny: z$1.ZodInt;
|
|
17851
|
+
}, z$1.core.$strip>;
|
|
17852
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17853
|
+
helpful: "helpful";
|
|
17854
|
+
unhelpful: "unhelpful";
|
|
17855
|
+
}>>;
|
|
17856
|
+
funny: z$1.ZodBoolean;
|
|
17857
|
+
}, z$1.core.$strip>;
|
|
17858
|
+
declare const zPostMeReviewsBySlugTipsByReviewIdBody: z$1.ZodObject<{
|
|
17859
|
+
amountCents: z$1.ZodInt;
|
|
17860
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
17861
|
+
}, z$1.core.$strip>;
|
|
17862
|
+
declare const zPostMeReviewsBySlugTipsByReviewIdPath: z$1.ZodObject<{
|
|
17863
|
+
slug: z$1.ZodString;
|
|
17864
|
+
reviewId: z$1.ZodUUID;
|
|
17865
|
+
}, z$1.core.$strip>;
|
|
17866
|
+
/**
|
|
17867
|
+
* Tip completed; the sender's balance after + the review's new total tipped
|
|
17868
|
+
*/
|
|
17869
|
+
declare const zPostMeReviewsBySlugTipsByReviewIdResponse: z$1.ZodObject<{
|
|
17870
|
+
status: z$1.ZodEnum<{
|
|
17871
|
+
completed: "completed";
|
|
17872
|
+
}>;
|
|
17873
|
+
amountCents: z$1.ZodInt;
|
|
17874
|
+
balanceCents: z$1.ZodInt;
|
|
17875
|
+
tippedCents: z$1.ZodInt;
|
|
17876
|
+
}, z$1.core.$strip>;
|
|
17101
17877
|
declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
|
|
17102
17878
|
appId: z$1.ZodUUID;
|
|
17103
17879
|
}, z$1.core.$strip>;
|
|
17104
17880
|
declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
|
|
17105
17881
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
17882
|
+
helpful: "helpful";
|
|
17106
17883
|
newest: "newest";
|
|
17107
17884
|
oldest: "oldest";
|
|
17108
|
-
highest: "highest";
|
|
17109
|
-
lowest: "lowest";
|
|
17110
17885
|
}>>>;
|
|
17111
17886
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
17112
17887
|
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
@@ -17116,21 +17891,33 @@ declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
|
|
|
17116
17891
|
*/
|
|
17117
17892
|
declare const zGetMeDeveloperAppsByAppIdReviewsResponse: z$1.ZodObject<{
|
|
17118
17893
|
aggregate: z$1.ZodObject<{
|
|
17119
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17120
17894
|
count: z$1.ZodInt;
|
|
17121
|
-
|
|
17122
|
-
|
|
17123
|
-
|
|
17124
|
-
|
|
17125
|
-
|
|
17126
|
-
|
|
17127
|
-
|
|
17895
|
+
recommendedCount: z$1.ZodInt;
|
|
17896
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17897
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17898
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
17899
|
+
very_positive: "very_positive";
|
|
17900
|
+
positive: "positive";
|
|
17901
|
+
mostly_positive: "mostly_positive";
|
|
17902
|
+
mixed: "mixed";
|
|
17903
|
+
mostly_negative: "mostly_negative";
|
|
17904
|
+
negative: "negative";
|
|
17905
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
17906
|
+
}>>;
|
|
17128
17907
|
}, z$1.core.$strip>;
|
|
17129
17908
|
reviews: z$1.ZodArray<z$1.ZodObject<{
|
|
17130
17909
|
id: z$1.ZodUUID;
|
|
17131
|
-
|
|
17910
|
+
recommended: z$1.ZodBoolean;
|
|
17132
17911
|
body: z$1.ZodString;
|
|
17912
|
+
reactions: z$1.ZodObject<{
|
|
17913
|
+
helpful: z$1.ZodInt;
|
|
17914
|
+
unhelpful: z$1.ZodInt;
|
|
17915
|
+
funny: z$1.ZodInt;
|
|
17916
|
+
}, z$1.core.$strip>;
|
|
17917
|
+
tippedCents: z$1.ZodInt;
|
|
17133
17918
|
author: z$1.ZodObject<{
|
|
17919
|
+
userId: z$1.ZodUUID;
|
|
17920
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
17134
17921
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17135
17922
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17136
17923
|
}, z$1.core.$strip>;
|
|
@@ -17695,6 +18482,10 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17695
18482
|
referral: "referral";
|
|
17696
18483
|
}>;
|
|
17697
18484
|
amountCents: z$1.ZodInt;
|
|
18485
|
+
usdCents: z$1.ZodInt;
|
|
18486
|
+
status: z$1.ZodEnum<{
|
|
18487
|
+
settled: "settled";
|
|
18488
|
+
}>;
|
|
17698
18489
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
17699
18490
|
id: z$1.ZodString;
|
|
17700
18491
|
name: z$1.ZodString;
|
|
@@ -17702,6 +18493,19 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17702
18493
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
17703
18494
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17704
18495
|
}, z$1.core.$strip>>;
|
|
18496
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
18497
|
+
userId: z$1.ZodString;
|
|
18498
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
18499
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18500
|
+
role: z$1.ZodEnum<{
|
|
18501
|
+
stake: "stake";
|
|
18502
|
+
payout: "payout";
|
|
18503
|
+
dev_cut: "dev_cut";
|
|
18504
|
+
purchase: "purchase";
|
|
18505
|
+
referral: "referral";
|
|
18506
|
+
}>;
|
|
18507
|
+
amountCents: z$1.ZodInt;
|
|
18508
|
+
}, z$1.core.$strip>>>>;
|
|
17705
18509
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
17706
18510
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
17707
18511
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -17734,13 +18538,31 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17734
18538
|
approved: "approved";
|
|
17735
18539
|
pending: "pending";
|
|
17736
18540
|
failed: "failed";
|
|
17737
|
-
rejected: "rejected";
|
|
17738
18541
|
settled: "settled";
|
|
18542
|
+
rejected: "rejected";
|
|
17739
18543
|
}>;
|
|
17740
18544
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
17741
18545
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
17742
18546
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
17743
18547
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
18548
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18549
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18550
|
+
id: z$1.ZodString;
|
|
18551
|
+
occurredAt: z$1.ZodISODateTime;
|
|
18552
|
+
role: z$1.ZodEnum<{
|
|
18553
|
+
outgoing: "outgoing";
|
|
18554
|
+
incoming: "incoming";
|
|
18555
|
+
}>;
|
|
18556
|
+
amountCents: z$1.ZodInt;
|
|
18557
|
+
usdCents: z$1.ZodInt;
|
|
18558
|
+
status: z$1.ZodEnum<{
|
|
18559
|
+
settled: "settled";
|
|
18560
|
+
}>;
|
|
18561
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
18562
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
18563
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18564
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
18565
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
17744
18566
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
17745
18567
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
17746
18568
|
id: z$1.ZodString;
|
|
@@ -18110,6 +18932,10 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18110
18932
|
referral: "referral";
|
|
18111
18933
|
}>;
|
|
18112
18934
|
amountCents: z$1.ZodInt;
|
|
18935
|
+
usdCents: z$1.ZodInt;
|
|
18936
|
+
status: z$1.ZodEnum<{
|
|
18937
|
+
settled: "settled";
|
|
18938
|
+
}>;
|
|
18113
18939
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
18114
18940
|
id: z$1.ZodString;
|
|
18115
18941
|
name: z$1.ZodString;
|
|
@@ -18117,6 +18943,19 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18117
18943
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
18118
18944
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
18119
18945
|
}, z$1.core.$strip>>;
|
|
18946
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
18947
|
+
userId: z$1.ZodString;
|
|
18948
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
18949
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18950
|
+
role: z$1.ZodEnum<{
|
|
18951
|
+
stake: "stake";
|
|
18952
|
+
payout: "payout";
|
|
18953
|
+
dev_cut: "dev_cut";
|
|
18954
|
+
purchase: "purchase";
|
|
18955
|
+
referral: "referral";
|
|
18956
|
+
}>;
|
|
18957
|
+
amountCents: z$1.ZodInt;
|
|
18958
|
+
}, z$1.core.$strip>>>>;
|
|
18120
18959
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
18121
18960
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
18122
18961
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -18149,13 +18988,31 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18149
18988
|
approved: "approved";
|
|
18150
18989
|
pending: "pending";
|
|
18151
18990
|
failed: "failed";
|
|
18152
|
-
rejected: "rejected";
|
|
18153
18991
|
settled: "settled";
|
|
18992
|
+
rejected: "rejected";
|
|
18154
18993
|
}>;
|
|
18155
18994
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
18156
18995
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
18157
18996
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
18158
18997
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
18998
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18999
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
19000
|
+
id: z$1.ZodString;
|
|
19001
|
+
occurredAt: z$1.ZodISODateTime;
|
|
19002
|
+
role: z$1.ZodEnum<{
|
|
19003
|
+
outgoing: "outgoing";
|
|
19004
|
+
incoming: "incoming";
|
|
19005
|
+
}>;
|
|
19006
|
+
amountCents: z$1.ZodInt;
|
|
19007
|
+
usdCents: z$1.ZodInt;
|
|
19008
|
+
status: z$1.ZodEnum<{
|
|
19009
|
+
settled: "settled";
|
|
19010
|
+
}>;
|
|
19011
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
19012
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
19013
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
19014
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
19015
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
18159
19016
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18160
19017
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18161
19018
|
id: z$1.ZodString;
|
|
@@ -18199,9 +19056,9 @@ declare const zGetPaymentsMeOutstandingResponse: z$1.ZodObject<{
|
|
|
18199
19056
|
declare const zGetPaymentsMeMoonpayAvailabilityResponse: z$1.ZodObject<{
|
|
18200
19057
|
enabled: z$1.ZodBoolean;
|
|
18201
19058
|
direction: z$1.ZodNullable<z$1.ZodEnum<{
|
|
19059
|
+
both: "both";
|
|
18202
19060
|
buy: "buy";
|
|
18203
19061
|
sell: "sell";
|
|
18204
|
-
both: "both";
|
|
18205
19062
|
}>>;
|
|
18206
19063
|
countryCode: z$1.ZodNullable<z$1.ZodString>;
|
|
18207
19064
|
regionSupported: z$1.ZodBoolean;
|
|
@@ -18265,6 +19122,7 @@ declare const zGetPaymentsMeTronLedgerResponse: z$1.ZodObject<{
|
|
|
18265
19122
|
dispute_unfreeze: "dispute_unfreeze";
|
|
18266
19123
|
hosted_billing: "hosted_billing";
|
|
18267
19124
|
store_purchase: "store_purchase";
|
|
19125
|
+
peer_transfer: "peer_transfer";
|
|
18268
19126
|
}>;
|
|
18269
19127
|
amountCents: z$1.ZodInt;
|
|
18270
19128
|
currency: z$1.ZodString;
|
|
@@ -18285,6 +19143,26 @@ declare const zPostPaymentsMeTronDepositResponse: z$1.ZodObject<{
|
|
|
18285
19143
|
currency: z$1.ZodString;
|
|
18286
19144
|
depositId: z$1.ZodUUID;
|
|
18287
19145
|
}, z$1.core.$strip>;
|
|
19146
|
+
declare const zPostPaymentsMeTronTransferBody: z$1.ZodObject<{
|
|
19147
|
+
recipientUserId: z$1.ZodUUID;
|
|
19148
|
+
amountCents: z$1.ZodInt;
|
|
19149
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
19150
|
+
}, z$1.core.$strip>;
|
|
19151
|
+
/**
|
|
19152
|
+
* Transfer completed; carries the sender's remaining balance + recipient identity
|
|
19153
|
+
*/
|
|
19154
|
+
declare const zPostPaymentsMeTronTransferResponse: z$1.ZodObject<{
|
|
19155
|
+
status: z$1.ZodEnum<{
|
|
19156
|
+
completed: "completed";
|
|
19157
|
+
}>;
|
|
19158
|
+
amountCents: z$1.ZodInt;
|
|
19159
|
+
balanceCents: z$1.ZodInt;
|
|
19160
|
+
recipient: z$1.ZodObject<{
|
|
19161
|
+
userId: z$1.ZodUUID;
|
|
19162
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
19163
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
19164
|
+
}, z$1.core.$strip>;
|
|
19165
|
+
}, z$1.core.$strip>;
|
|
18288
19166
|
/**
|
|
18289
19167
|
* The caller's spendable TRON balance in cents
|
|
18290
19168
|
*/
|
|
@@ -18455,8 +19333,8 @@ declare const zGetPaymentsMeTronCashoutsResponse: z$1.ZodObject<{
|
|
|
18455
19333
|
approved: "approved";
|
|
18456
19334
|
pending: "pending";
|
|
18457
19335
|
failed: "failed";
|
|
18458
|
-
rejected: "rejected";
|
|
18459
19336
|
settled: "settled";
|
|
19337
|
+
rejected: "rejected";
|
|
18460
19338
|
}>;
|
|
18461
19339
|
amountCents: z$1.ZodInt;
|
|
18462
19340
|
feeCents: z$1.ZodInt;
|
|
@@ -18490,8 +19368,8 @@ declare const zPostPaymentsMeTronCashoutsResponse: z$1.ZodObject<{
|
|
|
18490
19368
|
approved: "approved";
|
|
18491
19369
|
pending: "pending";
|
|
18492
19370
|
failed: "failed";
|
|
18493
|
-
rejected: "rejected";
|
|
18494
19371
|
settled: "settled";
|
|
19372
|
+
rejected: "rejected";
|
|
18495
19373
|
}>;
|
|
18496
19374
|
amountCents: z$1.ZodInt;
|
|
18497
19375
|
feeCents: z$1.ZodInt;
|
|
@@ -18517,8 +19395,8 @@ declare const zGetAdminTronCashoutsResponse: z$1.ZodObject<{
|
|
|
18517
19395
|
approved: "approved";
|
|
18518
19396
|
pending: "pending";
|
|
18519
19397
|
failed: "failed";
|
|
18520
|
-
rejected: "rejected";
|
|
18521
19398
|
settled: "settled";
|
|
19399
|
+
rejected: "rejected";
|
|
18522
19400
|
}>;
|
|
18523
19401
|
amountCents: z$1.ZodInt;
|
|
18524
19402
|
feeCents: z$1.ZodInt;
|
|
@@ -18550,8 +19428,8 @@ declare const zPostAdminTronCashoutsByIdApproveResponse: z$1.ZodObject<{
|
|
|
18550
19428
|
approved: "approved";
|
|
18551
19429
|
pending: "pending";
|
|
18552
19430
|
failed: "failed";
|
|
18553
|
-
rejected: "rejected";
|
|
18554
19431
|
settled: "settled";
|
|
19432
|
+
rejected: "rejected";
|
|
18555
19433
|
}>;
|
|
18556
19434
|
amountCents: z$1.ZodInt;
|
|
18557
19435
|
feeCents: z$1.ZodInt;
|
|
@@ -18585,8 +19463,8 @@ declare const zPostAdminTronCashoutsByIdRejectResponse: z$1.ZodObject<{
|
|
|
18585
19463
|
approved: "approved";
|
|
18586
19464
|
pending: "pending";
|
|
18587
19465
|
failed: "failed";
|
|
18588
|
-
rejected: "rejected";
|
|
18589
19466
|
settled: "settled";
|
|
19467
|
+
rejected: "rejected";
|
|
18590
19468
|
}>;
|
|
18591
19469
|
amountCents: z$1.ZodInt;
|
|
18592
19470
|
feeCents: z$1.ZodInt;
|
|
@@ -20466,7 +21344,7 @@ declare const zGetUsersByHandleResponse: z$1.ZodObject<{
|
|
|
20466
21344
|
appId: z$1.ZodString;
|
|
20467
21345
|
appName: z$1.ZodString;
|
|
20468
21346
|
appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
20469
|
-
|
|
21347
|
+
recommended: z$1.ZodBoolean;
|
|
20470
21348
|
body: z$1.ZodString;
|
|
20471
21349
|
createdAt: z$1.ZodISODateTime;
|
|
20472
21350
|
}, z$1.core.$strip>>;
|
|
@@ -21116,6 +21994,10 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21116
21994
|
referral: "referral";
|
|
21117
21995
|
}>;
|
|
21118
21996
|
amountCents: z$1.ZodInt;
|
|
21997
|
+
usdCents: z$1.ZodInt;
|
|
21998
|
+
status: z$1.ZodEnum<{
|
|
21999
|
+
settled: "settled";
|
|
22000
|
+
}>;
|
|
21119
22001
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
21120
22002
|
id: z$1.ZodString;
|
|
21121
22003
|
name: z$1.ZodString;
|
|
@@ -21123,6 +22005,19 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21123
22005
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
21124
22006
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
21125
22007
|
}, z$1.core.$strip>>;
|
|
22008
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
22009
|
+
userId: z$1.ZodString;
|
|
22010
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
22011
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
22012
|
+
role: z$1.ZodEnum<{
|
|
22013
|
+
stake: "stake";
|
|
22014
|
+
payout: "payout";
|
|
22015
|
+
dev_cut: "dev_cut";
|
|
22016
|
+
purchase: "purchase";
|
|
22017
|
+
referral: "referral";
|
|
22018
|
+
}>;
|
|
22019
|
+
amountCents: z$1.ZodInt;
|
|
22020
|
+
}, z$1.core.$strip>>>>;
|
|
21126
22021
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
21127
22022
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
21128
22023
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -21155,13 +22050,31 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21155
22050
|
approved: "approved";
|
|
21156
22051
|
pending: "pending";
|
|
21157
22052
|
failed: "failed";
|
|
21158
|
-
rejected: "rejected";
|
|
21159
22053
|
settled: "settled";
|
|
22054
|
+
rejected: "rejected";
|
|
21160
22055
|
}>;
|
|
21161
22056
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
21162
22057
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
21163
22058
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21164
22059
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
22060
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
22061
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
22062
|
+
id: z$1.ZodString;
|
|
22063
|
+
occurredAt: z$1.ZodISODateTime;
|
|
22064
|
+
role: z$1.ZodEnum<{
|
|
22065
|
+
outgoing: "outgoing";
|
|
22066
|
+
incoming: "incoming";
|
|
22067
|
+
}>;
|
|
22068
|
+
amountCents: z$1.ZodInt;
|
|
22069
|
+
usdCents: z$1.ZodInt;
|
|
22070
|
+
status: z$1.ZodEnum<{
|
|
22071
|
+
settled: "settled";
|
|
22072
|
+
}>;
|
|
22073
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
22074
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
22075
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
22076
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
22077
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
21165
22078
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21166
22079
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
21167
22080
|
id: z$1.ZodString;
|
|
@@ -21698,6 +22611,51 @@ declare const zGetMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
|
|
|
21698
22611
|
url: z$1.ZodURL;
|
|
21699
22612
|
order: z$1.ZodInt;
|
|
21700
22613
|
}, z$1.core.$strip>>;
|
|
22614
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22615
|
+
web: "web";
|
|
22616
|
+
ios: "ios";
|
|
22617
|
+
android: "android";
|
|
22618
|
+
pc: "pc";
|
|
22619
|
+
playstation: "playstation";
|
|
22620
|
+
xbox: "xbox";
|
|
22621
|
+
switch: "switch";
|
|
22622
|
+
}>>;
|
|
22623
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22624
|
+
single_player: "single_player";
|
|
22625
|
+
multiplayer: "multiplayer";
|
|
22626
|
+
both: "both";
|
|
22627
|
+
}>>;
|
|
22628
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22629
|
+
everyone: "everyone";
|
|
22630
|
+
"13_plus": "13_plus";
|
|
22631
|
+
"16_plus": "16_plus";
|
|
22632
|
+
"18_plus": "18_plus";
|
|
22633
|
+
}>>;
|
|
22634
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22635
|
+
id: "id";
|
|
22636
|
+
en: "en";
|
|
22637
|
+
es: "es";
|
|
22638
|
+
fr: "fr";
|
|
22639
|
+
de: "de";
|
|
22640
|
+
pt: "pt";
|
|
22641
|
+
it: "it";
|
|
22642
|
+
ru: "ru";
|
|
22643
|
+
ja: "ja";
|
|
22644
|
+
ko: "ko";
|
|
22645
|
+
zh: "zh";
|
|
22646
|
+
hi: "hi";
|
|
22647
|
+
ar: "ar";
|
|
22648
|
+
tr: "tr";
|
|
22649
|
+
vi: "vi";
|
|
22650
|
+
th: "th";
|
|
22651
|
+
pl: "pl";
|
|
22652
|
+
nl: "nl";
|
|
22653
|
+
}>>;
|
|
22654
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22655
|
+
live: "live";
|
|
22656
|
+
open_beta: "open_beta";
|
|
22657
|
+
coming_soon: "coming_soon";
|
|
22658
|
+
}>;
|
|
21701
22659
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21702
22660
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21703
22661
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -21761,6 +22719,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageBody: z$1.ZodObject<{
|
|
|
21761
22719
|
url: z$1.ZodURL;
|
|
21762
22720
|
order: z$1.ZodInt;
|
|
21763
22721
|
}, z$1.core.$strip>>>;
|
|
22722
|
+
platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
22723
|
+
web: "web";
|
|
22724
|
+
ios: "ios";
|
|
22725
|
+
android: "android";
|
|
22726
|
+
pc: "pc";
|
|
22727
|
+
playstation: "playstation";
|
|
22728
|
+
xbox: "xbox";
|
|
22729
|
+
switch: "switch";
|
|
22730
|
+
}>>>;
|
|
22731
|
+
gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
22732
|
+
single_player: "single_player";
|
|
22733
|
+
multiplayer: "multiplayer";
|
|
22734
|
+
both: "both";
|
|
22735
|
+
}>>>;
|
|
22736
|
+
ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
22737
|
+
everyone: "everyone";
|
|
22738
|
+
"13_plus": "13_plus";
|
|
22739
|
+
"16_plus": "16_plus";
|
|
22740
|
+
"18_plus": "18_plus";
|
|
22741
|
+
}>>>;
|
|
22742
|
+
languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
22743
|
+
id: "id";
|
|
22744
|
+
en: "en";
|
|
22745
|
+
es: "es";
|
|
22746
|
+
fr: "fr";
|
|
22747
|
+
de: "de";
|
|
22748
|
+
pt: "pt";
|
|
22749
|
+
it: "it";
|
|
22750
|
+
ru: "ru";
|
|
22751
|
+
ja: "ja";
|
|
22752
|
+
ko: "ko";
|
|
22753
|
+
zh: "zh";
|
|
22754
|
+
hi: "hi";
|
|
22755
|
+
ar: "ar";
|
|
22756
|
+
tr: "tr";
|
|
22757
|
+
vi: "vi";
|
|
22758
|
+
th: "th";
|
|
22759
|
+
pl: "pl";
|
|
22760
|
+
nl: "nl";
|
|
22761
|
+
}>>>;
|
|
22762
|
+
releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22763
|
+
live: "live";
|
|
22764
|
+
open_beta: "open_beta";
|
|
22765
|
+
coming_soon: "coming_soon";
|
|
22766
|
+
}>>;
|
|
21764
22767
|
}, z$1.core.$strip>;
|
|
21765
22768
|
declare const zPatchMeDeveloperAppsByAppIdPagePath: z$1.ZodObject<{
|
|
21766
22769
|
appId: z$1.ZodString;
|
|
@@ -21831,6 +22834,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
|
|
|
21831
22834
|
url: z$1.ZodURL;
|
|
21832
22835
|
order: z$1.ZodInt;
|
|
21833
22836
|
}, z$1.core.$strip>>;
|
|
22837
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22838
|
+
web: "web";
|
|
22839
|
+
ios: "ios";
|
|
22840
|
+
android: "android";
|
|
22841
|
+
pc: "pc";
|
|
22842
|
+
playstation: "playstation";
|
|
22843
|
+
xbox: "xbox";
|
|
22844
|
+
switch: "switch";
|
|
22845
|
+
}>>;
|
|
22846
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22847
|
+
single_player: "single_player";
|
|
22848
|
+
multiplayer: "multiplayer";
|
|
22849
|
+
both: "both";
|
|
22850
|
+
}>>;
|
|
22851
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22852
|
+
everyone: "everyone";
|
|
22853
|
+
"13_plus": "13_plus";
|
|
22854
|
+
"16_plus": "16_plus";
|
|
22855
|
+
"18_plus": "18_plus";
|
|
22856
|
+
}>>;
|
|
22857
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22858
|
+
id: "id";
|
|
22859
|
+
en: "en";
|
|
22860
|
+
es: "es";
|
|
22861
|
+
fr: "fr";
|
|
22862
|
+
de: "de";
|
|
22863
|
+
pt: "pt";
|
|
22864
|
+
it: "it";
|
|
22865
|
+
ru: "ru";
|
|
22866
|
+
ja: "ja";
|
|
22867
|
+
ko: "ko";
|
|
22868
|
+
zh: "zh";
|
|
22869
|
+
hi: "hi";
|
|
22870
|
+
ar: "ar";
|
|
22871
|
+
tr: "tr";
|
|
22872
|
+
vi: "vi";
|
|
22873
|
+
th: "th";
|
|
22874
|
+
pl: "pl";
|
|
22875
|
+
nl: "nl";
|
|
22876
|
+
}>>;
|
|
22877
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22878
|
+
live: "live";
|
|
22879
|
+
open_beta: "open_beta";
|
|
22880
|
+
coming_soon: "coming_soon";
|
|
22881
|
+
}>;
|
|
21834
22882
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21835
22883
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21836
22884
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -21976,6 +23024,51 @@ declare const zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse: z$1.ZodObj
|
|
|
21976
23024
|
url: z$1.ZodURL;
|
|
21977
23025
|
order: z$1.ZodInt;
|
|
21978
23026
|
}, z$1.core.$strip>>;
|
|
23027
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
23028
|
+
web: "web";
|
|
23029
|
+
ios: "ios";
|
|
23030
|
+
android: "android";
|
|
23031
|
+
pc: "pc";
|
|
23032
|
+
playstation: "playstation";
|
|
23033
|
+
xbox: "xbox";
|
|
23034
|
+
switch: "switch";
|
|
23035
|
+
}>>;
|
|
23036
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
23037
|
+
single_player: "single_player";
|
|
23038
|
+
multiplayer: "multiplayer";
|
|
23039
|
+
both: "both";
|
|
23040
|
+
}>>;
|
|
23041
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
23042
|
+
everyone: "everyone";
|
|
23043
|
+
"13_plus": "13_plus";
|
|
23044
|
+
"16_plus": "16_plus";
|
|
23045
|
+
"18_plus": "18_plus";
|
|
23046
|
+
}>>;
|
|
23047
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
23048
|
+
id: "id";
|
|
23049
|
+
en: "en";
|
|
23050
|
+
es: "es";
|
|
23051
|
+
fr: "fr";
|
|
23052
|
+
de: "de";
|
|
23053
|
+
pt: "pt";
|
|
23054
|
+
it: "it";
|
|
23055
|
+
ru: "ru";
|
|
23056
|
+
ja: "ja";
|
|
23057
|
+
ko: "ko";
|
|
23058
|
+
zh: "zh";
|
|
23059
|
+
hi: "hi";
|
|
23060
|
+
ar: "ar";
|
|
23061
|
+
tr: "tr";
|
|
23062
|
+
vi: "vi";
|
|
23063
|
+
th: "th";
|
|
23064
|
+
pl: "pl";
|
|
23065
|
+
nl: "nl";
|
|
23066
|
+
}>>;
|
|
23067
|
+
releaseStatus: z$1.ZodEnum<{
|
|
23068
|
+
live: "live";
|
|
23069
|
+
open_beta: "open_beta";
|
|
23070
|
+
coming_soon: "coming_soon";
|
|
23071
|
+
}>;
|
|
21979
23072
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21980
23073
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21981
23074
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -22052,6 +23145,51 @@ declare const zPostMeDeveloperAppsByAppIdPageUnpublishResponse: z$1.ZodObject<{
|
|
|
22052
23145
|
url: z$1.ZodURL;
|
|
22053
23146
|
order: z$1.ZodInt;
|
|
22054
23147
|
}, z$1.core.$strip>>;
|
|
23148
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
23149
|
+
web: "web";
|
|
23150
|
+
ios: "ios";
|
|
23151
|
+
android: "android";
|
|
23152
|
+
pc: "pc";
|
|
23153
|
+
playstation: "playstation";
|
|
23154
|
+
xbox: "xbox";
|
|
23155
|
+
switch: "switch";
|
|
23156
|
+
}>>;
|
|
23157
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
23158
|
+
single_player: "single_player";
|
|
23159
|
+
multiplayer: "multiplayer";
|
|
23160
|
+
both: "both";
|
|
23161
|
+
}>>;
|
|
23162
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
23163
|
+
everyone: "everyone";
|
|
23164
|
+
"13_plus": "13_plus";
|
|
23165
|
+
"16_plus": "16_plus";
|
|
23166
|
+
"18_plus": "18_plus";
|
|
23167
|
+
}>>;
|
|
23168
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
23169
|
+
id: "id";
|
|
23170
|
+
en: "en";
|
|
23171
|
+
es: "es";
|
|
23172
|
+
fr: "fr";
|
|
23173
|
+
de: "de";
|
|
23174
|
+
pt: "pt";
|
|
23175
|
+
it: "it";
|
|
23176
|
+
ru: "ru";
|
|
23177
|
+
ja: "ja";
|
|
23178
|
+
ko: "ko";
|
|
23179
|
+
zh: "zh";
|
|
23180
|
+
hi: "hi";
|
|
23181
|
+
ar: "ar";
|
|
23182
|
+
tr: "tr";
|
|
23183
|
+
vi: "vi";
|
|
23184
|
+
th: "th";
|
|
23185
|
+
pl: "pl";
|
|
23186
|
+
nl: "nl";
|
|
23187
|
+
}>>;
|
|
23188
|
+
releaseStatus: z$1.ZodEnum<{
|
|
23189
|
+
live: "live";
|
|
23190
|
+
open_beta: "open_beta";
|
|
23191
|
+
coming_soon: "coming_soon";
|
|
23192
|
+
}>;
|
|
22055
23193
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22056
23194
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22057
23195
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23336,4 +24474,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
23336
24474
|
*/
|
|
23337
24475
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
23338
24476
|
//#endregion
|
|
23339
|
-
export { type AcceptedCurrencies, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppPageApprovedNotificationPayload, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageLink, type AppPageLinks, type AppPageRejectedNotificationPayload, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryHolding, type InventoryListResponse, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewDistribution, type ReviewEligibilityReason, type ReviewListResponse, type ReviewRating, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TronBalanceResponse, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppPageApprovedNotificationPayload, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageLink, zAppPageLinks, zAppPageRejectedNotificationPayload, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteMeAvatarResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthInventoryResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryHolding, zInventoryListResponse, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewDistribution, zReviewEligibilityReason, zReviewListResponse, zReviewRating, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTronBalanceResponse, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };
|
|
24477
|
+
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 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 GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryHolding, type InventoryListResponse, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageGameType, zAppPageLanguages, zAppPageLink, zAppPageLinks, zAppPagePaymentsMode, zAppPagePlatforms, zAppPageRejectedNotificationPayload, zAppPageReleaseStatus, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, 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, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthInventoryResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryHolding, zInventoryListResponse, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };
|