@metatrongg/sdk 0.8.0-dev.dd9b4fd → 0.8.0-dev.e5563da
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 +73 -4
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +700 -25
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +73 -4
- 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 +4 -4
|
@@ -496,6 +496,7 @@ type LibraryItem = {
|
|
|
496
496
|
firstPublishedAt: string;
|
|
497
497
|
};
|
|
498
498
|
type AppPageSlug = string;
|
|
499
|
+
type LibrarySort = "newest" | "top";
|
|
499
500
|
type PublicAppPage = {
|
|
500
501
|
appId: string;
|
|
501
502
|
slug: AppPageSlug;
|
|
@@ -521,6 +522,7 @@ type PublicAppPage = {
|
|
|
521
522
|
paymentsMode: AppPagePaymentsMode;
|
|
522
523
|
oauthScopes: Array<string>;
|
|
523
524
|
chains: Array<string>;
|
|
525
|
+
devlog: boolean;
|
|
524
526
|
publishedAt: string;
|
|
525
527
|
updatedAt: string;
|
|
526
528
|
};
|
|
@@ -586,6 +588,7 @@ type BipUpdateListResponse = {
|
|
|
586
588
|
updates: Array<BipUpdate>;
|
|
587
589
|
total: number;
|
|
588
590
|
hasMore: boolean;
|
|
591
|
+
pinned: BipUpdate | null;
|
|
589
592
|
};
|
|
590
593
|
type BipUpdate = {
|
|
591
594
|
id: string;
|
|
@@ -596,6 +599,7 @@ type BipUpdate = {
|
|
|
596
599
|
commentCount: number;
|
|
597
600
|
createdAt: string;
|
|
598
601
|
updatedAt: string;
|
|
602
|
+
pinnedAt: string | null;
|
|
599
603
|
};
|
|
600
604
|
type BipUpdateBody = string;
|
|
601
605
|
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
@@ -906,7 +910,11 @@ type ActivityRow = ({
|
|
|
906
910
|
kind: "referral_earning";
|
|
907
911
|
} & ActivityRowReferralEarning) | ({
|
|
908
912
|
kind: "nft_charge";
|
|
909
|
-
} & ActivityRowNftCharge)
|
|
913
|
+
} & ActivityRowNftCharge) | ({
|
|
914
|
+
kind: "solana_stake";
|
|
915
|
+
} & ActivityRowSolanaStake) | ({
|
|
916
|
+
kind: "solana_pot_leg";
|
|
917
|
+
} & ActivityRowSolanaPotLeg);
|
|
910
918
|
type ActivityRowPayment = {
|
|
911
919
|
kind: "payment";
|
|
912
920
|
groupId: string | null;
|
|
@@ -1234,6 +1242,56 @@ type ActivityRowNftCharge = {
|
|
|
1234
1242
|
counterpartyHandle: string | null;
|
|
1235
1243
|
counterpartyDisplayName: string | null;
|
|
1236
1244
|
};
|
|
1245
|
+
type ActivityRowSolanaStake = {
|
|
1246
|
+
kind: "solana_stake";
|
|
1247
|
+
groupId: string | null;
|
|
1248
|
+
id: string;
|
|
1249
|
+
chain: string;
|
|
1250
|
+
occurredAt: string;
|
|
1251
|
+
role: "outgoing" | "incoming";
|
|
1252
|
+
amount: string;
|
|
1253
|
+
token: string;
|
|
1254
|
+
potId: string | null;
|
|
1255
|
+
usdCents: number;
|
|
1256
|
+
status: "completed";
|
|
1257
|
+
txHash: string | null;
|
|
1258
|
+
app: {
|
|
1259
|
+
id: string;
|
|
1260
|
+
name: string;
|
|
1261
|
+
logoUrl: string | null;
|
|
1262
|
+
slug: string | null;
|
|
1263
|
+
bannerUrl: string | null;
|
|
1264
|
+
} | null;
|
|
1265
|
+
stakerUserId?: string | null;
|
|
1266
|
+
stakerHandle?: string | null;
|
|
1267
|
+
stakerDisplayName?: string | null;
|
|
1268
|
+
metadata?: PaymentMetadata | null;
|
|
1269
|
+
};
|
|
1270
|
+
type ActivityRowSolanaPotLeg = {
|
|
1271
|
+
kind: "solana_pot_leg";
|
|
1272
|
+
groupId: string | null;
|
|
1273
|
+
id: string;
|
|
1274
|
+
chain: string;
|
|
1275
|
+
occurredAt: string;
|
|
1276
|
+
role: "outgoing" | "incoming";
|
|
1277
|
+
beneficiary: string;
|
|
1278
|
+
potId: string | null;
|
|
1279
|
+
amount: string;
|
|
1280
|
+
token: string;
|
|
1281
|
+
usdCents: number | null;
|
|
1282
|
+
status: "settled";
|
|
1283
|
+
app: {
|
|
1284
|
+
id: string;
|
|
1285
|
+
name: string;
|
|
1286
|
+
logoUrl: string | null;
|
|
1287
|
+
slug: string | null;
|
|
1288
|
+
bannerUrl: string | null;
|
|
1289
|
+
} | null;
|
|
1290
|
+
txHash: string | null;
|
|
1291
|
+
recipientUserId?: string | null;
|
|
1292
|
+
recipientHandle?: string | null;
|
|
1293
|
+
recipientDisplayName?: string | null;
|
|
1294
|
+
};
|
|
1237
1295
|
type OutstandingResponse = {
|
|
1238
1296
|
rows: Array<OutstandingByToken>;
|
|
1239
1297
|
};
|
|
@@ -2602,7 +2660,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
2602
2660
|
};
|
|
2603
2661
|
type DeveloperAppWalletItem = {
|
|
2604
2662
|
chain: string;
|
|
2605
|
-
address: string;
|
|
2663
|
+
address: string | string;
|
|
2606
2664
|
custody: "server" | null;
|
|
2607
2665
|
walletId: string | null;
|
|
2608
2666
|
autoSweepEnabled: boolean;
|
|
@@ -2623,7 +2681,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
2623
2681
|
chain: string;
|
|
2624
2682
|
custody: "server";
|
|
2625
2683
|
walletId: string;
|
|
2626
|
-
address: string;
|
|
2684
|
+
address: string | string;
|
|
2627
2685
|
};
|
|
2628
2686
|
type DeveloperAppWithdrawResponse = {
|
|
2629
2687
|
appId: string;
|
|
@@ -4269,6 +4327,7 @@ type GetPublicLibraryData = {
|
|
|
4269
4327
|
query?: {
|
|
4270
4328
|
genre?: "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";
|
|
4271
4329
|
q?: string;
|
|
4330
|
+
sort?: LibrarySort;
|
|
4272
4331
|
before?: string;
|
|
4273
4332
|
limit?: number;
|
|
4274
4333
|
};
|
|
@@ -4316,6 +4375,7 @@ type GetPublicBuildInPublicData = {
|
|
|
4316
4375
|
query?: {
|
|
4317
4376
|
genre?: "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";
|
|
4318
4377
|
q?: string;
|
|
4378
|
+
sort?: LibrarySort;
|
|
4319
4379
|
before?: string;
|
|
4320
4380
|
limit?: number;
|
|
4321
4381
|
};
|
|
@@ -4784,6 +4844,68 @@ type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses = {
|
|
|
4784
4844
|
200: BipUpdate;
|
|
4785
4845
|
};
|
|
4786
4846
|
type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse = PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses[keyof PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses];
|
|
4847
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4848
|
+
body?: never;
|
|
4849
|
+
path: {
|
|
4850
|
+
appId: string;
|
|
4851
|
+
updateId: string;
|
|
4852
|
+
};
|
|
4853
|
+
query?: never;
|
|
4854
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4855
|
+
};
|
|
4856
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4857
|
+
/**
|
|
4858
|
+
* Request error
|
|
4859
|
+
*/
|
|
4860
|
+
401: ErrorResponse;
|
|
4861
|
+
/**
|
|
4862
|
+
* Request error
|
|
4863
|
+
*/
|
|
4864
|
+
403: ErrorResponse;
|
|
4865
|
+
/**
|
|
4866
|
+
* Request error
|
|
4867
|
+
*/
|
|
4868
|
+
404: ErrorResponse;
|
|
4869
|
+
};
|
|
4870
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
|
|
4871
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
|
|
4872
|
+
/**
|
|
4873
|
+
* The fresh (no longer pinned) update
|
|
4874
|
+
*/
|
|
4875
|
+
200: BipUpdate;
|
|
4876
|
+
};
|
|
4877
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
|
|
4878
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4879
|
+
body?: never;
|
|
4880
|
+
path: {
|
|
4881
|
+
appId: string;
|
|
4882
|
+
updateId: string;
|
|
4883
|
+
};
|
|
4884
|
+
query?: never;
|
|
4885
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4886
|
+
};
|
|
4887
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4888
|
+
/**
|
|
4889
|
+
* Request error
|
|
4890
|
+
*/
|
|
4891
|
+
401: ErrorResponse;
|
|
4892
|
+
/**
|
|
4893
|
+
* Request error
|
|
4894
|
+
*/
|
|
4895
|
+
403: ErrorResponse;
|
|
4896
|
+
/**
|
|
4897
|
+
* Request error
|
|
4898
|
+
*/
|
|
4899
|
+
404: ErrorResponse;
|
|
4900
|
+
};
|
|
4901
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
|
|
4902
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
|
|
4903
|
+
/**
|
|
4904
|
+
* The freshly pinned update
|
|
4905
|
+
*/
|
|
4906
|
+
200: BipUpdate;
|
|
4907
|
+
};
|
|
4908
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
|
|
4787
4909
|
type PostMeDeveloperAppsByAppIdBipUpdatesMediaData = {
|
|
4788
4910
|
body: {
|
|
4789
4911
|
file: string;
|
|
@@ -13348,6 +13470,10 @@ declare const zLibraryListResponse: z$1.ZodObject<{
|
|
|
13348
13470
|
}, z$1.core.$strip>>;
|
|
13349
13471
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13350
13472
|
}, z$1.core.$strip>;
|
|
13473
|
+
declare const zLibrarySort: z$1.ZodDefault<z$1.ZodEnum<{
|
|
13474
|
+
newest: "newest";
|
|
13475
|
+
top: "top";
|
|
13476
|
+
}>>;
|
|
13351
13477
|
declare const zAppPageCategories: z$1.ZodArray<z$1.ZodEnum<{
|
|
13352
13478
|
adventure: "adventure";
|
|
13353
13479
|
battle_royale: "battle_royale";
|
|
@@ -13584,6 +13710,7 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
13584
13710
|
}>>;
|
|
13585
13711
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
13586
13712
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
13713
|
+
devlog: z$1.ZodBoolean;
|
|
13587
13714
|
publishedAt: z$1.ZodISODateTime;
|
|
13588
13715
|
updatedAt: z$1.ZodISODateTime;
|
|
13589
13716
|
}, z$1.core.$strip>;
|
|
@@ -13739,6 +13866,7 @@ declare const zBipUpdate: z$1.ZodObject<{
|
|
|
13739
13866
|
commentCount: z$1.ZodInt;
|
|
13740
13867
|
createdAt: z$1.ZodISODateTime;
|
|
13741
13868
|
updatedAt: z$1.ZodISODateTime;
|
|
13869
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13742
13870
|
}, z$1.core.$strip>;
|
|
13743
13871
|
declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
13744
13872
|
updates: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -13760,9 +13888,31 @@ declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
|
13760
13888
|
commentCount: z$1.ZodInt;
|
|
13761
13889
|
createdAt: z$1.ZodISODateTime;
|
|
13762
13890
|
updatedAt: z$1.ZodISODateTime;
|
|
13891
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13763
13892
|
}, z$1.core.$strip>>;
|
|
13764
13893
|
total: z$1.ZodInt;
|
|
13765
13894
|
hasMore: z$1.ZodBoolean;
|
|
13895
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
13896
|
+
id: z$1.ZodUUID;
|
|
13897
|
+
appId: z$1.ZodUUID;
|
|
13898
|
+
body: z$1.ZodString;
|
|
13899
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
13900
|
+
url: z$1.ZodURL;
|
|
13901
|
+
kind: z$1.ZodEnum<{
|
|
13902
|
+
image: "image";
|
|
13903
|
+
video: "video";
|
|
13904
|
+
}>;
|
|
13905
|
+
order: z$1.ZodInt;
|
|
13906
|
+
}, z$1.core.$strip>>;
|
|
13907
|
+
reactions: z$1.ZodObject<{
|
|
13908
|
+
up: z$1.ZodInt;
|
|
13909
|
+
down: z$1.ZodInt;
|
|
13910
|
+
}, z$1.core.$strip>;
|
|
13911
|
+
commentCount: z$1.ZodInt;
|
|
13912
|
+
createdAt: z$1.ZodISODateTime;
|
|
13913
|
+
updatedAt: z$1.ZodISODateTime;
|
|
13914
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13915
|
+
}, z$1.core.$strip>>;
|
|
13766
13916
|
}, z$1.core.$strip>;
|
|
13767
13917
|
declare const zBipUpdateCommentBody: z$1.ZodString;
|
|
13768
13918
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
@@ -14019,8 +14169,8 @@ declare const zReviewListResponse: z$1.ZodObject<{
|
|
|
14019
14169
|
hasMore: z$1.ZodBoolean;
|
|
14020
14170
|
}, z$1.core.$strip>;
|
|
14021
14171
|
declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
|
|
14022
|
-
helpful: "helpful";
|
|
14023
14172
|
newest: "newest";
|
|
14173
|
+
helpful: "helpful";
|
|
14024
14174
|
oldest: "oldest";
|
|
14025
14175
|
}>>;
|
|
14026
14176
|
declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -14860,6 +15010,80 @@ declare const zActivityRowNftCharge: z$1.ZodObject<{
|
|
|
14860
15010
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
14861
15011
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
14862
15012
|
}, z$1.core.$strip>;
|
|
15013
|
+
declare const zActivityRowSolanaStake: z$1.ZodObject<{
|
|
15014
|
+
kind: z$1.ZodEnum<{
|
|
15015
|
+
solana_stake: "solana_stake";
|
|
15016
|
+
}>;
|
|
15017
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15018
|
+
id: z$1.ZodString;
|
|
15019
|
+
chain: z$1.ZodString;
|
|
15020
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15021
|
+
role: z$1.ZodEnum<{
|
|
15022
|
+
outgoing: "outgoing";
|
|
15023
|
+
incoming: "incoming";
|
|
15024
|
+
}>;
|
|
15025
|
+
amount: z$1.ZodString;
|
|
15026
|
+
token: z$1.ZodString;
|
|
15027
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15028
|
+
usdCents: z$1.ZodInt;
|
|
15029
|
+
status: z$1.ZodEnum<{
|
|
15030
|
+
completed: "completed";
|
|
15031
|
+
}>;
|
|
15032
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15033
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15034
|
+
id: z$1.ZodString;
|
|
15035
|
+
name: z$1.ZodString;
|
|
15036
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15037
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15038
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15039
|
+
}, z$1.core.$strip>>;
|
|
15040
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15041
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15042
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15043
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
15044
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
15045
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
15046
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
15047
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
15048
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
15049
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
15050
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
15051
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
15052
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
15053
|
+
}, z$1.core.$strip>>>;
|
|
15054
|
+
}, z$1.core.$strip>;
|
|
15055
|
+
declare const zActivityRowSolanaPotLeg: z$1.ZodObject<{
|
|
15056
|
+
kind: z$1.ZodEnum<{
|
|
15057
|
+
solana_pot_leg: "solana_pot_leg";
|
|
15058
|
+
}>;
|
|
15059
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15060
|
+
id: z$1.ZodString;
|
|
15061
|
+
chain: z$1.ZodString;
|
|
15062
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15063
|
+
role: z$1.ZodEnum<{
|
|
15064
|
+
outgoing: "outgoing";
|
|
15065
|
+
incoming: "incoming";
|
|
15066
|
+
}>;
|
|
15067
|
+
beneficiary: z$1.ZodString;
|
|
15068
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15069
|
+
amount: z$1.ZodString;
|
|
15070
|
+
token: z$1.ZodString;
|
|
15071
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
15072
|
+
status: z$1.ZodEnum<{
|
|
15073
|
+
settled: "settled";
|
|
15074
|
+
}>;
|
|
15075
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15076
|
+
id: z$1.ZodString;
|
|
15077
|
+
name: z$1.ZodString;
|
|
15078
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15079
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15080
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15081
|
+
}, z$1.core.$strip>>;
|
|
15082
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15083
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15084
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15085
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15086
|
+
}, z$1.core.$strip>;
|
|
14863
15087
|
declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
14864
15088
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
14865
15089
|
id: z$1.ZodString;
|
|
@@ -15321,6 +15545,74 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
15321
15545
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
15322
15546
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
15323
15547
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
15548
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
15549
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15550
|
+
id: z$1.ZodString;
|
|
15551
|
+
chain: z$1.ZodString;
|
|
15552
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15553
|
+
role: z$1.ZodEnum<{
|
|
15554
|
+
outgoing: "outgoing";
|
|
15555
|
+
incoming: "incoming";
|
|
15556
|
+
}>;
|
|
15557
|
+
amount: z$1.ZodString;
|
|
15558
|
+
token: z$1.ZodString;
|
|
15559
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15560
|
+
usdCents: z$1.ZodInt;
|
|
15561
|
+
status: z$1.ZodEnum<{
|
|
15562
|
+
completed: "completed";
|
|
15563
|
+
}>;
|
|
15564
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15565
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15566
|
+
id: z$1.ZodString;
|
|
15567
|
+
name: z$1.ZodString;
|
|
15568
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15569
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15570
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15571
|
+
}, z$1.core.$strip>>;
|
|
15572
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15573
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15574
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15575
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
15576
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
15577
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
15578
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
15579
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
15580
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
15581
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
15582
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
15583
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
15584
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
15585
|
+
}, z$1.core.$strip>>>;
|
|
15586
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
15587
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
15588
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15589
|
+
id: z$1.ZodString;
|
|
15590
|
+
chain: z$1.ZodString;
|
|
15591
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15592
|
+
role: z$1.ZodEnum<{
|
|
15593
|
+
outgoing: "outgoing";
|
|
15594
|
+
incoming: "incoming";
|
|
15595
|
+
}>;
|
|
15596
|
+
beneficiary: z$1.ZodString;
|
|
15597
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15598
|
+
amount: z$1.ZodString;
|
|
15599
|
+
token: z$1.ZodString;
|
|
15600
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
15601
|
+
status: z$1.ZodEnum<{
|
|
15602
|
+
settled: "settled";
|
|
15603
|
+
}>;
|
|
15604
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15605
|
+
id: z$1.ZodString;
|
|
15606
|
+
name: z$1.ZodString;
|
|
15607
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15608
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15609
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15610
|
+
}, z$1.core.$strip>>;
|
|
15611
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15612
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15613
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15614
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15615
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
15324
15616
|
}, z$1.core.$strip>], "kind">;
|
|
15325
15617
|
declare const zActivityResponse: z$1.ZodObject<{
|
|
15326
15618
|
rows: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
@@ -15784,19 +16076,87 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
15784
16076
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
15785
16077
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
15786
16078
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
15787
|
-
}, z$1.core.$strip
|
|
15788
|
-
|
|
15789
|
-
|
|
15790
|
-
|
|
15791
|
-
|
|
15792
|
-
|
|
15793
|
-
|
|
15794
|
-
|
|
15795
|
-
|
|
15796
|
-
|
|
15797
|
-
|
|
15798
|
-
|
|
15799
|
-
|
|
16079
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16080
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
16081
|
+
id: z$1.ZodString;
|
|
16082
|
+
chain: z$1.ZodString;
|
|
16083
|
+
occurredAt: z$1.ZodISODateTime;
|
|
16084
|
+
role: z$1.ZodEnum<{
|
|
16085
|
+
outgoing: "outgoing";
|
|
16086
|
+
incoming: "incoming";
|
|
16087
|
+
}>;
|
|
16088
|
+
amount: z$1.ZodString;
|
|
16089
|
+
token: z$1.ZodString;
|
|
16090
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
16091
|
+
usdCents: z$1.ZodInt;
|
|
16092
|
+
status: z$1.ZodEnum<{
|
|
16093
|
+
completed: "completed";
|
|
16094
|
+
}>;
|
|
16095
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
16096
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
16097
|
+
id: z$1.ZodString;
|
|
16098
|
+
name: z$1.ZodString;
|
|
16099
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16100
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
16101
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16102
|
+
}, z$1.core.$strip>>;
|
|
16103
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16104
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16105
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16106
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
16107
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
16108
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
16109
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
16110
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
16111
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
16112
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
16113
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
16114
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
16115
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
16116
|
+
}, z$1.core.$strip>>>;
|
|
16117
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
16118
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16119
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
16120
|
+
id: z$1.ZodString;
|
|
16121
|
+
chain: z$1.ZodString;
|
|
16122
|
+
occurredAt: z$1.ZodISODateTime;
|
|
16123
|
+
role: z$1.ZodEnum<{
|
|
16124
|
+
outgoing: "outgoing";
|
|
16125
|
+
incoming: "incoming";
|
|
16126
|
+
}>;
|
|
16127
|
+
beneficiary: z$1.ZodString;
|
|
16128
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
16129
|
+
amount: z$1.ZodString;
|
|
16130
|
+
token: z$1.ZodString;
|
|
16131
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
16132
|
+
status: z$1.ZodEnum<{
|
|
16133
|
+
settled: "settled";
|
|
16134
|
+
}>;
|
|
16135
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
16136
|
+
id: z$1.ZodString;
|
|
16137
|
+
name: z$1.ZodString;
|
|
16138
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16139
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
16140
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16141
|
+
}, z$1.core.$strip>>;
|
|
16142
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
16143
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16144
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16145
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16146
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
16147
|
+
}, z$1.core.$strip>], "kind">>;
|
|
16148
|
+
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
16149
|
+
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
16150
|
+
hasHidden: z$1.ZodBoolean;
|
|
16151
|
+
}, z$1.core.$strip>;
|
|
16152
|
+
declare const zOutstandingByToken: z$1.ZodObject<{
|
|
16153
|
+
chain: z$1.ZodString;
|
|
16154
|
+
token: z$1.ZodString;
|
|
16155
|
+
creditedWei: z$1.ZodString;
|
|
16156
|
+
drainedWei: z$1.ZodString;
|
|
16157
|
+
outstandingWei: z$1.ZodString;
|
|
16158
|
+
}, z$1.core.$strip>;
|
|
16159
|
+
declare const zOutstandingResponse: z$1.ZodObject<{
|
|
15800
16160
|
rows: z$1.ZodArray<z$1.ZodObject<{
|
|
15801
16161
|
chain: z$1.ZodString;
|
|
15802
16162
|
token: z$1.ZodString;
|
|
@@ -19106,7 +19466,7 @@ declare const zDeveloperAppOverviewResponse: z$1.ZodObject<{
|
|
|
19106
19466
|
}, z$1.core.$strip>;
|
|
19107
19467
|
declare const zDeveloperAppWalletItem: z$1.ZodObject<{
|
|
19108
19468
|
chain: z$1.ZodString;
|
|
19109
|
-
address: z$1.ZodString
|
|
19469
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
19110
19470
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
19111
19471
|
server: "server";
|
|
19112
19472
|
}>>;
|
|
@@ -19118,7 +19478,7 @@ declare const zDeveloperAppWalletsResponse: z$1.ZodObject<{
|
|
|
19118
19478
|
appId: z$1.ZodString;
|
|
19119
19479
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
19120
19480
|
chain: z$1.ZodString;
|
|
19121
|
-
address: z$1.ZodString
|
|
19481
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
19122
19482
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
19123
19483
|
server: "server";
|
|
19124
19484
|
}>>;
|
|
@@ -19144,7 +19504,7 @@ declare const zDeveloperAppProvisionWalletResponse: z$1.ZodObject<{
|
|
|
19144
19504
|
server: "server";
|
|
19145
19505
|
}>;
|
|
19146
19506
|
walletId: z$1.ZodString;
|
|
19147
|
-
address: z$1.ZodString
|
|
19507
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
19148
19508
|
}, z$1.core.$strip>;
|
|
19149
19509
|
declare const zDeveloperAppWithdrawResponse: z$1.ZodObject<{
|
|
19150
19510
|
appId: z$1.ZodString;
|
|
@@ -21735,6 +22095,10 @@ declare const zGetPublicLibraryQuery: z$1.ZodObject<{
|
|
|
21735
22095
|
other: "other";
|
|
21736
22096
|
}>>;
|
|
21737
22097
|
q: z$1.ZodOptional<z$1.ZodString>;
|
|
22098
|
+
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22099
|
+
newest: "newest";
|
|
22100
|
+
top: "top";
|
|
22101
|
+
}>>>;
|
|
21738
22102
|
before: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
21739
22103
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
21740
22104
|
}, z$1.core.$strip>;
|
|
@@ -21910,6 +22274,7 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
21910
22274
|
}>>;
|
|
21911
22275
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
21912
22276
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
22277
|
+
devlog: z$1.ZodBoolean;
|
|
21913
22278
|
publishedAt: z$1.ZodISODateTime;
|
|
21914
22279
|
updatedAt: z$1.ZodISODateTime;
|
|
21915
22280
|
}, z$1.core.$strip>;
|
|
@@ -21945,6 +22310,10 @@ declare const zGetPublicBuildInPublicQuery: z$1.ZodObject<{
|
|
|
21945
22310
|
other: "other";
|
|
21946
22311
|
}>>;
|
|
21947
22312
|
q: z$1.ZodOptional<z$1.ZodString>;
|
|
22313
|
+
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22314
|
+
newest: "newest";
|
|
22315
|
+
top: "top";
|
|
22316
|
+
}>>>;
|
|
21948
22317
|
before: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
21949
22318
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
21950
22319
|
}, z$1.core.$strip>;
|
|
@@ -22145,9 +22514,31 @@ declare const zGetPublicBuildInPublicBySlugUpdatesResponse: z$1.ZodObject<{
|
|
|
22145
22514
|
commentCount: z$1.ZodInt;
|
|
22146
22515
|
createdAt: z$1.ZodISODateTime;
|
|
22147
22516
|
updatedAt: z$1.ZodISODateTime;
|
|
22517
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22148
22518
|
}, z$1.core.$strip>>;
|
|
22149
22519
|
total: z$1.ZodInt;
|
|
22150
22520
|
hasMore: z$1.ZodBoolean;
|
|
22521
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
22522
|
+
id: z$1.ZodUUID;
|
|
22523
|
+
appId: z$1.ZodUUID;
|
|
22524
|
+
body: z$1.ZodString;
|
|
22525
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22526
|
+
url: z$1.ZodURL;
|
|
22527
|
+
kind: z$1.ZodEnum<{
|
|
22528
|
+
image: "image";
|
|
22529
|
+
video: "video";
|
|
22530
|
+
}>;
|
|
22531
|
+
order: z$1.ZodInt;
|
|
22532
|
+
}, z$1.core.$strip>>;
|
|
22533
|
+
reactions: z$1.ZodObject<{
|
|
22534
|
+
up: z$1.ZodInt;
|
|
22535
|
+
down: z$1.ZodInt;
|
|
22536
|
+
}, z$1.core.$strip>;
|
|
22537
|
+
commentCount: z$1.ZodInt;
|
|
22538
|
+
createdAt: z$1.ZodISODateTime;
|
|
22539
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22540
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22541
|
+
}, z$1.core.$strip>>;
|
|
22151
22542
|
}, z$1.core.$strip>;
|
|
22152
22543
|
declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath: z$1.ZodObject<{
|
|
22153
22544
|
slug: z$1.ZodString;
|
|
@@ -22325,9 +22716,31 @@ declare const zGetMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
22325
22716
|
commentCount: z$1.ZodInt;
|
|
22326
22717
|
createdAt: z$1.ZodISODateTime;
|
|
22327
22718
|
updatedAt: z$1.ZodISODateTime;
|
|
22719
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22328
22720
|
}, z$1.core.$strip>>;
|
|
22329
22721
|
total: z$1.ZodInt;
|
|
22330
22722
|
hasMore: z$1.ZodBoolean;
|
|
22723
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
22724
|
+
id: z$1.ZodUUID;
|
|
22725
|
+
appId: z$1.ZodUUID;
|
|
22726
|
+
body: z$1.ZodString;
|
|
22727
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22728
|
+
url: z$1.ZodURL;
|
|
22729
|
+
kind: z$1.ZodEnum<{
|
|
22730
|
+
image: "image";
|
|
22731
|
+
video: "video";
|
|
22732
|
+
}>;
|
|
22733
|
+
order: z$1.ZodInt;
|
|
22734
|
+
}, z$1.core.$strip>>;
|
|
22735
|
+
reactions: z$1.ZodObject<{
|
|
22736
|
+
up: z$1.ZodInt;
|
|
22737
|
+
down: z$1.ZodInt;
|
|
22738
|
+
}, z$1.core.$strip>;
|
|
22739
|
+
commentCount: z$1.ZodInt;
|
|
22740
|
+
createdAt: z$1.ZodISODateTime;
|
|
22741
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22742
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22743
|
+
}, z$1.core.$strip>>;
|
|
22331
22744
|
}, z$1.core.$strip>;
|
|
22332
22745
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesBody: z$1.ZodObject<{
|
|
22333
22746
|
body: z$1.ZodString;
|
|
@@ -22365,6 +22778,7 @@ declare const zPostMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
22365
22778
|
commentCount: z$1.ZodInt;
|
|
22366
22779
|
createdAt: z$1.ZodISODateTime;
|
|
22367
22780
|
updatedAt: z$1.ZodISODateTime;
|
|
22781
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22368
22782
|
}, z$1.core.$strip>;
|
|
22369
22783
|
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath: z$1.ZodObject<{
|
|
22370
22784
|
appId: z$1.ZodString;
|
|
@@ -22413,6 +22827,63 @@ declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodO
|
|
|
22413
22827
|
commentCount: z$1.ZodInt;
|
|
22414
22828
|
createdAt: z$1.ZodISODateTime;
|
|
22415
22829
|
updatedAt: z$1.ZodISODateTime;
|
|
22830
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22831
|
+
}, z$1.core.$strip>;
|
|
22832
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
22833
|
+
appId: z$1.ZodString;
|
|
22834
|
+
updateId: z$1.ZodUUID;
|
|
22835
|
+
}, z$1.core.$strip>;
|
|
22836
|
+
/**
|
|
22837
|
+
* The fresh (no longer pinned) update
|
|
22838
|
+
*/
|
|
22839
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
22840
|
+
id: z$1.ZodUUID;
|
|
22841
|
+
appId: z$1.ZodUUID;
|
|
22842
|
+
body: z$1.ZodString;
|
|
22843
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22844
|
+
url: z$1.ZodURL;
|
|
22845
|
+
kind: z$1.ZodEnum<{
|
|
22846
|
+
image: "image";
|
|
22847
|
+
video: "video";
|
|
22848
|
+
}>;
|
|
22849
|
+
order: z$1.ZodInt;
|
|
22850
|
+
}, z$1.core.$strip>>;
|
|
22851
|
+
reactions: z$1.ZodObject<{
|
|
22852
|
+
up: z$1.ZodInt;
|
|
22853
|
+
down: z$1.ZodInt;
|
|
22854
|
+
}, z$1.core.$strip>;
|
|
22855
|
+
commentCount: z$1.ZodInt;
|
|
22856
|
+
createdAt: z$1.ZodISODateTime;
|
|
22857
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22858
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22859
|
+
}, z$1.core.$strip>;
|
|
22860
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
22861
|
+
appId: z$1.ZodString;
|
|
22862
|
+
updateId: z$1.ZodUUID;
|
|
22863
|
+
}, z$1.core.$strip>;
|
|
22864
|
+
/**
|
|
22865
|
+
* The freshly pinned update
|
|
22866
|
+
*/
|
|
22867
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
22868
|
+
id: z$1.ZodUUID;
|
|
22869
|
+
appId: z$1.ZodUUID;
|
|
22870
|
+
body: z$1.ZodString;
|
|
22871
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22872
|
+
url: z$1.ZodURL;
|
|
22873
|
+
kind: z$1.ZodEnum<{
|
|
22874
|
+
image: "image";
|
|
22875
|
+
video: "video";
|
|
22876
|
+
}>;
|
|
22877
|
+
order: z$1.ZodInt;
|
|
22878
|
+
}, z$1.core.$strip>>;
|
|
22879
|
+
reactions: z$1.ZodObject<{
|
|
22880
|
+
up: z$1.ZodInt;
|
|
22881
|
+
down: z$1.ZodInt;
|
|
22882
|
+
}, z$1.core.$strip>;
|
|
22883
|
+
commentCount: z$1.ZodInt;
|
|
22884
|
+
createdAt: z$1.ZodISODateTime;
|
|
22885
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22886
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22416
22887
|
}, z$1.core.$strip>;
|
|
22417
22888
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody: z$1.ZodObject<{
|
|
22418
22889
|
file: z$1.ZodString;
|
|
@@ -22435,8 +22906,8 @@ declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
|
|
|
22435
22906
|
}, z$1.core.$strip>;
|
|
22436
22907
|
declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
|
|
22437
22908
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22438
|
-
helpful: "helpful";
|
|
22439
22909
|
newest: "newest";
|
|
22910
|
+
helpful: "helpful";
|
|
22440
22911
|
oldest: "oldest";
|
|
22441
22912
|
}>>>;
|
|
22442
22913
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
@@ -22688,8 +23159,8 @@ declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
|
|
|
22688
23159
|
}, z$1.core.$strip>;
|
|
22689
23160
|
declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
|
|
22690
23161
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22691
|
-
helpful: "helpful";
|
|
22692
23162
|
newest: "newest";
|
|
23163
|
+
helpful: "helpful";
|
|
22693
23164
|
oldest: "oldest";
|
|
22694
23165
|
}>>>;
|
|
22695
23166
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
@@ -23418,6 +23889,74 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
23418
23889
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23419
23890
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23420
23891
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
23892
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
23893
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
23894
|
+
id: z$1.ZodString;
|
|
23895
|
+
chain: z$1.ZodString;
|
|
23896
|
+
occurredAt: z$1.ZodISODateTime;
|
|
23897
|
+
role: z$1.ZodEnum<{
|
|
23898
|
+
outgoing: "outgoing";
|
|
23899
|
+
incoming: "incoming";
|
|
23900
|
+
}>;
|
|
23901
|
+
amount: z$1.ZodString;
|
|
23902
|
+
token: z$1.ZodString;
|
|
23903
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
23904
|
+
usdCents: z$1.ZodInt;
|
|
23905
|
+
status: z$1.ZodEnum<{
|
|
23906
|
+
completed: "completed";
|
|
23907
|
+
}>;
|
|
23908
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
23909
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
23910
|
+
id: z$1.ZodString;
|
|
23911
|
+
name: z$1.ZodString;
|
|
23912
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23913
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
23914
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23915
|
+
}, z$1.core.$strip>>;
|
|
23916
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23917
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23918
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23919
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
23920
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
23921
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
23922
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
23923
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
23924
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
23925
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
23926
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
23927
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
23928
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
23929
|
+
}, z$1.core.$strip>>>;
|
|
23930
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
23931
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
23932
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
23933
|
+
id: z$1.ZodString;
|
|
23934
|
+
chain: z$1.ZodString;
|
|
23935
|
+
occurredAt: z$1.ZodISODateTime;
|
|
23936
|
+
role: z$1.ZodEnum<{
|
|
23937
|
+
outgoing: "outgoing";
|
|
23938
|
+
incoming: "incoming";
|
|
23939
|
+
}>;
|
|
23940
|
+
beneficiary: z$1.ZodString;
|
|
23941
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
23942
|
+
amount: z$1.ZodString;
|
|
23943
|
+
token: z$1.ZodString;
|
|
23944
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
23945
|
+
status: z$1.ZodEnum<{
|
|
23946
|
+
settled: "settled";
|
|
23947
|
+
}>;
|
|
23948
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
23949
|
+
id: z$1.ZodString;
|
|
23950
|
+
name: z$1.ZodString;
|
|
23951
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23952
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
23953
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23954
|
+
}, z$1.core.$strip>>;
|
|
23955
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
23956
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23957
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23958
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23959
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
23421
23960
|
}, z$1.core.$strip>], "kind">>;
|
|
23422
23961
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
23423
23962
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23891,6 +24430,74 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
23891
24430
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23892
24431
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23893
24432
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
24433
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
24434
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
24435
|
+
id: z$1.ZodString;
|
|
24436
|
+
chain: z$1.ZodString;
|
|
24437
|
+
occurredAt: z$1.ZodISODateTime;
|
|
24438
|
+
role: z$1.ZodEnum<{
|
|
24439
|
+
outgoing: "outgoing";
|
|
24440
|
+
incoming: "incoming";
|
|
24441
|
+
}>;
|
|
24442
|
+
amount: z$1.ZodString;
|
|
24443
|
+
token: z$1.ZodString;
|
|
24444
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
24445
|
+
usdCents: z$1.ZodInt;
|
|
24446
|
+
status: z$1.ZodEnum<{
|
|
24447
|
+
completed: "completed";
|
|
24448
|
+
}>;
|
|
24449
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
24450
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
24451
|
+
id: z$1.ZodString;
|
|
24452
|
+
name: z$1.ZodString;
|
|
24453
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24454
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
24455
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24456
|
+
}, z$1.core.$strip>>;
|
|
24457
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24458
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24459
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24460
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
24461
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
24462
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
24463
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
24464
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
24465
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
24466
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
24467
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
24468
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
24469
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
24470
|
+
}, z$1.core.$strip>>>;
|
|
24471
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
24472
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
24473
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
24474
|
+
id: z$1.ZodString;
|
|
24475
|
+
chain: z$1.ZodString;
|
|
24476
|
+
occurredAt: z$1.ZodISODateTime;
|
|
24477
|
+
role: z$1.ZodEnum<{
|
|
24478
|
+
outgoing: "outgoing";
|
|
24479
|
+
incoming: "incoming";
|
|
24480
|
+
}>;
|
|
24481
|
+
beneficiary: z$1.ZodString;
|
|
24482
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
24483
|
+
amount: z$1.ZodString;
|
|
24484
|
+
token: z$1.ZodString;
|
|
24485
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
24486
|
+
status: z$1.ZodEnum<{
|
|
24487
|
+
settled: "settled";
|
|
24488
|
+
}>;
|
|
24489
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
24490
|
+
id: z$1.ZodString;
|
|
24491
|
+
name: z$1.ZodString;
|
|
24492
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24493
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
24494
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24495
|
+
}, z$1.core.$strip>>;
|
|
24496
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
24497
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24498
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24499
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24500
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
23894
24501
|
}, z$1.core.$strip>], "kind">>;
|
|
23895
24502
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
23896
24503
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -27977,6 +28584,74 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
27977
28584
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
27978
28585
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
27979
28586
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
28587
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
28588
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
28589
|
+
id: z$1.ZodString;
|
|
28590
|
+
chain: z$1.ZodString;
|
|
28591
|
+
occurredAt: z$1.ZodISODateTime;
|
|
28592
|
+
role: z$1.ZodEnum<{
|
|
28593
|
+
outgoing: "outgoing";
|
|
28594
|
+
incoming: "incoming";
|
|
28595
|
+
}>;
|
|
28596
|
+
amount: z$1.ZodString;
|
|
28597
|
+
token: z$1.ZodString;
|
|
28598
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
28599
|
+
usdCents: z$1.ZodInt;
|
|
28600
|
+
status: z$1.ZodEnum<{
|
|
28601
|
+
completed: "completed";
|
|
28602
|
+
}>;
|
|
28603
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
28604
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
28605
|
+
id: z$1.ZodString;
|
|
28606
|
+
name: z$1.ZodString;
|
|
28607
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28608
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
28609
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28610
|
+
}, z$1.core.$strip>>;
|
|
28611
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28612
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28613
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28614
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
28615
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
28616
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
28617
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
28618
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
28619
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
28620
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
28621
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
28622
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
28623
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
28624
|
+
}, z$1.core.$strip>>>;
|
|
28625
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
28626
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
28627
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
28628
|
+
id: z$1.ZodString;
|
|
28629
|
+
chain: z$1.ZodString;
|
|
28630
|
+
occurredAt: z$1.ZodISODateTime;
|
|
28631
|
+
role: z$1.ZodEnum<{
|
|
28632
|
+
outgoing: "outgoing";
|
|
28633
|
+
incoming: "incoming";
|
|
28634
|
+
}>;
|
|
28635
|
+
beneficiary: z$1.ZodString;
|
|
28636
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
28637
|
+
amount: z$1.ZodString;
|
|
28638
|
+
token: z$1.ZodString;
|
|
28639
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
28640
|
+
status: z$1.ZodEnum<{
|
|
28641
|
+
settled: "settled";
|
|
28642
|
+
}>;
|
|
28643
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
28644
|
+
id: z$1.ZodString;
|
|
28645
|
+
name: z$1.ZodString;
|
|
28646
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28647
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
28648
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28649
|
+
}, z$1.core.$strip>>;
|
|
28650
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
28651
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28652
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28653
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28654
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
27980
28655
|
}, z$1.core.$strip>], "kind">>;
|
|
27981
28656
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
27982
28657
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -27992,7 +28667,7 @@ declare const zGetMeDeveloperAppsByIdWalletsResponse: z$1.ZodObject<{
|
|
|
27992
28667
|
appId: z$1.ZodString;
|
|
27993
28668
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
27994
28669
|
chain: z$1.ZodString;
|
|
27995
|
-
address: z$1.ZodString
|
|
28670
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27996
28671
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
27997
28672
|
server: "server";
|
|
27998
28673
|
}>>;
|
|
@@ -28032,7 +28707,7 @@ declare const zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse: z$1.ZodOb
|
|
|
28032
28707
|
server: "server";
|
|
28033
28708
|
}>;
|
|
28034
28709
|
walletId: z$1.ZodString;
|
|
28035
|
-
address: z$1.ZodString
|
|
28710
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
28036
28711
|
}, z$1.core.$strip>;
|
|
28037
28712
|
declare const zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath: z$1.ZodObject<{
|
|
28038
28713
|
id: z$1.ZodString;
|
|
@@ -30977,4 +31652,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
30977
31652
|
*/
|
|
30978
31653
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
30979
31654
|
//#endregion
|
|
30980
|
-
export { type AcceptedCurrencies, type AcceptedNetworks, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowNftCharge, 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 AdminAppContentReportItem, type AdminAppContentReportListResponse, type AdminAppPageBipStatusResponse, 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 AppFriendListResponse, type AppPageAgeRating, type AppPageApprovedNotificationPayload, type AppPageBipState, type AppPageBipToggle, 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 BipEngagementResponse, type BipInterestCountResponse, type BipInterestRequest, type BipNowPlayableNotificationPayload, type BipSubscriptionRequest, type BipUpdate, type BipUpdateAttachment, type BipUpdateAttachments, type BipUpdateBody, type BipUpdateComment, type BipUpdateCommentBody, type BipUpdateCommentListResponse, type BipUpdateListResponse, type BipUpdateMediaUploadResponse, type BipUpdatePublishedNotificationPayload, type BipUpdateReactionCounts, type BipUpdateVote, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateBipUpdateCommentRequest, type CreateBipUpdateCommentResponse, type CreateBipUpdateRequest, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateReviewCommentRequest, type CreateReviewCommentResponse, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DelegationSlippageBps, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteBipUpdateCommentResponse, type DeleteBipUpdateResponse, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeBuildInPublicBySlugCommentsByCommentIdData, type DeleteMeBuildInPublicBySlugCommentsByCommentIdError, type DeleteMeBuildInPublicBySlugCommentsByCommentIdErrors, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugCommentsByCommentIdData, type DeleteMeReviewsBySlugCommentsByCommentIdError, type DeleteMeReviewsBySlugCommentsByCommentIdErrors, type DeleteMeReviewsBySlugCommentsByCommentIdResponse, type DeleteMeReviewsBySlugCommentsByCommentIdResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteReviewCommentResponse, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteUsersByIdFriendData, type DeleteUsersByIdFriendError, type DeleteUsersByIdFriendErrors, type DeleteUsersByIdFriendResponse, type DeleteUsersByIdFriendResponses, 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 GetAdminContentReportsData, type GetAdminContentReportsError, type GetAdminContentReportsErrors, type GetAdminContentReportsResponse, type GetAdminContentReportsResponses, 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 GetInventoryMetadataErc1155ByTokenIdMetadataJsonData, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonError, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonErrors, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponses, type GetInventoryMetadataErc1155ContractJsonData, type GetInventoryMetadataErc1155ContractJsonResponse, type GetInventoryMetadataErc1155ContractJsonResponses, type GetInventoryMetadataErc721ByFileData, type GetInventoryMetadataErc721ByFileError, type GetInventoryMetadataErc721ByFileErrors, type GetInventoryMetadataErc721ByFileResponse, type GetInventoryMetadataErc721ByFileResponses, type GetInventoryMetadataErc721ContractJsonData, type GetInventoryMetadataErc721ContractJsonResponse, type GetInventoryMetadataErc721ContractJsonResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeBuildInPublicBySlugEngagementData, type GetMeBuildInPublicBySlugEngagementError, type GetMeBuildInPublicBySlugEngagementErrors, type GetMeBuildInPublicBySlugEngagementResponse, type GetMeBuildInPublicBySlugEngagementResponses, type GetMeBuildInPublicBySlugReactionsData, type GetMeBuildInPublicBySlugReactionsError, type GetMeBuildInPublicBySlugReactionsErrors, type GetMeBuildInPublicBySlugReactionsResponse, type GetMeBuildInPublicBySlugReactionsResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdBipUpdatesData, type GetMeDeveloperAppsByAppIdBipUpdatesError, type GetMeDeveloperAppsByAppIdBipUpdatesErrors, type GetMeDeveloperAppsByAppIdBipUpdatesResponse, type GetMeDeveloperAppsByAppIdBipUpdatesResponses, type GetMeDeveloperAppsByAppIdInventoryCollectionsData, type GetMeDeveloperAppsByAppIdInventoryCollectionsError, type GetMeDeveloperAppsByAppIdInventoryCollectionsErrors, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponse, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponses, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersData, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersError, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersErrors, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponses, type GetMeDeveloperAppsByAppIdInventoryItemsData, type GetMeDeveloperAppsByAppIdInventoryItemsError, type GetMeDeveloperAppsByAppIdInventoryItemsErrors, type GetMeDeveloperAppsByAppIdInventoryItemsResponse, type GetMeDeveloperAppsByAppIdInventoryItemsResponses, 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 GetMeInventoryPermitsData, type GetMeInventoryPermitsError, type GetMeInventoryPermitsErrors, type GetMeInventoryPermitsResponse, type GetMeInventoryPermitsResponses, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeInventoryVaultPermitsData, type GetMeInventoryVaultPermitsError, type GetMeInventoryVaultPermitsErrors, type GetMeInventoryVaultPermitsResponse, type GetMeInventoryVaultPermitsResponses, type GetMeInventoryVaultedData, type GetMeInventoryVaultedError, type GetMeInventoryVaultedErrors, type GetMeInventoryVaultedResponse, type GetMeInventoryVaultedResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthFriendsData, type GetOauthFriendsError, type GetOauthFriendsErrors, type GetOauthFriendsResponse, type GetOauthFriendsResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthInventoryVaultedData, type GetOauthInventoryVaultedError, type GetOauthInventoryVaultedErrors, type GetOauthInventoryVaultedResponse, type GetOauthInventoryVaultedResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPaymentsMeTronSecurityData, type GetPaymentsMeTronSecurityError, type GetPaymentsMeTronSecurityErrors, type GetPaymentsMeTronSecurityResponse, type GetPaymentsMeTronSecurityResponses, type GetPaymentsRatesData, type GetPaymentsRatesResponse, type GetPaymentsRatesResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsByReviewIdCommentsData, type GetPublicAppsBySlugReviewsByReviewIdCommentsError, type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicBuildInPublicBySlugData, type GetPublicBuildInPublicBySlugError, type GetPublicBuildInPublicBySlugErrors, type GetPublicBuildInPublicBySlugInterestData, type GetPublicBuildInPublicBySlugInterestError, type GetPublicBuildInPublicBySlugInterestErrors, type GetPublicBuildInPublicBySlugInterestResponse, type GetPublicBuildInPublicBySlugInterestResponses, type GetPublicBuildInPublicBySlugResponse, type GetPublicBuildInPublicBySlugResponses, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsData, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsError, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsErrors, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses, type GetPublicBuildInPublicBySlugUpdatesData, type GetPublicBuildInPublicBySlugUpdatesError, type GetPublicBuildInPublicBySlugUpdatesErrors, type GetPublicBuildInPublicBySlugUpdatesResponse, type GetPublicBuildInPublicBySlugUpdatesResponses, type GetPublicBuildInPublicData, type GetPublicBuildInPublicError, type GetPublicBuildInPublicErrors, type GetPublicBuildInPublicResponse, type GetPublicBuildInPublicResponses, 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 InventoryCollectionListResponse, type InventoryCollectionSummary, type InventoryContractMetadata, type InventoryHolding, type InventoryItemHolder, type InventoryItemHoldersResponse, type InventoryItemListResponse, type InventoryItemRecord, type InventoryItemRegistrationInput, type InventoryItemRegistrationResult, type InventoryItemRegistrationSpec, type InventoryItemStats, type InventoryListResponse, type InventoryMetadataAttribute, type InventoryMintPermitCreateInput, type InventoryMintPermitRecord, type InventoryNftTransferQuoteRequest, type InventoryNftTransferQuoteResponse, type InventoryNftTransferRequest, type InventoryNftTransferResponse, type InventoryPendingPermit, type InventoryPendingPermitListResponse, type InventoryPendingVaultPermit, type InventoryPendingVaultPermitListResponse, type InventoryPermitRedeemResult, type InventoryRegistrationQuote, type InventoryRelayedVaultQuoteResponse, type InventoryRelayedVaultSubmitRequest, type InventoryRelayedVaultSubmitResponse, type InventorySignedVaultPermit, type InventorySupplyType, type InventoryTokenMetadata, type InventoryVaultCustody, type InventoryVaultCustodyListResponse, type InventoryVaultForceWithdrawResponse, type InventoryVaultPermitCreateInput, type InventoryVaultPermitRecord, type InventoryWithdrawPermitCreateInput, 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 MessageTransactionNftTransfer, type MessageTransactionTronTransfer, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyBipUpdateReaction, type MyBipUpdateReactionsResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentSolanaCompleteRequest, type OauthPaymentIntentSolanaPrepareResponse, 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 PatchAdminContentReportsByReportIdData, type PatchAdminContentReportsByReportIdError, type PatchAdminContentReportsByReportIdErrors, type PatchAdminContentReportsByReportIdResponse, type PatchAdminContentReportsByReportIdResponses, 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 PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type PatchMeDeveloperAppsByAppIdPageBipData, type PatchMeDeveloperAppsByAppIdPageBipError, type PatchMeDeveloperAppsByAppIdPageBipErrors, type PatchMeDeveloperAppsByAppIdPageBipResponse, type PatchMeDeveloperAppsByAppIdPageBipResponses, 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 PaymentNetwork, type PaymentRatesResponse, 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 PostAdminAppPagesByAppIdHideBipData, type PostAdminAppPagesByAppIdHideBipError, type PostAdminAppPagesByAppIdHideBipErrors, type PostAdminAppPagesByAppIdHideBipResponse, type PostAdminAppPagesByAppIdHideBipResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewBipData, type PostAdminAppPagesByAppIdReviewBipError, type PostAdminAppPagesByAppIdReviewBipErrors, type PostAdminAppPagesByAppIdReviewBipResponse, type PostAdminAppPagesByAppIdReviewBipResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideBipData, type PostAdminAppPagesByAppIdUnhideBipError, type PostAdminAppPagesByAppIdUnhideBipErrors, type PostAdminAppPagesByAppIdUnhideBipResponse, type PostAdminAppPagesByAppIdUnhideBipResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawData, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawError, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawErrors, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponses, 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 PostMeBuildInPublicBySlugCommentsByUpdateIdData, type PostMeBuildInPublicBySlugCommentsByUpdateIdError, type PostMeBuildInPublicBySlugCommentsByUpdateIdErrors, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponse, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponses, type PostMeBuildInPublicBySlugInterestData, type PostMeBuildInPublicBySlugInterestError, type PostMeBuildInPublicBySlugInterestErrors, type PostMeBuildInPublicBySlugInterestResponse, type PostMeBuildInPublicBySlugInterestResponses, type PostMeBuildInPublicBySlugReactionsByUpdateIdData, type PostMeBuildInPublicBySlugReactionsByUpdateIdError, type PostMeBuildInPublicBySlugReactionsByUpdateIdErrors, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponse, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponses, type PostMeBuildInPublicBySlugSubscriptionData, type PostMeBuildInPublicBySlugSubscriptionError, type PostMeBuildInPublicBySlugSubscriptionErrors, type PostMeBuildInPublicBySlugSubscriptionResponse, type PostMeBuildInPublicBySlugSubscriptionResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdBipUpdatesData, type PostMeDeveloperAppsByAppIdBipUpdatesError, type PostMeDeveloperAppsByAppIdBipUpdatesErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaData, type PostMeDeveloperAppsByAppIdBipUpdatesMediaError, type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponses, type PostMeDeveloperAppsByAppIdBipUpdatesResponse, type PostMeDeveloperAppsByAppIdBipUpdatesResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsData, type PostMeDeveloperAppsByAppIdInventoryItemsError, type PostMeDeveloperAppsByAppIdInventoryItemsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteData, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteError, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponses, type PostMeDeveloperAppsByAppIdInventoryItemsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageBipUnpublishData, type PostMeDeveloperAppsByAppIdPageBipUnpublishError, type PostMeDeveloperAppsByAppIdPageBipUnpublishErrors, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponse, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponses, 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 PostMeInventoryNftTransfersData, type PostMeInventoryNftTransfersError, type PostMeInventoryNftTransfersErrors, type PostMeInventoryNftTransfersQuoteData, type PostMeInventoryNftTransfersQuoteError, type PostMeInventoryNftTransfersQuoteErrors, type PostMeInventoryNftTransfersQuoteResponse, type PostMeInventoryNftTransfersQuoteResponses, type PostMeInventoryNftTransfersResponse, type PostMeInventoryNftTransfersResponses, type PostMeInventoryPermitsByPermitIdRedeemData, type PostMeInventoryPermitsByPermitIdRedeemError, type PostMeInventoryPermitsByPermitIdRedeemErrors, type PostMeInventoryPermitsByPermitIdRedeemResponse, type PostMeInventoryPermitsByPermitIdRedeemResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteData, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteError, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitData, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitError, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponses, type PostMeInventoryVaultPermitsByPermitIdSignData, type PostMeInventoryVaultPermitsByPermitIdSignError, type PostMeInventoryVaultPermitsByPermitIdSignErrors, type PostMeInventoryVaultPermitsByPermitIdSignResponse, type PostMeInventoryVaultPermitsByPermitIdSignResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugCommentsByReviewIdData, type PostMeReviewsBySlugCommentsByReviewIdError, type PostMeReviewsBySlugCommentsByReviewIdErrors, type PostMeReviewsBySlugCommentsByReviewIdResponse, type PostMeReviewsBySlugCommentsByReviewIdResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsIntentByIdSolanaCompleteData, type PostOauthPaymentsIntentByIdSolanaCompleteError, type PostOauthPaymentsIntentByIdSolanaCompleteErrors, type PostOauthPaymentsIntentByIdSolanaCompleteResponse, type PostOauthPaymentsIntentByIdSolanaCompleteResponses, type PostOauthPaymentsIntentByIdSolanaPrepareData, type PostOauthPaymentsIntentByIdSolanaPrepareError, type PostOauthPaymentsIntentByIdSolanaPrepareErrors, type PostOauthPaymentsIntentByIdSolanaPrepareResponse, type PostOauthPaymentsIntentByIdSolanaPrepareResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferChallengeData, type PostPaymentsMeTronTransferChallengeError, type PostPaymentsMeTronTransferChallengeErrors, type PostPaymentsMeTronTransferChallengeResponse, type PostPaymentsMeTronTransferChallengeResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicBipPage, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type PutPaymentsMeTronSecurityData, type PutPaymentsMeTronSecurityError, type PutPaymentsMeTronSecurityErrors, type PutPaymentsMeTronSecurityResponse, type PutPaymentsMeTronSecurityResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewComment, type ReviewCommentBody, type ReviewCommentListResponse, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type ReviewerStats, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetBipUpdateReactionRequest, type SetBipUpdateReactionResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCapCents, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronSecuritySetting, type TronTransferChallengeNotRequired, type TronTransferChallengeRequest, type TronTransferChallengeRequired, type TronTransferChallengeResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateBipUpdateRequest, 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, zAcceptedNetworks, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowNftCharge, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppContentReportItem, zAdminAppContentReportListResponse, zAdminAppPageBipStatusResponse, 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, zAppFriendListResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageBipState, zAppPageBipToggle, 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, zBipEngagementResponse, zBipInterestCountResponse, zBipInterestRequest, zBipNowPlayableNotificationPayload, zBipSubscriptionRequest, zBipUpdate, zBipUpdateAttachment, zBipUpdateAttachments, zBipUpdateBody, zBipUpdateComment, zBipUpdateCommentBody, zBipUpdateCommentListResponse, zBipUpdateListResponse, zBipUpdateMediaUploadResponse, zBipUpdatePublishedNotificationPayload, zBipUpdateReactionCounts, zBipUpdateVote, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateBipUpdateCommentRequest, zCreateBipUpdateCommentResponse, zCreateBipUpdateRequest, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDelegationSlippageBps, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteBipUpdateCommentResponse, zDeleteBipUpdateResponse, zDeleteMeAvatarResponse, zDeleteMeBuildInPublicBySlugCommentsByCommentIdPath, zDeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugCommentsByCommentIdPath, zDeleteMeReviewsBySlugCommentsByCommentIdResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteReviewCommentResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteUsersByIdFriendPath, zDeleteUsersByIdFriendResponse, 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, zGetAdminContentReportsQuery, zGetAdminContentReportsResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonPath, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, zGetInventoryMetadataErc1155ContractJsonResponse, zGetInventoryMetadataErc721ByFilePath, zGetInventoryMetadataErc721ByFileResponse, zGetInventoryMetadataErc721ContractJsonResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeBuildInPublicBySlugEngagementPath, zGetMeBuildInPublicBySlugEngagementResponse, zGetMeBuildInPublicBySlugReactionsPath, zGetMeBuildInPublicBySlugReactionsResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdBipUpdatesPath, zGetMeDeveloperAppsByAppIdBipUpdatesQuery, zGetMeDeveloperAppsByAppIdBipUpdatesResponse, zGetMeDeveloperAppsByAppIdInventoryCollectionsPath, zGetMeDeveloperAppsByAppIdInventoryCollectionsResponse, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersPath, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, zGetMeDeveloperAppsByAppIdInventoryItemsPath, zGetMeDeveloperAppsByAppIdInventoryItemsResponse, 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, zGetMeInventoryPermitsResponse, zGetMeInventoryResponse, zGetMeInventoryVaultPermitsResponse, zGetMeInventoryVaultedResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthFriendsResponse, zGetOauthInventoryResponse, zGetOauthInventoryVaultedResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPaymentsMeTronSecurityResponse, zGetPaymentsRatesResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicBuildInPublicBySlugInterestPath, zGetPublicBuildInPublicBySlugInterestResponse, zGetPublicBuildInPublicBySlugPath, zGetPublicBuildInPublicBySlugResponse, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsQuery, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, zGetPublicBuildInPublicBySlugUpdatesPath, zGetPublicBuildInPublicBySlugUpdatesQuery, zGetPublicBuildInPublicBySlugUpdatesResponse, zGetPublicBuildInPublicQuery, zGetPublicBuildInPublicResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryCollectionListResponse, zInventoryCollectionSummary, zInventoryContractMetadata, zInventoryHolding, zInventoryItemHolder, zInventoryItemHoldersResponse, zInventoryItemListResponse, zInventoryItemRecord, zInventoryItemRegistrationInput, zInventoryItemRegistrationResult, zInventoryItemRegistrationSpec, zInventoryItemStats, zInventoryListResponse, zInventoryMetadataAttribute, zInventoryMintPermitCreateInput, zInventoryMintPermitRecord, zInventoryNftTransferQuoteRequest, zInventoryNftTransferQuoteResponse, zInventoryNftTransferRequest, zInventoryNftTransferResponse, zInventoryPendingPermit, zInventoryPendingPermitListResponse, zInventoryPendingVaultPermit, zInventoryPendingVaultPermitListResponse, zInventoryPermitRedeemResult, zInventoryRegistrationQuote, zInventoryRelayedVaultQuoteResponse, zInventoryRelayedVaultSubmitRequest, zInventoryRelayedVaultSubmitResponse, zInventorySignedVaultPermit, zInventorySupplyType, zInventoryTokenMetadata, zInventoryVaultCustody, zInventoryVaultCustodyListResponse, zInventoryVaultForceWithdrawResponse, zInventoryVaultPermitCreateInput, zInventoryVaultPermitRecord, zInventoryWithdrawPermitCreateInput, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessageTransactionNftTransfer, zMessageTransactionTronTransfer, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyBipUpdateReaction, zMyBipUpdateReactionsResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentSolanaCompleteRequest, zOauthPaymentIntentSolanaPrepareResponse, 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, zPatchAdminContentReportsByReportIdBody, zPatchAdminContentReportsByReportIdPath, zPatchAdminContentReportsByReportIdResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zPatchMeDeveloperAppsByAppIdPageBipBody, zPatchMeDeveloperAppsByAppIdPageBipPath, zPatchMeDeveloperAppsByAppIdPageBipResponse, 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, zPaymentNetwork, zPaymentRatesResponse, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBipBody, zPostAdminAppPagesByAppIdHideBipPath, zPostAdminAppPagesByAppIdHideBipResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBipBody, zPostAdminAppPagesByAppIdReviewBipPath, zPostAdminAppPagesByAppIdReviewBipResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhideBipPath, zPostAdminAppPagesByAppIdUnhideBipResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawPath, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, 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, zPostMeBuildInPublicBySlugCommentsByUpdateIdBody, zPostMeBuildInPublicBySlugCommentsByUpdateIdPath, zPostMeBuildInPublicBySlugCommentsByUpdateIdResponse, zPostMeBuildInPublicBySlugInterestBody, zPostMeBuildInPublicBySlugInterestPath, zPostMeBuildInPublicBySlugInterestResponse, zPostMeBuildInPublicBySlugReactionsByUpdateIdBody, zPostMeBuildInPublicBySlugReactionsByUpdateIdPath, zPostMeBuildInPublicBySlugReactionsByUpdateIdResponse, zPostMeBuildInPublicBySlugSubscriptionBody, zPostMeBuildInPublicBySlugSubscriptionPath, zPostMeBuildInPublicBySlugSubscriptionResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdBipUpdatesBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaPath, zPostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, zPostMeDeveloperAppsByAppIdBipUpdatesPath, zPostMeDeveloperAppsByAppIdBipUpdatesResponse, zPostMeDeveloperAppsByAppIdInventoryItemsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImagePath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsPath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteBody, zPostMeDeveloperAppsByAppIdInventoryItemsQuotePath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, zPostMeDeveloperAppsByAppIdInventoryItemsResponse, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageBipUnpublishPath, zPostMeDeveloperAppsByAppIdPageBipUnpublishResponse, 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, zPostMeInventoryNftTransfersBody, zPostMeInventoryNftTransfersQuoteBody, zPostMeInventoryNftTransfersQuoteResponse, zPostMeInventoryNftTransfersResponse, zPostMeInventoryPermitsByPermitIdRedeemPath, zPostMeInventoryPermitsByPermitIdRedeemResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedQuotePath, zPostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitBody, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitPath, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, zPostMeInventoryVaultPermitsByPermitIdSignPath, zPostMeInventoryVaultPermitsByPermitIdSignResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugCommentsByReviewIdBody, zPostMeReviewsBySlugCommentsByReviewIdPath, zPostMeReviewsBySlugCommentsByReviewIdResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsIntentByIdSolanaCompleteBody, zPostOauthPaymentsIntentByIdSolanaCompleteResponse, zPostOauthPaymentsIntentByIdSolanaPrepareResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferChallengeBody, zPostPaymentsMeTronTransferChallengeResponse, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicBipPage, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zPutPaymentsMeTronSecurityBody, zPutPaymentsMeTronSecurityResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewComment, zReviewCommentBody, zReviewCommentListResponse, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zReviewerStats, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetBipUpdateReactionRequest, zSetBipUpdateReactionResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCapCents, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronSecuritySetting, zTronTransferChallengeNotRequired, zTronTransferChallengeRequest, zTronTransferChallengeRequired, zTronTransferChallengeResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateBipUpdateRequest, 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 };
|
|
31655
|
+
export { type AcceptedCurrencies, type AcceptedNetworks, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowNftCharge, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowSolanaPotLeg, type ActivityRowSolanaStake, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityRowTronTransfer, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppContentReportItem, type AdminAppContentReportListResponse, type AdminAppPageBipStatusResponse, 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 AppFriendListResponse, type AppPageAgeRating, type AppPageApprovedNotificationPayload, type AppPageBipState, type AppPageBipToggle, 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 BipEngagementResponse, type BipInterestCountResponse, type BipInterestRequest, type BipNowPlayableNotificationPayload, type BipSubscriptionRequest, type BipUpdate, type BipUpdateAttachment, type BipUpdateAttachments, type BipUpdateBody, type BipUpdateComment, type BipUpdateCommentBody, type BipUpdateCommentListResponse, type BipUpdateListResponse, type BipUpdateMediaUploadResponse, type BipUpdatePublishedNotificationPayload, type BipUpdateReactionCounts, type BipUpdateVote, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateBipUpdateCommentRequest, type CreateBipUpdateCommentResponse, type CreateBipUpdateRequest, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateReviewCommentRequest, type CreateReviewCommentResponse, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DelegationSlippageBps, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteBipUpdateCommentResponse, type DeleteBipUpdateResponse, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeBuildInPublicBySlugCommentsByCommentIdData, type DeleteMeBuildInPublicBySlugCommentsByCommentIdError, type DeleteMeBuildInPublicBySlugCommentsByCommentIdErrors, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugCommentsByCommentIdData, type DeleteMeReviewsBySlugCommentsByCommentIdError, type DeleteMeReviewsBySlugCommentsByCommentIdErrors, type DeleteMeReviewsBySlugCommentsByCommentIdResponse, type DeleteMeReviewsBySlugCommentsByCommentIdResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteReviewCommentResponse, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteUsersByIdFriendData, type DeleteUsersByIdFriendError, type DeleteUsersByIdFriendErrors, type DeleteUsersByIdFriendResponse, type DeleteUsersByIdFriendResponses, 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 GetAdminContentReportsData, type GetAdminContentReportsError, type GetAdminContentReportsErrors, type GetAdminContentReportsResponse, type GetAdminContentReportsResponses, 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 GetInventoryMetadataErc1155ByTokenIdMetadataJsonData, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonError, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonErrors, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponses, type GetInventoryMetadataErc1155ContractJsonData, type GetInventoryMetadataErc1155ContractJsonResponse, type GetInventoryMetadataErc1155ContractJsonResponses, type GetInventoryMetadataErc721ByFileData, type GetInventoryMetadataErc721ByFileError, type GetInventoryMetadataErc721ByFileErrors, type GetInventoryMetadataErc721ByFileResponse, type GetInventoryMetadataErc721ByFileResponses, type GetInventoryMetadataErc721ContractJsonData, type GetInventoryMetadataErc721ContractJsonResponse, type GetInventoryMetadataErc721ContractJsonResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeBuildInPublicBySlugEngagementData, type GetMeBuildInPublicBySlugEngagementError, type GetMeBuildInPublicBySlugEngagementErrors, type GetMeBuildInPublicBySlugEngagementResponse, type GetMeBuildInPublicBySlugEngagementResponses, type GetMeBuildInPublicBySlugReactionsData, type GetMeBuildInPublicBySlugReactionsError, type GetMeBuildInPublicBySlugReactionsErrors, type GetMeBuildInPublicBySlugReactionsResponse, type GetMeBuildInPublicBySlugReactionsResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdBipUpdatesData, type GetMeDeveloperAppsByAppIdBipUpdatesError, type GetMeDeveloperAppsByAppIdBipUpdatesErrors, type GetMeDeveloperAppsByAppIdBipUpdatesResponse, type GetMeDeveloperAppsByAppIdBipUpdatesResponses, type GetMeDeveloperAppsByAppIdInventoryCollectionsData, type GetMeDeveloperAppsByAppIdInventoryCollectionsError, type GetMeDeveloperAppsByAppIdInventoryCollectionsErrors, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponse, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponses, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersData, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersError, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersErrors, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponses, type GetMeDeveloperAppsByAppIdInventoryItemsData, type GetMeDeveloperAppsByAppIdInventoryItemsError, type GetMeDeveloperAppsByAppIdInventoryItemsErrors, type GetMeDeveloperAppsByAppIdInventoryItemsResponse, type GetMeDeveloperAppsByAppIdInventoryItemsResponses, 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 GetMeInventoryPermitsData, type GetMeInventoryPermitsError, type GetMeInventoryPermitsErrors, type GetMeInventoryPermitsResponse, type GetMeInventoryPermitsResponses, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeInventoryVaultPermitsData, type GetMeInventoryVaultPermitsError, type GetMeInventoryVaultPermitsErrors, type GetMeInventoryVaultPermitsResponse, type GetMeInventoryVaultPermitsResponses, type GetMeInventoryVaultedData, type GetMeInventoryVaultedError, type GetMeInventoryVaultedErrors, type GetMeInventoryVaultedResponse, type GetMeInventoryVaultedResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthFriendsData, type GetOauthFriendsError, type GetOauthFriendsErrors, type GetOauthFriendsResponse, type GetOauthFriendsResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthInventoryVaultedData, type GetOauthInventoryVaultedError, type GetOauthInventoryVaultedErrors, type GetOauthInventoryVaultedResponse, type GetOauthInventoryVaultedResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPaymentsMeTronSecurityData, type GetPaymentsMeTronSecurityError, type GetPaymentsMeTronSecurityErrors, type GetPaymentsMeTronSecurityResponse, type GetPaymentsMeTronSecurityResponses, type GetPaymentsRatesData, type GetPaymentsRatesResponse, type GetPaymentsRatesResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsByReviewIdCommentsData, type GetPublicAppsBySlugReviewsByReviewIdCommentsError, type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicBuildInPublicBySlugData, type GetPublicBuildInPublicBySlugError, type GetPublicBuildInPublicBySlugErrors, type GetPublicBuildInPublicBySlugInterestData, type GetPublicBuildInPublicBySlugInterestError, type GetPublicBuildInPublicBySlugInterestErrors, type GetPublicBuildInPublicBySlugInterestResponse, type GetPublicBuildInPublicBySlugInterestResponses, type GetPublicBuildInPublicBySlugResponse, type GetPublicBuildInPublicBySlugResponses, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsData, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsError, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsErrors, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses, type GetPublicBuildInPublicBySlugUpdatesData, type GetPublicBuildInPublicBySlugUpdatesError, type GetPublicBuildInPublicBySlugUpdatesErrors, type GetPublicBuildInPublicBySlugUpdatesResponse, type GetPublicBuildInPublicBySlugUpdatesResponses, type GetPublicBuildInPublicData, type GetPublicBuildInPublicError, type GetPublicBuildInPublicErrors, type GetPublicBuildInPublicResponse, type GetPublicBuildInPublicResponses, 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 InventoryCollectionListResponse, type InventoryCollectionSummary, type InventoryContractMetadata, type InventoryHolding, type InventoryItemHolder, type InventoryItemHoldersResponse, type InventoryItemListResponse, type InventoryItemRecord, type InventoryItemRegistrationInput, type InventoryItemRegistrationResult, type InventoryItemRegistrationSpec, type InventoryItemStats, type InventoryListResponse, type InventoryMetadataAttribute, type InventoryMintPermitCreateInput, type InventoryMintPermitRecord, type InventoryNftTransferQuoteRequest, type InventoryNftTransferQuoteResponse, type InventoryNftTransferRequest, type InventoryNftTransferResponse, type InventoryPendingPermit, type InventoryPendingPermitListResponse, type InventoryPendingVaultPermit, type InventoryPendingVaultPermitListResponse, type InventoryPermitRedeemResult, type InventoryRegistrationQuote, type InventoryRelayedVaultQuoteResponse, type InventoryRelayedVaultSubmitRequest, type InventoryRelayedVaultSubmitResponse, type InventorySignedVaultPermit, type InventorySupplyType, type InventoryTokenMetadata, type InventoryVaultCustody, type InventoryVaultCustodyListResponse, type InventoryVaultForceWithdrawResponse, type InventoryVaultPermitCreateInput, type InventoryVaultPermitRecord, type InventoryWithdrawPermitCreateInput, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type LibrarySort, 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 MessageTransactionNftTransfer, type MessageTransactionTronTransfer, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyBipUpdateReaction, type MyBipUpdateReactionsResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentSolanaCompleteRequest, type OauthPaymentIntentSolanaPrepareResponse, 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 PatchAdminContentReportsByReportIdData, type PatchAdminContentReportsByReportIdError, type PatchAdminContentReportsByReportIdErrors, type PatchAdminContentReportsByReportIdResponse, type PatchAdminContentReportsByReportIdResponses, 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 PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type PatchMeDeveloperAppsByAppIdPageBipData, type PatchMeDeveloperAppsByAppIdPageBipError, type PatchMeDeveloperAppsByAppIdPageBipErrors, type PatchMeDeveloperAppsByAppIdPageBipResponse, type PatchMeDeveloperAppsByAppIdPageBipResponses, 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 PaymentNetwork, type PaymentRatesResponse, 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 PostAdminAppPagesByAppIdHideBipData, type PostAdminAppPagesByAppIdHideBipError, type PostAdminAppPagesByAppIdHideBipErrors, type PostAdminAppPagesByAppIdHideBipResponse, type PostAdminAppPagesByAppIdHideBipResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewBipData, type PostAdminAppPagesByAppIdReviewBipError, type PostAdminAppPagesByAppIdReviewBipErrors, type PostAdminAppPagesByAppIdReviewBipResponse, type PostAdminAppPagesByAppIdReviewBipResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideBipData, type PostAdminAppPagesByAppIdUnhideBipError, type PostAdminAppPagesByAppIdUnhideBipErrors, type PostAdminAppPagesByAppIdUnhideBipResponse, type PostAdminAppPagesByAppIdUnhideBipResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawData, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawError, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawErrors, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponses, 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 PostMeBuildInPublicBySlugCommentsByUpdateIdData, type PostMeBuildInPublicBySlugCommentsByUpdateIdError, type PostMeBuildInPublicBySlugCommentsByUpdateIdErrors, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponse, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponses, type PostMeBuildInPublicBySlugInterestData, type PostMeBuildInPublicBySlugInterestError, type PostMeBuildInPublicBySlugInterestErrors, type PostMeBuildInPublicBySlugInterestResponse, type PostMeBuildInPublicBySlugInterestResponses, type PostMeBuildInPublicBySlugReactionsByUpdateIdData, type PostMeBuildInPublicBySlugReactionsByUpdateIdError, type PostMeBuildInPublicBySlugReactionsByUpdateIdErrors, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponse, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponses, type PostMeBuildInPublicBySlugSubscriptionData, type PostMeBuildInPublicBySlugSubscriptionError, type PostMeBuildInPublicBySlugSubscriptionErrors, type PostMeBuildInPublicBySlugSubscriptionResponse, type PostMeBuildInPublicBySlugSubscriptionResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses, type PostMeDeveloperAppsByAppIdBipUpdatesData, type PostMeDeveloperAppsByAppIdBipUpdatesError, type PostMeDeveloperAppsByAppIdBipUpdatesErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaData, type PostMeDeveloperAppsByAppIdBipUpdatesMediaError, type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponses, type PostMeDeveloperAppsByAppIdBipUpdatesResponse, type PostMeDeveloperAppsByAppIdBipUpdatesResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsData, type PostMeDeveloperAppsByAppIdInventoryItemsError, type PostMeDeveloperAppsByAppIdInventoryItemsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteData, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteError, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponses, type PostMeDeveloperAppsByAppIdInventoryItemsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageBipUnpublishData, type PostMeDeveloperAppsByAppIdPageBipUnpublishError, type PostMeDeveloperAppsByAppIdPageBipUnpublishErrors, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponse, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponses, 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 PostMeInventoryNftTransfersData, type PostMeInventoryNftTransfersError, type PostMeInventoryNftTransfersErrors, type PostMeInventoryNftTransfersQuoteData, type PostMeInventoryNftTransfersQuoteError, type PostMeInventoryNftTransfersQuoteErrors, type PostMeInventoryNftTransfersQuoteResponse, type PostMeInventoryNftTransfersQuoteResponses, type PostMeInventoryNftTransfersResponse, type PostMeInventoryNftTransfersResponses, type PostMeInventoryPermitsByPermitIdRedeemData, type PostMeInventoryPermitsByPermitIdRedeemError, type PostMeInventoryPermitsByPermitIdRedeemErrors, type PostMeInventoryPermitsByPermitIdRedeemResponse, type PostMeInventoryPermitsByPermitIdRedeemResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteData, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteError, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitData, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitError, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponses, type PostMeInventoryVaultPermitsByPermitIdSignData, type PostMeInventoryVaultPermitsByPermitIdSignError, type PostMeInventoryVaultPermitsByPermitIdSignErrors, type PostMeInventoryVaultPermitsByPermitIdSignResponse, type PostMeInventoryVaultPermitsByPermitIdSignResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugCommentsByReviewIdData, type PostMeReviewsBySlugCommentsByReviewIdError, type PostMeReviewsBySlugCommentsByReviewIdErrors, type PostMeReviewsBySlugCommentsByReviewIdResponse, type PostMeReviewsBySlugCommentsByReviewIdResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsIntentByIdSolanaCompleteData, type PostOauthPaymentsIntentByIdSolanaCompleteError, type PostOauthPaymentsIntentByIdSolanaCompleteErrors, type PostOauthPaymentsIntentByIdSolanaCompleteResponse, type PostOauthPaymentsIntentByIdSolanaCompleteResponses, type PostOauthPaymentsIntentByIdSolanaPrepareData, type PostOauthPaymentsIntentByIdSolanaPrepareError, type PostOauthPaymentsIntentByIdSolanaPrepareErrors, type PostOauthPaymentsIntentByIdSolanaPrepareResponse, type PostOauthPaymentsIntentByIdSolanaPrepareResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferChallengeData, type PostPaymentsMeTronTransferChallengeError, type PostPaymentsMeTronTransferChallengeErrors, type PostPaymentsMeTronTransferChallengeResponse, type PostPaymentsMeTronTransferChallengeResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicBipPage, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type PutPaymentsMeTronSecurityData, type PutPaymentsMeTronSecurityError, type PutPaymentsMeTronSecurityErrors, type PutPaymentsMeTronSecurityResponse, type PutPaymentsMeTronSecurityResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewComment, type ReviewCommentBody, type ReviewCommentListResponse, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type ReviewerStats, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetBipUpdateReactionRequest, type SetBipUpdateReactionResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCapCents, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronSecuritySetting, type TronTransferChallengeNotRequired, type TronTransferChallengeRequest, type TronTransferChallengeRequired, type TronTransferChallengeResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateBipUpdateRequest, 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, zAcceptedNetworks, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowNftCharge, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowSolanaPotLeg, zActivityRowSolanaStake, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppContentReportItem, zAdminAppContentReportListResponse, zAdminAppPageBipStatusResponse, 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, zAppFriendListResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageBipState, zAppPageBipToggle, 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, zBipEngagementResponse, zBipInterestCountResponse, zBipInterestRequest, zBipNowPlayableNotificationPayload, zBipSubscriptionRequest, zBipUpdate, zBipUpdateAttachment, zBipUpdateAttachments, zBipUpdateBody, zBipUpdateComment, zBipUpdateCommentBody, zBipUpdateCommentListResponse, zBipUpdateListResponse, zBipUpdateMediaUploadResponse, zBipUpdatePublishedNotificationPayload, zBipUpdateReactionCounts, zBipUpdateVote, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateBipUpdateCommentRequest, zCreateBipUpdateCommentResponse, zCreateBipUpdateRequest, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDelegationSlippageBps, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteBipUpdateCommentResponse, zDeleteBipUpdateResponse, zDeleteMeAvatarResponse, zDeleteMeBuildInPublicBySlugCommentsByCommentIdPath, zDeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugCommentsByCommentIdPath, zDeleteMeReviewsBySlugCommentsByCommentIdResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteReviewCommentResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteUsersByIdFriendPath, zDeleteUsersByIdFriendResponse, 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, zGetAdminContentReportsQuery, zGetAdminContentReportsResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonPath, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, zGetInventoryMetadataErc1155ContractJsonResponse, zGetInventoryMetadataErc721ByFilePath, zGetInventoryMetadataErc721ByFileResponse, zGetInventoryMetadataErc721ContractJsonResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeBuildInPublicBySlugEngagementPath, zGetMeBuildInPublicBySlugEngagementResponse, zGetMeBuildInPublicBySlugReactionsPath, zGetMeBuildInPublicBySlugReactionsResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdBipUpdatesPath, zGetMeDeveloperAppsByAppIdBipUpdatesQuery, zGetMeDeveloperAppsByAppIdBipUpdatesResponse, zGetMeDeveloperAppsByAppIdInventoryCollectionsPath, zGetMeDeveloperAppsByAppIdInventoryCollectionsResponse, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersPath, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, zGetMeDeveloperAppsByAppIdInventoryItemsPath, zGetMeDeveloperAppsByAppIdInventoryItemsResponse, 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, zGetMeInventoryPermitsResponse, zGetMeInventoryResponse, zGetMeInventoryVaultPermitsResponse, zGetMeInventoryVaultedResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthFriendsResponse, zGetOauthInventoryResponse, zGetOauthInventoryVaultedResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPaymentsMeTronSecurityResponse, zGetPaymentsRatesResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicBuildInPublicBySlugInterestPath, zGetPublicBuildInPublicBySlugInterestResponse, zGetPublicBuildInPublicBySlugPath, zGetPublicBuildInPublicBySlugResponse, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsQuery, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, zGetPublicBuildInPublicBySlugUpdatesPath, zGetPublicBuildInPublicBySlugUpdatesQuery, zGetPublicBuildInPublicBySlugUpdatesResponse, zGetPublicBuildInPublicQuery, zGetPublicBuildInPublicResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryCollectionListResponse, zInventoryCollectionSummary, zInventoryContractMetadata, zInventoryHolding, zInventoryItemHolder, zInventoryItemHoldersResponse, zInventoryItemListResponse, zInventoryItemRecord, zInventoryItemRegistrationInput, zInventoryItemRegistrationResult, zInventoryItemRegistrationSpec, zInventoryItemStats, zInventoryListResponse, zInventoryMetadataAttribute, zInventoryMintPermitCreateInput, zInventoryMintPermitRecord, zInventoryNftTransferQuoteRequest, zInventoryNftTransferQuoteResponse, zInventoryNftTransferRequest, zInventoryNftTransferResponse, zInventoryPendingPermit, zInventoryPendingPermitListResponse, zInventoryPendingVaultPermit, zInventoryPendingVaultPermitListResponse, zInventoryPermitRedeemResult, zInventoryRegistrationQuote, zInventoryRelayedVaultQuoteResponse, zInventoryRelayedVaultSubmitRequest, zInventoryRelayedVaultSubmitResponse, zInventorySignedVaultPermit, zInventorySupplyType, zInventoryTokenMetadata, zInventoryVaultCustody, zInventoryVaultCustodyListResponse, zInventoryVaultForceWithdrawResponse, zInventoryVaultPermitCreateInput, zInventoryVaultPermitRecord, zInventoryWithdrawPermitCreateInput, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zLibrarySort, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessageTransactionNftTransfer, zMessageTransactionTronTransfer, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyBipUpdateReaction, zMyBipUpdateReactionsResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentSolanaCompleteRequest, zOauthPaymentIntentSolanaPrepareResponse, 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, zPatchAdminContentReportsByReportIdBody, zPatchAdminContentReportsByReportIdPath, zPatchAdminContentReportsByReportIdResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zPatchMeDeveloperAppsByAppIdPageBipBody, zPatchMeDeveloperAppsByAppIdPageBipPath, zPatchMeDeveloperAppsByAppIdPageBipResponse, 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, zPaymentNetwork, zPaymentRatesResponse, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBipBody, zPostAdminAppPagesByAppIdHideBipPath, zPostAdminAppPagesByAppIdHideBipResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBipBody, zPostAdminAppPagesByAppIdReviewBipPath, zPostAdminAppPagesByAppIdReviewBipResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhideBipPath, zPostAdminAppPagesByAppIdUnhideBipResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawPath, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, 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, zPostMeBuildInPublicBySlugCommentsByUpdateIdBody, zPostMeBuildInPublicBySlugCommentsByUpdateIdPath, zPostMeBuildInPublicBySlugCommentsByUpdateIdResponse, zPostMeBuildInPublicBySlugInterestBody, zPostMeBuildInPublicBySlugInterestPath, zPostMeBuildInPublicBySlugInterestResponse, zPostMeBuildInPublicBySlugReactionsByUpdateIdBody, zPostMeBuildInPublicBySlugReactionsByUpdateIdPath, zPostMeBuildInPublicBySlugReactionsByUpdateIdResponse, zPostMeBuildInPublicBySlugSubscriptionBody, zPostMeBuildInPublicBySlugSubscriptionPath, zPostMeBuildInPublicBySlugSubscriptionResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdBipUpdatesBody, zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath, zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaPath, zPostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, zPostMeDeveloperAppsByAppIdBipUpdatesPath, zPostMeDeveloperAppsByAppIdBipUpdatesResponse, zPostMeDeveloperAppsByAppIdInventoryItemsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImagePath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsPath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteBody, zPostMeDeveloperAppsByAppIdInventoryItemsQuotePath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, zPostMeDeveloperAppsByAppIdInventoryItemsResponse, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageBipUnpublishPath, zPostMeDeveloperAppsByAppIdPageBipUnpublishResponse, 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, zPostMeInventoryNftTransfersBody, zPostMeInventoryNftTransfersQuoteBody, zPostMeInventoryNftTransfersQuoteResponse, zPostMeInventoryNftTransfersResponse, zPostMeInventoryPermitsByPermitIdRedeemPath, zPostMeInventoryPermitsByPermitIdRedeemResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedQuotePath, zPostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitBody, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitPath, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, zPostMeInventoryVaultPermitsByPermitIdSignPath, zPostMeInventoryVaultPermitsByPermitIdSignResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugCommentsByReviewIdBody, zPostMeReviewsBySlugCommentsByReviewIdPath, zPostMeReviewsBySlugCommentsByReviewIdResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsIntentByIdSolanaCompleteBody, zPostOauthPaymentsIntentByIdSolanaCompleteResponse, zPostOauthPaymentsIntentByIdSolanaPrepareResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferChallengeBody, zPostPaymentsMeTronTransferChallengeResponse, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicBipPage, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zPutPaymentsMeTronSecurityBody, zPutPaymentsMeTronSecurityResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewComment, zReviewCommentBody, zReviewCommentListResponse, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zReviewerStats, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetBipUpdateReactionRequest, zSetBipUpdateReactionResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCapCents, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronSecuritySetting, zTronTransferChallengeNotRequired, zTronTransferChallengeRequest, zTronTransferChallengeRequired, zTronTransferChallengeResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateBipUpdateRequest, 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 };
|