@metatrongg/sdk 0.8.0-dev.e892968 → 0.8.0-dev.f7c6bfe
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 +64 -2
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +728 -4
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +64 -2
- 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>;
|
|
@@ -546,6 +560,8 @@ type Review = {
|
|
|
546
560
|
type ReviewRating = number;
|
|
547
561
|
type ReviewBody = string;
|
|
548
562
|
type ReviewAuthor = {
|
|
563
|
+
userId: string;
|
|
564
|
+
handle: string | null;
|
|
549
565
|
name: string | null;
|
|
550
566
|
avatarUrl: string | null;
|
|
551
567
|
};
|
|
@@ -680,6 +696,8 @@ type ActivityRow = ({
|
|
|
680
696
|
} & ActivityRowTronPot) | ({
|
|
681
697
|
kind: "tron_cashout";
|
|
682
698
|
} & ActivityRowTronCashout) | ({
|
|
699
|
+
kind: "tron_transfer";
|
|
700
|
+
} & ActivityRowTronTransfer) | ({
|
|
683
701
|
kind: "referral_earning";
|
|
684
702
|
} & ActivityRowReferralEarning);
|
|
685
703
|
type ActivityRowPayment = {
|
|
@@ -963,6 +981,20 @@ type ActivityRowTronCashout = {
|
|
|
963
981
|
rejectionReason: string | null;
|
|
964
982
|
settledAt: string | null;
|
|
965
983
|
};
|
|
984
|
+
type ActivityRowTronTransfer = {
|
|
985
|
+
kind: "tron_transfer";
|
|
986
|
+
groupId: string | null;
|
|
987
|
+
id: string;
|
|
988
|
+
occurredAt: string;
|
|
989
|
+
role: "incoming" | "outgoing";
|
|
990
|
+
amountCents: number;
|
|
991
|
+
usdCents: number;
|
|
992
|
+
status: "settled";
|
|
993
|
+
counterpartyUserId: string | null;
|
|
994
|
+
counterpartyHandle: string | null;
|
|
995
|
+
counterpartyDisplayName: string | null;
|
|
996
|
+
note: string | null;
|
|
997
|
+
};
|
|
966
998
|
type ActivityRowReferralEarning = {
|
|
967
999
|
kind: "referral_earning";
|
|
968
1000
|
groupId: string | null;
|
|
@@ -1028,7 +1060,7 @@ type TronLedgerResponse = {
|
|
|
1028
1060
|
};
|
|
1029
1061
|
type TronLedgerEntry = {
|
|
1030
1062
|
id: string;
|
|
1031
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
1063
|
+
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
|
|
1032
1064
|
amountCents: number;
|
|
1033
1065
|
currency: string;
|
|
1034
1066
|
createdAt: string;
|
|
@@ -1043,6 +1075,21 @@ type TronDepositResponse = {
|
|
|
1043
1075
|
type TronDepositRequest = {
|
|
1044
1076
|
amountCents: number;
|
|
1045
1077
|
};
|
|
1078
|
+
type TronTransferResponse = {
|
|
1079
|
+
status: "completed";
|
|
1080
|
+
amountCents: number;
|
|
1081
|
+
balanceCents: number;
|
|
1082
|
+
recipient: {
|
|
1083
|
+
userId: string;
|
|
1084
|
+
handle: string | null;
|
|
1085
|
+
displayName: string | null;
|
|
1086
|
+
};
|
|
1087
|
+
};
|
|
1088
|
+
type TronTransferRequest = {
|
|
1089
|
+
recipientUserId: string;
|
|
1090
|
+
amountCents: number;
|
|
1091
|
+
note?: string;
|
|
1092
|
+
};
|
|
1046
1093
|
type TronGameBalanceResponse = {
|
|
1047
1094
|
balanceCents: number;
|
|
1048
1095
|
rakeBps: number;
|
|
@@ -2183,6 +2230,11 @@ type AppPageDraft = {
|
|
|
2183
2230
|
gallery: AppPageGallery;
|
|
2184
2231
|
chapters: AppPageChapters;
|
|
2185
2232
|
links: AppPageLinks;
|
|
2233
|
+
platforms: AppPagePlatforms;
|
|
2234
|
+
gameType: AppPageGameType;
|
|
2235
|
+
ageRating: AppPageAgeRating;
|
|
2236
|
+
languages: AppPageLanguages;
|
|
2237
|
+
releaseStatus: AppPageReleaseStatus;
|
|
2186
2238
|
firstPublishedAt: string | null;
|
|
2187
2239
|
reviewedAt: string | null;
|
|
2188
2240
|
reviewNotes: string | null;
|
|
@@ -2205,6 +2257,11 @@ type UpdateAppPage = {
|
|
|
2205
2257
|
gallery?: AppPageGallery;
|
|
2206
2258
|
chapters?: AppPageChapters;
|
|
2207
2259
|
links?: AppPageLinks;
|
|
2260
|
+
platforms?: AppPagePlatforms;
|
|
2261
|
+
gameType?: AppPageGameType;
|
|
2262
|
+
ageRating?: AppPageAgeRating;
|
|
2263
|
+
languages?: AppPageLanguages;
|
|
2264
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
2208
2265
|
};
|
|
2209
2266
|
type AppPageGalleryUploadResponse = {
|
|
2210
2267
|
url: string;
|
|
@@ -4165,6 +4222,42 @@ type PostPaymentsMeTronDepositResponses = {
|
|
|
4165
4222
|
200: TronDepositResponse;
|
|
4166
4223
|
};
|
|
4167
4224
|
type PostPaymentsMeTronDepositResponse = PostPaymentsMeTronDepositResponses[keyof PostPaymentsMeTronDepositResponses];
|
|
4225
|
+
type PostPaymentsMeTronTransferData = {
|
|
4226
|
+
body: TronTransferRequest;
|
|
4227
|
+
path?: never;
|
|
4228
|
+
query?: never;
|
|
4229
|
+
url: "/payments/me/tron/transfer";
|
|
4230
|
+
};
|
|
4231
|
+
type PostPaymentsMeTronTransferErrors = {
|
|
4232
|
+
/**
|
|
4233
|
+
* Request error
|
|
4234
|
+
*/
|
|
4235
|
+
400: ErrorResponse;
|
|
4236
|
+
/**
|
|
4237
|
+
* Request error
|
|
4238
|
+
*/
|
|
4239
|
+
401: ErrorResponse;
|
|
4240
|
+
/**
|
|
4241
|
+
* Request error
|
|
4242
|
+
*/
|
|
4243
|
+
404: ErrorResponse;
|
|
4244
|
+
/**
|
|
4245
|
+
* Request error
|
|
4246
|
+
*/
|
|
4247
|
+
409: ErrorResponse;
|
|
4248
|
+
/**
|
|
4249
|
+
* Request error
|
|
4250
|
+
*/
|
|
4251
|
+
503: ErrorResponse;
|
|
4252
|
+
};
|
|
4253
|
+
type PostPaymentsMeTronTransferError = PostPaymentsMeTronTransferErrors[keyof PostPaymentsMeTronTransferErrors];
|
|
4254
|
+
type PostPaymentsMeTronTransferResponses = {
|
|
4255
|
+
/**
|
|
4256
|
+
* Transfer completed; carries the sender's remaining balance + recipient identity
|
|
4257
|
+
*/
|
|
4258
|
+
200: TronTransferResponse;
|
|
4259
|
+
};
|
|
4260
|
+
type PostPaymentsMeTronTransferResponse = PostPaymentsMeTronTransferResponses[keyof PostPaymentsMeTronTransferResponses];
|
|
4168
4261
|
type GetOauthPaymentsTronBalanceData = {
|
|
4169
4262
|
body?: never;
|
|
4170
4263
|
path?: never;
|
|
@@ -10534,12 +10627,63 @@ declare const zAppPageLinks: z$1.ZodArray<z$1.ZodObject<{
|
|
|
10534
10627
|
order: z$1.ZodInt;
|
|
10535
10628
|
}, z$1.core.$strip>>;
|
|
10536
10629
|
declare const zPublicAppPageStudio: z$1.ZodObject<{
|
|
10630
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
10537
10631
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10538
10632
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10539
10633
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10540
10634
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
10541
10635
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10542
10636
|
}, z$1.core.$strip>;
|
|
10637
|
+
declare const zAppPagePlatforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
10638
|
+
web: "web";
|
|
10639
|
+
ios: "ios";
|
|
10640
|
+
android: "android";
|
|
10641
|
+
pc: "pc";
|
|
10642
|
+
playstation: "playstation";
|
|
10643
|
+
xbox: "xbox";
|
|
10644
|
+
switch: "switch";
|
|
10645
|
+
}>>;
|
|
10646
|
+
declare const zAppPageGameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10647
|
+
single_player: "single_player";
|
|
10648
|
+
multiplayer: "multiplayer";
|
|
10649
|
+
both: "both";
|
|
10650
|
+
}>>;
|
|
10651
|
+
declare const zAppPageAgeRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10652
|
+
everyone: "everyone";
|
|
10653
|
+
"13_plus": "13_plus";
|
|
10654
|
+
"16_plus": "16_plus";
|
|
10655
|
+
"18_plus": "18_plus";
|
|
10656
|
+
}>>;
|
|
10657
|
+
declare const zAppPageLanguages: z$1.ZodArray<z$1.ZodEnum<{
|
|
10658
|
+
id: "id";
|
|
10659
|
+
en: "en";
|
|
10660
|
+
es: "es";
|
|
10661
|
+
fr: "fr";
|
|
10662
|
+
de: "de";
|
|
10663
|
+
pt: "pt";
|
|
10664
|
+
it: "it";
|
|
10665
|
+
ru: "ru";
|
|
10666
|
+
ja: "ja";
|
|
10667
|
+
ko: "ko";
|
|
10668
|
+
zh: "zh";
|
|
10669
|
+
hi: "hi";
|
|
10670
|
+
ar: "ar";
|
|
10671
|
+
tr: "tr";
|
|
10672
|
+
vi: "vi";
|
|
10673
|
+
th: "th";
|
|
10674
|
+
pl: "pl";
|
|
10675
|
+
nl: "nl";
|
|
10676
|
+
}>>;
|
|
10677
|
+
declare const zAppPageReleaseStatus: z$1.ZodEnum<{
|
|
10678
|
+
live: "live";
|
|
10679
|
+
open_beta: "open_beta";
|
|
10680
|
+
coming_soon: "coming_soon";
|
|
10681
|
+
}>;
|
|
10682
|
+
declare const zAppPagePaymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10683
|
+
both: "both";
|
|
10684
|
+
tron: "tron";
|
|
10685
|
+
onchain: "onchain";
|
|
10686
|
+
}>>;
|
|
10543
10687
|
declare const zPublicAppPage: z$1.ZodObject<{
|
|
10544
10688
|
appId: z$1.ZodUUID;
|
|
10545
10689
|
slug: z$1.ZodString;
|
|
@@ -10598,15 +10742,67 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
10598
10742
|
order: z$1.ZodInt;
|
|
10599
10743
|
}, z$1.core.$strip>>;
|
|
10600
10744
|
studio: z$1.ZodObject<{
|
|
10745
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
10601
10746
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10602
10747
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10603
10748
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10604
10749
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
10605
10750
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10606
10751
|
}, z$1.core.$strip>;
|
|
10752
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
10753
|
+
web: "web";
|
|
10754
|
+
ios: "ios";
|
|
10755
|
+
android: "android";
|
|
10756
|
+
pc: "pc";
|
|
10757
|
+
playstation: "playstation";
|
|
10758
|
+
xbox: "xbox";
|
|
10759
|
+
switch: "switch";
|
|
10760
|
+
}>>;
|
|
10761
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10762
|
+
single_player: "single_player";
|
|
10763
|
+
multiplayer: "multiplayer";
|
|
10764
|
+
both: "both";
|
|
10765
|
+
}>>;
|
|
10766
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10767
|
+
everyone: "everyone";
|
|
10768
|
+
"13_plus": "13_plus";
|
|
10769
|
+
"16_plus": "16_plus";
|
|
10770
|
+
"18_plus": "18_plus";
|
|
10771
|
+
}>>;
|
|
10772
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
10773
|
+
id: "id";
|
|
10774
|
+
en: "en";
|
|
10775
|
+
es: "es";
|
|
10776
|
+
fr: "fr";
|
|
10777
|
+
de: "de";
|
|
10778
|
+
pt: "pt";
|
|
10779
|
+
it: "it";
|
|
10780
|
+
ru: "ru";
|
|
10781
|
+
ja: "ja";
|
|
10782
|
+
ko: "ko";
|
|
10783
|
+
zh: "zh";
|
|
10784
|
+
hi: "hi";
|
|
10785
|
+
ar: "ar";
|
|
10786
|
+
tr: "tr";
|
|
10787
|
+
vi: "vi";
|
|
10788
|
+
th: "th";
|
|
10789
|
+
pl: "pl";
|
|
10790
|
+
nl: "nl";
|
|
10791
|
+
}>>;
|
|
10792
|
+
releaseStatus: z$1.ZodEnum<{
|
|
10793
|
+
live: "live";
|
|
10794
|
+
open_beta: "open_beta";
|
|
10795
|
+
coming_soon: "coming_soon";
|
|
10796
|
+
}>;
|
|
10797
|
+
paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
10798
|
+
both: "both";
|
|
10799
|
+
tron: "tron";
|
|
10800
|
+
onchain: "onchain";
|
|
10801
|
+
}>>;
|
|
10607
10802
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
10608
10803
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
10609
10804
|
publishedAt: z$1.ZodISODateTime;
|
|
10805
|
+
updatedAt: z$1.ZodISODateTime;
|
|
10610
10806
|
}, z$1.core.$strip>;
|
|
10611
10807
|
declare const zReviewDistribution: z$1.ZodObject<{
|
|
10612
10808
|
1: z$1.ZodInt;
|
|
@@ -10629,6 +10825,8 @@ declare const zReviewAggregate: z$1.ZodObject<{
|
|
|
10629
10825
|
declare const zReviewRating: z$1.ZodInt;
|
|
10630
10826
|
declare const zReviewBody: z$1.ZodString;
|
|
10631
10827
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
10828
|
+
userId: z$1.ZodUUID;
|
|
10829
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10632
10830
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10633
10831
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10634
10832
|
}, z$1.core.$strip>;
|
|
@@ -10642,6 +10840,8 @@ declare const zReview: z$1.ZodObject<{
|
|
|
10642
10840
|
rating: z$1.ZodInt;
|
|
10643
10841
|
body: z$1.ZodString;
|
|
10644
10842
|
author: z$1.ZodObject<{
|
|
10843
|
+
userId: z$1.ZodUUID;
|
|
10844
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10645
10845
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10646
10846
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10647
10847
|
}, z$1.core.$strip>;
|
|
@@ -10669,6 +10869,8 @@ declare const zReviewListResponse: z$1.ZodObject<{
|
|
|
10669
10869
|
rating: z$1.ZodInt;
|
|
10670
10870
|
body: z$1.ZodString;
|
|
10671
10871
|
author: z$1.ZodObject<{
|
|
10872
|
+
userId: z$1.ZodUUID;
|
|
10873
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
10672
10874
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
10673
10875
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
10674
10876
|
}, z$1.core.$strip>;
|
|
@@ -11356,6 +11558,27 @@ declare const zActivityRowTronCashout: z$1.ZodObject<{
|
|
|
11356
11558
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
11357
11559
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
11358
11560
|
}, z$1.core.$strip>;
|
|
11561
|
+
declare const zActivityRowTronTransfer: z$1.ZodObject<{
|
|
11562
|
+
kind: z$1.ZodEnum<{
|
|
11563
|
+
tron_transfer: "tron_transfer";
|
|
11564
|
+
}>;
|
|
11565
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
11566
|
+
id: z$1.ZodString;
|
|
11567
|
+
occurredAt: z$1.ZodISODateTime;
|
|
11568
|
+
role: z$1.ZodEnum<{
|
|
11569
|
+
outgoing: "outgoing";
|
|
11570
|
+
incoming: "incoming";
|
|
11571
|
+
}>;
|
|
11572
|
+
amountCents: z$1.ZodInt;
|
|
11573
|
+
usdCents: z$1.ZodInt;
|
|
11574
|
+
status: z$1.ZodEnum<{
|
|
11575
|
+
settled: "settled";
|
|
11576
|
+
}>;
|
|
11577
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
11578
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
11579
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
11580
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
11581
|
+
}, z$1.core.$strip>;
|
|
11359
11582
|
declare const zActivityRowReferralEarning: z$1.ZodObject<{
|
|
11360
11583
|
kind: z$1.ZodEnum<{
|
|
11361
11584
|
referral_earning: "referral_earning";
|
|
@@ -11779,6 +12002,24 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
11779
12002
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
11780
12003
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
11781
12004
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
12005
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12006
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12007
|
+
id: z$1.ZodString;
|
|
12008
|
+
occurredAt: z$1.ZodISODateTime;
|
|
12009
|
+
role: z$1.ZodEnum<{
|
|
12010
|
+
outgoing: "outgoing";
|
|
12011
|
+
incoming: "incoming";
|
|
12012
|
+
}>;
|
|
12013
|
+
amountCents: z$1.ZodInt;
|
|
12014
|
+
usdCents: z$1.ZodInt;
|
|
12015
|
+
status: z$1.ZodEnum<{
|
|
12016
|
+
settled: "settled";
|
|
12017
|
+
}>;
|
|
12018
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
12019
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
12020
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12021
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
12022
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
11782
12023
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
11783
12024
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
11784
12025
|
id: z$1.ZodString;
|
|
@@ -12201,6 +12442,24 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
12201
12442
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
12202
12443
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12203
12444
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
12445
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12446
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12447
|
+
id: z$1.ZodString;
|
|
12448
|
+
occurredAt: z$1.ZodISODateTime;
|
|
12449
|
+
role: z$1.ZodEnum<{
|
|
12450
|
+
outgoing: "outgoing";
|
|
12451
|
+
incoming: "incoming";
|
|
12452
|
+
}>;
|
|
12453
|
+
amountCents: z$1.ZodInt;
|
|
12454
|
+
usdCents: z$1.ZodInt;
|
|
12455
|
+
status: z$1.ZodEnum<{
|
|
12456
|
+
settled: "settled";
|
|
12457
|
+
}>;
|
|
12458
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
12459
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
12460
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12461
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
12462
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
12204
12463
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12205
12464
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
12206
12465
|
id: z$1.ZodString;
|
|
@@ -12242,9 +12501,9 @@ declare const zOutstandingResponse: z$1.ZodObject<{
|
|
|
12242
12501
|
declare const zMoonpayAvailabilityResponse: z$1.ZodObject<{
|
|
12243
12502
|
enabled: z$1.ZodBoolean;
|
|
12244
12503
|
direction: z$1.ZodNullable<z$1.ZodEnum<{
|
|
12504
|
+
both: "both";
|
|
12245
12505
|
buy: "buy";
|
|
12246
12506
|
sell: "sell";
|
|
12247
|
-
both: "both";
|
|
12248
12507
|
}>>;
|
|
12249
12508
|
countryCode: z$1.ZodNullable<z$1.ZodString>;
|
|
12250
12509
|
regionSupported: z$1.ZodBoolean;
|
|
@@ -12292,6 +12551,7 @@ declare const zTronLedgerEntry: z$1.ZodObject<{
|
|
|
12292
12551
|
dispute_unfreeze: "dispute_unfreeze";
|
|
12293
12552
|
hosted_billing: "hosted_billing";
|
|
12294
12553
|
store_purchase: "store_purchase";
|
|
12554
|
+
peer_transfer: "peer_transfer";
|
|
12295
12555
|
}>;
|
|
12296
12556
|
amountCents: z$1.ZodInt;
|
|
12297
12557
|
currency: z$1.ZodString;
|
|
@@ -12312,6 +12572,7 @@ declare const zTronLedgerResponse: z$1.ZodObject<{
|
|
|
12312
12572
|
dispute_unfreeze: "dispute_unfreeze";
|
|
12313
12573
|
hosted_billing: "hosted_billing";
|
|
12314
12574
|
store_purchase: "store_purchase";
|
|
12575
|
+
peer_transfer: "peer_transfer";
|
|
12315
12576
|
}>;
|
|
12316
12577
|
amountCents: z$1.ZodInt;
|
|
12317
12578
|
currency: z$1.ZodString;
|
|
@@ -12329,6 +12590,23 @@ declare const zTronDepositResponse: z$1.ZodObject<{
|
|
|
12329
12590
|
declare const zTronDepositRequest: z$1.ZodObject<{
|
|
12330
12591
|
amountCents: z$1.ZodInt;
|
|
12331
12592
|
}, z$1.core.$strip>;
|
|
12593
|
+
declare const zTronTransferResponse: z$1.ZodObject<{
|
|
12594
|
+
status: z$1.ZodEnum<{
|
|
12595
|
+
completed: "completed";
|
|
12596
|
+
}>;
|
|
12597
|
+
amountCents: z$1.ZodInt;
|
|
12598
|
+
balanceCents: z$1.ZodInt;
|
|
12599
|
+
recipient: z$1.ZodObject<{
|
|
12600
|
+
userId: z$1.ZodUUID;
|
|
12601
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
12602
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
12603
|
+
}, z$1.core.$strip>;
|
|
12604
|
+
}, z$1.core.$strip>;
|
|
12605
|
+
declare const zTronTransferRequest: z$1.ZodObject<{
|
|
12606
|
+
recipientUserId: z$1.ZodUUID;
|
|
12607
|
+
amountCents: z$1.ZodInt;
|
|
12608
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
12609
|
+
}, z$1.core.$strip>;
|
|
12332
12610
|
declare const zTronGameBalanceResponse: z$1.ZodObject<{
|
|
12333
12611
|
balanceCents: z$1.ZodInt;
|
|
12334
12612
|
rakeBps: z$1.ZodInt;
|
|
@@ -15090,6 +15368,51 @@ declare const zAppPageDraft: z$1.ZodObject<{
|
|
|
15090
15368
|
url: z$1.ZodURL;
|
|
15091
15369
|
order: z$1.ZodInt;
|
|
15092
15370
|
}, z$1.core.$strip>>;
|
|
15371
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
15372
|
+
web: "web";
|
|
15373
|
+
ios: "ios";
|
|
15374
|
+
android: "android";
|
|
15375
|
+
pc: "pc";
|
|
15376
|
+
playstation: "playstation";
|
|
15377
|
+
xbox: "xbox";
|
|
15378
|
+
switch: "switch";
|
|
15379
|
+
}>>;
|
|
15380
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15381
|
+
single_player: "single_player";
|
|
15382
|
+
multiplayer: "multiplayer";
|
|
15383
|
+
both: "both";
|
|
15384
|
+
}>>;
|
|
15385
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15386
|
+
everyone: "everyone";
|
|
15387
|
+
"13_plus": "13_plus";
|
|
15388
|
+
"16_plus": "16_plus";
|
|
15389
|
+
"18_plus": "18_plus";
|
|
15390
|
+
}>>;
|
|
15391
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
15392
|
+
id: "id";
|
|
15393
|
+
en: "en";
|
|
15394
|
+
es: "es";
|
|
15395
|
+
fr: "fr";
|
|
15396
|
+
de: "de";
|
|
15397
|
+
pt: "pt";
|
|
15398
|
+
it: "it";
|
|
15399
|
+
ru: "ru";
|
|
15400
|
+
ja: "ja";
|
|
15401
|
+
ko: "ko";
|
|
15402
|
+
zh: "zh";
|
|
15403
|
+
hi: "hi";
|
|
15404
|
+
ar: "ar";
|
|
15405
|
+
tr: "tr";
|
|
15406
|
+
vi: "vi";
|
|
15407
|
+
th: "th";
|
|
15408
|
+
pl: "pl";
|
|
15409
|
+
nl: "nl";
|
|
15410
|
+
}>>;
|
|
15411
|
+
releaseStatus: z$1.ZodEnum<{
|
|
15412
|
+
live: "live";
|
|
15413
|
+
open_beta: "open_beta";
|
|
15414
|
+
coming_soon: "coming_soon";
|
|
15415
|
+
}>;
|
|
15093
15416
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15094
15417
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15095
15418
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -15153,6 +15476,51 @@ declare const zUpdateAppPage: z$1.ZodObject<{
|
|
|
15153
15476
|
url: z$1.ZodURL;
|
|
15154
15477
|
order: z$1.ZodInt;
|
|
15155
15478
|
}, z$1.core.$strip>>>;
|
|
15479
|
+
platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
15480
|
+
web: "web";
|
|
15481
|
+
ios: "ios";
|
|
15482
|
+
android: "android";
|
|
15483
|
+
pc: "pc";
|
|
15484
|
+
playstation: "playstation";
|
|
15485
|
+
xbox: "xbox";
|
|
15486
|
+
switch: "switch";
|
|
15487
|
+
}>>>;
|
|
15488
|
+
gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15489
|
+
single_player: "single_player";
|
|
15490
|
+
multiplayer: "multiplayer";
|
|
15491
|
+
both: "both";
|
|
15492
|
+
}>>>;
|
|
15493
|
+
ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
15494
|
+
everyone: "everyone";
|
|
15495
|
+
"13_plus": "13_plus";
|
|
15496
|
+
"16_plus": "16_plus";
|
|
15497
|
+
"18_plus": "18_plus";
|
|
15498
|
+
}>>>;
|
|
15499
|
+
languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
15500
|
+
id: "id";
|
|
15501
|
+
en: "en";
|
|
15502
|
+
es: "es";
|
|
15503
|
+
fr: "fr";
|
|
15504
|
+
de: "de";
|
|
15505
|
+
pt: "pt";
|
|
15506
|
+
it: "it";
|
|
15507
|
+
ru: "ru";
|
|
15508
|
+
ja: "ja";
|
|
15509
|
+
ko: "ko";
|
|
15510
|
+
zh: "zh";
|
|
15511
|
+
hi: "hi";
|
|
15512
|
+
ar: "ar";
|
|
15513
|
+
tr: "tr";
|
|
15514
|
+
vi: "vi";
|
|
15515
|
+
th: "th";
|
|
15516
|
+
pl: "pl";
|
|
15517
|
+
nl: "nl";
|
|
15518
|
+
}>>>;
|
|
15519
|
+
releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
15520
|
+
live: "live";
|
|
15521
|
+
open_beta: "open_beta";
|
|
15522
|
+
coming_soon: "coming_soon";
|
|
15523
|
+
}>>;
|
|
15156
15524
|
}, z$1.core.$strip>;
|
|
15157
15525
|
declare const zAppPageGalleryUploadResponse: z$1.ZodObject<{
|
|
15158
15526
|
url: z$1.ZodURL;
|
|
@@ -17049,15 +17417,67 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
17049
17417
|
order: z$1.ZodInt;
|
|
17050
17418
|
}, z$1.core.$strip>>;
|
|
17051
17419
|
studio: z$1.ZodObject<{
|
|
17420
|
+
ownerUserId: z$1.ZodNullable<z$1.ZodUUID>;
|
|
17052
17421
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17053
17422
|
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17054
17423
|
websiteUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17055
17424
|
xHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
17056
17425
|
githubUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17057
17426
|
}, z$1.core.$strip>;
|
|
17427
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
17428
|
+
web: "web";
|
|
17429
|
+
ios: "ios";
|
|
17430
|
+
android: "android";
|
|
17431
|
+
pc: "pc";
|
|
17432
|
+
playstation: "playstation";
|
|
17433
|
+
xbox: "xbox";
|
|
17434
|
+
switch: "switch";
|
|
17435
|
+
}>>;
|
|
17436
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17437
|
+
single_player: "single_player";
|
|
17438
|
+
multiplayer: "multiplayer";
|
|
17439
|
+
both: "both";
|
|
17440
|
+
}>>;
|
|
17441
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17442
|
+
everyone: "everyone";
|
|
17443
|
+
"13_plus": "13_plus";
|
|
17444
|
+
"16_plus": "16_plus";
|
|
17445
|
+
"18_plus": "18_plus";
|
|
17446
|
+
}>>;
|
|
17447
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
17448
|
+
id: "id";
|
|
17449
|
+
en: "en";
|
|
17450
|
+
es: "es";
|
|
17451
|
+
fr: "fr";
|
|
17452
|
+
de: "de";
|
|
17453
|
+
pt: "pt";
|
|
17454
|
+
it: "it";
|
|
17455
|
+
ru: "ru";
|
|
17456
|
+
ja: "ja";
|
|
17457
|
+
ko: "ko";
|
|
17458
|
+
zh: "zh";
|
|
17459
|
+
hi: "hi";
|
|
17460
|
+
ar: "ar";
|
|
17461
|
+
tr: "tr";
|
|
17462
|
+
vi: "vi";
|
|
17463
|
+
th: "th";
|
|
17464
|
+
pl: "pl";
|
|
17465
|
+
nl: "nl";
|
|
17466
|
+
}>>;
|
|
17467
|
+
releaseStatus: z$1.ZodEnum<{
|
|
17468
|
+
live: "live";
|
|
17469
|
+
open_beta: "open_beta";
|
|
17470
|
+
coming_soon: "coming_soon";
|
|
17471
|
+
}>;
|
|
17472
|
+
paymentsMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
17473
|
+
both: "both";
|
|
17474
|
+
tron: "tron";
|
|
17475
|
+
onchain: "onchain";
|
|
17476
|
+
}>>;
|
|
17058
17477
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
17059
17478
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
17060
17479
|
publishedAt: z$1.ZodISODateTime;
|
|
17480
|
+
updatedAt: z$1.ZodISODateTime;
|
|
17061
17481
|
}, z$1.core.$strip>;
|
|
17062
17482
|
declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
|
|
17063
17483
|
slug: z$1.ZodString;
|
|
@@ -17092,6 +17512,8 @@ declare const zGetPublicAppsBySlugReviewsResponse: z$1.ZodObject<{
|
|
|
17092
17512
|
rating: z$1.ZodInt;
|
|
17093
17513
|
body: z$1.ZodString;
|
|
17094
17514
|
author: z$1.ZodObject<{
|
|
17515
|
+
userId: z$1.ZodUUID;
|
|
17516
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
17095
17517
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17096
17518
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17097
17519
|
}, z$1.core.$strip>;
|
|
@@ -17205,6 +17627,8 @@ declare const zGetMeDeveloperAppsByAppIdReviewsResponse: z$1.ZodObject<{
|
|
|
17205
17627
|
rating: z$1.ZodInt;
|
|
17206
17628
|
body: z$1.ZodString;
|
|
17207
17629
|
author: z$1.ZodObject<{
|
|
17630
|
+
userId: z$1.ZodUUID;
|
|
17631
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
17208
17632
|
name: z$1.ZodNullable<z$1.ZodString>;
|
|
17209
17633
|
avatarUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
17210
17634
|
}, z$1.core.$strip>;
|
|
@@ -17832,6 +18256,24 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
17832
18256
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
17833
18257
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
17834
18258
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
18259
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18260
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18261
|
+
id: z$1.ZodString;
|
|
18262
|
+
occurredAt: z$1.ZodISODateTime;
|
|
18263
|
+
role: z$1.ZodEnum<{
|
|
18264
|
+
outgoing: "outgoing";
|
|
18265
|
+
incoming: "incoming";
|
|
18266
|
+
}>;
|
|
18267
|
+
amountCents: z$1.ZodInt;
|
|
18268
|
+
usdCents: z$1.ZodInt;
|
|
18269
|
+
status: z$1.ZodEnum<{
|
|
18270
|
+
settled: "settled";
|
|
18271
|
+
}>;
|
|
18272
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
18273
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
18274
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18275
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
18276
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
17835
18277
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
17836
18278
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
17837
18279
|
id: z$1.ZodString;
|
|
@@ -18264,6 +18706,24 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
18264
18706
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
18265
18707
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
18266
18708
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
18709
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18710
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18711
|
+
id: z$1.ZodString;
|
|
18712
|
+
occurredAt: z$1.ZodISODateTime;
|
|
18713
|
+
role: z$1.ZodEnum<{
|
|
18714
|
+
outgoing: "outgoing";
|
|
18715
|
+
incoming: "incoming";
|
|
18716
|
+
}>;
|
|
18717
|
+
amountCents: z$1.ZodInt;
|
|
18718
|
+
usdCents: z$1.ZodInt;
|
|
18719
|
+
status: z$1.ZodEnum<{
|
|
18720
|
+
settled: "settled";
|
|
18721
|
+
}>;
|
|
18722
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
18723
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
18724
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18725
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
18726
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
18267
18727
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18268
18728
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
18269
18729
|
id: z$1.ZodString;
|
|
@@ -18307,9 +18767,9 @@ declare const zGetPaymentsMeOutstandingResponse: z$1.ZodObject<{
|
|
|
18307
18767
|
declare const zGetPaymentsMeMoonpayAvailabilityResponse: z$1.ZodObject<{
|
|
18308
18768
|
enabled: z$1.ZodBoolean;
|
|
18309
18769
|
direction: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18770
|
+
both: "both";
|
|
18310
18771
|
buy: "buy";
|
|
18311
18772
|
sell: "sell";
|
|
18312
|
-
both: "both";
|
|
18313
18773
|
}>>;
|
|
18314
18774
|
countryCode: z$1.ZodNullable<z$1.ZodString>;
|
|
18315
18775
|
regionSupported: z$1.ZodBoolean;
|
|
@@ -18373,6 +18833,7 @@ declare const zGetPaymentsMeTronLedgerResponse: z$1.ZodObject<{
|
|
|
18373
18833
|
dispute_unfreeze: "dispute_unfreeze";
|
|
18374
18834
|
hosted_billing: "hosted_billing";
|
|
18375
18835
|
store_purchase: "store_purchase";
|
|
18836
|
+
peer_transfer: "peer_transfer";
|
|
18376
18837
|
}>;
|
|
18377
18838
|
amountCents: z$1.ZodInt;
|
|
18378
18839
|
currency: z$1.ZodString;
|
|
@@ -18393,6 +18854,26 @@ declare const zPostPaymentsMeTronDepositResponse: z$1.ZodObject<{
|
|
|
18393
18854
|
currency: z$1.ZodString;
|
|
18394
18855
|
depositId: z$1.ZodUUID;
|
|
18395
18856
|
}, z$1.core.$strip>;
|
|
18857
|
+
declare const zPostPaymentsMeTronTransferBody: z$1.ZodObject<{
|
|
18858
|
+
recipientUserId: z$1.ZodUUID;
|
|
18859
|
+
amountCents: z$1.ZodInt;
|
|
18860
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
18861
|
+
}, z$1.core.$strip>;
|
|
18862
|
+
/**
|
|
18863
|
+
* Transfer completed; carries the sender's remaining balance + recipient identity
|
|
18864
|
+
*/
|
|
18865
|
+
declare const zPostPaymentsMeTronTransferResponse: z$1.ZodObject<{
|
|
18866
|
+
status: z$1.ZodEnum<{
|
|
18867
|
+
completed: "completed";
|
|
18868
|
+
}>;
|
|
18869
|
+
amountCents: z$1.ZodInt;
|
|
18870
|
+
balanceCents: z$1.ZodInt;
|
|
18871
|
+
recipient: z$1.ZodObject<{
|
|
18872
|
+
userId: z$1.ZodUUID;
|
|
18873
|
+
handle: z$1.ZodNullable<z$1.ZodString>;
|
|
18874
|
+
displayName: z$1.ZodNullable<z$1.ZodString>;
|
|
18875
|
+
}, z$1.core.$strip>;
|
|
18876
|
+
}, z$1.core.$strip>;
|
|
18396
18877
|
/**
|
|
18397
18878
|
* The caller's spendable TRON balance in cents
|
|
18398
18879
|
*/
|
|
@@ -21287,6 +21768,24 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
21287
21768
|
rejectionReason: z$1.ZodNullable<z$1.ZodString>;
|
|
21288
21769
|
settledAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21289
21770
|
kind: z$1.ZodLiteral<"tron_cashout">;
|
|
21771
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21772
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
21773
|
+
id: z$1.ZodString;
|
|
21774
|
+
occurredAt: z$1.ZodISODateTime;
|
|
21775
|
+
role: z$1.ZodEnum<{
|
|
21776
|
+
outgoing: "outgoing";
|
|
21777
|
+
incoming: "incoming";
|
|
21778
|
+
}>;
|
|
21779
|
+
amountCents: z$1.ZodInt;
|
|
21780
|
+
usdCents: z$1.ZodInt;
|
|
21781
|
+
status: z$1.ZodEnum<{
|
|
21782
|
+
settled: "settled";
|
|
21783
|
+
}>;
|
|
21784
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
21785
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
21786
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
21787
|
+
note: z$1.ZodNullable<z$1.ZodString>;
|
|
21788
|
+
kind: z$1.ZodLiteral<"tron_transfer">;
|
|
21290
21789
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21291
21790
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
21292
21791
|
id: z$1.ZodString;
|
|
@@ -21823,6 +22322,51 @@ declare const zGetMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
|
|
|
21823
22322
|
url: z$1.ZodURL;
|
|
21824
22323
|
order: z$1.ZodInt;
|
|
21825
22324
|
}, z$1.core.$strip>>;
|
|
22325
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22326
|
+
web: "web";
|
|
22327
|
+
ios: "ios";
|
|
22328
|
+
android: "android";
|
|
22329
|
+
pc: "pc";
|
|
22330
|
+
playstation: "playstation";
|
|
22331
|
+
xbox: "xbox";
|
|
22332
|
+
switch: "switch";
|
|
22333
|
+
}>>;
|
|
22334
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22335
|
+
single_player: "single_player";
|
|
22336
|
+
multiplayer: "multiplayer";
|
|
22337
|
+
both: "both";
|
|
22338
|
+
}>>;
|
|
22339
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22340
|
+
everyone: "everyone";
|
|
22341
|
+
"13_plus": "13_plus";
|
|
22342
|
+
"16_plus": "16_plus";
|
|
22343
|
+
"18_plus": "18_plus";
|
|
22344
|
+
}>>;
|
|
22345
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22346
|
+
id: "id";
|
|
22347
|
+
en: "en";
|
|
22348
|
+
es: "es";
|
|
22349
|
+
fr: "fr";
|
|
22350
|
+
de: "de";
|
|
22351
|
+
pt: "pt";
|
|
22352
|
+
it: "it";
|
|
22353
|
+
ru: "ru";
|
|
22354
|
+
ja: "ja";
|
|
22355
|
+
ko: "ko";
|
|
22356
|
+
zh: "zh";
|
|
22357
|
+
hi: "hi";
|
|
22358
|
+
ar: "ar";
|
|
22359
|
+
tr: "tr";
|
|
22360
|
+
vi: "vi";
|
|
22361
|
+
th: "th";
|
|
22362
|
+
pl: "pl";
|
|
22363
|
+
nl: "nl";
|
|
22364
|
+
}>>;
|
|
22365
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22366
|
+
live: "live";
|
|
22367
|
+
open_beta: "open_beta";
|
|
22368
|
+
coming_soon: "coming_soon";
|
|
22369
|
+
}>;
|
|
21826
22370
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21827
22371
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21828
22372
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -21886,6 +22430,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageBody: z$1.ZodObject<{
|
|
|
21886
22430
|
url: z$1.ZodURL;
|
|
21887
22431
|
order: z$1.ZodInt;
|
|
21888
22432
|
}, z$1.core.$strip>>>;
|
|
22433
|
+
platforms: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
22434
|
+
web: "web";
|
|
22435
|
+
ios: "ios";
|
|
22436
|
+
android: "android";
|
|
22437
|
+
pc: "pc";
|
|
22438
|
+
playstation: "playstation";
|
|
22439
|
+
xbox: "xbox";
|
|
22440
|
+
switch: "switch";
|
|
22441
|
+
}>>>;
|
|
22442
|
+
gameType: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
22443
|
+
single_player: "single_player";
|
|
22444
|
+
multiplayer: "multiplayer";
|
|
22445
|
+
both: "both";
|
|
22446
|
+
}>>>;
|
|
22447
|
+
ageRating: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodEnum<{
|
|
22448
|
+
everyone: "everyone";
|
|
22449
|
+
"13_plus": "13_plus";
|
|
22450
|
+
"16_plus": "16_plus";
|
|
22451
|
+
"18_plus": "18_plus";
|
|
22452
|
+
}>>>;
|
|
22453
|
+
languages: z$1.ZodOptional<z$1.ZodArray<z$1.ZodEnum<{
|
|
22454
|
+
id: "id";
|
|
22455
|
+
en: "en";
|
|
22456
|
+
es: "es";
|
|
22457
|
+
fr: "fr";
|
|
22458
|
+
de: "de";
|
|
22459
|
+
pt: "pt";
|
|
22460
|
+
it: "it";
|
|
22461
|
+
ru: "ru";
|
|
22462
|
+
ja: "ja";
|
|
22463
|
+
ko: "ko";
|
|
22464
|
+
zh: "zh";
|
|
22465
|
+
hi: "hi";
|
|
22466
|
+
ar: "ar";
|
|
22467
|
+
tr: "tr";
|
|
22468
|
+
vi: "vi";
|
|
22469
|
+
th: "th";
|
|
22470
|
+
pl: "pl";
|
|
22471
|
+
nl: "nl";
|
|
22472
|
+
}>>>;
|
|
22473
|
+
releaseStatus: z$1.ZodOptional<z$1.ZodEnum<{
|
|
22474
|
+
live: "live";
|
|
22475
|
+
open_beta: "open_beta";
|
|
22476
|
+
coming_soon: "coming_soon";
|
|
22477
|
+
}>>;
|
|
21889
22478
|
}, z$1.core.$strip>;
|
|
21890
22479
|
declare const zPatchMeDeveloperAppsByAppIdPagePath: z$1.ZodObject<{
|
|
21891
22480
|
appId: z$1.ZodString;
|
|
@@ -21956,6 +22545,51 @@ declare const zPatchMeDeveloperAppsByAppIdPageResponse: z$1.ZodObject<{
|
|
|
21956
22545
|
url: z$1.ZodURL;
|
|
21957
22546
|
order: z$1.ZodInt;
|
|
21958
22547
|
}, z$1.core.$strip>>;
|
|
22548
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22549
|
+
web: "web";
|
|
22550
|
+
ios: "ios";
|
|
22551
|
+
android: "android";
|
|
22552
|
+
pc: "pc";
|
|
22553
|
+
playstation: "playstation";
|
|
22554
|
+
xbox: "xbox";
|
|
22555
|
+
switch: "switch";
|
|
22556
|
+
}>>;
|
|
22557
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22558
|
+
single_player: "single_player";
|
|
22559
|
+
multiplayer: "multiplayer";
|
|
22560
|
+
both: "both";
|
|
22561
|
+
}>>;
|
|
22562
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22563
|
+
everyone: "everyone";
|
|
22564
|
+
"13_plus": "13_plus";
|
|
22565
|
+
"16_plus": "16_plus";
|
|
22566
|
+
"18_plus": "18_plus";
|
|
22567
|
+
}>>;
|
|
22568
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22569
|
+
id: "id";
|
|
22570
|
+
en: "en";
|
|
22571
|
+
es: "es";
|
|
22572
|
+
fr: "fr";
|
|
22573
|
+
de: "de";
|
|
22574
|
+
pt: "pt";
|
|
22575
|
+
it: "it";
|
|
22576
|
+
ru: "ru";
|
|
22577
|
+
ja: "ja";
|
|
22578
|
+
ko: "ko";
|
|
22579
|
+
zh: "zh";
|
|
22580
|
+
hi: "hi";
|
|
22581
|
+
ar: "ar";
|
|
22582
|
+
tr: "tr";
|
|
22583
|
+
vi: "vi";
|
|
22584
|
+
th: "th";
|
|
22585
|
+
pl: "pl";
|
|
22586
|
+
nl: "nl";
|
|
22587
|
+
}>>;
|
|
22588
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22589
|
+
live: "live";
|
|
22590
|
+
open_beta: "open_beta";
|
|
22591
|
+
coming_soon: "coming_soon";
|
|
22592
|
+
}>;
|
|
21959
22593
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21960
22594
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21961
22595
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -22101,6 +22735,51 @@ declare const zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse: z$1.ZodObj
|
|
|
22101
22735
|
url: z$1.ZodURL;
|
|
22102
22736
|
order: z$1.ZodInt;
|
|
22103
22737
|
}, z$1.core.$strip>>;
|
|
22738
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22739
|
+
web: "web";
|
|
22740
|
+
ios: "ios";
|
|
22741
|
+
android: "android";
|
|
22742
|
+
pc: "pc";
|
|
22743
|
+
playstation: "playstation";
|
|
22744
|
+
xbox: "xbox";
|
|
22745
|
+
switch: "switch";
|
|
22746
|
+
}>>;
|
|
22747
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22748
|
+
single_player: "single_player";
|
|
22749
|
+
multiplayer: "multiplayer";
|
|
22750
|
+
both: "both";
|
|
22751
|
+
}>>;
|
|
22752
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22753
|
+
everyone: "everyone";
|
|
22754
|
+
"13_plus": "13_plus";
|
|
22755
|
+
"16_plus": "16_plus";
|
|
22756
|
+
"18_plus": "18_plus";
|
|
22757
|
+
}>>;
|
|
22758
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22759
|
+
id: "id";
|
|
22760
|
+
en: "en";
|
|
22761
|
+
es: "es";
|
|
22762
|
+
fr: "fr";
|
|
22763
|
+
de: "de";
|
|
22764
|
+
pt: "pt";
|
|
22765
|
+
it: "it";
|
|
22766
|
+
ru: "ru";
|
|
22767
|
+
ja: "ja";
|
|
22768
|
+
ko: "ko";
|
|
22769
|
+
zh: "zh";
|
|
22770
|
+
hi: "hi";
|
|
22771
|
+
ar: "ar";
|
|
22772
|
+
tr: "tr";
|
|
22773
|
+
vi: "vi";
|
|
22774
|
+
th: "th";
|
|
22775
|
+
pl: "pl";
|
|
22776
|
+
nl: "nl";
|
|
22777
|
+
}>>;
|
|
22778
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22779
|
+
live: "live";
|
|
22780
|
+
open_beta: "open_beta";
|
|
22781
|
+
coming_soon: "coming_soon";
|
|
22782
|
+
}>;
|
|
22104
22783
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22105
22784
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22106
22785
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -22177,6 +22856,51 @@ declare const zPostMeDeveloperAppsByAppIdPageUnpublishResponse: z$1.ZodObject<{
|
|
|
22177
22856
|
url: z$1.ZodURL;
|
|
22178
22857
|
order: z$1.ZodInt;
|
|
22179
22858
|
}, z$1.core.$strip>>;
|
|
22859
|
+
platforms: z$1.ZodArray<z$1.ZodEnum<{
|
|
22860
|
+
web: "web";
|
|
22861
|
+
ios: "ios";
|
|
22862
|
+
android: "android";
|
|
22863
|
+
pc: "pc";
|
|
22864
|
+
playstation: "playstation";
|
|
22865
|
+
xbox: "xbox";
|
|
22866
|
+
switch: "switch";
|
|
22867
|
+
}>>;
|
|
22868
|
+
gameType: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22869
|
+
single_player: "single_player";
|
|
22870
|
+
multiplayer: "multiplayer";
|
|
22871
|
+
both: "both";
|
|
22872
|
+
}>>;
|
|
22873
|
+
ageRating: z$1.ZodNullable<z$1.ZodEnum<{
|
|
22874
|
+
everyone: "everyone";
|
|
22875
|
+
"13_plus": "13_plus";
|
|
22876
|
+
"16_plus": "16_plus";
|
|
22877
|
+
"18_plus": "18_plus";
|
|
22878
|
+
}>>;
|
|
22879
|
+
languages: z$1.ZodArray<z$1.ZodEnum<{
|
|
22880
|
+
id: "id";
|
|
22881
|
+
en: "en";
|
|
22882
|
+
es: "es";
|
|
22883
|
+
fr: "fr";
|
|
22884
|
+
de: "de";
|
|
22885
|
+
pt: "pt";
|
|
22886
|
+
it: "it";
|
|
22887
|
+
ru: "ru";
|
|
22888
|
+
ja: "ja";
|
|
22889
|
+
ko: "ko";
|
|
22890
|
+
zh: "zh";
|
|
22891
|
+
hi: "hi";
|
|
22892
|
+
ar: "ar";
|
|
22893
|
+
tr: "tr";
|
|
22894
|
+
vi: "vi";
|
|
22895
|
+
th: "th";
|
|
22896
|
+
pl: "pl";
|
|
22897
|
+
nl: "nl";
|
|
22898
|
+
}>>;
|
|
22899
|
+
releaseStatus: z$1.ZodEnum<{
|
|
22900
|
+
live: "live";
|
|
22901
|
+
open_beta: "open_beta";
|
|
22902
|
+
coming_soon: "coming_soon";
|
|
22903
|
+
}>;
|
|
22180
22904
|
firstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22181
22905
|
reviewedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22182
22906
|
reviewNotes: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23461,4 +24185,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
23461
24185
|
*/
|
|
23462
24186
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
23463
24187
|
//#endregion
|
|
23464
|
-
export { type AcceptedCurrencies, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppPageApprovedNotificationPayload, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageLink, type AppPageLinks, type AppPageRejectedNotificationPayload, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryHolding, type InventoryListResponse, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewDistribution, type ReviewEligibilityReason, type ReviewListResponse, type ReviewRating, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TronBalanceResponse, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppPageApprovedNotificationPayload, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageLink, zAppPageLinks, zAppPageRejectedNotificationPayload, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteMeAvatarResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthInventoryResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryHolding, zInventoryListResponse, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewDistribution, zReviewEligibilityReason, zReviewListResponse, zReviewRating, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTronBalanceResponse, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };
|
|
24188
|
+
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 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 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 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 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, 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, 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, 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, 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 };
|