@metatrongg/sdk 0.8.0-dev.bf445a4 → 0.8.0-dev.d0f6848
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 +118 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1147 -94
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +118 -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,32 @@ 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;
|
|
541
551
|
author: ReviewAuthor;
|
|
542
552
|
developerReply: ReviewReply;
|
|
543
553
|
createdAt: string;
|
|
544
554
|
updatedAt: string;
|
|
545
555
|
};
|
|
546
|
-
type
|
|
556
|
+
type ReviewRecommended = boolean;
|
|
547
557
|
type ReviewBody = string;
|
|
558
|
+
type ReviewReactionCounts = {
|
|
559
|
+
helpful: number;
|
|
560
|
+
unhelpful: number;
|
|
561
|
+
funny: number;
|
|
562
|
+
};
|
|
548
563
|
type ReviewAuthor = {
|
|
564
|
+
userId: string;
|
|
565
|
+
handle: string | null;
|
|
549
566
|
name: string | null;
|
|
550
567
|
avatarUrl: string | null;
|
|
551
568
|
};
|
|
@@ -554,7 +571,7 @@ type ReviewReply = {
|
|
|
554
571
|
repliedAt: string;
|
|
555
572
|
} | null;
|
|
556
573
|
type ReviewReplyBody = string;
|
|
557
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
574
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
558
575
|
type MyReviewResponse = {
|
|
559
576
|
eligible: boolean;
|
|
560
577
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -564,15 +581,33 @@ type MyReviewResponse = {
|
|
|
564
581
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
565
582
|
type OwnReview = {
|
|
566
583
|
id: string;
|
|
567
|
-
|
|
584
|
+
recommended: ReviewRecommended;
|
|
568
585
|
body: ReviewBody;
|
|
569
586
|
createdAt: string;
|
|
570
587
|
updatedAt: string;
|
|
571
588
|
} | null;
|
|
572
589
|
type UpsertReviewRequest = {
|
|
573
|
-
|
|
590
|
+
recommended: ReviewRecommended;
|
|
574
591
|
body: ReviewBody;
|
|
575
592
|
};
|
|
593
|
+
type MyReviewReactionsResponse = {
|
|
594
|
+
reactions: Array<MyReviewReaction>;
|
|
595
|
+
};
|
|
596
|
+
type MyReviewReaction = {
|
|
597
|
+
reviewId: string;
|
|
598
|
+
vote: ReviewVote;
|
|
599
|
+
funny: boolean;
|
|
600
|
+
};
|
|
601
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
602
|
+
type SetReviewReactionResponse = {
|
|
603
|
+
reactions: ReviewReactionCounts;
|
|
604
|
+
vote: ReviewVote;
|
|
605
|
+
funny: boolean;
|
|
606
|
+
};
|
|
607
|
+
type SetReviewReactionRequest = {
|
|
608
|
+
vote: ReviewVote;
|
|
609
|
+
funny: boolean;
|
|
610
|
+
};
|
|
576
611
|
type ReviewReplyResponse = {
|
|
577
612
|
developerReply: ReviewReply;
|
|
578
613
|
};
|
|
@@ -680,6 +715,8 @@ type ActivityRow = ({
|
|
|
680
715
|
} & ActivityRowTronPot) | ({
|
|
681
716
|
kind: "tron_cashout";
|
|
682
717
|
} & ActivityRowTronCashout) | ({
|
|
718
|
+
kind: "tron_transfer";
|
|
719
|
+
} & ActivityRowTronTransfer) | ({
|
|
683
720
|
kind: "referral_earning";
|
|
684
721
|
} & ActivityRowReferralEarning);
|
|
685
722
|
type ActivityRowPayment = {
|
|
@@ -927,6 +964,8 @@ type ActivityRowTronPot = {
|
|
|
927
964
|
role: "incoming" | "outgoing";
|
|
928
965
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
929
966
|
amountCents: number;
|
|
967
|
+
usdCents: number;
|
|
968
|
+
status: "settled";
|
|
930
969
|
app: {
|
|
931
970
|
id: string;
|
|
932
971
|
name: string;
|
|
@@ -934,8 +973,16 @@ type ActivityRowTronPot = {
|
|
|
934
973
|
slug: string | null;
|
|
935
974
|
bannerUrl: string | null;
|
|
936
975
|
} | null;
|
|
976
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
937
977
|
metadata?: PaymentMetadata | null;
|
|
938
978
|
};
|
|
979
|
+
type ActivityTronInvolvedUser = {
|
|
980
|
+
userId: string;
|
|
981
|
+
handle: string | null;
|
|
982
|
+
displayName: string | null;
|
|
983
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
984
|
+
amountCents: number;
|
|
985
|
+
};
|
|
939
986
|
type ActivityRowTronCashout = {
|
|
940
987
|
kind: "tron_cashout";
|
|
941
988
|
groupId: string | null;
|
|
@@ -953,6 +1000,20 @@ type ActivityRowTronCashout = {
|
|
|
953
1000
|
rejectionReason: string | null;
|
|
954
1001
|
settledAt: string | null;
|
|
955
1002
|
};
|
|
1003
|
+
type ActivityRowTronTransfer = {
|
|
1004
|
+
kind: "tron_transfer";
|
|
1005
|
+
groupId: string | null;
|
|
1006
|
+
id: string;
|
|
1007
|
+
occurredAt: string;
|
|
1008
|
+
role: "incoming" | "outgoing";
|
|
1009
|
+
amountCents: number;
|
|
1010
|
+
usdCents: number;
|
|
1011
|
+
status: "settled";
|
|
1012
|
+
counterpartyUserId: string | null;
|
|
1013
|
+
counterpartyHandle: string | null;
|
|
1014
|
+
counterpartyDisplayName: string | null;
|
|
1015
|
+
note: string | null;
|
|
1016
|
+
};
|
|
956
1017
|
type ActivityRowReferralEarning = {
|
|
957
1018
|
kind: "referral_earning";
|
|
958
1019
|
groupId: string | null;
|
|
@@ -1018,7 +1079,7 @@ type TronLedgerResponse = {
|
|
|
1018
1079
|
};
|
|
1019
1080
|
type TronLedgerEntry = {
|
|
1020
1081
|
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";
|
|
1082
|
+
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
1083
|
amountCents: number;
|
|
1023
1084
|
currency: string;
|
|
1024
1085
|
createdAt: string;
|
|
@@ -1033,6 +1094,21 @@ type TronDepositResponse = {
|
|
|
1033
1094
|
type TronDepositRequest = {
|
|
1034
1095
|
amountCents: number;
|
|
1035
1096
|
};
|
|
1097
|
+
type TronTransferResponse = {
|
|
1098
|
+
status: "completed";
|
|
1099
|
+
amountCents: number;
|
|
1100
|
+
balanceCents: number;
|
|
1101
|
+
recipient: {
|
|
1102
|
+
userId: string;
|
|
1103
|
+
handle: string | null;
|
|
1104
|
+
displayName: string | null;
|
|
1105
|
+
};
|
|
1106
|
+
};
|
|
1107
|
+
type TronTransferRequest = {
|
|
1108
|
+
recipientUserId: string;
|
|
1109
|
+
amountCents: number;
|
|
1110
|
+
note?: string;
|
|
1111
|
+
};
|
|
1036
1112
|
type TronGameBalanceResponse = {
|
|
1037
1113
|
balanceCents: number;
|
|
1038
1114
|
rakeBps: number;
|
|
@@ -1813,7 +1889,7 @@ type ProfileRecentReview = {
|
|
|
1813
1889
|
appId: string;
|
|
1814
1890
|
appName: string;
|
|
1815
1891
|
appLogoUrl: string | null;
|
|
1816
|
-
|
|
1892
|
+
recommended: boolean;
|
|
1817
1893
|
body: string;
|
|
1818
1894
|
createdAt: string;
|
|
1819
1895
|
};
|
|
@@ -2173,6 +2249,11 @@ type AppPageDraft = {
|
|
|
2173
2249
|
gallery: AppPageGallery;
|
|
2174
2250
|
chapters: AppPageChapters;
|
|
2175
2251
|
links: AppPageLinks;
|
|
2252
|
+
platforms: AppPagePlatforms;
|
|
2253
|
+
gameType: AppPageGameType;
|
|
2254
|
+
ageRating: AppPageAgeRating;
|
|
2255
|
+
languages: AppPageLanguages;
|
|
2256
|
+
releaseStatus: AppPageReleaseStatus;
|
|
2176
2257
|
firstPublishedAt: string | null;
|
|
2177
2258
|
reviewedAt: string | null;
|
|
2178
2259
|
reviewNotes: string | null;
|
|
@@ -2195,6 +2276,11 @@ type UpdateAppPage = {
|
|
|
2195
2276
|
gallery?: AppPageGallery;
|
|
2196
2277
|
chapters?: AppPageChapters;
|
|
2197
2278
|
links?: AppPageLinks;
|
|
2279
|
+
platforms?: AppPagePlatforms;
|
|
2280
|
+
gameType?: AppPageGameType;
|
|
2281
|
+
ageRating?: AppPageAgeRating;
|
|
2282
|
+
languages?: AppPageLanguages;
|
|
2283
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
2198
2284
|
};
|
|
2199
2285
|
type AppPageGalleryUploadResponse = {
|
|
2200
2286
|
url: string;
|
|
@@ -3632,6 +3718,67 @@ type PutMeReviewsBySlugResponses = {
|
|
|
3632
3718
|
200: MyReviewResponse;
|
|
3633
3719
|
};
|
|
3634
3720
|
type PutMeReviewsBySlugResponse = PutMeReviewsBySlugResponses[keyof PutMeReviewsBySlugResponses];
|
|
3721
|
+
type GetMeReviewsBySlugReactionsData = {
|
|
3722
|
+
body?: never;
|
|
3723
|
+
path: {
|
|
3724
|
+
slug: string;
|
|
3725
|
+
};
|
|
3726
|
+
query?: never;
|
|
3727
|
+
url: "/me/reviews/{slug}/reactions";
|
|
3728
|
+
};
|
|
3729
|
+
type GetMeReviewsBySlugReactionsErrors = {
|
|
3730
|
+
/**
|
|
3731
|
+
* Request error
|
|
3732
|
+
*/
|
|
3733
|
+
401: ErrorResponse;
|
|
3734
|
+
/**
|
|
3735
|
+
* Request error
|
|
3736
|
+
*/
|
|
3737
|
+
404: ErrorResponse;
|
|
3738
|
+
};
|
|
3739
|
+
type GetMeReviewsBySlugReactionsError = GetMeReviewsBySlugReactionsErrors[keyof GetMeReviewsBySlugReactionsErrors];
|
|
3740
|
+
type GetMeReviewsBySlugReactionsResponses = {
|
|
3741
|
+
/**
|
|
3742
|
+
* The caller's per-review reactions
|
|
3743
|
+
*/
|
|
3744
|
+
200: MyReviewReactionsResponse;
|
|
3745
|
+
};
|
|
3746
|
+
type GetMeReviewsBySlugReactionsResponse = GetMeReviewsBySlugReactionsResponses[keyof GetMeReviewsBySlugReactionsResponses];
|
|
3747
|
+
type PostMeReviewsBySlugReactionsByReviewIdData = {
|
|
3748
|
+
body?: SetReviewReactionRequest;
|
|
3749
|
+
path: {
|
|
3750
|
+
slug: string;
|
|
3751
|
+
reviewId: string;
|
|
3752
|
+
};
|
|
3753
|
+
query?: never;
|
|
3754
|
+
url: "/me/reviews/{slug}/reactions/{reviewId}";
|
|
3755
|
+
};
|
|
3756
|
+
type PostMeReviewsBySlugReactionsByReviewIdErrors = {
|
|
3757
|
+
/**
|
|
3758
|
+
* Request error
|
|
3759
|
+
*/
|
|
3760
|
+
400: ErrorResponse;
|
|
3761
|
+
/**
|
|
3762
|
+
* Request error
|
|
3763
|
+
*/
|
|
3764
|
+
401: ErrorResponse;
|
|
3765
|
+
/**
|
|
3766
|
+
* Request error
|
|
3767
|
+
*/
|
|
3768
|
+
403: ErrorResponse;
|
|
3769
|
+
/**
|
|
3770
|
+
* Request error
|
|
3771
|
+
*/
|
|
3772
|
+
404: ErrorResponse;
|
|
3773
|
+
};
|
|
3774
|
+
type PostMeReviewsBySlugReactionsByReviewIdError = PostMeReviewsBySlugReactionsByReviewIdErrors[keyof PostMeReviewsBySlugReactionsByReviewIdErrors];
|
|
3775
|
+
type PostMeReviewsBySlugReactionsByReviewIdResponses = {
|
|
3776
|
+
/**
|
|
3777
|
+
* The review's updated reaction counts + the caller's stored state
|
|
3778
|
+
*/
|
|
3779
|
+
200: SetReviewReactionResponse;
|
|
3780
|
+
};
|
|
3781
|
+
type PostMeReviewsBySlugReactionsByReviewIdResponse = PostMeReviewsBySlugReactionsByReviewIdResponses[keyof PostMeReviewsBySlugReactionsByReviewIdResponses];
|
|
3635
3782
|
type GetMeDeveloperAppsByAppIdReviewsData = {
|
|
3636
3783
|
body?: never;
|
|
3637
3784
|
path: {
|
|
@@ -4155,6 +4302,42 @@ type PostPaymentsMeTronDepositResponses = {
|
|
|
4155
4302
|
200: TronDepositResponse;
|
|
4156
4303
|
};
|
|
4157
4304
|
type PostPaymentsMeTronDepositResponse = PostPaymentsMeTronDepositResponses[keyof PostPaymentsMeTronDepositResponses];
|
|
4305
|
+
type PostPaymentsMeTronTransferData = {
|
|
4306
|
+
body: TronTransferRequest;
|
|
4307
|
+
path?: never;
|
|
4308
|
+
query?: never;
|
|
4309
|
+
url: "/payments/me/tron/transfer";
|
|
4310
|
+
};
|
|
4311
|
+
type PostPaymentsMeTronTransferErrors = {
|
|
4312
|
+
/**
|
|
4313
|
+
* Request error
|
|
4314
|
+
*/
|
|
4315
|
+
400: ErrorResponse;
|
|
4316
|
+
/**
|
|
4317
|
+
* Request error
|
|
4318
|
+
*/
|
|
4319
|
+
401: ErrorResponse;
|
|
4320
|
+
/**
|
|
4321
|
+
* Request error
|
|
4322
|
+
*/
|
|
4323
|
+
404: ErrorResponse;
|
|
4324
|
+
/**
|
|
4325
|
+
* Request error
|
|
4326
|
+
*/
|
|
4327
|
+
409: ErrorResponse;
|
|
4328
|
+
/**
|
|
4329
|
+
* Request error
|
|
4330
|
+
*/
|
|
4331
|
+
503: ErrorResponse;
|
|
4332
|
+
};
|
|
4333
|
+
type PostPaymentsMeTronTransferError = PostPaymentsMeTronTransferErrors[keyof PostPaymentsMeTronTransferErrors];
|
|
4334
|
+
type PostPaymentsMeTronTransferResponses = {
|
|
4335
|
+
/**
|
|
4336
|
+
* Transfer completed; carries the sender's remaining balance + recipient identity
|
|
4337
|
+
*/
|
|
4338
|
+
200: TronTransferResponse;
|
|
4339
|
+
};
|
|
4340
|
+
type PostPaymentsMeTronTransferResponse = PostPaymentsMeTronTransferResponses[keyof PostPaymentsMeTronTransferResponses];
|
|
4158
4341
|
type GetOauthPaymentsTronBalanceData = {
|
|
4159
4342
|
body?: never;
|
|
4160
4343
|
path?: never;
|
|
@@ -10524,12 +10707,63 @@ declare const zAppPageLinks: z$1.ZodArray<z$1.ZodObject<{
|
|
|
10524
10707
|
order: z$1.ZodInt;
|
|
10525
10708
|
}, z$1.core.$strip>>;
|
|
10526
10709
|
declare const zPublicAppPageStudio: z$1.ZodObject<{
|
|
10710
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
10527
10711
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10528
10712
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10529
10713
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10530
10714
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
10531
10715
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10532
10716
|
}, z$1.core.$strip>;
|
|
10717
|
+
declare const zAppPagePlatforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
10718
|
+
web: "web";
|
|
10719
|
+
ios: "ios";
|
|
10720
|
+
android: "android";
|
|
10721
|
+
pc: "pc";
|
|
10722
|
+
playstation: "playstation";
|
|
10723
|
+
xbox: "xbox";
|
|
10724
|
+
switch: "switch";
|
|
10725
|
+
}>>;
|
|
10726
|
+
declare const zAppPageGameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10727
|
+
single_player: "single_player";
|
|
10728
|
+
multiplayer: "multiplayer";
|
|
10729
|
+
both: "both";
|
|
10730
|
+
}>>;
|
|
10731
|
+
declare const zAppPageAgeRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10732
|
+
everyone: "everyone";
|
|
10733
|
+
"13_plus": "13_plus";
|
|
10734
|
+
"16_plus": "16_plus";
|
|
10735
|
+
"18_plus": "18_plus";
|
|
10736
|
+
}>>;
|
|
10737
|
+
declare const zAppPageLanguages: z$1.ZodArray<z$1.ZodEnum<{
|
|
10738
|
+
id: "id";
|
|
10739
|
+
en: "en";
|
|
10740
|
+
es: "es";
|
|
10741
|
+
fr: "fr";
|
|
10742
|
+
de: "de";
|
|
10743
|
+
pt: "pt";
|
|
10744
|
+
it: "it";
|
|
10745
|
+
ru: "ru";
|
|
10746
|
+
ja: "ja";
|
|
10747
|
+
ko: "ko";
|
|
10748
|
+
zh: "zh";
|
|
10749
|
+
hi: "hi";
|
|
10750
|
+
ar: "ar";
|
|
10751
|
+
tr: "tr";
|
|
10752
|
+
vi: "vi";
|
|
10753
|
+
th: "th";
|
|
10754
|
+
pl: "pl";
|
|
10755
|
+
nl: "nl";
|
|
10756
|
+
}>>;
|
|
10757
|
+
declare const zAppPageReleaseStatus: z$1.ZodEnum<{
|
|
10758
|
+
live: "live";
|
|
10759
|
+
open_beta: "open_beta";
|
|
10760
|
+
coming_soon: "coming_soon";
|
|
10761
|
+
}>;
|
|
10762
|
+
declare const zAppPagePaymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10763
|
+
both: "both";
|
|
10764
|
+
tron: "tron";
|
|
10765
|
+
onchain: "onchain";
|
|
10766
|
+
}>>;
|
|
10533
10767
|
declare const zPublicAppPage: z$1.ZodObject<{
|
|
10534
10768
|
appId: z$1.ZodUUID;
|
|
10535
10769
|
slug: z$1.ZodString;
|
|
@@ -10588,37 +10822,103 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
10588
10822
|
order: z$1.ZodInt;
|
|
10589
10823
|
}, z$1.core.$strip>>;
|
|
10590
10824
|
studio: z$1.ZodObject<{
|
|
10825
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
10591
10826
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10592
10827
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10593
10828
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10594
10829
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
10595
10830
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10596
10831
|
}, z$1.core.$strip>;
|
|
10832
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
10833
|
+
web: "web";
|
|
10834
|
+
ios: "ios";
|
|
10835
|
+
android: "android";
|
|
10836
|
+
pc: "pc";
|
|
10837
|
+
playstation: "playstation";
|
|
10838
|
+
xbox: "xbox";
|
|
10839
|
+
switch: "switch";
|
|
10840
|
+
}>>;
|
|
10841
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10842
|
+
single_player: "single_player";
|
|
10843
|
+
multiplayer: "multiplayer";
|
|
10844
|
+
both: "both";
|
|
10845
|
+
}>>;
|
|
10846
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10847
|
+
everyone: "everyone";
|
|
10848
|
+
"13_plus": "13_plus";
|
|
10849
|
+
"16_plus": "16_plus";
|
|
10850
|
+
"18_plus": "18_plus";
|
|
10851
|
+
}>>;
|
|
10852
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
10853
|
+
id: "id";
|
|
10854
|
+
en: "en";
|
|
10855
|
+
es: "es";
|
|
10856
|
+
fr: "fr";
|
|
10857
|
+
de: "de";
|
|
10858
|
+
pt: "pt";
|
|
10859
|
+
it: "it";
|
|
10860
|
+
ru: "ru";
|
|
10861
|
+
ja: "ja";
|
|
10862
|
+
ko: "ko";
|
|
10863
|
+
zh: "zh";
|
|
10864
|
+
hi: "hi";
|
|
10865
|
+
ar: "ar";
|
|
10866
|
+
tr: "tr";
|
|
10867
|
+
vi: "vi";
|
|
10868
|
+
th: "th";
|
|
10869
|
+
pl: "pl";
|
|
10870
|
+
nl: "nl";
|
|
10871
|
+
}>>;
|
|
10872
|
+
releaseStatus: z$1.ZodEnum<{
|
|
10873
|
+
live: "live";
|
|
10874
|
+
open_beta: "open_beta";
|
|
10875
|
+
coming_soon: "coming_soon";
|
|
10876
|
+
}>;
|
|
10877
|
+
paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10878
|
+
both: "both";
|
|
10879
|
+
tron: "tron";
|
|
10880
|
+
onchain: "onchain";
|
|
10881
|
+
}>>;
|
|
10597
10882
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
10598
10883
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
10599
10884
|
publishedAt: z$1.ZodISODateTime;
|
|
10885
|
+
updatedAt: z$1.ZodISODateTime;
|
|
10600
10886
|
}, z$1.core.$strip>;
|
|
10601
|
-
declare const
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10887
|
+
declare const zReviewSummaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10888
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
10889
|
+
very_positive: "very_positive";
|
|
10890
|
+
positive: "positive";
|
|
10891
|
+
mostly_positive: "mostly_positive";
|
|
10892
|
+
mixed: "mixed";
|
|
10893
|
+
mostly_negative: "mostly_negative";
|
|
10894
|
+
negative: "negative";
|
|
10895
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
10896
|
+
}>>;
|
|
10608
10897
|
declare const zReviewAggregate: z$1.ZodObject<{
|
|
10609
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10610
10898
|
count: z$1.ZodInt;
|
|
10611
|
-
|
|
10612
|
-
|
|
10613
|
-
|
|
10614
|
-
|
|
10615
|
-
|
|
10616
|
-
|
|
10617
|
-
|
|
10899
|
+
recommendedCount: z$1.ZodInt;
|
|
10900
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10901
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10902
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
10903
|
+
very_positive: "very_positive";
|
|
10904
|
+
positive: "positive";
|
|
10905
|
+
mostly_positive: "mostly_positive";
|
|
10906
|
+
mixed: "mixed";
|
|
10907
|
+
mostly_negative: "mostly_negative";
|
|
10908
|
+
negative: "negative";
|
|
10909
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
10910
|
+
}>>;
|
|
10618
10911
|
}, z$1.core.$strip>;
|
|
10619
|
-
declare const
|
|
10912
|
+
declare const zReviewRecommended: z$1.ZodBoolean;
|
|
10620
10913
|
declare const zReviewBody: z$1.ZodString;
|
|
10914
|
+
declare const zReviewReactionCounts: z$1.ZodObject<{
|
|
10915
|
+
helpful: z$1.ZodInt;
|
|
10916
|
+
unhelpful: z$1.ZodInt;
|
|
10917
|
+
funny: z$1.ZodInt;
|
|
10918
|
+
}, z$1.core.$strip>;
|
|
10621
10919
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
10920
|
+
userId: z$1.ZodUUID;
|
|
10921
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10622
10922
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10623
10923
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10624
10924
|
}, z$1.core.$strip>;
|
|
@@ -10629,9 +10929,16 @@ declare const zReviewReply: z$1.ZodNullable<z$1.ZodObject<{
|
|
|
10629
10929
|
}, z$1.core.$strip>>;
|
|
10630
10930
|
declare const zReview: z$1.ZodObject<{
|
|
10631
10931
|
id: z$1.ZodUUID;
|
|
10632
|
-
|
|
10932
|
+
recommended: z$1.ZodBoolean;
|
|
10633
10933
|
body: z$1.ZodString;
|
|
10934
|
+
reactions: z$1.ZodObject<{
|
|
10935
|
+
helpful: z$1.ZodInt;
|
|
10936
|
+
unhelpful: z$1.ZodInt;
|
|
10937
|
+
funny: z$1.ZodInt;
|
|
10938
|
+
}, z$1.core.$strip>;
|
|
10634
10939
|
author: z$1.ZodObject<{
|
|
10940
|
+
userId: z$1.ZodUUID;
|
|
10941
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10635
10942
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10636
10943
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10637
10944
|
}, z$1.core.$strip>;
|
|
@@ -10644,21 +10951,32 @@ declare const zReview: z$1.ZodObject<{
|
|
|
10644
10951
|
}, z$1.core.$strip>;
|
|
10645
10952
|
declare const zReviewListResponse: z$1.ZodObject<{
|
|
10646
10953
|
aggregate: z$1.ZodObject<{
|
|
10647
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10648
10954
|
count: z$1.ZodInt;
|
|
10649
|
-
|
|
10650
|
-
|
|
10651
|
-
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
10955
|
+
recommendedCount: z$1.ZodInt;
|
|
10956
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
10957
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10958
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
10959
|
+
very_positive: "very_positive";
|
|
10960
|
+
positive: "positive";
|
|
10961
|
+
mostly_positive: "mostly_positive";
|
|
10962
|
+
mixed: "mixed";
|
|
10963
|
+
mostly_negative: "mostly_negative";
|
|
10964
|
+
negative: "negative";
|
|
10965
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
10966
|
+
}>>;
|
|
10656
10967
|
}, z$1.core.$strip>;
|
|
10657
10968
|
reviews: z$1.ZodArray<z$1.ZodObject<{
|
|
10658
10969
|
id: z$1.ZodUUID;
|
|
10659
|
-
|
|
10970
|
+
recommended: z$1.ZodBoolean;
|
|
10660
10971
|
body: z$1.ZodString;
|
|
10972
|
+
reactions: z$1.ZodObject<{
|
|
10973
|
+
helpful: z$1.ZodInt;
|
|
10974
|
+
unhelpful: z$1.ZodInt;
|
|
10975
|
+
funny: z$1.ZodInt;
|
|
10976
|
+
}, z$1.core.$strip>;
|
|
10661
10977
|
author: z$1.ZodObject<{
|
|
10978
|
+
userId: z$1.ZodUUID;
|
|
10979
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10662
10980
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10663
10981
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10664
10982
|
}, z$1.core.$strip>;
|
|
@@ -10673,10 +10991,9 @@ declare const zReviewListResponse: z$1.ZodObject<{
|
|
|
10673
10991
|
hasMore: z$1.ZodBoolean;
|
|
10674
10992
|
}, z$1.core.$strip>;
|
|
10675
10993
|
declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
|
|
10994
|
+
helpful: "helpful";
|
|
10676
10995
|
newest: "newest";
|
|
10677
10996
|
oldest: "oldest";
|
|
10678
|
-
highest: "highest";
|
|
10679
|
-
lowest: "lowest";
|
|
10680
10997
|
}>>;
|
|
10681
10998
|
declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10682
10999
|
payment: "payment";
|
|
@@ -10684,7 +11001,7 @@ declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
|
|
|
10684
11001
|
}>>;
|
|
10685
11002
|
declare const zOwnReview: z$1.ZodNullable<z$1.ZodObject<{
|
|
10686
11003
|
id: z$1.ZodUUID;
|
|
10687
|
-
|
|
11004
|
+
recommended: z$1.ZodBoolean;
|
|
10688
11005
|
body: z$1.ZodString;
|
|
10689
11006
|
createdAt: z$1.ZodISODateTime;
|
|
10690
11007
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -10697,7 +11014,7 @@ declare const zMyReviewResponse: z$1.ZodObject<{
|
|
|
10697
11014
|
}>>;
|
|
10698
11015
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
10699
11016
|
id: z$1.ZodUUID;
|
|
10700
|
-
|
|
11017
|
+
recommended: z$1.ZodBoolean;
|
|
10701
11018
|
body: z$1.ZodString;
|
|
10702
11019
|
createdAt: z$1.ZodISODateTime;
|
|
10703
11020
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -10705,9 +11022,50 @@ declare const zMyReviewResponse: z$1.ZodObject<{
|
|
|
10705
11022
|
isAppOwner: z$1.ZodBoolean;
|
|
10706
11023
|
}, z$1.core.$strip>;
|
|
10707
11024
|
declare const zUpsertReviewRequest: z$1.ZodObject<{
|
|
10708
|
-
|
|
11025
|
+
recommended: z$1.ZodBoolean;
|
|
10709
11026
|
body: z$1.ZodString;
|
|
10710
11027
|
}, z$1.core.$strip>;
|
|
11028
|
+
declare const zReviewVote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11029
|
+
helpful: "helpful";
|
|
11030
|
+
unhelpful: "unhelpful";
|
|
11031
|
+
}>>;
|
|
11032
|
+
declare const zMyReviewReaction: z$1.ZodObject<{
|
|
11033
|
+
reviewId: z$1.ZodUUID;
|
|
11034
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11035
|
+
helpful: "helpful";
|
|
11036
|
+
unhelpful: "unhelpful";
|
|
11037
|
+
}>>;
|
|
11038
|
+
funny: z$1.ZodBoolean;
|
|
11039
|
+
}, z$1.core.$strip>;
|
|
11040
|
+
declare const zMyReviewReactionsResponse: z$1.ZodObject<{
|
|
11041
|
+
reactions: z$1.ZodArray<z$1.ZodObject<{
|
|
11042
|
+
reviewId: z$1.ZodUUID;
|
|
11043
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11044
|
+
helpful: "helpful";
|
|
11045
|
+
unhelpful: "unhelpful";
|
|
11046
|
+
}>>;
|
|
11047
|
+
funny: z$1.ZodBoolean;
|
|
11048
|
+
}, z$1.core.$strip>>;
|
|
11049
|
+
}, z$1.core.$strip>;
|
|
11050
|
+
declare const zSetReviewReactionResponse: z$1.ZodObject<{
|
|
11051
|
+
reactions: z$1.ZodObject<{
|
|
11052
|
+
helpful: z$1.ZodInt;
|
|
11053
|
+
unhelpful: z$1.ZodInt;
|
|
11054
|
+
funny: z$1.ZodInt;
|
|
11055
|
+
}, z$1.core.$strip>;
|
|
11056
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11057
|
+
helpful: "helpful";
|
|
11058
|
+
unhelpful: "unhelpful";
|
|
11059
|
+
}>>;
|
|
11060
|
+
funny: z$1.ZodBoolean;
|
|
11061
|
+
}, z$1.core.$strip>;
|
|
11062
|
+
declare const zSetReviewReactionRequest: z$1.ZodObject<{
|
|
11063
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
11064
|
+
helpful: "helpful";
|
|
11065
|
+
unhelpful: "unhelpful";
|
|
11066
|
+
}>>;
|
|
11067
|
+
funny: z$1.ZodBoolean;
|
|
11068
|
+
}, z$1.core.$strip>;
|
|
10711
11069
|
declare const zReviewReplyResponse: z$1.ZodObject<{
|
|
10712
11070
|
developerReply: z$1.ZodNullable<z$1.ZodObject<{
|
|
10713
11071
|
body: z$1.ZodString;
|
|
@@ -11248,6 +11606,19 @@ declare const zActivityRowTronDeposit: z$1.ZodObject<{
|
|
|
11248
11606
|
receiptUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
11249
11607
|
paymentIntentId: z$1.ZodNullable<z$1.ZodString>;
|
|
11250
11608
|
}, z$1.core.$strip>;
|
|
11609
|
+
declare const zActivityTronInvolvedUser: z$1.ZodObject<{
|
|
11610
|
+
userId: z$1.ZodString;
|
|
11611
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
11612
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11613
|
+
role: z$1.ZodEnum<{
|
|
11614
|
+
stake: "stake";
|
|
11615
|
+
payout: "payout";
|
|
11616
|
+
dev_cut: "dev_cut";
|
|
11617
|
+
purchase: "purchase";
|
|
11618
|
+
referral: "referral";
|
|
11619
|
+
}>;
|
|
11620
|
+
amountCents: z$1.ZodInt;
|
|
11621
|
+
}, z$1.core.$strip>;
|
|
11251
11622
|
declare const zActivityRowTronPot: z$1.ZodObject<{
|
|
11252
11623
|
kind: z$1.ZodEnum<{
|
|
11253
11624
|
tron_pot: "tron_pot";
|
|
@@ -11267,6 +11638,10 @@ declare const zActivityRowTronPot: z$1.ZodObject<{
|
|
|
11267
11638
|
referral: "referral";
|
|
11268
11639
|
}>;
|
|
11269
11640
|
amountCents: z$1.ZodInt;
|
|
11641
|
+
usdCents: z$1.ZodInt;
|
|
11642
|
+
status: z$1.ZodEnum<{
|
|
11643
|
+
settled: "settled";
|
|
11644
|
+
}>;
|
|
11270
11645
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
11271
11646
|
id: z$1.ZodString;
|
|
11272
11647
|
name: z$1.ZodString;
|
|
@@ -11274,6 +11649,19 @@ declare const zActivityRowTronPot: z$1.ZodObject<{
|
|
|
11274
11649
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
11275
11650
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
11276
11651
|
}, z$1.core.$strip>>;
|
|
11652
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
11653
|
+
userId: z$1.ZodString;
|
|
11654
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
11655
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11656
|
+
role: z$1.ZodEnum<{
|
|
11657
|
+
stake: "stake";
|
|
11658
|
+
payout: "payout";
|
|
11659
|
+
dev_cut: "dev_cut";
|
|
11660
|
+
purchase: "purchase";
|
|
11661
|
+
referral: "referral";
|
|
11662
|
+
}>;
|
|
11663
|
+
amountCents: z$1.ZodInt;
|
|
11664
|
+
}, z$1.core.$strip>>>>;
|
|
11277
11665
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
11278
11666
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
11279
11667
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -11309,13 +11697,34 @@ declare const zActivityRowTronCashout: z$1.ZodObject<{
|
|
|
11309
11697
|
approved: "approved";
|
|
11310
11698
|
pending: "pending";
|
|
11311
11699
|
failed: "failed";
|
|
11312
|
-
rejected: "rejected";
|
|
11313
11700
|
settled: "settled";
|
|
11701
|
+
rejected: "rejected";
|
|
11314
11702
|
}>;
|
|
11315
11703
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
11316
11704
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
11317
11705
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
11318
11706
|
}, z$1.core.$strip>;
|
|
11707
|
+
declare const zActivityRowTronTransfer: z$1.ZodObject<{
|
|
11708
|
+
kind: z$1.ZodEnum<{
|
|
11709
|
+
tron_transfer: "tron_transfer";
|
|
11710
|
+
}>;
|
|
11711
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
11712
|
+
id: z$1.ZodString;
|
|
11713
|
+
occurredAt: z$1.ZodISODateTime;
|
|
11714
|
+
role: z$1.ZodEnum<{
|
|
11715
|
+
outgoing: "outgoing";
|
|
11716
|
+
incoming: "incoming";
|
|
11717
|
+
}>;
|
|
11718
|
+
amountCents: z$1.ZodInt;
|
|
11719
|
+
usdCents: z$1.ZodInt;
|
|
11720
|
+
status: z$1.ZodEnum<{
|
|
11721
|
+
settled: "settled";
|
|
11722
|
+
}>;
|
|
11723
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
11724
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
11725
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11726
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
11727
|
+
}, z$1.core.$strip>;
|
|
11319
11728
|
declare const zActivityRowReferralEarning: z$1.ZodObject<{
|
|
11320
11729
|
kind: z$1.ZodEnum<{
|
|
11321
11730
|
referral_earning: "referral_earning";
|
|
@@ -11676,6 +12085,10 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11676
12085
|
referral: "referral";
|
|
11677
12086
|
}>;
|
|
11678
12087
|
amountCents: z$1.ZodInt;
|
|
12088
|
+
usdCents: z$1.ZodInt;
|
|
12089
|
+
status: z$1.ZodEnum<{
|
|
12090
|
+
settled: "settled";
|
|
12091
|
+
}>;
|
|
11679
12092
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
11680
12093
|
id: z$1.ZodString;
|
|
11681
12094
|
name: z$1.ZodString;
|
|
@@ -11683,6 +12096,19 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11683
12096
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
11684
12097
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
11685
12098
|
}, z$1.core.$strip>>;
|
|
12099
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
12100
|
+
userId: z$1.ZodString;
|
|
12101
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12102
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12103
|
+
role: z$1.ZodEnum<{
|
|
12104
|
+
stake: "stake";
|
|
12105
|
+
payout: "payout";
|
|
12106
|
+
dev_cut: "dev_cut";
|
|
12107
|
+
purchase: "purchase";
|
|
12108
|
+
referral: "referral";
|
|
12109
|
+
}>;
|
|
12110
|
+
amountCents: z$1.ZodInt;
|
|
12111
|
+
}, z$1.core.$strip>>>>;
|
|
11686
12112
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
11687
12113
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
11688
12114
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -11715,13 +12141,31 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11715
12141
|
approved: "approved";
|
|
11716
12142
|
pending: "pending";
|
|
11717
12143
|
failed: "failed";
|
|
11718
|
-
rejected: "rejected";
|
|
11719
12144
|
settled: "settled";
|
|
12145
|
+
rejected: "rejected";
|
|
11720
12146
|
}>;
|
|
11721
12147
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
11722
12148
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
11723
12149
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
11724
12150
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
12151
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12152
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12153
|
+
id: z$1.ZodString;
|
|
12154
|
+
occurredAt: z$1.ZodISODateTime;
|
|
12155
|
+
role: z$1.ZodEnum<{
|
|
12156
|
+
outgoing: "outgoing";
|
|
12157
|
+
incoming: "incoming";
|
|
12158
|
+
}>;
|
|
12159
|
+
amountCents: z$1.ZodInt;
|
|
12160
|
+
usdCents: z$1.ZodInt;
|
|
12161
|
+
status: z$1.ZodEnum<{
|
|
12162
|
+
settled: "settled";
|
|
12163
|
+
}>;
|
|
12164
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
12165
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
12166
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12167
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
12168
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
11725
12169
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
11726
12170
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
11727
12171
|
id: z$1.ZodString;
|
|
@@ -12081,6 +12525,10 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12081
12525
|
referral: "referral";
|
|
12082
12526
|
}>;
|
|
12083
12527
|
amountCents: z$1.ZodInt;
|
|
12528
|
+
usdCents: z$1.ZodInt;
|
|
12529
|
+
status: z$1.ZodEnum<{
|
|
12530
|
+
settled: "settled";
|
|
12531
|
+
}>;
|
|
12084
12532
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
12085
12533
|
id: z$1.ZodString;
|
|
12086
12534
|
name: z$1.ZodString;
|
|
@@ -12088,6 +12536,19 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12088
12536
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
12089
12537
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
12090
12538
|
}, z$1.core.$strip>>;
|
|
12539
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
12540
|
+
userId: z$1.ZodString;
|
|
12541
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12542
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12543
|
+
role: z$1.ZodEnum<{
|
|
12544
|
+
stake: "stake";
|
|
12545
|
+
payout: "payout";
|
|
12546
|
+
dev_cut: "dev_cut";
|
|
12547
|
+
purchase: "purchase";
|
|
12548
|
+
referral: "referral";
|
|
12549
|
+
}>;
|
|
12550
|
+
amountCents: z$1.ZodInt;
|
|
12551
|
+
}, z$1.core.$strip>>>>;
|
|
12091
12552
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
12092
12553
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
12093
12554
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -12120,13 +12581,31 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12120
12581
|
approved: "approved";
|
|
12121
12582
|
pending: "pending";
|
|
12122
12583
|
failed: "failed";
|
|
12123
|
-
rejected: "rejected";
|
|
12124
12584
|
settled: "settled";
|
|
12585
|
+
rejected: "rejected";
|
|
12125
12586
|
}>;
|
|
12126
12587
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
12127
12588
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
12128
12589
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12129
12590
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
12591
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12592
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12593
|
+
id: z$1.ZodString;
|
|
12594
|
+
occurredAt: z$1.ZodISODateTime;
|
|
12595
|
+
role: z$1.ZodEnum<{
|
|
12596
|
+
outgoing: "outgoing";
|
|
12597
|
+
incoming: "incoming";
|
|
12598
|
+
}>;
|
|
12599
|
+
amountCents: z$1.ZodInt;
|
|
12600
|
+
usdCents: z$1.ZodInt;
|
|
12601
|
+
status: z$1.ZodEnum<{
|
|
12602
|
+
settled: "settled";
|
|
12603
|
+
}>;
|
|
12604
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
12605
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
12606
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12607
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
12608
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
12130
12609
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12131
12610
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12132
12611
|
id: z$1.ZodString;
|
|
@@ -12168,9 +12647,9 @@ declare const zOutstandingResponse: z$1.ZodObject<{
|
|
|
12168
12647
|
declare const zMoonpayAvailabilityResponse: z$1.ZodObject<{
|
|
12169
12648
|
enabled: z$1.ZodBoolean;
|
|
12170
12649
|
direction: z$1.ZodNullable<z$1.ZodEnum<{
|
|
12650
|
+
both: "both";
|
|
12171
12651
|
buy: "buy";
|
|
12172
12652
|
sell: "sell";
|
|
12173
|
-
both: "both";
|
|
12174
12653
|
}>>;
|
|
12175
12654
|
countryCode: z$1.ZodNullable<z$1.ZodString>;
|
|
12176
12655
|
regionSupported: z$1.ZodBoolean;
|
|
@@ -12218,6 +12697,7 @@ declare const zTronLedgerEntry: z$1.ZodObject<{
|
|
|
12218
12697
|
dispute_unfreeze: "dispute_unfreeze";
|
|
12219
12698
|
hosted_billing: "hosted_billing";
|
|
12220
12699
|
store_purchase: "store_purchase";
|
|
12700
|
+
peer_transfer: "peer_transfer";
|
|
12221
12701
|
}>;
|
|
12222
12702
|
amountCents: z$1.ZodInt;
|
|
12223
12703
|
currency: z$1.ZodString;
|
|
@@ -12238,6 +12718,7 @@ declare const zTronLedgerResponse: z$1.ZodObject<{
|
|
|
12238
12718
|
dispute_unfreeze: "dispute_unfreeze";
|
|
12239
12719
|
hosted_billing: "hosted_billing";
|
|
12240
12720
|
store_purchase: "store_purchase";
|
|
12721
|
+
peer_transfer: "peer_transfer";
|
|
12241
12722
|
}>;
|
|
12242
12723
|
amountCents: z$1.ZodInt;
|
|
12243
12724
|
currency: z$1.ZodString;
|
|
@@ -12255,6 +12736,23 @@ declare const zTronDepositResponse: z$1.ZodObject<{
|
|
|
12255
12736
|
declare const zTronDepositRequest: z$1.ZodObject<{
|
|
12256
12737
|
amountCents: z$1.ZodInt;
|
|
12257
12738
|
}, z$1.core.$strip>;
|
|
12739
|
+
declare const zTronTransferResponse: z$1.ZodObject<{
|
|
12740
|
+
status: z$1.ZodEnum<{
|
|
12741
|
+
completed: "completed";
|
|
12742
|
+
}>;
|
|
12743
|
+
amountCents: z$1.ZodInt;
|
|
12744
|
+
balanceCents: z$1.ZodInt;
|
|
12745
|
+
recipient: z$1.ZodObject<{
|
|
12746
|
+
userId: z$1.ZodUUID;
|
|
12747
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12748
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12749
|
+
}, z$1.core.$strip>;
|
|
12750
|
+
}, z$1.core.$strip>;
|
|
12751
|
+
declare const zTronTransferRequest: z$1.ZodObject<{
|
|
12752
|
+
recipientUserId: z$1.ZodUUID;
|
|
12753
|
+
amountCents: z$1.ZodInt;
|
|
12754
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
12755
|
+
}, z$1.core.$strip>;
|
|
12258
12756
|
declare const zTronGameBalanceResponse: z$1.ZodObject<{
|
|
12259
12757
|
balanceCents: z$1.ZodInt;
|
|
12260
12758
|
rakeBps: z$1.ZodInt;
|
|
@@ -12445,8 +12943,8 @@ declare const zTronCashoutItem: z$1.ZodObject<{
|
|
|
12445
12943
|
approved: "approved";
|
|
12446
12944
|
pending: "pending";
|
|
12447
12945
|
failed: "failed";
|
|
12448
|
-
rejected: "rejected";
|
|
12449
12946
|
settled: "settled";
|
|
12947
|
+
rejected: "rejected";
|
|
12450
12948
|
}>;
|
|
12451
12949
|
amountCents: z$1.ZodInt;
|
|
12452
12950
|
feeCents: z$1.ZodInt;
|
|
@@ -12477,8 +12975,8 @@ declare const zTronCashoutListResponse: z$1.ZodObject<{
|
|
|
12477
12975
|
approved: "approved";
|
|
12478
12976
|
pending: "pending";
|
|
12479
12977
|
failed: "failed";
|
|
12480
|
-
rejected: "rejected";
|
|
12481
12978
|
settled: "settled";
|
|
12979
|
+
rejected: "rejected";
|
|
12482
12980
|
}>;
|
|
12483
12981
|
amountCents: z$1.ZodInt;
|
|
12484
12982
|
feeCents: z$1.ZodInt;
|
|
@@ -12501,8 +12999,8 @@ declare const zAdminTronCashoutItem: z$1.ZodObject<{
|
|
|
12501
12999
|
approved: "approved";
|
|
12502
13000
|
pending: "pending";
|
|
12503
13001
|
failed: "failed";
|
|
12504
|
-
rejected: "rejected";
|
|
12505
13002
|
settled: "settled";
|
|
13003
|
+
rejected: "rejected";
|
|
12506
13004
|
}>;
|
|
12507
13005
|
amountCents: z$1.ZodInt;
|
|
12508
13006
|
feeCents: z$1.ZodInt;
|
|
@@ -12531,8 +13029,8 @@ declare const zAdminTronCashoutListResponse: z$1.ZodObject<{
|
|
|
12531
13029
|
approved: "approved";
|
|
12532
13030
|
pending: "pending";
|
|
12533
13031
|
failed: "failed";
|
|
12534
|
-
rejected: "rejected";
|
|
12535
13032
|
settled: "settled";
|
|
13033
|
+
rejected: "rejected";
|
|
12536
13034
|
}>;
|
|
12537
13035
|
amountCents: z$1.ZodInt;
|
|
12538
13036
|
feeCents: z$1.ZodInt;
|
|
@@ -14187,7 +14685,7 @@ declare const zProfileRecentReview: z$1.ZodObject<{
|
|
|
14187
14685
|
appId: z$1.ZodString;
|
|
14188
14686
|
appName: z$1.ZodString;
|
|
14189
14687
|
appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
14190
|
-
|
|
14688
|
+
recommended: z$1.ZodBoolean;
|
|
14191
14689
|
body: z$1.ZodString;
|
|
14192
14690
|
createdAt: z$1.ZodISODateTime;
|
|
14193
14691
|
}, z$1.core.$strip>;
|
|
@@ -14269,7 +14767,7 @@ declare const zPublicProfile: z$1.ZodObject<{
|
|
|
14269
14767
|
appId: z$1.ZodString;
|
|
14270
14768
|
appName: z$1.ZodString;
|
|
14271
14769
|
appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
14272
|
-
|
|
14770
|
+
recommended: z$1.ZodBoolean;
|
|
14273
14771
|
body: z$1.ZodString;
|
|
14274
14772
|
createdAt: z$1.ZodISODateTime;
|
|
14275
14773
|
}, z$1.core.$strip>>;
|
|
@@ -15016,6 +15514,51 @@ declare const zAppPageDraft: z$1.ZodObject<{
|
|
|
15016
15514
|
url: z$1.ZodURL;
|
|
15017
15515
|
order: z$1.ZodInt;
|
|
15018
15516
|
}, z$1.core.$strip>>;
|
|
15517
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
15518
|
+
web: "web";
|
|
15519
|
+
ios: "ios";
|
|
15520
|
+
android: "android";
|
|
15521
|
+
pc: "pc";
|
|
15522
|
+
playstation: "playstation";
|
|
15523
|
+
xbox: "xbox";
|
|
15524
|
+
switch: "switch";
|
|
15525
|
+
}>>;
|
|
15526
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15527
|
+
single_player: "single_player";
|
|
15528
|
+
multiplayer: "multiplayer";
|
|
15529
|
+
both: "both";
|
|
15530
|
+
}>>;
|
|
15531
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15532
|
+
everyone: "everyone";
|
|
15533
|
+
"13_plus": "13_plus";
|
|
15534
|
+
"16_plus": "16_plus";
|
|
15535
|
+
"18_plus": "18_plus";
|
|
15536
|
+
}>>;
|
|
15537
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
15538
|
+
id: "id";
|
|
15539
|
+
en: "en";
|
|
15540
|
+
es: "es";
|
|
15541
|
+
fr: "fr";
|
|
15542
|
+
de: "de";
|
|
15543
|
+
pt: "pt";
|
|
15544
|
+
it: "it";
|
|
15545
|
+
ru: "ru";
|
|
15546
|
+
ja: "ja";
|
|
15547
|
+
ko: "ko";
|
|
15548
|
+
zh: "zh";
|
|
15549
|
+
hi: "hi";
|
|
15550
|
+
ar: "ar";
|
|
15551
|
+
tr: "tr";
|
|
15552
|
+
vi: "vi";
|
|
15553
|
+
th: "th";
|
|
15554
|
+
pl: "pl";
|
|
15555
|
+
nl: "nl";
|
|
15556
|
+
}>>;
|
|
15557
|
+
releaseStatus: z$1.ZodEnum<{
|
|
15558
|
+
live: "live";
|
|
15559
|
+
open_beta: "open_beta";
|
|
15560
|
+
coming_soon: "coming_soon";
|
|
15561
|
+
}>;
|
|
15019
15562
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15020
15563
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15021
15564
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -15079,6 +15622,51 @@ declare const zUpdateAppPage: z$1.ZodObject<{
|
|
|
15079
15622
|
url: z$1.ZodURL;
|
|
15080
15623
|
order: z$1.ZodInt;
|
|
15081
15624
|
}, z$1.core.$strip>>>;
|
|
15625
|
+
platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
15626
|
+
web: "web";
|
|
15627
|
+
ios: "ios";
|
|
15628
|
+
android: "android";
|
|
15629
|
+
pc: "pc";
|
|
15630
|
+
playstation: "playstation";
|
|
15631
|
+
xbox: "xbox";
|
|
15632
|
+
switch: "switch";
|
|
15633
|
+
}>>>;
|
|
15634
|
+
gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15635
|
+
single_player: "single_player";
|
|
15636
|
+
multiplayer: "multiplayer";
|
|
15637
|
+
both: "both";
|
|
15638
|
+
}>>>;
|
|
15639
|
+
ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15640
|
+
everyone: "everyone";
|
|
15641
|
+
"13_plus": "13_plus";
|
|
15642
|
+
"16_plus": "16_plus";
|
|
15643
|
+
"18_plus": "18_plus";
|
|
15644
|
+
}>>>;
|
|
15645
|
+
languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
15646
|
+
id: "id";
|
|
15647
|
+
en: "en";
|
|
15648
|
+
es: "es";
|
|
15649
|
+
fr: "fr";
|
|
15650
|
+
de: "de";
|
|
15651
|
+
pt: "pt";
|
|
15652
|
+
it: "it";
|
|
15653
|
+
ru: "ru";
|
|
15654
|
+
ja: "ja";
|
|
15655
|
+
ko: "ko";
|
|
15656
|
+
zh: "zh";
|
|
15657
|
+
hi: "hi";
|
|
15658
|
+
ar: "ar";
|
|
15659
|
+
tr: "tr";
|
|
15660
|
+
vi: "vi";
|
|
15661
|
+
th: "th";
|
|
15662
|
+
pl: "pl";
|
|
15663
|
+
nl: "nl";
|
|
15664
|
+
}>>>;
|
|
15665
|
+
releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
15666
|
+
live: "live";
|
|
15667
|
+
open_beta: "open_beta";
|
|
15668
|
+
coming_soon: "coming_soon";
|
|
15669
|
+
}>>;
|
|
15082
15670
|
}, z$1.core.$strip>;
|
|
15083
15671
|
declare const zAppPageGalleryUploadResponse: z$1.ZodObject<{
|
|
15084
15672
|
url: z$1.ZodURL;
|
|
@@ -16975,25 +17563,76 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
16975
17563
|
order: z$1.ZodInt;
|
|
16976
17564
|
}, z$1.core.$strip>>;
|
|
16977
17565
|
studio: z$1.ZodObject<{
|
|
17566
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
16978
17567
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
16979
17568
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16980
17569
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16981
17570
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
16982
17571
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16983
17572
|
}, z$1.core.$strip>;
|
|
17573
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
17574
|
+
web: "web";
|
|
17575
|
+
ios: "ios";
|
|
17576
|
+
android: "android";
|
|
17577
|
+
pc: "pc";
|
|
17578
|
+
playstation: "playstation";
|
|
17579
|
+
xbox: "xbox";
|
|
17580
|
+
switch: "switch";
|
|
17581
|
+
}>>;
|
|
17582
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17583
|
+
single_player: "single_player";
|
|
17584
|
+
multiplayer: "multiplayer";
|
|
17585
|
+
both: "both";
|
|
17586
|
+
}>>;
|
|
17587
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17588
|
+
everyone: "everyone";
|
|
17589
|
+
"13_plus": "13_plus";
|
|
17590
|
+
"16_plus": "16_plus";
|
|
17591
|
+
"18_plus": "18_plus";
|
|
17592
|
+
}>>;
|
|
17593
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
17594
|
+
id: "id";
|
|
17595
|
+
en: "en";
|
|
17596
|
+
es: "es";
|
|
17597
|
+
fr: "fr";
|
|
17598
|
+
de: "de";
|
|
17599
|
+
pt: "pt";
|
|
17600
|
+
it: "it";
|
|
17601
|
+
ru: "ru";
|
|
17602
|
+
ja: "ja";
|
|
17603
|
+
ko: "ko";
|
|
17604
|
+
zh: "zh";
|
|
17605
|
+
hi: "hi";
|
|
17606
|
+
ar: "ar";
|
|
17607
|
+
tr: "tr";
|
|
17608
|
+
vi: "vi";
|
|
17609
|
+
th: "th";
|
|
17610
|
+
pl: "pl";
|
|
17611
|
+
nl: "nl";
|
|
17612
|
+
}>>;
|
|
17613
|
+
releaseStatus: z$1.ZodEnum<{
|
|
17614
|
+
live: "live";
|
|
17615
|
+
open_beta: "open_beta";
|
|
17616
|
+
coming_soon: "coming_soon";
|
|
17617
|
+
}>;
|
|
17618
|
+
paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17619
|
+
both: "both";
|
|
17620
|
+
tron: "tron";
|
|
17621
|
+
onchain: "onchain";
|
|
17622
|
+
}>>;
|
|
16984
17623
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
16985
17624
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
16986
17625
|
publishedAt: z$1.ZodISODateTime;
|
|
17626
|
+
updatedAt: z$1.ZodISODateTime;
|
|
16987
17627
|
}, z$1.core.$strip>;
|
|
16988
17628
|
declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
|
|
16989
17629
|
slug: z$1.ZodString;
|
|
16990
17630
|
}, z$1.core.$strip>;
|
|
16991
17631
|
declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
|
|
16992
17632
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
17633
|
+
helpful: "helpful";
|
|
16993
17634
|
newest: "newest";
|
|
16994
17635
|
oldest: "oldest";
|
|
16995
|
-
highest: "highest";
|
|
16996
|
-
lowest: "lowest";
|
|
16997
17636
|
}>>>;
|
|
16998
17637
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
16999
17638
|
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
@@ -17003,21 +17642,32 @@ declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
|
|
|
17003
17642
|
*/
|
|
17004
17643
|
declare const zGetPublicAppsBySlugReviewsResponse: z$1.ZodObject<{
|
|
17005
17644
|
aggregate: z$1.ZodObject<{
|
|
17006
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17007
17645
|
count: z$1.ZodInt;
|
|
17008
|
-
|
|
17009
|
-
|
|
17010
|
-
|
|
17011
|
-
|
|
17012
|
-
|
|
17013
|
-
|
|
17014
|
-
|
|
17646
|
+
recommendedCount: z$1.ZodInt;
|
|
17647
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17648
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17649
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
17650
|
+
very_positive: "very_positive";
|
|
17651
|
+
positive: "positive";
|
|
17652
|
+
mostly_positive: "mostly_positive";
|
|
17653
|
+
mixed: "mixed";
|
|
17654
|
+
mostly_negative: "mostly_negative";
|
|
17655
|
+
negative: "negative";
|
|
17656
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
17657
|
+
}>>;
|
|
17015
17658
|
}, z$1.core.$strip>;
|
|
17016
17659
|
reviews: z$1.ZodArray<z$1.ZodObject<{
|
|
17017
17660
|
id: z$1.ZodUUID;
|
|
17018
|
-
|
|
17661
|
+
recommended: z$1.ZodBoolean;
|
|
17019
17662
|
body: z$1.ZodString;
|
|
17663
|
+
reactions: z$1.ZodObject<{
|
|
17664
|
+
helpful: z$1.ZodInt;
|
|
17665
|
+
unhelpful: z$1.ZodInt;
|
|
17666
|
+
funny: z$1.ZodInt;
|
|
17667
|
+
}, z$1.core.$strip>;
|
|
17020
17668
|
author: z$1.ZodObject<{
|
|
17669
|
+
userId: z$1.ZodUUID;
|
|
17670
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
17021
17671
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17022
17672
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17023
17673
|
}, z$1.core.$strip>;
|
|
@@ -17045,7 +17695,7 @@ declare const zDeleteMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17045
17695
|
}>>;
|
|
17046
17696
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
17047
17697
|
id: z$1.ZodUUID;
|
|
17048
|
-
|
|
17698
|
+
recommended: z$1.ZodBoolean;
|
|
17049
17699
|
body: z$1.ZodString;
|
|
17050
17700
|
createdAt: z$1.ZodISODateTime;
|
|
17051
17701
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -17066,7 +17716,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17066
17716
|
}>>;
|
|
17067
17717
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
17068
17718
|
id: z$1.ZodUUID;
|
|
17069
|
-
|
|
17719
|
+
recommended: z$1.ZodBoolean;
|
|
17070
17720
|
body: z$1.ZodString;
|
|
17071
17721
|
createdAt: z$1.ZodISODateTime;
|
|
17072
17722
|
updatedAt: z$1.ZodISODateTime;
|
|
@@ -17074,7 +17724,7 @@ declare const zGetMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17074
17724
|
isAppOwner: z$1.ZodBoolean;
|
|
17075
17725
|
}, z$1.core.$strip>;
|
|
17076
17726
|
declare const zPutMeReviewsBySlugBody: z$1.ZodObject<{
|
|
17077
|
-
|
|
17727
|
+
recommended: z$1.ZodBoolean;
|
|
17078
17728
|
body: z$1.ZodString;
|
|
17079
17729
|
}, z$1.core.$strip>;
|
|
17080
17730
|
declare const zPutMeReviewsBySlugPath: z$1.ZodObject<{
|
|
@@ -17091,22 +17741,63 @@ declare const zPutMeReviewsBySlugResponse: z$1.ZodObject<{
|
|
|
17091
17741
|
}>>;
|
|
17092
17742
|
review: z$1.ZodNullable<z$1.ZodObject<{
|
|
17093
17743
|
id: z$1.ZodUUID;
|
|
17094
|
-
|
|
17744
|
+
recommended: z$1.ZodBoolean;
|
|
17095
17745
|
body: z$1.ZodString;
|
|
17096
17746
|
createdAt: z$1.ZodISODateTime;
|
|
17097
17747
|
updatedAt: z$1.ZodISODateTime;
|
|
17098
17748
|
}, z$1.core.$strip>>;
|
|
17099
17749
|
isAppOwner: z$1.ZodBoolean;
|
|
17100
17750
|
}, z$1.core.$strip>;
|
|
17751
|
+
declare const zGetMeReviewsBySlugReactionsPath: z$1.ZodObject<{
|
|
17752
|
+
slug: z$1.ZodString;
|
|
17753
|
+
}, z$1.core.$strip>;
|
|
17754
|
+
/**
|
|
17755
|
+
* The caller's per-review reactions
|
|
17756
|
+
*/
|
|
17757
|
+
declare const zGetMeReviewsBySlugReactionsResponse: z$1.ZodObject<{
|
|
17758
|
+
reactions: z$1.ZodArray<z$1.ZodObject<{
|
|
17759
|
+
reviewId: z$1.ZodUUID;
|
|
17760
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17761
|
+
helpful: "helpful";
|
|
17762
|
+
unhelpful: "unhelpful";
|
|
17763
|
+
}>>;
|
|
17764
|
+
funny: z$1.ZodBoolean;
|
|
17765
|
+
}, z$1.core.$strip>>;
|
|
17766
|
+
}, z$1.core.$strip>;
|
|
17767
|
+
declare const zPostMeReviewsBySlugReactionsByReviewIdBody: z$1.ZodObject<{
|
|
17768
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17769
|
+
helpful: "helpful";
|
|
17770
|
+
unhelpful: "unhelpful";
|
|
17771
|
+
}>>;
|
|
17772
|
+
funny: z$1.ZodBoolean;
|
|
17773
|
+
}, z$1.core.$strip>;
|
|
17774
|
+
declare const zPostMeReviewsBySlugReactionsByReviewIdPath: z$1.ZodObject<{
|
|
17775
|
+
slug: z$1.ZodString;
|
|
17776
|
+
reviewId: z$1.ZodUUID;
|
|
17777
|
+
}, z$1.core.$strip>;
|
|
17778
|
+
/**
|
|
17779
|
+
* The review's updated reaction counts + the caller's stored state
|
|
17780
|
+
*/
|
|
17781
|
+
declare const zPostMeReviewsBySlugReactionsByReviewIdResponse: z$1.ZodObject<{
|
|
17782
|
+
reactions: z$1.ZodObject<{
|
|
17783
|
+
helpful: z$1.ZodInt;
|
|
17784
|
+
unhelpful: z$1.ZodInt;
|
|
17785
|
+
funny: z$1.ZodInt;
|
|
17786
|
+
}, z$1.core.$strip>;
|
|
17787
|
+
vote: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17788
|
+
helpful: "helpful";
|
|
17789
|
+
unhelpful: "unhelpful";
|
|
17790
|
+
}>>;
|
|
17791
|
+
funny: z$1.ZodBoolean;
|
|
17792
|
+
}, z$1.core.$strip>;
|
|
17101
17793
|
declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
|
|
17102
17794
|
appId: z$1.ZodUUID;
|
|
17103
17795
|
}, z$1.core.$strip>;
|
|
17104
17796
|
declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
|
|
17105
17797
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
17798
|
+
helpful: "helpful";
|
|
17106
17799
|
newest: "newest";
|
|
17107
17800
|
oldest: "oldest";
|
|
17108
|
-
highest: "highest";
|
|
17109
|
-
lowest: "lowest";
|
|
17110
17801
|
}>>>;
|
|
17111
17802
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
17112
17803
|
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
@@ -17116,21 +17807,32 @@ declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
|
|
|
17116
17807
|
*/
|
|
17117
17808
|
declare const zGetMeDeveloperAppsByAppIdReviewsResponse: z$1.ZodObject<{
|
|
17118
17809
|
aggregate: z$1.ZodObject<{
|
|
17119
|
-
average: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17120
17810
|
count: z$1.ZodInt;
|
|
17121
|
-
|
|
17122
|
-
|
|
17123
|
-
|
|
17124
|
-
|
|
17125
|
-
|
|
17126
|
-
|
|
17127
|
-
|
|
17811
|
+
recommendedCount: z$1.ZodInt;
|
|
17812
|
+
recommendedPct: z$1.ZodNullable<z$1.ZodNumber>;
|
|
17813
|
+
summaryLabel: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17814
|
+
overwhelmingly_positive: "overwhelmingly_positive";
|
|
17815
|
+
very_positive: "very_positive";
|
|
17816
|
+
positive: "positive";
|
|
17817
|
+
mostly_positive: "mostly_positive";
|
|
17818
|
+
mixed: "mixed";
|
|
17819
|
+
mostly_negative: "mostly_negative";
|
|
17820
|
+
negative: "negative";
|
|
17821
|
+
overwhelmingly_negative: "overwhelmingly_negative";
|
|
17822
|
+
}>>;
|
|
17128
17823
|
}, z$1.core.$strip>;
|
|
17129
17824
|
reviews: z$1.ZodArray<z$1.ZodObject<{
|
|
17130
17825
|
id: z$1.ZodUUID;
|
|
17131
|
-
|
|
17826
|
+
recommended: z$1.ZodBoolean;
|
|
17132
17827
|
body: z$1.ZodString;
|
|
17828
|
+
reactions: z$1.ZodObject<{
|
|
17829
|
+
helpful: z$1.ZodInt;
|
|
17830
|
+
unhelpful: z$1.ZodInt;
|
|
17831
|
+
funny: z$1.ZodInt;
|
|
17832
|
+
}, z$1.core.$strip>;
|
|
17133
17833
|
author: z$1.ZodObject<{
|
|
17834
|
+
userId: z$1.ZodUUID;
|
|
17835
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
17134
17836
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17135
17837
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17136
17838
|
}, z$1.core.$strip>;
|
|
@@ -17695,6 +18397,10 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17695
18397
|
referral: "referral";
|
|
17696
18398
|
}>;
|
|
17697
18399
|
amountCents: z$1.ZodInt;
|
|
18400
|
+
usdCents: z$1.ZodInt;
|
|
18401
|
+
status: z$1.ZodEnum<{
|
|
18402
|
+
settled: "settled";
|
|
18403
|
+
}>;
|
|
17698
18404
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
17699
18405
|
id: z$1.ZodString;
|
|
17700
18406
|
name: z$1.ZodString;
|
|
@@ -17702,6 +18408,19 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17702
18408
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
17703
18409
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17704
18410
|
}, z$1.core.$strip>>;
|
|
18411
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
18412
|
+
userId: z$1.ZodString;
|
|
18413
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
18414
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18415
|
+
role: z$1.ZodEnum<{
|
|
18416
|
+
stake: "stake";
|
|
18417
|
+
payout: "payout";
|
|
18418
|
+
dev_cut: "dev_cut";
|
|
18419
|
+
purchase: "purchase";
|
|
18420
|
+
referral: "referral";
|
|
18421
|
+
}>;
|
|
18422
|
+
amountCents: z$1.ZodInt;
|
|
18423
|
+
}, z$1.core.$strip>>>>;
|
|
17705
18424
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
17706
18425
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
17707
18426
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -17734,13 +18453,31 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17734
18453
|
approved: "approved";
|
|
17735
18454
|
pending: "pending";
|
|
17736
18455
|
failed: "failed";
|
|
17737
|
-
rejected: "rejected";
|
|
17738
18456
|
settled: "settled";
|
|
18457
|
+
rejected: "rejected";
|
|
17739
18458
|
}>;
|
|
17740
18459
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
17741
18460
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
17742
18461
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
17743
18462
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
18463
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18464
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18465
|
+
id: z$1.ZodString;
|
|
18466
|
+
occurredAt: z$1.ZodISODateTime;
|
|
18467
|
+
role: z$1.ZodEnum<{
|
|
18468
|
+
outgoing: "outgoing";
|
|
18469
|
+
incoming: "incoming";
|
|
18470
|
+
}>;
|
|
18471
|
+
amountCents: z$1.ZodInt;
|
|
18472
|
+
usdCents: z$1.ZodInt;
|
|
18473
|
+
status: z$1.ZodEnum<{
|
|
18474
|
+
settled: "settled";
|
|
18475
|
+
}>;
|
|
18476
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
18477
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
18478
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18479
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
18480
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
17744
18481
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
17745
18482
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
17746
18483
|
id: z$1.ZodString;
|
|
@@ -18110,6 +18847,10 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18110
18847
|
referral: "referral";
|
|
18111
18848
|
}>;
|
|
18112
18849
|
amountCents: z$1.ZodInt;
|
|
18850
|
+
usdCents: z$1.ZodInt;
|
|
18851
|
+
status: z$1.ZodEnum<{
|
|
18852
|
+
settled: "settled";
|
|
18853
|
+
}>;
|
|
18113
18854
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
18114
18855
|
id: z$1.ZodString;
|
|
18115
18856
|
name: z$1.ZodString;
|
|
@@ -18117,6 +18858,19 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18117
18858
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
18118
18859
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
18119
18860
|
}, z$1.core.$strip>>;
|
|
18861
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
18862
|
+
userId: z$1.ZodString;
|
|
18863
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
18864
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18865
|
+
role: z$1.ZodEnum<{
|
|
18866
|
+
stake: "stake";
|
|
18867
|
+
payout: "payout";
|
|
18868
|
+
dev_cut: "dev_cut";
|
|
18869
|
+
purchase: "purchase";
|
|
18870
|
+
referral: "referral";
|
|
18871
|
+
}>;
|
|
18872
|
+
amountCents: z$1.ZodInt;
|
|
18873
|
+
}, z$1.core.$strip>>>>;
|
|
18120
18874
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
18121
18875
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
18122
18876
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -18149,13 +18903,31 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18149
18903
|
approved: "approved";
|
|
18150
18904
|
pending: "pending";
|
|
18151
18905
|
failed: "failed";
|
|
18152
|
-
rejected: "rejected";
|
|
18153
18906
|
settled: "settled";
|
|
18907
|
+
rejected: "rejected";
|
|
18154
18908
|
}>;
|
|
18155
18909
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
18156
18910
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
18157
18911
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
18158
18912
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
18913
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18914
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18915
|
+
id: z$1.ZodString;
|
|
18916
|
+
occurredAt: z$1.ZodISODateTime;
|
|
18917
|
+
role: z$1.ZodEnum<{
|
|
18918
|
+
outgoing: "outgoing";
|
|
18919
|
+
incoming: "incoming";
|
|
18920
|
+
}>;
|
|
18921
|
+
amountCents: z$1.ZodInt;
|
|
18922
|
+
usdCents: z$1.ZodInt;
|
|
18923
|
+
status: z$1.ZodEnum<{
|
|
18924
|
+
settled: "settled";
|
|
18925
|
+
}>;
|
|
18926
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
18927
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
18928
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18929
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
18930
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
18159
18931
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18160
18932
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18161
18933
|
id: z$1.ZodString;
|
|
@@ -18199,9 +18971,9 @@ declare const zGetPaymentsMeOutstandingResponse: z$1.ZodObject<{
|
|
|
18199
18971
|
declare const zGetPaymentsMeMoonpayAvailabilityResponse: z$1.ZodObject<{
|
|
18200
18972
|
enabled: z$1.ZodBoolean;
|
|
18201
18973
|
direction: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18974
|
+
both: "both";
|
|
18202
18975
|
buy: "buy";
|
|
18203
18976
|
sell: "sell";
|
|
18204
|
-
both: "both";
|
|
18205
18977
|
}>>;
|
|
18206
18978
|
countryCode: z$1.ZodNullable<z$1.ZodString>;
|
|
18207
18979
|
regionSupported: z$1.ZodBoolean;
|
|
@@ -18265,6 +19037,7 @@ declare const zGetPaymentsMeTronLedgerResponse: z$1.ZodObject<{
|
|
|
18265
19037
|
dispute_unfreeze: "dispute_unfreeze";
|
|
18266
19038
|
hosted_billing: "hosted_billing";
|
|
18267
19039
|
store_purchase: "store_purchase";
|
|
19040
|
+
peer_transfer: "peer_transfer";
|
|
18268
19041
|
}>;
|
|
18269
19042
|
amountCents: z$1.ZodInt;
|
|
18270
19043
|
currency: z$1.ZodString;
|
|
@@ -18285,6 +19058,26 @@ declare const zPostPaymentsMeTronDepositResponse: z$1.ZodObject<{
|
|
|
18285
19058
|
currency: z$1.ZodString;
|
|
18286
19059
|
depositId: z$1.ZodUUID;
|
|
18287
19060
|
}, z$1.core.$strip>;
|
|
19061
|
+
declare const zPostPaymentsMeTronTransferBody: z$1.ZodObject<{
|
|
19062
|
+
recipientUserId: z$1.ZodUUID;
|
|
19063
|
+
amountCents: z$1.ZodInt;
|
|
19064
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
19065
|
+
}, z$1.core.$strip>;
|
|
19066
|
+
/**
|
|
19067
|
+
* Transfer completed; carries the sender's remaining balance + recipient identity
|
|
19068
|
+
*/
|
|
19069
|
+
declare const zPostPaymentsMeTronTransferResponse: z$1.ZodObject<{
|
|
19070
|
+
status: z$1.ZodEnum<{
|
|
19071
|
+
completed: "completed";
|
|
19072
|
+
}>;
|
|
19073
|
+
amountCents: z$1.ZodInt;
|
|
19074
|
+
balanceCents: z$1.ZodInt;
|
|
19075
|
+
recipient: z$1.ZodObject<{
|
|
19076
|
+
userId: z$1.ZodUUID;
|
|
19077
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
19078
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
19079
|
+
}, z$1.core.$strip>;
|
|
19080
|
+
}, z$1.core.$strip>;
|
|
18288
19081
|
/**
|
|
18289
19082
|
* The caller's spendable TRON balance in cents
|
|
18290
19083
|
*/
|
|
@@ -18455,8 +19248,8 @@ declare const zGetPaymentsMeTronCashoutsResponse: z$1.ZodObject<{
|
|
|
18455
19248
|
approved: "approved";
|
|
18456
19249
|
pending: "pending";
|
|
18457
19250
|
failed: "failed";
|
|
18458
|
-
rejected: "rejected";
|
|
18459
19251
|
settled: "settled";
|
|
19252
|
+
rejected: "rejected";
|
|
18460
19253
|
}>;
|
|
18461
19254
|
amountCents: z$1.ZodInt;
|
|
18462
19255
|
feeCents: z$1.ZodInt;
|
|
@@ -18490,8 +19283,8 @@ declare const zPostPaymentsMeTronCashoutsResponse: z$1.ZodObject<{
|
|
|
18490
19283
|
approved: "approved";
|
|
18491
19284
|
pending: "pending";
|
|
18492
19285
|
failed: "failed";
|
|
18493
|
-
rejected: "rejected";
|
|
18494
19286
|
settled: "settled";
|
|
19287
|
+
rejected: "rejected";
|
|
18495
19288
|
}>;
|
|
18496
19289
|
amountCents: z$1.ZodInt;
|
|
18497
19290
|
feeCents: z$1.ZodInt;
|
|
@@ -18517,8 +19310,8 @@ declare const zGetAdminTronCashoutsResponse: z$1.ZodObject<{
|
|
|
18517
19310
|
approved: "approved";
|
|
18518
19311
|
pending: "pending";
|
|
18519
19312
|
failed: "failed";
|
|
18520
|
-
rejected: "rejected";
|
|
18521
19313
|
settled: "settled";
|
|
19314
|
+
rejected: "rejected";
|
|
18522
19315
|
}>;
|
|
18523
19316
|
amountCents: z$1.ZodInt;
|
|
18524
19317
|
feeCents: z$1.ZodInt;
|
|
@@ -18550,8 +19343,8 @@ declare const zPostAdminTronCashoutsByIdApproveResponse: z$1.ZodObject<{
|
|
|
18550
19343
|
approved: "approved";
|
|
18551
19344
|
pending: "pending";
|
|
18552
19345
|
failed: "failed";
|
|
18553
|
-
rejected: "rejected";
|
|
18554
19346
|
settled: "settled";
|
|
19347
|
+
rejected: "rejected";
|
|
18555
19348
|
}>;
|
|
18556
19349
|
amountCents: z$1.ZodInt;
|
|
18557
19350
|
feeCents: z$1.ZodInt;
|
|
@@ -18585,8 +19378,8 @@ declare const zPostAdminTronCashoutsByIdRejectResponse: z$1.ZodObject<{
|
|
|
18585
19378
|
approved: "approved";
|
|
18586
19379
|
pending: "pending";
|
|
18587
19380
|
failed: "failed";
|
|
18588
|
-
rejected: "rejected";
|
|
18589
19381
|
settled: "settled";
|
|
19382
|
+
rejected: "rejected";
|
|
18590
19383
|
}>;
|
|
18591
19384
|
amountCents: z$1.ZodInt;
|
|
18592
19385
|
feeCents: z$1.ZodInt;
|
|
@@ -20466,7 +21259,7 @@ declare const zGetUsersByHandleResponse: z$1.ZodObject<{
|
|
|
20466
21259
|
appId: z$1.ZodString;
|
|
20467
21260
|
appName: z$1.ZodString;
|
|
20468
21261
|
appLogoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
20469
|
-
|
|
21262
|
+
recommended: z$1.ZodBoolean;
|
|
20470
21263
|
body: z$1.ZodString;
|
|
20471
21264
|
createdAt: z$1.ZodISODateTime;
|
|
20472
21265
|
}, z$1.core.$strip>>;
|
|
@@ -21116,6 +21909,10 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21116
21909
|
referral: "referral";
|
|
21117
21910
|
}>;
|
|
21118
21911
|
amountCents: z$1.ZodInt;
|
|
21912
|
+
usdCents: z$1.ZodInt;
|
|
21913
|
+
status: z$1.ZodEnum<{
|
|
21914
|
+
settled: "settled";
|
|
21915
|
+
}>;
|
|
21119
21916
|
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
21120
21917
|
id: z$1.ZodString;
|
|
21121
21918
|
name: z$1.ZodString;
|
|
@@ -21123,6 +21920,19 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21123
21920
|
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
21124
21921
|
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
21125
21922
|
}, z$1.core.$strip>>;
|
|
21923
|
+
involvedUsers: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodObject<{
|
|
21924
|
+
userId: z$1.ZodString;
|
|
21925
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
21926
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
21927
|
+
role: z$1.ZodEnum<{
|
|
21928
|
+
stake: "stake";
|
|
21929
|
+
payout: "payout";
|
|
21930
|
+
dev_cut: "dev_cut";
|
|
21931
|
+
purchase: "purchase";
|
|
21932
|
+
referral: "referral";
|
|
21933
|
+
}>;
|
|
21934
|
+
amountCents: z$1.ZodInt;
|
|
21935
|
+
}, z$1.core.$strip>>>>;
|
|
21126
21936
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
21127
21937
|
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
21128
21938
|
title: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -21155,13 +21965,31 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21155
21965
|
approved: "approved";
|
|
21156
21966
|
pending: "pending";
|
|
21157
21967
|
failed: "failed";
|
|
21158
|
-
rejected: "rejected";
|
|
21159
21968
|
settled: "settled";
|
|
21969
|
+
rejected: "rejected";
|
|
21160
21970
|
}>;
|
|
21161
21971
|
stripeTransferId: z$1.ZodNullable<z$1.ZodString>;
|
|
21162
21972
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
21163
21973
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21164
21974
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
21975
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21976
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
21977
|
+
id: z$1.ZodString;
|
|
21978
|
+
occurredAt: z$1.ZodISODateTime;
|
|
21979
|
+
role: z$1.ZodEnum<{
|
|
21980
|
+
outgoing: "outgoing";
|
|
21981
|
+
incoming: "incoming";
|
|
21982
|
+
}>;
|
|
21983
|
+
amountCents: z$1.ZodInt;
|
|
21984
|
+
usdCents: z$1.ZodInt;
|
|
21985
|
+
status: z$1.ZodEnum<{
|
|
21986
|
+
settled: "settled";
|
|
21987
|
+
}>;
|
|
21988
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
21989
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
21990
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
21991
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
21992
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
21165
21993
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21166
21994
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
21167
21995
|
id: z$1.ZodString;
|
|
@@ -21698,6 +22526,51 @@ declare const zGetMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
|
|
|
21698
22526
|
url: z$1.ZodURL;
|
|
21699
22527
|
order: z$1.ZodInt;
|
|
21700
22528
|
}, z$1.core.$strip>>;
|
|
22529
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22530
|
+
web: "web";
|
|
22531
|
+
ios: "ios";
|
|
22532
|
+
android: "android";
|
|
22533
|
+
pc: "pc";
|
|
22534
|
+
playstation: "playstation";
|
|
22535
|
+
xbox: "xbox";
|
|
22536
|
+
switch: "switch";
|
|
22537
|
+
}>>;
|
|
22538
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22539
|
+
single_player: "single_player";
|
|
22540
|
+
multiplayer: "multiplayer";
|
|
22541
|
+
both: "both";
|
|
22542
|
+
}>>;
|
|
22543
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22544
|
+
everyone: "everyone";
|
|
22545
|
+
"13_plus": "13_plus";
|
|
22546
|
+
"16_plus": "16_plus";
|
|
22547
|
+
"18_plus": "18_plus";
|
|
22548
|
+
}>>;
|
|
22549
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22550
|
+
id: "id";
|
|
22551
|
+
en: "en";
|
|
22552
|
+
es: "es";
|
|
22553
|
+
fr: "fr";
|
|
22554
|
+
de: "de";
|
|
22555
|
+
pt: "pt";
|
|
22556
|
+
it: "it";
|
|
22557
|
+
ru: "ru";
|
|
22558
|
+
ja: "ja";
|
|
22559
|
+
ko: "ko";
|
|
22560
|
+
zh: "zh";
|
|
22561
|
+
hi: "hi";
|
|
22562
|
+
ar: "ar";
|
|
22563
|
+
tr: "tr";
|
|
22564
|
+
vi: "vi";
|
|
22565
|
+
th: "th";
|
|
22566
|
+
pl: "pl";
|
|
22567
|
+
nl: "nl";
|
|
22568
|
+
}>>;
|
|
22569
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22570
|
+
live: "live";
|
|
22571
|
+
open_beta: "open_beta";
|
|
22572
|
+
coming_soon: "coming_soon";
|
|
22573
|
+
}>;
|
|
21701
22574
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21702
22575
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21703
22576
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -21761,6 +22634,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageBody: z$1.ZodObject<{
|
|
|
21761
22634
|
url: z$1.ZodURL;
|
|
21762
22635
|
order: z$1.ZodInt;
|
|
21763
22636
|
}, z$1.core.$strip>>>;
|
|
22637
|
+
platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
22638
|
+
web: "web";
|
|
22639
|
+
ios: "ios";
|
|
22640
|
+
android: "android";
|
|
22641
|
+
pc: "pc";
|
|
22642
|
+
playstation: "playstation";
|
|
22643
|
+
xbox: "xbox";
|
|
22644
|
+
switch: "switch";
|
|
22645
|
+
}>>>;
|
|
22646
|
+
gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
22647
|
+
single_player: "single_player";
|
|
22648
|
+
multiplayer: "multiplayer";
|
|
22649
|
+
both: "both";
|
|
22650
|
+
}>>>;
|
|
22651
|
+
ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
22652
|
+
everyone: "everyone";
|
|
22653
|
+
"13_plus": "13_plus";
|
|
22654
|
+
"16_plus": "16_plus";
|
|
22655
|
+
"18_plus": "18_plus";
|
|
22656
|
+
}>>>;
|
|
22657
|
+
languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
22658
|
+
id: "id";
|
|
22659
|
+
en: "en";
|
|
22660
|
+
es: "es";
|
|
22661
|
+
fr: "fr";
|
|
22662
|
+
de: "de";
|
|
22663
|
+
pt: "pt";
|
|
22664
|
+
it: "it";
|
|
22665
|
+
ru: "ru";
|
|
22666
|
+
ja: "ja";
|
|
22667
|
+
ko: "ko";
|
|
22668
|
+
zh: "zh";
|
|
22669
|
+
hi: "hi";
|
|
22670
|
+
ar: "ar";
|
|
22671
|
+
tr: "tr";
|
|
22672
|
+
vi: "vi";
|
|
22673
|
+
th: "th";
|
|
22674
|
+
pl: "pl";
|
|
22675
|
+
nl: "nl";
|
|
22676
|
+
}>>>;
|
|
22677
|
+
releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22678
|
+
live: "live";
|
|
22679
|
+
open_beta: "open_beta";
|
|
22680
|
+
coming_soon: "coming_soon";
|
|
22681
|
+
}>>;
|
|
21764
22682
|
}, z$1.core.$strip>;
|
|
21765
22683
|
declare const zPatchMeDeveloperAppsByAppIdPagePath: z$1.ZodObject<{
|
|
21766
22684
|
appId: z$1.ZodString;
|
|
@@ -21831,6 +22749,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
|
|
|
21831
22749
|
url: z$1.ZodURL;
|
|
21832
22750
|
order: z$1.ZodInt;
|
|
21833
22751
|
}, z$1.core.$strip>>;
|
|
22752
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22753
|
+
web: "web";
|
|
22754
|
+
ios: "ios";
|
|
22755
|
+
android: "android";
|
|
22756
|
+
pc: "pc";
|
|
22757
|
+
playstation: "playstation";
|
|
22758
|
+
xbox: "xbox";
|
|
22759
|
+
switch: "switch";
|
|
22760
|
+
}>>;
|
|
22761
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22762
|
+
single_player: "single_player";
|
|
22763
|
+
multiplayer: "multiplayer";
|
|
22764
|
+
both: "both";
|
|
22765
|
+
}>>;
|
|
22766
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22767
|
+
everyone: "everyone";
|
|
22768
|
+
"13_plus": "13_plus";
|
|
22769
|
+
"16_plus": "16_plus";
|
|
22770
|
+
"18_plus": "18_plus";
|
|
22771
|
+
}>>;
|
|
22772
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22773
|
+
id: "id";
|
|
22774
|
+
en: "en";
|
|
22775
|
+
es: "es";
|
|
22776
|
+
fr: "fr";
|
|
22777
|
+
de: "de";
|
|
22778
|
+
pt: "pt";
|
|
22779
|
+
it: "it";
|
|
22780
|
+
ru: "ru";
|
|
22781
|
+
ja: "ja";
|
|
22782
|
+
ko: "ko";
|
|
22783
|
+
zh: "zh";
|
|
22784
|
+
hi: "hi";
|
|
22785
|
+
ar: "ar";
|
|
22786
|
+
tr: "tr";
|
|
22787
|
+
vi: "vi";
|
|
22788
|
+
th: "th";
|
|
22789
|
+
pl: "pl";
|
|
22790
|
+
nl: "nl";
|
|
22791
|
+
}>>;
|
|
22792
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22793
|
+
live: "live";
|
|
22794
|
+
open_beta: "open_beta";
|
|
22795
|
+
coming_soon: "coming_soon";
|
|
22796
|
+
}>;
|
|
21834
22797
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21835
22798
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21836
22799
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -21976,6 +22939,51 @@ declare const zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse: z$1.ZodObj
|
|
|
21976
22939
|
url: z$1.ZodURL;
|
|
21977
22940
|
order: z$1.ZodInt;
|
|
21978
22941
|
}, z$1.core.$strip>>;
|
|
22942
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22943
|
+
web: "web";
|
|
22944
|
+
ios: "ios";
|
|
22945
|
+
android: "android";
|
|
22946
|
+
pc: "pc";
|
|
22947
|
+
playstation: "playstation";
|
|
22948
|
+
xbox: "xbox";
|
|
22949
|
+
switch: "switch";
|
|
22950
|
+
}>>;
|
|
22951
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22952
|
+
single_player: "single_player";
|
|
22953
|
+
multiplayer: "multiplayer";
|
|
22954
|
+
both: "both";
|
|
22955
|
+
}>>;
|
|
22956
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22957
|
+
everyone: "everyone";
|
|
22958
|
+
"13_plus": "13_plus";
|
|
22959
|
+
"16_plus": "16_plus";
|
|
22960
|
+
"18_plus": "18_plus";
|
|
22961
|
+
}>>;
|
|
22962
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22963
|
+
id: "id";
|
|
22964
|
+
en: "en";
|
|
22965
|
+
es: "es";
|
|
22966
|
+
fr: "fr";
|
|
22967
|
+
de: "de";
|
|
22968
|
+
pt: "pt";
|
|
22969
|
+
it: "it";
|
|
22970
|
+
ru: "ru";
|
|
22971
|
+
ja: "ja";
|
|
22972
|
+
ko: "ko";
|
|
22973
|
+
zh: "zh";
|
|
22974
|
+
hi: "hi";
|
|
22975
|
+
ar: "ar";
|
|
22976
|
+
tr: "tr";
|
|
22977
|
+
vi: "vi";
|
|
22978
|
+
th: "th";
|
|
22979
|
+
pl: "pl";
|
|
22980
|
+
nl: "nl";
|
|
22981
|
+
}>>;
|
|
22982
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22983
|
+
live: "live";
|
|
22984
|
+
open_beta: "open_beta";
|
|
22985
|
+
coming_soon: "coming_soon";
|
|
22986
|
+
}>;
|
|
21979
22987
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21980
22988
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21981
22989
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -22052,6 +23060,51 @@ declare const zPostMeDeveloperAppsByAppIdPageUnpublishResponse: z$1.ZodObject<{
|
|
|
22052
23060
|
url: z$1.ZodURL;
|
|
22053
23061
|
order: z$1.ZodInt;
|
|
22054
23062
|
}, z$1.core.$strip>>;
|
|
23063
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
23064
|
+
web: "web";
|
|
23065
|
+
ios: "ios";
|
|
23066
|
+
android: "android";
|
|
23067
|
+
pc: "pc";
|
|
23068
|
+
playstation: "playstation";
|
|
23069
|
+
xbox: "xbox";
|
|
23070
|
+
switch: "switch";
|
|
23071
|
+
}>>;
|
|
23072
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
23073
|
+
single_player: "single_player";
|
|
23074
|
+
multiplayer: "multiplayer";
|
|
23075
|
+
both: "both";
|
|
23076
|
+
}>>;
|
|
23077
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
23078
|
+
everyone: "everyone";
|
|
23079
|
+
"13_plus": "13_plus";
|
|
23080
|
+
"16_plus": "16_plus";
|
|
23081
|
+
"18_plus": "18_plus";
|
|
23082
|
+
}>>;
|
|
23083
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
23084
|
+
id: "id";
|
|
23085
|
+
en: "en";
|
|
23086
|
+
es: "es";
|
|
23087
|
+
fr: "fr";
|
|
23088
|
+
de: "de";
|
|
23089
|
+
pt: "pt";
|
|
23090
|
+
it: "it";
|
|
23091
|
+
ru: "ru";
|
|
23092
|
+
ja: "ja";
|
|
23093
|
+
ko: "ko";
|
|
23094
|
+
zh: "zh";
|
|
23095
|
+
hi: "hi";
|
|
23096
|
+
ar: "ar";
|
|
23097
|
+
tr: "tr";
|
|
23098
|
+
vi: "vi";
|
|
23099
|
+
th: "th";
|
|
23100
|
+
pl: "pl";
|
|
23101
|
+
nl: "nl";
|
|
23102
|
+
}>>;
|
|
23103
|
+
releaseStatus: z$1.ZodEnum<{
|
|
23104
|
+
live: "live";
|
|
23105
|
+
open_beta: "open_beta";
|
|
23106
|
+
coming_soon: "coming_soon";
|
|
23107
|
+
}>;
|
|
22055
23108
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22056
23109
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22057
23110
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23336,4 +24389,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
23336
24389
|
*/
|
|
23337
24390
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
23338
24391
|
//#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 };
|
|
24392
|
+
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 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 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, 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, 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 };
|