@metatrongg/sdk 0.8.0-dev.39ac646 → 0.8.0-dev.42c667f
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 +4 -128
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +16 -843
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +5 -129
- 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 +3 -3
|
@@ -385,15 +385,7 @@ type OauthPaymentIntentContext = {
|
|
|
385
385
|
};
|
|
386
386
|
} | null;
|
|
387
387
|
environment: "development" | "production";
|
|
388
|
-
onramp?: {
|
|
389
|
-
kind: "bridge";
|
|
390
|
-
from: PaymentNetwork;
|
|
391
|
-
to: PaymentNetwork;
|
|
392
|
-
} | {
|
|
393
|
-
kind: "insufficient";
|
|
394
|
-
};
|
|
395
388
|
};
|
|
396
|
-
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
397
389
|
type OauthPaymentIntentSignResponse = {
|
|
398
390
|
chain: string;
|
|
399
391
|
chainId: number;
|
|
@@ -423,13 +415,6 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
423
415
|
type OauthPaymentIntentCompleteOffline = {
|
|
424
416
|
method: "offline";
|
|
425
417
|
};
|
|
426
|
-
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
427
|
-
transaction: string;
|
|
428
|
-
payer: string;
|
|
429
|
-
};
|
|
430
|
-
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
431
|
-
signedTransaction: string;
|
|
432
|
-
};
|
|
433
418
|
type ListAppPaymentAuthorizationsResponse = {
|
|
434
419
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
435
420
|
};
|
|
@@ -626,20 +611,6 @@ type ReviewAuthor = {
|
|
|
626
611
|
name: string | null;
|
|
627
612
|
avatarUrl: string | null;
|
|
628
613
|
};
|
|
629
|
-
type BipInterestCountResponse = {
|
|
630
|
-
interestCount: number;
|
|
631
|
-
};
|
|
632
|
-
type BipEngagementResponse = {
|
|
633
|
-
interested: boolean;
|
|
634
|
-
subscribed: boolean;
|
|
635
|
-
interestCount: number;
|
|
636
|
-
};
|
|
637
|
-
type BipInterestRequest = {
|
|
638
|
-
interested: boolean;
|
|
639
|
-
};
|
|
640
|
-
type BipSubscriptionRequest = {
|
|
641
|
-
subscribed: boolean;
|
|
642
|
-
};
|
|
643
614
|
type MyBipUpdateReactionsResponse = {
|
|
644
615
|
reactions: Array<MyBipUpdateReaction>;
|
|
645
616
|
};
|
|
@@ -1502,15 +1473,12 @@ type WalletListResponse = {
|
|
|
1502
1473
|
wallets: Array<WalletItem>;
|
|
1503
1474
|
};
|
|
1504
1475
|
type WalletChainList = Array<{
|
|
1505
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia"
|
|
1476
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1506
1477
|
displayName: string;
|
|
1507
|
-
|
|
1508
|
-
nativeSymbol: string;
|
|
1509
|
-
chainId?: number;
|
|
1478
|
+
chainId: number;
|
|
1510
1479
|
}>;
|
|
1511
1480
|
type WalletItem = {
|
|
1512
|
-
address: string
|
|
1513
|
-
family: "evm" | "solana";
|
|
1481
|
+
address: string;
|
|
1514
1482
|
label: WalletLabel;
|
|
1515
1483
|
kind: "personal" | "app";
|
|
1516
1484
|
app: WalletAppLink;
|
|
@@ -1527,9 +1495,6 @@ type WalletBalances = {
|
|
|
1527
1495
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1528
1496
|
"base-mainnet"?: WalletChainBalance;
|
|
1529
1497
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1530
|
-
"base-sepolia"?: WalletChainBalance;
|
|
1531
|
-
"solana-mainnet"?: WalletChainBalance;
|
|
1532
|
-
"solana-devnet"?: WalletChainBalance;
|
|
1533
1498
|
};
|
|
1534
1499
|
type WalletChainBalance = {
|
|
1535
1500
|
native: string;
|
|
@@ -1539,14 +1504,12 @@ type WalletDelegationStatus = {
|
|
|
1539
1504
|
mode: WalletDelegationMode;
|
|
1540
1505
|
caps: WalletDelegationCaps;
|
|
1541
1506
|
policyId: string | null;
|
|
1542
|
-
slippageBps: DelegationSlippageBps;
|
|
1543
1507
|
};
|
|
1544
1508
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1545
1509
|
type WalletDelegationCaps = {
|
|
1546
1510
|
native: string;
|
|
1547
1511
|
usdc: string;
|
|
1548
1512
|
} | null;
|
|
1549
|
-
type DelegationSlippageBps = number | null;
|
|
1550
1513
|
type WalletLabelUpdateResponse = {
|
|
1551
1514
|
address: string;
|
|
1552
1515
|
label: WalletLabel;
|
|
@@ -2297,18 +2260,6 @@ type NotificationItem = {
|
|
|
2297
2260
|
payload: AppPageRejectedNotificationPayload;
|
|
2298
2261
|
read: boolean;
|
|
2299
2262
|
createdAt: string;
|
|
2300
|
-
} | {
|
|
2301
|
-
id: string;
|
|
2302
|
-
kind: "bip_update_published";
|
|
2303
|
-
payload: BipUpdatePublishedNotificationPayload;
|
|
2304
|
-
read: boolean;
|
|
2305
|
-
createdAt: string;
|
|
2306
|
-
} | {
|
|
2307
|
-
id: string;
|
|
2308
|
-
kind: "bip_now_playable";
|
|
2309
|
-
payload: BipNowPlayableNotificationPayload;
|
|
2310
|
-
read: boolean;
|
|
2311
|
-
createdAt: string;
|
|
2312
2263
|
} | {
|
|
2313
2264
|
id: string;
|
|
2314
2265
|
kind: "app_participant_invite";
|
|
@@ -2347,17 +2298,6 @@ type AppPageRejectedNotificationPayload = {
|
|
|
2347
2298
|
scope: "publish" | "changes" | "bip_publish";
|
|
2348
2299
|
notes: string;
|
|
2349
2300
|
};
|
|
2350
|
-
type BipUpdatePublishedNotificationPayload = {
|
|
2351
|
-
appId: string;
|
|
2352
|
-
appName: string;
|
|
2353
|
-
appSlug: string | null;
|
|
2354
|
-
updateId: string;
|
|
2355
|
-
};
|
|
2356
|
-
type BipNowPlayableNotificationPayload = {
|
|
2357
|
-
appId: string;
|
|
2358
|
-
appName: string;
|
|
2359
|
-
appSlug: string | null;
|
|
2360
|
-
};
|
|
2361
2301
|
type AppParticipantInviteNotificationPayload = {
|
|
2362
2302
|
appId: string;
|
|
2363
2303
|
appName: string;
|
|
@@ -2532,14 +2472,12 @@ type UpdateDeveloperApp = {
|
|
|
2532
2472
|
redirectUris?: Array<string>;
|
|
2533
2473
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2534
2474
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2535
|
-
acceptedNetworks?: AcceptedNetworks;
|
|
2536
2475
|
paymentStatusWebhookUrl?: string | null;
|
|
2537
2476
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2538
2477
|
};
|
|
2539
2478
|
type EmbedOrigin = string;
|
|
2540
2479
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2541
2480
|
type PlatformCurrency = "eth" | "tron";
|
|
2542
|
-
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2543
2481
|
type DeveloperLogoUploadResponse = {
|
|
2544
2482
|
logoUrl: string | null;
|
|
2545
2483
|
};
|
|
@@ -2786,7 +2724,6 @@ type DeveloperAppItem = {
|
|
|
2786
2724
|
redirectUris: Array<string>;
|
|
2787
2725
|
embedOrigins: Array<EmbedOrigin>;
|
|
2788
2726
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2789
|
-
acceptedNetworks: AcceptedNetworks;
|
|
2790
2727
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2791
2728
|
keys: Array<DeveloperAppKeyItem>;
|
|
2792
2729
|
pendingProductionRequestId: string | null;
|
|
@@ -3020,7 +2957,6 @@ type AdminAppPageItem = {
|
|
|
3020
2957
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
3021
2958
|
bipFirstPublishedAt: string | null;
|
|
3022
2959
|
bipHiddenAt: string | null;
|
|
3023
|
-
openReportCount: number;
|
|
3024
2960
|
};
|
|
3025
2961
|
type AdminAppPageStatusResponse = {
|
|
3026
2962
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -3049,22 +2985,6 @@ type AdminAppPageDiffField = {
|
|
|
3049
2985
|
type AdminAppPageBipStatusResponse = {
|
|
3050
2986
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
3051
2987
|
};
|
|
3052
|
-
type AdminAppContentReportListResponse = {
|
|
3053
|
-
reports: Array<AdminAppContentReportItem>;
|
|
3054
|
-
total: number;
|
|
3055
|
-
hasMore: boolean;
|
|
3056
|
-
};
|
|
3057
|
-
type AdminAppContentReportItem = {
|
|
3058
|
-
id: string;
|
|
3059
|
-
category: AppContentReportCategory;
|
|
3060
|
-
details: string | null;
|
|
3061
|
-
status: AppContentReportStatus;
|
|
3062
|
-
acknowledgedAt: string | null;
|
|
3063
|
-
createdAt: string;
|
|
3064
|
-
appId: string;
|
|
3065
|
-
appName: string;
|
|
3066
|
-
appSlug: string | null;
|
|
3067
|
-
};
|
|
3068
2988
|
type PlatformFeesResponse = {
|
|
3069
2989
|
purchaseFeeBps: number;
|
|
3070
2990
|
stakeFeeBps: number;
|
|
@@ -3245,13 +3165,6 @@ type AppealResolveRequest = {
|
|
|
3245
3165
|
decision: "refund" | "dismiss";
|
|
3246
3166
|
notes?: string;
|
|
3247
3167
|
};
|
|
3248
|
-
type PaymentRatesResponse = {
|
|
3249
|
-
asOf: string;
|
|
3250
|
-
ethUsd: number | null;
|
|
3251
|
-
solUsd: number | null;
|
|
3252
|
-
solLamportsPerCent: number | null;
|
|
3253
|
-
tronUsdPerToken: number;
|
|
3254
|
-
};
|
|
3255
3168
|
type AppealFileResponse = {
|
|
3256
3169
|
appealId: string;
|
|
3257
3170
|
paymentId: string;
|
|
@@ -3300,7 +3213,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3300
3213
|
metadata?: PaymentMetadata;
|
|
3301
3214
|
};
|
|
3302
3215
|
type OauthPaymentDistributeResponse = {
|
|
3303
|
-
distributionId
|
|
3216
|
+
distributionId: string;
|
|
3304
3217
|
txHash: string;
|
|
3305
3218
|
blockNumber: string;
|
|
3306
3219
|
potId: string;
|
|
@@ -4015,90 +3928,6 @@ type PostOauthPaymentsIntentByIdCompleteResponses = {
|
|
|
4015
3928
|
200: OauthPaymentIntentResolveResponse;
|
|
4016
3929
|
};
|
|
4017
3930
|
type PostOauthPaymentsIntentByIdCompleteResponse = PostOauthPaymentsIntentByIdCompleteResponses[keyof PostOauthPaymentsIntentByIdCompleteResponses];
|
|
4018
|
-
type PostOauthPaymentsIntentByIdSolanaPrepareData = {
|
|
4019
|
-
body?: never;
|
|
4020
|
-
path?: never;
|
|
4021
|
-
query?: never;
|
|
4022
|
-
url: "/oauth/payments/intent/{id}/solana-prepare";
|
|
4023
|
-
};
|
|
4024
|
-
type PostOauthPaymentsIntentByIdSolanaPrepareErrors = {
|
|
4025
|
-
/**
|
|
4026
|
-
* Request error
|
|
4027
|
-
*/
|
|
4028
|
-
400: ErrorResponse;
|
|
4029
|
-
/**
|
|
4030
|
-
* Request error
|
|
4031
|
-
*/
|
|
4032
|
-
401: ErrorResponse;
|
|
4033
|
-
/**
|
|
4034
|
-
* Request error
|
|
4035
|
-
*/
|
|
4036
|
-
403: ErrorResponse;
|
|
4037
|
-
/**
|
|
4038
|
-
* Request error
|
|
4039
|
-
*/
|
|
4040
|
-
404: ErrorResponse;
|
|
4041
|
-
/**
|
|
4042
|
-
* Request error
|
|
4043
|
-
*/
|
|
4044
|
-
410: ErrorResponse;
|
|
4045
|
-
/**
|
|
4046
|
-
* Request error
|
|
4047
|
-
*/
|
|
4048
|
-
503: ErrorResponse;
|
|
4049
|
-
};
|
|
4050
|
-
type PostOauthPaymentsIntentByIdSolanaPrepareError = PostOauthPaymentsIntentByIdSolanaPrepareErrors[keyof PostOauthPaymentsIntentByIdSolanaPrepareErrors];
|
|
4051
|
-
type PostOauthPaymentsIntentByIdSolanaPrepareResponses = {
|
|
4052
|
-
/**
|
|
4053
|
-
* Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
|
|
4054
|
-
*/
|
|
4055
|
-
200: OauthPaymentIntentSolanaPrepareResponse;
|
|
4056
|
-
};
|
|
4057
|
-
type PostOauthPaymentsIntentByIdSolanaPrepareResponse = PostOauthPaymentsIntentByIdSolanaPrepareResponses[keyof PostOauthPaymentsIntentByIdSolanaPrepareResponses];
|
|
4058
|
-
type PostOauthPaymentsIntentByIdSolanaCompleteData = {
|
|
4059
|
-
body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4060
|
-
path?: never;
|
|
4061
|
-
query?: never;
|
|
4062
|
-
url: "/oauth/payments/intent/{id}/solana-complete";
|
|
4063
|
-
};
|
|
4064
|
-
type PostOauthPaymentsIntentByIdSolanaCompleteErrors = {
|
|
4065
|
-
/**
|
|
4066
|
-
* Request error
|
|
4067
|
-
*/
|
|
4068
|
-
400: ErrorResponse;
|
|
4069
|
-
/**
|
|
4070
|
-
* Request error
|
|
4071
|
-
*/
|
|
4072
|
-
401: ErrorResponse;
|
|
4073
|
-
/**
|
|
4074
|
-
* Request error
|
|
4075
|
-
*/
|
|
4076
|
-
403: ErrorResponse;
|
|
4077
|
-
/**
|
|
4078
|
-
* Request error
|
|
4079
|
-
*/
|
|
4080
|
-
404: ErrorResponse;
|
|
4081
|
-
/**
|
|
4082
|
-
* Request error
|
|
4083
|
-
*/
|
|
4084
|
-
410: ErrorResponse;
|
|
4085
|
-
/**
|
|
4086
|
-
* Request error
|
|
4087
|
-
*/
|
|
4088
|
-
502: ErrorResponse;
|
|
4089
|
-
/**
|
|
4090
|
-
* Request error
|
|
4091
|
-
*/
|
|
4092
|
-
503: ErrorResponse;
|
|
4093
|
-
};
|
|
4094
|
-
type PostOauthPaymentsIntentByIdSolanaCompleteError = PostOauthPaymentsIntentByIdSolanaCompleteErrors[keyof PostOauthPaymentsIntentByIdSolanaCompleteErrors];
|
|
4095
|
-
type PostOauthPaymentsIntentByIdSolanaCompleteResponses = {
|
|
4096
|
-
/**
|
|
4097
|
-
* Redirect target the SPA navigates to
|
|
4098
|
-
*/
|
|
4099
|
-
200: OauthPaymentIntentResolveResponse;
|
|
4100
|
-
};
|
|
4101
|
-
type PostOauthPaymentsIntentByIdSolanaCompleteResponse = PostOauthPaymentsIntentByIdSolanaCompleteResponses[keyof PostOauthPaymentsIntentByIdSolanaCompleteResponses];
|
|
4102
3931
|
type PostOauthPaymentsIntentByIdDenyData = {
|
|
4103
3932
|
body?: never;
|
|
4104
3933
|
path?: never;
|
|
@@ -4416,114 +4245,6 @@ type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses = {
|
|
|
4416
4245
|
200: BipUpdateCommentListResponse;
|
|
4417
4246
|
};
|
|
4418
4247
|
type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse = GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses[keyof GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses];
|
|
4419
|
-
type GetPublicBuildInPublicBySlugInterestData = {
|
|
4420
|
-
body?: never;
|
|
4421
|
-
path: {
|
|
4422
|
-
slug: string;
|
|
4423
|
-
};
|
|
4424
|
-
query?: never;
|
|
4425
|
-
url: "/public/build-in-public/{slug}/interest";
|
|
4426
|
-
};
|
|
4427
|
-
type GetPublicBuildInPublicBySlugInterestErrors = {
|
|
4428
|
-
/**
|
|
4429
|
-
* Request error
|
|
4430
|
-
*/
|
|
4431
|
-
404: ErrorResponse;
|
|
4432
|
-
};
|
|
4433
|
-
type GetPublicBuildInPublicBySlugInterestError = GetPublicBuildInPublicBySlugInterestErrors[keyof GetPublicBuildInPublicBySlugInterestErrors];
|
|
4434
|
-
type GetPublicBuildInPublicBySlugInterestResponses = {
|
|
4435
|
-
/**
|
|
4436
|
-
* The live count
|
|
4437
|
-
*/
|
|
4438
|
-
200: BipInterestCountResponse;
|
|
4439
|
-
};
|
|
4440
|
-
type GetPublicBuildInPublicBySlugInterestResponse = GetPublicBuildInPublicBySlugInterestResponses[keyof GetPublicBuildInPublicBySlugInterestResponses];
|
|
4441
|
-
type GetMeBuildInPublicBySlugEngagementData = {
|
|
4442
|
-
body?: never;
|
|
4443
|
-
path: {
|
|
4444
|
-
slug: string;
|
|
4445
|
-
};
|
|
4446
|
-
query?: never;
|
|
4447
|
-
url: "/me/build-in-public/{slug}/engagement";
|
|
4448
|
-
};
|
|
4449
|
-
type GetMeBuildInPublicBySlugEngagementErrors = {
|
|
4450
|
-
/**
|
|
4451
|
-
* Request error
|
|
4452
|
-
*/
|
|
4453
|
-
401: ErrorResponse;
|
|
4454
|
-
/**
|
|
4455
|
-
* Request error
|
|
4456
|
-
*/
|
|
4457
|
-
404: ErrorResponse;
|
|
4458
|
-
};
|
|
4459
|
-
type GetMeBuildInPublicBySlugEngagementError = GetMeBuildInPublicBySlugEngagementErrors[keyof GetMeBuildInPublicBySlugEngagementErrors];
|
|
4460
|
-
type GetMeBuildInPublicBySlugEngagementResponses = {
|
|
4461
|
-
/**
|
|
4462
|
-
* Engagement state + count
|
|
4463
|
-
*/
|
|
4464
|
-
200: BipEngagementResponse;
|
|
4465
|
-
};
|
|
4466
|
-
type GetMeBuildInPublicBySlugEngagementResponse = GetMeBuildInPublicBySlugEngagementResponses[keyof GetMeBuildInPublicBySlugEngagementResponses];
|
|
4467
|
-
type PostMeBuildInPublicBySlugInterestData = {
|
|
4468
|
-
body: BipInterestRequest;
|
|
4469
|
-
path: {
|
|
4470
|
-
slug: string;
|
|
4471
|
-
};
|
|
4472
|
-
query?: never;
|
|
4473
|
-
url: "/me/build-in-public/{slug}/interest";
|
|
4474
|
-
};
|
|
4475
|
-
type PostMeBuildInPublicBySlugInterestErrors = {
|
|
4476
|
-
/**
|
|
4477
|
-
* Request error
|
|
4478
|
-
*/
|
|
4479
|
-
400: ErrorResponse;
|
|
4480
|
-
/**
|
|
4481
|
-
* Request error
|
|
4482
|
-
*/
|
|
4483
|
-
401: ErrorResponse;
|
|
4484
|
-
/**
|
|
4485
|
-
* Request error
|
|
4486
|
-
*/
|
|
4487
|
-
404: ErrorResponse;
|
|
4488
|
-
};
|
|
4489
|
-
type PostMeBuildInPublicBySlugInterestError = PostMeBuildInPublicBySlugInterestErrors[keyof PostMeBuildInPublicBySlugInterestErrors];
|
|
4490
|
-
type PostMeBuildInPublicBySlugInterestResponses = {
|
|
4491
|
-
/**
|
|
4492
|
-
* Fresh engagement state + count
|
|
4493
|
-
*/
|
|
4494
|
-
200: BipEngagementResponse;
|
|
4495
|
-
};
|
|
4496
|
-
type PostMeBuildInPublicBySlugInterestResponse = PostMeBuildInPublicBySlugInterestResponses[keyof PostMeBuildInPublicBySlugInterestResponses];
|
|
4497
|
-
type PostMeBuildInPublicBySlugSubscriptionData = {
|
|
4498
|
-
body: BipSubscriptionRequest;
|
|
4499
|
-
path: {
|
|
4500
|
-
slug: string;
|
|
4501
|
-
};
|
|
4502
|
-
query?: never;
|
|
4503
|
-
url: "/me/build-in-public/{slug}/subscription";
|
|
4504
|
-
};
|
|
4505
|
-
type PostMeBuildInPublicBySlugSubscriptionErrors = {
|
|
4506
|
-
/**
|
|
4507
|
-
* Request error
|
|
4508
|
-
*/
|
|
4509
|
-
400: ErrorResponse;
|
|
4510
|
-
/**
|
|
4511
|
-
* Request error
|
|
4512
|
-
*/
|
|
4513
|
-
401: ErrorResponse;
|
|
4514
|
-
/**
|
|
4515
|
-
* Request error
|
|
4516
|
-
*/
|
|
4517
|
-
404: ErrorResponse;
|
|
4518
|
-
};
|
|
4519
|
-
type PostMeBuildInPublicBySlugSubscriptionError = PostMeBuildInPublicBySlugSubscriptionErrors[keyof PostMeBuildInPublicBySlugSubscriptionErrors];
|
|
4520
|
-
type PostMeBuildInPublicBySlugSubscriptionResponses = {
|
|
4521
|
-
/**
|
|
4522
|
-
* Fresh engagement state + count
|
|
4523
|
-
*/
|
|
4524
|
-
200: BipEngagementResponse;
|
|
4525
|
-
};
|
|
4526
|
-
type PostMeBuildInPublicBySlugSubscriptionResponse = PostMeBuildInPublicBySlugSubscriptionResponses[keyof PostMeBuildInPublicBySlugSubscriptionResponses];
|
|
4527
4248
|
type GetMeBuildInPublicBySlugReactionsData = {
|
|
4528
4249
|
body?: never;
|
|
4529
4250
|
path: {
|
|
@@ -11321,72 +11042,6 @@ type PostAdminAppPagesByAppIdHideBipResponses = {
|
|
|
11321
11042
|
200: AdminAppPageBipStatusResponse;
|
|
11322
11043
|
};
|
|
11323
11044
|
type PostAdminAppPagesByAppIdHideBipResponse = PostAdminAppPagesByAppIdHideBipResponses[keyof PostAdminAppPagesByAppIdHideBipResponses];
|
|
11324
|
-
type GetAdminContentReportsData = {
|
|
11325
|
-
body?: never;
|
|
11326
|
-
path?: never;
|
|
11327
|
-
query?: {
|
|
11328
|
-
status?: AppContentReportStatus | "all";
|
|
11329
|
-
limit?: number;
|
|
11330
|
-
offset?: number | null;
|
|
11331
|
-
};
|
|
11332
|
-
url: "/admin/content-reports";
|
|
11333
|
-
};
|
|
11334
|
-
type GetAdminContentReportsErrors = {
|
|
11335
|
-
/**
|
|
11336
|
-
* Request error
|
|
11337
|
-
*/
|
|
11338
|
-
400: ErrorResponse;
|
|
11339
|
-
/**
|
|
11340
|
-
* Request error
|
|
11341
|
-
*/
|
|
11342
|
-
401: ErrorResponse;
|
|
11343
|
-
/**
|
|
11344
|
-
* Request error
|
|
11345
|
-
*/
|
|
11346
|
-
403: ErrorResponse;
|
|
11347
|
-
};
|
|
11348
|
-
type GetAdminContentReportsError = GetAdminContentReportsErrors[keyof GetAdminContentReportsErrors];
|
|
11349
|
-
type GetAdminContentReportsResponses = {
|
|
11350
|
-
/**
|
|
11351
|
-
* Reports page (reports + total + hasMore), reporter identity omitted
|
|
11352
|
-
*/
|
|
11353
|
-
200: AdminAppContentReportListResponse;
|
|
11354
|
-
};
|
|
11355
|
-
type GetAdminContentReportsResponse = GetAdminContentReportsResponses[keyof GetAdminContentReportsResponses];
|
|
11356
|
-
type PatchAdminContentReportsByReportIdData = {
|
|
11357
|
-
body: UpdateAppContentReportStatusRequest;
|
|
11358
|
-
path: {
|
|
11359
|
-
reportId: string;
|
|
11360
|
-
};
|
|
11361
|
-
query?: never;
|
|
11362
|
-
url: "/admin/content-reports/{reportId}";
|
|
11363
|
-
};
|
|
11364
|
-
type PatchAdminContentReportsByReportIdErrors = {
|
|
11365
|
-
/**
|
|
11366
|
-
* Request error
|
|
11367
|
-
*/
|
|
11368
|
-
400: ErrorResponse;
|
|
11369
|
-
/**
|
|
11370
|
-
* Request error
|
|
11371
|
-
*/
|
|
11372
|
-
401: ErrorResponse;
|
|
11373
|
-
/**
|
|
11374
|
-
* Request error
|
|
11375
|
-
*/
|
|
11376
|
-
403: ErrorResponse;
|
|
11377
|
-
/**
|
|
11378
|
-
* Request error
|
|
11379
|
-
*/
|
|
11380
|
-
404: ErrorResponse;
|
|
11381
|
-
};
|
|
11382
|
-
type PatchAdminContentReportsByReportIdError = PatchAdminContentReportsByReportIdErrors[keyof PatchAdminContentReportsByReportIdErrors];
|
|
11383
|
-
type PatchAdminContentReportsByReportIdResponses = {
|
|
11384
|
-
/**
|
|
11385
|
-
* The triaged report (reporter identity omitted)
|
|
11386
|
-
*/
|
|
11387
|
-
200: AppContentReport;
|
|
11388
|
-
};
|
|
11389
|
-
type PatchAdminContentReportsByReportIdResponse = PatchAdminContentReportsByReportIdResponses[keyof PatchAdminContentReportsByReportIdResponses];
|
|
11390
11045
|
type PostAdminAppPagesByAppIdUnhideBipData = {
|
|
11391
11046
|
body?: never;
|
|
11392
11047
|
path: {
|
|
@@ -11988,19 +11643,6 @@ type PostAdminPaymentsAppealsByAppealIdResolveResponses = {
|
|
|
11988
11643
|
200: AppealResolveSignedResponse;
|
|
11989
11644
|
};
|
|
11990
11645
|
type PostAdminPaymentsAppealsByAppealIdResolveResponse = PostAdminPaymentsAppealsByAppealIdResolveResponses[keyof PostAdminPaymentsAppealsByAppealIdResolveResponses];
|
|
11991
|
-
type GetPaymentsRatesData = {
|
|
11992
|
-
body?: never;
|
|
11993
|
-
path?: never;
|
|
11994
|
-
query?: never;
|
|
11995
|
-
url: "/payments/rates";
|
|
11996
|
-
};
|
|
11997
|
-
type GetPaymentsRatesResponses = {
|
|
11998
|
-
/**
|
|
11999
|
-
* Current exchange rates + the cache-fill timestamp (asOf)
|
|
12000
|
-
*/
|
|
12001
|
-
200: PaymentRatesResponse;
|
|
12002
|
-
};
|
|
12003
|
-
type GetPaymentsRatesResponse = GetPaymentsRatesResponses[keyof GetPaymentsRatesResponses];
|
|
12004
11646
|
type PostPaymentsAppealsData = {
|
|
12005
11647
|
body: AppealFileRequest;
|
|
12006
11648
|
path?: never;
|
|
@@ -13071,11 +12713,6 @@ declare const zOauthPaymentIntentStatus: z$1.ZodObject<{
|
|
|
13071
12713
|
resolvedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13072
12714
|
expiresAt: z$1.ZodISODateTime;
|
|
13073
12715
|
}, z$1.core.$strip>;
|
|
13074
|
-
declare const zPaymentNetwork: z$1.ZodEnum<{
|
|
13075
|
-
ethereum: "ethereum";
|
|
13076
|
-
base: "base";
|
|
13077
|
-
solana: "solana";
|
|
13078
|
-
}>;
|
|
13079
12716
|
declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
13080
12717
|
intentId: z$1.ZodString;
|
|
13081
12718
|
consentId: z$1.ZodString;
|
|
@@ -13125,25 +12762,6 @@ declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
|
13125
12762
|
development: "development";
|
|
13126
12763
|
production: "production";
|
|
13127
12764
|
}>;
|
|
13128
|
-
onramp: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
13129
|
-
kind: z$1.ZodEnum<{
|
|
13130
|
-
bridge: "bridge";
|
|
13131
|
-
}>;
|
|
13132
|
-
from: z$1.ZodEnum<{
|
|
13133
|
-
ethereum: "ethereum";
|
|
13134
|
-
base: "base";
|
|
13135
|
-
solana: "solana";
|
|
13136
|
-
}>;
|
|
13137
|
-
to: z$1.ZodEnum<{
|
|
13138
|
-
ethereum: "ethereum";
|
|
13139
|
-
base: "base";
|
|
13140
|
-
solana: "solana";
|
|
13141
|
-
}>;
|
|
13142
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
13143
|
-
kind: z$1.ZodEnum<{
|
|
13144
|
-
insufficient: "insufficient";
|
|
13145
|
-
}>;
|
|
13146
|
-
}, z$1.core.$strip>]>>;
|
|
13147
12765
|
}, z$1.core.$strip>;
|
|
13148
12766
|
declare const zOauthPaymentIntentSignResponse: z$1.ZodObject<{
|
|
13149
12767
|
chain: z$1.ZodString;
|
|
@@ -13179,13 +12797,6 @@ declare const zOauthPaymentIntentComplete: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
|
|
|
13179
12797
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
13180
12798
|
method: z$1.ZodLiteral<"offline">;
|
|
13181
12799
|
}, z$1.core.$strip>], "method">;
|
|
13182
|
-
declare const zOauthPaymentIntentSolanaPrepareResponse: z$1.ZodObject<{
|
|
13183
|
-
transaction: z$1.ZodString;
|
|
13184
|
-
payer: z$1.ZodString;
|
|
13185
|
-
}, z$1.core.$strip>;
|
|
13186
|
-
declare const zOauthPaymentIntentSolanaCompleteRequest: z$1.ZodObject<{
|
|
13187
|
-
signedTransaction: z$1.ZodString;
|
|
13188
|
-
}, z$1.core.$strip>;
|
|
13189
12800
|
declare const zAppPaymentAuthorizationItem: z$1.ZodObject<{
|
|
13190
12801
|
consentId: z$1.ZodString;
|
|
13191
12802
|
app: z$1.ZodObject<{
|
|
@@ -13797,20 +13408,6 @@ declare const zBipUpdateCommentListResponse: z$1.ZodObject<{
|
|
|
13797
13408
|
total: z$1.ZodInt;
|
|
13798
13409
|
hasMore: z$1.ZodBoolean;
|
|
13799
13410
|
}, z$1.core.$strip>;
|
|
13800
|
-
declare const zBipInterestCountResponse: z$1.ZodObject<{
|
|
13801
|
-
interestCount: z$1.ZodInt;
|
|
13802
|
-
}, z$1.core.$strip>;
|
|
13803
|
-
declare const zBipEngagementResponse: z$1.ZodObject<{
|
|
13804
|
-
interested: z$1.ZodBoolean;
|
|
13805
|
-
subscribed: z$1.ZodBoolean;
|
|
13806
|
-
interestCount: z$1.ZodInt;
|
|
13807
|
-
}, z$1.core.$strip>;
|
|
13808
|
-
declare const zBipInterestRequest: z$1.ZodObject<{
|
|
13809
|
-
interested: z$1.ZodBoolean;
|
|
13810
|
-
}, z$1.core.$strip>;
|
|
13811
|
-
declare const zBipSubscriptionRequest: z$1.ZodObject<{
|
|
13812
|
-
subscribed: z$1.ZodBoolean;
|
|
13813
|
-
}, z$1.core.$strip>;
|
|
13814
13411
|
declare const zMyBipUpdateReaction: z$1.ZodObject<{
|
|
13815
13412
|
updateId: z$1.ZodUUID;
|
|
13816
13413
|
vote: z$1.ZodEnum<{
|
|
@@ -14238,8 +13835,8 @@ declare const zUpdateAppContentReportStatusRequest: z$1.ZodObject<{
|
|
|
14238
13835
|
declare const zPaymentChain: z$1.ZodObject<{
|
|
14239
13836
|
id: z$1.ZodString;
|
|
14240
13837
|
family: z$1.ZodEnum<{
|
|
14241
|
-
solana: "solana";
|
|
14242
13838
|
evm: "evm";
|
|
13839
|
+
solana: "solana";
|
|
14243
13840
|
}>;
|
|
14244
13841
|
displayName: z$1.ZodString;
|
|
14245
13842
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -14250,8 +13847,8 @@ declare const zPaymentChainsResponse: z$1.ZodObject<{
|
|
|
14250
13847
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
14251
13848
|
id: z$1.ZodString;
|
|
14252
13849
|
family: z$1.ZodEnum<{
|
|
14253
|
-
solana: "solana";
|
|
14254
13850
|
evm: "evm";
|
|
13851
|
+
solana: "solana";
|
|
14255
13852
|
}>;
|
|
14256
13853
|
displayName: z$1.ZodString;
|
|
14257
13854
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -16255,17 +15852,9 @@ declare const zWalletChainList: z$1.ZodArray<z$1.ZodObject<{
|
|
|
16255
15852
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
16256
15853
|
"base-mainnet": "base-mainnet";
|
|
16257
15854
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16258
|
-
"base-sepolia": "base-sepolia";
|
|
16259
|
-
"solana-mainnet": "solana-mainnet";
|
|
16260
|
-
"solana-devnet": "solana-devnet";
|
|
16261
15855
|
}>;
|
|
16262
15856
|
displayName: z$1.ZodString;
|
|
16263
|
-
|
|
16264
|
-
solana: "solana";
|
|
16265
|
-
evm: "evm";
|
|
16266
|
-
}>;
|
|
16267
|
-
nativeSymbol: z$1.ZodString;
|
|
16268
|
-
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
15857
|
+
chainId: z$1.ZodInt;
|
|
16269
15858
|
}, z$1.core.$strip>>;
|
|
16270
15859
|
declare const zWalletLabel: z$1.ZodNullable<z$1.ZodString>;
|
|
16271
15860
|
declare const zWalletAppLink: z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -16290,18 +15879,6 @@ declare const zWalletBalances: z$1.ZodObject<{
|
|
|
16290
15879
|
native: z$1.ZodString;
|
|
16291
15880
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16292
15881
|
}, z$1.core.$strip>>;
|
|
16293
|
-
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16294
|
-
native: z$1.ZodString;
|
|
16295
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16296
|
-
}, z$1.core.$strip>>;
|
|
16297
|
-
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16298
|
-
native: z$1.ZodString;
|
|
16299
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16300
|
-
}, z$1.core.$strip>>;
|
|
16301
|
-
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16302
|
-
native: z$1.ZodString;
|
|
16303
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16304
|
-
}, z$1.core.$strip>>;
|
|
16305
15882
|
}, z$1.core.$strip>;
|
|
16306
15883
|
declare const zWalletDelegationMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
16307
15884
|
custom: "custom";
|
|
@@ -16312,7 +15889,6 @@ declare const zWalletDelegationCaps: z$1.ZodNullable<z$1.ZodObject<{
|
|
|
16312
15889
|
native: z$1.ZodString;
|
|
16313
15890
|
usdc: z$1.ZodString;
|
|
16314
15891
|
}, z$1.core.$strip>>;
|
|
16315
|
-
declare const zDelegationSlippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
16316
15892
|
declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
16317
15893
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
16318
15894
|
custom: "custom";
|
|
@@ -16324,14 +15900,9 @@ declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
|
16324
15900
|
usdc: z$1.ZodString;
|
|
16325
15901
|
}, z$1.core.$strip>>;
|
|
16326
15902
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16327
|
-
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
16328
15903
|
}, z$1.core.$strip>;
|
|
16329
15904
|
declare const zWalletItem: z$1.ZodObject<{
|
|
16330
|
-
address: z$1.
|
|
16331
|
-
family: z$1.ZodEnum<{
|
|
16332
|
-
solana: "solana";
|
|
16333
|
-
evm: "evm";
|
|
16334
|
-
}>;
|
|
15905
|
+
address: z$1.ZodString;
|
|
16335
15906
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
16336
15907
|
kind: z$1.ZodEnum<{
|
|
16337
15908
|
app: "app";
|
|
@@ -16355,18 +15926,6 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
16355
15926
|
native: z$1.ZodString;
|
|
16356
15927
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16357
15928
|
}, z$1.core.$strip>>;
|
|
16358
|
-
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16359
|
-
native: z$1.ZodString;
|
|
16360
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16361
|
-
}, z$1.core.$strip>>;
|
|
16362
|
-
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16363
|
-
native: z$1.ZodString;
|
|
16364
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16365
|
-
}, z$1.core.$strip>>;
|
|
16366
|
-
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16367
|
-
native: z$1.ZodString;
|
|
16368
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16369
|
-
}, z$1.core.$strip>>;
|
|
16370
15929
|
}, z$1.core.$strip>;
|
|
16371
15930
|
delegation: z$1.ZodObject<{
|
|
16372
15931
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -16379,7 +15938,6 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
16379
15938
|
usdc: z$1.ZodString;
|
|
16380
15939
|
}, z$1.core.$strip>>;
|
|
16381
15940
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16382
|
-
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
16383
15941
|
}, z$1.core.$strip>;
|
|
16384
15942
|
}, z$1.core.$strip>;
|
|
16385
15943
|
declare const zWalletListResponse: z$1.ZodObject<{
|
|
@@ -16388,24 +15946,12 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
16388
15946
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
16389
15947
|
"base-mainnet": "base-mainnet";
|
|
16390
15948
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16391
|
-
"base-sepolia": "base-sepolia";
|
|
16392
|
-
"solana-mainnet": "solana-mainnet";
|
|
16393
|
-
"solana-devnet": "solana-devnet";
|
|
16394
15949
|
}>;
|
|
16395
15950
|
displayName: z$1.ZodString;
|
|
16396
|
-
|
|
16397
|
-
solana: "solana";
|
|
16398
|
-
evm: "evm";
|
|
16399
|
-
}>;
|
|
16400
|
-
nativeSymbol: z$1.ZodString;
|
|
16401
|
-
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
15951
|
+
chainId: z$1.ZodInt;
|
|
16402
15952
|
}, z$1.core.$strip>>;
|
|
16403
15953
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
16404
|
-
address: z$1.
|
|
16405
|
-
family: z$1.ZodEnum<{
|
|
16406
|
-
solana: "solana";
|
|
16407
|
-
evm: "evm";
|
|
16408
|
-
}>;
|
|
15954
|
+
address: z$1.ZodString;
|
|
16409
15955
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
16410
15956
|
kind: z$1.ZodEnum<{
|
|
16411
15957
|
app: "app";
|
|
@@ -16429,18 +15975,6 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
16429
15975
|
native: z$1.ZodString;
|
|
16430
15976
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16431
15977
|
}, z$1.core.$strip>>;
|
|
16432
|
-
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16433
|
-
native: z$1.ZodString;
|
|
16434
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16435
|
-
}, z$1.core.$strip>>;
|
|
16436
|
-
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16437
|
-
native: z$1.ZodString;
|
|
16438
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16439
|
-
}, z$1.core.$strip>>;
|
|
16440
|
-
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16441
|
-
native: z$1.ZodString;
|
|
16442
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16443
|
-
}, z$1.core.$strip>>;
|
|
16444
15978
|
}, z$1.core.$strip>;
|
|
16445
15979
|
delegation: z$1.ZodObject<{
|
|
16446
15980
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -16453,7 +15987,6 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
16453
15987
|
usdc: z$1.ZodString;
|
|
16454
15988
|
}, z$1.core.$strip>>;
|
|
16455
15989
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16456
|
-
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
16457
15990
|
}, z$1.core.$strip>;
|
|
16458
15991
|
}, z$1.core.$strip>>;
|
|
16459
15992
|
}, z$1.core.$strip>;
|
|
@@ -18379,17 +17912,6 @@ declare const zAppPageRejectedNotificationPayload: z$1.ZodObject<{
|
|
|
18379
17912
|
}>;
|
|
18380
17913
|
notes: z$1.ZodString;
|
|
18381
17914
|
}, z$1.core.$strip>;
|
|
18382
|
-
declare const zBipUpdatePublishedNotificationPayload: z$1.ZodObject<{
|
|
18383
|
-
appId: z$1.ZodUUID;
|
|
18384
|
-
appName: z$1.ZodString;
|
|
18385
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18386
|
-
updateId: z$1.ZodUUID;
|
|
18387
|
-
}, z$1.core.$strip>;
|
|
18388
|
-
declare const zBipNowPlayableNotificationPayload: z$1.ZodObject<{
|
|
18389
|
-
appId: z$1.ZodUUID;
|
|
18390
|
-
appName: z$1.ZodString;
|
|
18391
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18392
|
-
}, z$1.core.$strip>;
|
|
18393
17915
|
declare const zAppParticipantInviteNotificationPayload: z$1.ZodObject<{
|
|
18394
17916
|
appId: z$1.ZodUUID;
|
|
18395
17917
|
appName: z$1.ZodString;
|
|
@@ -18467,31 +17989,6 @@ declare const zNotificationItem: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
|
18467
17989
|
}, z$1.core.$strip>;
|
|
18468
17990
|
read: z$1.ZodBoolean;
|
|
18469
17991
|
createdAt: z$1.ZodISODateTime;
|
|
18470
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18471
|
-
id: z$1.ZodString;
|
|
18472
|
-
kind: z$1.ZodEnum<{
|
|
18473
|
-
bip_update_published: "bip_update_published";
|
|
18474
|
-
}>;
|
|
18475
|
-
payload: z$1.ZodObject<{
|
|
18476
|
-
appId: z$1.ZodUUID;
|
|
18477
|
-
appName: z$1.ZodString;
|
|
18478
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18479
|
-
updateId: z$1.ZodUUID;
|
|
18480
|
-
}, z$1.core.$strip>;
|
|
18481
|
-
read: z$1.ZodBoolean;
|
|
18482
|
-
createdAt: z$1.ZodISODateTime;
|
|
18483
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18484
|
-
id: z$1.ZodString;
|
|
18485
|
-
kind: z$1.ZodEnum<{
|
|
18486
|
-
bip_now_playable: "bip_now_playable";
|
|
18487
|
-
}>;
|
|
18488
|
-
payload: z$1.ZodObject<{
|
|
18489
|
-
appId: z$1.ZodUUID;
|
|
18490
|
-
appName: z$1.ZodString;
|
|
18491
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18492
|
-
}, z$1.core.$strip>;
|
|
18493
|
-
read: z$1.ZodBoolean;
|
|
18494
|
-
createdAt: z$1.ZodISODateTime;
|
|
18495
17992
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18496
17993
|
id: z$1.ZodString;
|
|
18497
17994
|
kind: z$1.ZodEnum<{
|
|
@@ -18585,31 +18082,6 @@ declare const zNotificationListResponse: z$1.ZodObject<{
|
|
|
18585
18082
|
}, z$1.core.$strip>;
|
|
18586
18083
|
read: z$1.ZodBoolean;
|
|
18587
18084
|
createdAt: z$1.ZodISODateTime;
|
|
18588
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18589
|
-
id: z$1.ZodString;
|
|
18590
|
-
kind: z$1.ZodEnum<{
|
|
18591
|
-
bip_update_published: "bip_update_published";
|
|
18592
|
-
}>;
|
|
18593
|
-
payload: z$1.ZodObject<{
|
|
18594
|
-
appId: z$1.ZodUUID;
|
|
18595
|
-
appName: z$1.ZodString;
|
|
18596
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18597
|
-
updateId: z$1.ZodUUID;
|
|
18598
|
-
}, z$1.core.$strip>;
|
|
18599
|
-
read: z$1.ZodBoolean;
|
|
18600
|
-
createdAt: z$1.ZodISODateTime;
|
|
18601
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18602
|
-
id: z$1.ZodString;
|
|
18603
|
-
kind: z$1.ZodEnum<{
|
|
18604
|
-
bip_now_playable: "bip_now_playable";
|
|
18605
|
-
}>;
|
|
18606
|
-
payload: z$1.ZodObject<{
|
|
18607
|
-
appId: z$1.ZodUUID;
|
|
18608
|
-
appName: z$1.ZodString;
|
|
18609
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18610
|
-
}, z$1.core.$strip>;
|
|
18611
|
-
read: z$1.ZodBoolean;
|
|
18612
|
-
createdAt: z$1.ZodISODateTime;
|
|
18613
18085
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18614
18086
|
id: z$1.ZodString;
|
|
18615
18087
|
kind: z$1.ZodEnum<{
|
|
@@ -19005,11 +18477,6 @@ declare const zAcceptedCurrencies: z$1.ZodArray<z$1.ZodEnum<{
|
|
|
19005
18477
|
tron: "tron";
|
|
19006
18478
|
eth: "eth";
|
|
19007
18479
|
}>>;
|
|
19008
|
-
declare const zAcceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19009
|
-
ethereum: "ethereum";
|
|
19010
|
-
base: "base";
|
|
19011
|
-
solana: "solana";
|
|
19012
|
-
}>>>;
|
|
19013
18480
|
declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
19014
18481
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
19015
18482
|
slug: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -19024,11 +18491,6 @@ declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
|
19024
18491
|
tron: "tron";
|
|
19025
18492
|
eth: "eth";
|
|
19026
18493
|
}>>>;
|
|
19027
|
-
acceptedNetworks: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19028
|
-
ethereum: "ethereum";
|
|
19029
|
-
base: "base";
|
|
19030
|
-
solana: "solana";
|
|
19031
|
-
}>>>>;
|
|
19032
18494
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
19033
18495
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
19034
18496
|
}, z$1.core.$strip>;
|
|
@@ -19422,11 +18884,6 @@ declare const zDeveloperAppItem: z$1.ZodObject<{
|
|
|
19422
18884
|
tron: "tron";
|
|
19423
18885
|
eth: "eth";
|
|
19424
18886
|
}>>;
|
|
19425
|
-
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19426
|
-
ethereum: "ethereum";
|
|
19427
|
-
base: "base";
|
|
19428
|
-
solana: "solana";
|
|
19429
|
-
}>>>;
|
|
19430
18887
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
19431
18888
|
chain: z$1.ZodString;
|
|
19432
18889
|
address: z$1.ZodString;
|
|
@@ -19530,11 +18987,6 @@ declare const zDeveloperMeStatus: z$1.ZodObject<{
|
|
|
19530
18987
|
tron: "tron";
|
|
19531
18988
|
eth: "eth";
|
|
19532
18989
|
}>>;
|
|
19533
|
-
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19534
|
-
ethereum: "ethereum";
|
|
19535
|
-
base: "base";
|
|
19536
|
-
solana: "solana";
|
|
19537
|
-
}>>>;
|
|
19538
18990
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
19539
18991
|
chain: z$1.ZodString;
|
|
19540
18992
|
address: z$1.ZodString;
|
|
@@ -20179,7 +19631,6 @@ declare const zAdminAppPageItem: z$1.ZodObject<{
|
|
|
20179
19631
|
}>;
|
|
20180
19632
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20181
19633
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20182
|
-
openReportCount: z$1.ZodInt;
|
|
20183
19634
|
}, z$1.core.$strip>;
|
|
20184
19635
|
declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
20185
19636
|
items: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -20242,7 +19693,6 @@ declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
|
20242
19693
|
}>;
|
|
20243
19694
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20244
19695
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20245
|
-
openReportCount: z$1.ZodInt;
|
|
20246
19696
|
}, z$1.core.$strip>>;
|
|
20247
19697
|
}, z$1.core.$strip>;
|
|
20248
19698
|
declare const zAdminAppPageStatusResponse: z$1.ZodObject<{
|
|
@@ -20291,52 +19741,6 @@ declare const zAdminAppPageBipStatusResponse: z$1.ZodObject<{
|
|
|
20291
19741
|
hidden: "hidden";
|
|
20292
19742
|
}>;
|
|
20293
19743
|
}, z$1.core.$strip>;
|
|
20294
|
-
declare const zAdminAppContentReportItem: z$1.ZodObject<{
|
|
20295
|
-
id: z$1.ZodUUID;
|
|
20296
|
-
category: z$1.ZodEnum<{
|
|
20297
|
-
other: "other";
|
|
20298
|
-
abuse: "abuse";
|
|
20299
|
-
inappropriate_content: "inappropriate_content";
|
|
20300
|
-
cheating: "cheating";
|
|
20301
|
-
spam: "spam";
|
|
20302
|
-
}>;
|
|
20303
|
-
details: z$1.ZodNullable<z$1.ZodString>;
|
|
20304
|
-
status: z$1.ZodEnum<{
|
|
20305
|
-
open: "open";
|
|
20306
|
-
acknowledged: "acknowledged";
|
|
20307
|
-
dismissed: "dismissed";
|
|
20308
|
-
}>;
|
|
20309
|
-
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20310
|
-
createdAt: z$1.ZodISODateTime;
|
|
20311
|
-
appId: z$1.ZodUUID;
|
|
20312
|
-
appName: z$1.ZodString;
|
|
20313
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
20314
|
-
}, z$1.core.$strip>;
|
|
20315
|
-
declare const zAdminAppContentReportListResponse: z$1.ZodObject<{
|
|
20316
|
-
reports: z$1.ZodArray<z$1.ZodObject<{
|
|
20317
|
-
id: z$1.ZodUUID;
|
|
20318
|
-
category: z$1.ZodEnum<{
|
|
20319
|
-
other: "other";
|
|
20320
|
-
abuse: "abuse";
|
|
20321
|
-
inappropriate_content: "inappropriate_content";
|
|
20322
|
-
cheating: "cheating";
|
|
20323
|
-
spam: "spam";
|
|
20324
|
-
}>;
|
|
20325
|
-
details: z$1.ZodNullable<z$1.ZodString>;
|
|
20326
|
-
status: z$1.ZodEnum<{
|
|
20327
|
-
open: "open";
|
|
20328
|
-
acknowledged: "acknowledged";
|
|
20329
|
-
dismissed: "dismissed";
|
|
20330
|
-
}>;
|
|
20331
|
-
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20332
|
-
createdAt: z$1.ZodISODateTime;
|
|
20333
|
-
appId: z$1.ZodUUID;
|
|
20334
|
-
appName: z$1.ZodString;
|
|
20335
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
20336
|
-
}, z$1.core.$strip>>;
|
|
20337
|
-
total: z$1.ZodInt;
|
|
20338
|
-
hasMore: z$1.ZodBoolean;
|
|
20339
|
-
}, z$1.core.$strip>;
|
|
20340
19744
|
declare const zPlatformFeesResponse: z$1.ZodObject<{
|
|
20341
19745
|
purchaseFeeBps: z$1.ZodInt;
|
|
20342
19746
|
stakeFeeBps: z$1.ZodInt;
|
|
@@ -20698,13 +20102,6 @@ declare const zAppealResolveRequest: z$1.ZodObject<{
|
|
|
20698
20102
|
}>;
|
|
20699
20103
|
notes: z$1.ZodOptional<z$1.ZodString>;
|
|
20700
20104
|
}, z$1.core.$strip>;
|
|
20701
|
-
declare const zPaymentRatesResponse: z$1.ZodObject<{
|
|
20702
|
-
asOf: z$1.ZodString;
|
|
20703
|
-
ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
20704
|
-
solUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
20705
|
-
solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
|
|
20706
|
-
tronUsdPerToken: z$1.ZodNumber;
|
|
20707
|
-
}, z$1.core.$strip>;
|
|
20708
20105
|
declare const zAppealFileResponse: z$1.ZodObject<{
|
|
20709
20106
|
appealId: z$1.ZodString;
|
|
20710
20107
|
paymentId: z$1.ZodString;
|
|
@@ -20775,7 +20172,7 @@ declare const zOauthPaymentPayoutRequest: z$1.ZodObject<{
|
|
|
20775
20172
|
}, z$1.core.$strip>>;
|
|
20776
20173
|
}, z$1.core.$strip>;
|
|
20777
20174
|
declare const zOauthPaymentDistributeResponse: z$1.ZodObject<{
|
|
20778
|
-
distributionId: z$1.
|
|
20175
|
+
distributionId: z$1.ZodString;
|
|
20779
20176
|
txHash: z$1.ZodString;
|
|
20780
20177
|
blockNumber: z$1.ZodString;
|
|
20781
20178
|
potId: z$1.ZodString;
|
|
@@ -21568,25 +20965,6 @@ declare const zGetOauthPaymentsIntentByIdResponse: z$1.ZodObject<{
|
|
|
21568
20965
|
development: "development";
|
|
21569
20966
|
production: "production";
|
|
21570
20967
|
}>;
|
|
21571
|
-
onramp: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
21572
|
-
kind: z$1.ZodEnum<{
|
|
21573
|
-
bridge: "bridge";
|
|
21574
|
-
}>;
|
|
21575
|
-
from: z$1.ZodEnum<{
|
|
21576
|
-
ethereum: "ethereum";
|
|
21577
|
-
base: "base";
|
|
21578
|
-
solana: "solana";
|
|
21579
|
-
}>;
|
|
21580
|
-
to: z$1.ZodEnum<{
|
|
21581
|
-
ethereum: "ethereum";
|
|
21582
|
-
base: "base";
|
|
21583
|
-
solana: "solana";
|
|
21584
|
-
}>;
|
|
21585
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21586
|
-
kind: z$1.ZodEnum<{
|
|
21587
|
-
insufficient: "insufficient";
|
|
21588
|
-
}>;
|
|
21589
|
-
}, z$1.core.$strip>]>>;
|
|
21590
20968
|
}, z$1.core.$strip>;
|
|
21591
20969
|
/**
|
|
21592
20970
|
* Signed payment payload ready for the wallet to submit on-chain
|
|
@@ -21617,22 +20995,6 @@ declare const zPostOauthPaymentsIntentByIdCompleteBody: z$1.ZodDiscriminatedUnio
|
|
|
21617
20995
|
declare const zPostOauthPaymentsIntentByIdCompleteResponse: z$1.ZodObject<{
|
|
21618
20996
|
redirect: z$1.ZodURL;
|
|
21619
20997
|
}, z$1.core.$strip>;
|
|
21620
|
-
/**
|
|
21621
|
-
* Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
|
|
21622
|
-
*/
|
|
21623
|
-
declare const zPostOauthPaymentsIntentByIdSolanaPrepareResponse: z$1.ZodObject<{
|
|
21624
|
-
transaction: z$1.ZodString;
|
|
21625
|
-
payer: z$1.ZodString;
|
|
21626
|
-
}, z$1.core.$strip>;
|
|
21627
|
-
declare const zPostOauthPaymentsIntentByIdSolanaCompleteBody: z$1.ZodObject<{
|
|
21628
|
-
signedTransaction: z$1.ZodString;
|
|
21629
|
-
}, z$1.core.$strip>;
|
|
21630
|
-
/**
|
|
21631
|
-
* Redirect target the SPA navigates to
|
|
21632
|
-
*/
|
|
21633
|
-
declare const zPostOauthPaymentsIntentByIdSolanaCompleteResponse: z$1.ZodObject<{
|
|
21634
|
-
redirect: z$1.ZodURL;
|
|
21635
|
-
}, z$1.core.$strip>;
|
|
21636
20998
|
/**
|
|
21637
20999
|
* Redirect target the SPA navigates to
|
|
21638
21000
|
*/
|
|
@@ -22175,54 +21537,6 @@ declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse: z$
|
|
|
22175
21537
|
total: z$1.ZodInt;
|
|
22176
21538
|
hasMore: z$1.ZodBoolean;
|
|
22177
21539
|
}, z$1.core.$strip>;
|
|
22178
|
-
declare const zGetPublicBuildInPublicBySlugInterestPath: z$1.ZodObject<{
|
|
22179
|
-
slug: z$1.ZodString;
|
|
22180
|
-
}, z$1.core.$strip>;
|
|
22181
|
-
/**
|
|
22182
|
-
* The live count
|
|
22183
|
-
*/
|
|
22184
|
-
declare const zGetPublicBuildInPublicBySlugInterestResponse: z$1.ZodObject<{
|
|
22185
|
-
interestCount: z$1.ZodInt;
|
|
22186
|
-
}, z$1.core.$strip>;
|
|
22187
|
-
declare const zGetMeBuildInPublicBySlugEngagementPath: z$1.ZodObject<{
|
|
22188
|
-
slug: z$1.ZodString;
|
|
22189
|
-
}, z$1.core.$strip>;
|
|
22190
|
-
/**
|
|
22191
|
-
* Engagement state + count
|
|
22192
|
-
*/
|
|
22193
|
-
declare const zGetMeBuildInPublicBySlugEngagementResponse: z$1.ZodObject<{
|
|
22194
|
-
interested: z$1.ZodBoolean;
|
|
22195
|
-
subscribed: z$1.ZodBoolean;
|
|
22196
|
-
interestCount: z$1.ZodInt;
|
|
22197
|
-
}, z$1.core.$strip>;
|
|
22198
|
-
declare const zPostMeBuildInPublicBySlugInterestBody: z$1.ZodObject<{
|
|
22199
|
-
interested: z$1.ZodBoolean;
|
|
22200
|
-
}, z$1.core.$strip>;
|
|
22201
|
-
declare const zPostMeBuildInPublicBySlugInterestPath: z$1.ZodObject<{
|
|
22202
|
-
slug: z$1.ZodString;
|
|
22203
|
-
}, z$1.core.$strip>;
|
|
22204
|
-
/**
|
|
22205
|
-
* Fresh engagement state + count
|
|
22206
|
-
*/
|
|
22207
|
-
declare const zPostMeBuildInPublicBySlugInterestResponse: z$1.ZodObject<{
|
|
22208
|
-
interested: z$1.ZodBoolean;
|
|
22209
|
-
subscribed: z$1.ZodBoolean;
|
|
22210
|
-
interestCount: z$1.ZodInt;
|
|
22211
|
-
}, z$1.core.$strip>;
|
|
22212
|
-
declare const zPostMeBuildInPublicBySlugSubscriptionBody: z$1.ZodObject<{
|
|
22213
|
-
subscribed: z$1.ZodBoolean;
|
|
22214
|
-
}, z$1.core.$strip>;
|
|
22215
|
-
declare const zPostMeBuildInPublicBySlugSubscriptionPath: z$1.ZodObject<{
|
|
22216
|
-
slug: z$1.ZodString;
|
|
22217
|
-
}, z$1.core.$strip>;
|
|
22218
|
-
/**
|
|
22219
|
-
* Fresh engagement state + count
|
|
22220
|
-
*/
|
|
22221
|
-
declare const zPostMeBuildInPublicBySlugSubscriptionResponse: z$1.ZodObject<{
|
|
22222
|
-
interested: z$1.ZodBoolean;
|
|
22223
|
-
subscribed: z$1.ZodBoolean;
|
|
22224
|
-
interestCount: z$1.ZodInt;
|
|
22225
|
-
}, z$1.core.$strip>;
|
|
22226
21540
|
declare const zGetMeBuildInPublicBySlugReactionsPath: z$1.ZodObject<{
|
|
22227
21541
|
slug: z$1.ZodString;
|
|
22228
21542
|
}, z$1.core.$strip>;
|
|
@@ -22869,8 +22183,8 @@ declare const zGetPaymentsChainsResponse: z$1.ZodObject<{
|
|
|
22869
22183
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
22870
22184
|
id: z$1.ZodString;
|
|
22871
22185
|
family: z$1.ZodEnum<{
|
|
22872
|
-
solana: "solana";
|
|
22873
22186
|
evm: "evm";
|
|
22187
|
+
solana: "solana";
|
|
22874
22188
|
}>;
|
|
22875
22189
|
displayName: z$1.ZodString;
|
|
22876
22190
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -24392,24 +23706,12 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
24392
23706
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
24393
23707
|
"base-mainnet": "base-mainnet";
|
|
24394
23708
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
24395
|
-
"base-sepolia": "base-sepolia";
|
|
24396
|
-
"solana-mainnet": "solana-mainnet";
|
|
24397
|
-
"solana-devnet": "solana-devnet";
|
|
24398
23709
|
}>;
|
|
24399
23710
|
displayName: z$1.ZodString;
|
|
24400
|
-
|
|
24401
|
-
solana: "solana";
|
|
24402
|
-
evm: "evm";
|
|
24403
|
-
}>;
|
|
24404
|
-
nativeSymbol: z$1.ZodString;
|
|
24405
|
-
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
23711
|
+
chainId: z$1.ZodInt;
|
|
24406
23712
|
}, z$1.core.$strip>>;
|
|
24407
23713
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
24408
|
-
address: z$1.
|
|
24409
|
-
family: z$1.ZodEnum<{
|
|
24410
|
-
solana: "solana";
|
|
24411
|
-
evm: "evm";
|
|
24412
|
-
}>;
|
|
23714
|
+
address: z$1.ZodString;
|
|
24413
23715
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
24414
23716
|
kind: z$1.ZodEnum<{
|
|
24415
23717
|
app: "app";
|
|
@@ -24433,18 +23735,6 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
24433
23735
|
native: z$1.ZodString;
|
|
24434
23736
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
24435
23737
|
}, z$1.core.$strip>>;
|
|
24436
|
-
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
24437
|
-
native: z$1.ZodString;
|
|
24438
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
24439
|
-
}, z$1.core.$strip>>;
|
|
24440
|
-
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
24441
|
-
native: z$1.ZodString;
|
|
24442
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
24443
|
-
}, z$1.core.$strip>>;
|
|
24444
|
-
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
24445
|
-
native: z$1.ZodString;
|
|
24446
|
-
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
24447
|
-
}, z$1.core.$strip>>;
|
|
24448
23738
|
}, z$1.core.$strip>;
|
|
24449
23739
|
delegation: z$1.ZodObject<{
|
|
24450
23740
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -24457,7 +23747,6 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
24457
23747
|
usdc: z$1.ZodString;
|
|
24458
23748
|
}, z$1.core.$strip>>;
|
|
24459
23749
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
24460
|
-
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
24461
23750
|
}, z$1.core.$strip>;
|
|
24462
23751
|
}, z$1.core.$strip>>;
|
|
24463
23752
|
}, z$1.core.$strip>;
|
|
@@ -24500,7 +23789,6 @@ declare const zGetMeWalletsByAddressDelegateResponse: z$1.ZodObject<{
|
|
|
24500
23789
|
usdc: z$1.ZodString;
|
|
24501
23790
|
}, z$1.core.$strip>>;
|
|
24502
23791
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
24503
|
-
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
24504
23792
|
}, z$1.core.$strip>;
|
|
24505
23793
|
declare const zPostMeWalletsByAddressDelegateBody: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
24506
23794
|
mode: z$1.ZodEnum<{
|
|
@@ -26970,31 +26258,6 @@ declare const zGetMeNotificationsResponse: z$1.ZodObject<{
|
|
|
26970
26258
|
}, z$1.core.$strip>;
|
|
26971
26259
|
read: z$1.ZodBoolean;
|
|
26972
26260
|
createdAt: z$1.ZodISODateTime;
|
|
26973
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
26974
|
-
id: z$1.ZodString;
|
|
26975
|
-
kind: z$1.ZodEnum<{
|
|
26976
|
-
bip_update_published: "bip_update_published";
|
|
26977
|
-
}>;
|
|
26978
|
-
payload: z$1.ZodObject<{
|
|
26979
|
-
appId: z$1.ZodUUID;
|
|
26980
|
-
appName: z$1.ZodString;
|
|
26981
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
26982
|
-
updateId: z$1.ZodUUID;
|
|
26983
|
-
}, z$1.core.$strip>;
|
|
26984
|
-
read: z$1.ZodBoolean;
|
|
26985
|
-
createdAt: z$1.ZodISODateTime;
|
|
26986
|
-
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
26987
|
-
id: z$1.ZodString;
|
|
26988
|
-
kind: z$1.ZodEnum<{
|
|
26989
|
-
bip_now_playable: "bip_now_playable";
|
|
26990
|
-
}>;
|
|
26991
|
-
payload: z$1.ZodObject<{
|
|
26992
|
-
appId: z$1.ZodUUID;
|
|
26993
|
-
appName: z$1.ZodString;
|
|
26994
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
26995
|
-
}, z$1.core.$strip>;
|
|
26996
|
-
read: z$1.ZodBoolean;
|
|
26997
|
-
createdAt: z$1.ZodISODateTime;
|
|
26998
26261
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
26999
26262
|
id: z$1.ZodString;
|
|
27000
26263
|
kind: z$1.ZodEnum<{
|
|
@@ -27363,11 +26626,6 @@ declare const zPatchMeDeveloperAppsByIdBody: z$1.ZodObject<{
|
|
|
27363
26626
|
tron: "tron";
|
|
27364
26627
|
eth: "eth";
|
|
27365
26628
|
}>>>;
|
|
27366
|
-
acceptedNetworks: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
27367
|
-
ethereum: "ethereum";
|
|
27368
|
-
base: "base";
|
|
27369
|
-
solana: "solana";
|
|
27370
|
-
}>>>>;
|
|
27371
26629
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
27372
26630
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
27373
26631
|
}, z$1.core.$strip>;
|
|
@@ -28350,11 +27608,6 @@ declare const zGetMeDeveloperResponse: z$1.ZodObject<{
|
|
|
28350
27608
|
tron: "tron";
|
|
28351
27609
|
eth: "eth";
|
|
28352
27610
|
}>>;
|
|
28353
|
-
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
28354
|
-
ethereum: "ethereum";
|
|
28355
|
-
base: "base";
|
|
28356
|
-
solana: "solana";
|
|
28357
|
-
}>>>;
|
|
28358
27611
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
28359
27612
|
chain: z$1.ZodString;
|
|
28360
27613
|
address: z$1.ZodString;
|
|
@@ -29904,7 +29157,6 @@ declare const zGetAdminAppPagesResponse: z$1.ZodObject<{
|
|
|
29904
29157
|
}>;
|
|
29905
29158
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
29906
29159
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
29907
|
-
openReportCount: z$1.ZodInt;
|
|
29908
29160
|
}, z$1.core.$strip>>;
|
|
29909
29161
|
}, z$1.core.$strip>;
|
|
29910
29162
|
declare const zPostAdminAppPagesByAppIdHideBody: z$1.ZodObject<{
|
|
@@ -30045,75 +29297,6 @@ declare const zPostAdminAppPagesByAppIdHideBipResponse: z$1.ZodObject<{
|
|
|
30045
29297
|
hidden: "hidden";
|
|
30046
29298
|
}>;
|
|
30047
29299
|
}, z$1.core.$strip>;
|
|
30048
|
-
declare const zGetAdminContentReportsQuery: z$1.ZodObject<{
|
|
30049
|
-
status: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
30050
|
-
open: "open";
|
|
30051
|
-
acknowledged: "acknowledged";
|
|
30052
|
-
dismissed: "dismissed";
|
|
30053
|
-
}>, z$1.ZodEnum<{
|
|
30054
|
-
all: "all";
|
|
30055
|
-
}>]>>;
|
|
30056
|
-
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
30057
|
-
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
30058
|
-
}, z$1.core.$strip>;
|
|
30059
|
-
/**
|
|
30060
|
-
* Reports page (reports + total + hasMore), reporter identity omitted
|
|
30061
|
-
*/
|
|
30062
|
-
declare const zGetAdminContentReportsResponse: z$1.ZodObject<{
|
|
30063
|
-
reports: z$1.ZodArray<z$1.ZodObject<{
|
|
30064
|
-
id: z$1.ZodUUID;
|
|
30065
|
-
category: z$1.ZodEnum<{
|
|
30066
|
-
other: "other";
|
|
30067
|
-
abuse: "abuse";
|
|
30068
|
-
inappropriate_content: "inappropriate_content";
|
|
30069
|
-
cheating: "cheating";
|
|
30070
|
-
spam: "spam";
|
|
30071
|
-
}>;
|
|
30072
|
-
details: z$1.ZodNullable<z$1.ZodString>;
|
|
30073
|
-
status: z$1.ZodEnum<{
|
|
30074
|
-
open: "open";
|
|
30075
|
-
acknowledged: "acknowledged";
|
|
30076
|
-
dismissed: "dismissed";
|
|
30077
|
-
}>;
|
|
30078
|
-
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30079
|
-
createdAt: z$1.ZodISODateTime;
|
|
30080
|
-
appId: z$1.ZodUUID;
|
|
30081
|
-
appName: z$1.ZodString;
|
|
30082
|
-
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
30083
|
-
}, z$1.core.$strip>>;
|
|
30084
|
-
total: z$1.ZodInt;
|
|
30085
|
-
hasMore: z$1.ZodBoolean;
|
|
30086
|
-
}, z$1.core.$strip>;
|
|
30087
|
-
declare const zPatchAdminContentReportsByReportIdBody: z$1.ZodObject<{
|
|
30088
|
-
status: z$1.ZodEnum<{
|
|
30089
|
-
acknowledged: "acknowledged";
|
|
30090
|
-
dismissed: "dismissed";
|
|
30091
|
-
}>;
|
|
30092
|
-
}, z$1.core.$strip>;
|
|
30093
|
-
declare const zPatchAdminContentReportsByReportIdPath: z$1.ZodObject<{
|
|
30094
|
-
reportId: z$1.ZodUUID;
|
|
30095
|
-
}, z$1.core.$strip>;
|
|
30096
|
-
/**
|
|
30097
|
-
* The triaged report (reporter identity omitted)
|
|
30098
|
-
*/
|
|
30099
|
-
declare const zPatchAdminContentReportsByReportIdResponse: z$1.ZodObject<{
|
|
30100
|
-
id: z$1.ZodUUID;
|
|
30101
|
-
category: z$1.ZodEnum<{
|
|
30102
|
-
other: "other";
|
|
30103
|
-
abuse: "abuse";
|
|
30104
|
-
inappropriate_content: "inappropriate_content";
|
|
30105
|
-
cheating: "cheating";
|
|
30106
|
-
spam: "spam";
|
|
30107
|
-
}>;
|
|
30108
|
-
details: z$1.ZodNullable<z$1.ZodString>;
|
|
30109
|
-
status: z$1.ZodEnum<{
|
|
30110
|
-
open: "open";
|
|
30111
|
-
acknowledged: "acknowledged";
|
|
30112
|
-
dismissed: "dismissed";
|
|
30113
|
-
}>;
|
|
30114
|
-
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30115
|
-
createdAt: z$1.ZodISODateTime;
|
|
30116
|
-
}, z$1.core.$strip>;
|
|
30117
29300
|
declare const zPostAdminAppPagesByAppIdUnhideBipPath: z$1.ZodObject<{
|
|
30118
29301
|
appId: z$1.ZodString;
|
|
30119
29302
|
}, z$1.core.$strip>;
|
|
@@ -30547,16 +29730,6 @@ declare const zPostAdminPaymentsAppealsByAppealIdResolveResponse: z$1.ZodObject<
|
|
|
30547
29730
|
resolved_dismiss: "resolved_dismiss";
|
|
30548
29731
|
}>;
|
|
30549
29732
|
}, z$1.core.$strip>;
|
|
30550
|
-
/**
|
|
30551
|
-
* Current exchange rates + the cache-fill timestamp (asOf)
|
|
30552
|
-
*/
|
|
30553
|
-
declare const zGetPaymentsRatesResponse: z$1.ZodObject<{
|
|
30554
|
-
asOf: z$1.ZodString;
|
|
30555
|
-
ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
30556
|
-
solUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
30557
|
-
solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
|
|
30558
|
-
tronUsdPerToken: z$1.ZodNumber;
|
|
30559
|
-
}, z$1.core.$strip>;
|
|
30560
29733
|
declare const zPostPaymentsAppealsBody: z$1.ZodObject<{
|
|
30561
29734
|
paymentId: z$1.ZodString;
|
|
30562
29735
|
amount: z$1.ZodString;
|
|
@@ -30786,7 +29959,7 @@ declare const zPostOauthPaymentsDistributeBody: z$1.ZodObject<{
|
|
|
30786
29959
|
* Distribution submitted (legs settled on-chain)
|
|
30787
29960
|
*/
|
|
30788
29961
|
declare const zPostOauthPaymentsDistributeResponse: z$1.ZodObject<{
|
|
30789
|
-
distributionId: z$1.
|
|
29962
|
+
distributionId: z$1.ZodString;
|
|
30790
29963
|
txHash: z$1.ZodString;
|
|
30791
29964
|
blockNumber: z$1.ZodString;
|
|
30792
29965
|
potId: z$1.ZodString;
|
|
@@ -30977,4 +30150,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
30977
30150
|
*/
|
|
30978
30151
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
30979
30152
|
//#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 };
|
|
30153
|
+
export { type AcceptedCurrencies, 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 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 BipUpdate, type BipUpdateAttachment, type BipUpdateAttachments, type BipUpdateBody, type BipUpdateComment, type BipUpdateCommentBody, type BipUpdateCommentListResponse, type BipUpdateListResponse, type BipUpdateMediaUploadResponse, 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 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 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 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 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 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 OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type 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 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 PostMeBuildInPublicBySlugReactionsByUpdateIdData, type PostMeBuildInPublicBySlugReactionsByUpdateIdError, type PostMeBuildInPublicBySlugReactionsByUpdateIdErrors, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponse, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponses, 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 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, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowNftCharge, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, 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, zBipUpdate, zBipUpdateAttachment, zBipUpdateAttachments, zBipUpdateBody, zBipUpdateComment, zBipUpdateCommentBody, zBipUpdateCommentListResponse, zBipUpdateListResponse, zBipUpdateMediaUploadResponse, zBipUpdateReactionCounts, zBipUpdateVote, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateBipUpdateCommentRequest, zCreateBipUpdateCommentResponse, zCreateBipUpdateRequest, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, 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, 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, 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, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, 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, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, 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, 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, zPostMeBuildInPublicBySlugReactionsByUpdateIdBody, zPostMeBuildInPublicBySlugReactionsByUpdateIdPath, zPostMeBuildInPublicBySlugReactionsByUpdateIdResponse, 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, 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 };
|