@metatrongg/sdk 0.8.0-dev.42c667f → 0.8.0-dev.45ada1b
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 +200 -7
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1554 -52
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +201 -8
- 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,7 +385,15 @@ 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
|
+
};
|
|
388
395
|
};
|
|
396
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
389
397
|
type OauthPaymentIntentSignResponse = {
|
|
390
398
|
chain: string;
|
|
391
399
|
chainId: number;
|
|
@@ -415,6 +423,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
415
423
|
type OauthPaymentIntentCompleteOffline = {
|
|
416
424
|
method: "offline";
|
|
417
425
|
};
|
|
426
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
427
|
+
transaction: string;
|
|
428
|
+
payer: string;
|
|
429
|
+
};
|
|
430
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
431
|
+
signedTransaction: string;
|
|
432
|
+
};
|
|
418
433
|
type ListAppPaymentAuthorizationsResponse = {
|
|
419
434
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
420
435
|
};
|
|
@@ -481,6 +496,7 @@ type LibraryItem = {
|
|
|
481
496
|
firstPublishedAt: string;
|
|
482
497
|
};
|
|
483
498
|
type AppPageSlug = string;
|
|
499
|
+
type LibrarySort = "newest" | "top";
|
|
484
500
|
type PublicAppPage = {
|
|
485
501
|
appId: string;
|
|
486
502
|
slug: AppPageSlug;
|
|
@@ -506,6 +522,7 @@ type PublicAppPage = {
|
|
|
506
522
|
paymentsMode: AppPagePaymentsMode;
|
|
507
523
|
oauthScopes: Array<string>;
|
|
508
524
|
chains: Array<string>;
|
|
525
|
+
devlog: boolean;
|
|
509
526
|
publishedAt: string;
|
|
510
527
|
updatedAt: string;
|
|
511
528
|
};
|
|
@@ -571,6 +588,7 @@ type BipUpdateListResponse = {
|
|
|
571
588
|
updates: Array<BipUpdate>;
|
|
572
589
|
total: number;
|
|
573
590
|
hasMore: boolean;
|
|
591
|
+
pinned: BipUpdate | null;
|
|
574
592
|
};
|
|
575
593
|
type BipUpdate = {
|
|
576
594
|
id: string;
|
|
@@ -581,6 +599,7 @@ type BipUpdate = {
|
|
|
581
599
|
commentCount: number;
|
|
582
600
|
createdAt: string;
|
|
583
601
|
updatedAt: string;
|
|
602
|
+
pinnedAt: string | null;
|
|
584
603
|
};
|
|
585
604
|
type BipUpdateBody = string;
|
|
586
605
|
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
@@ -611,6 +630,20 @@ type ReviewAuthor = {
|
|
|
611
630
|
name: string | null;
|
|
612
631
|
avatarUrl: string | null;
|
|
613
632
|
};
|
|
633
|
+
type BipInterestCountResponse = {
|
|
634
|
+
interestCount: number;
|
|
635
|
+
};
|
|
636
|
+
type BipEngagementResponse = {
|
|
637
|
+
interested: boolean;
|
|
638
|
+
subscribed: boolean;
|
|
639
|
+
interestCount: number;
|
|
640
|
+
};
|
|
641
|
+
type BipInterestRequest = {
|
|
642
|
+
interested: boolean;
|
|
643
|
+
};
|
|
644
|
+
type BipSubscriptionRequest = {
|
|
645
|
+
subscribed: boolean;
|
|
646
|
+
};
|
|
614
647
|
type MyBipUpdateReactionsResponse = {
|
|
615
648
|
reactions: Array<MyBipUpdateReaction>;
|
|
616
649
|
};
|
|
@@ -877,7 +910,11 @@ type ActivityRow = ({
|
|
|
877
910
|
kind: "referral_earning";
|
|
878
911
|
} & ActivityRowReferralEarning) | ({
|
|
879
912
|
kind: "nft_charge";
|
|
880
|
-
} & ActivityRowNftCharge)
|
|
913
|
+
} & ActivityRowNftCharge) | ({
|
|
914
|
+
kind: "solana_stake";
|
|
915
|
+
} & ActivityRowSolanaStake) | ({
|
|
916
|
+
kind: "solana_pot_leg";
|
|
917
|
+
} & ActivityRowSolanaPotLeg);
|
|
881
918
|
type ActivityRowPayment = {
|
|
882
919
|
kind: "payment";
|
|
883
920
|
groupId: string | null;
|
|
@@ -1205,6 +1242,56 @@ type ActivityRowNftCharge = {
|
|
|
1205
1242
|
counterpartyHandle: string | null;
|
|
1206
1243
|
counterpartyDisplayName: string | null;
|
|
1207
1244
|
};
|
|
1245
|
+
type ActivityRowSolanaStake = {
|
|
1246
|
+
kind: "solana_stake";
|
|
1247
|
+
groupId: string | null;
|
|
1248
|
+
id: string;
|
|
1249
|
+
chain: string;
|
|
1250
|
+
occurredAt: string;
|
|
1251
|
+
role: "outgoing" | "incoming";
|
|
1252
|
+
amount: string;
|
|
1253
|
+
token: string;
|
|
1254
|
+
potId: string | null;
|
|
1255
|
+
usdCents: number;
|
|
1256
|
+
status: "completed";
|
|
1257
|
+
txHash: string | null;
|
|
1258
|
+
app: {
|
|
1259
|
+
id: string;
|
|
1260
|
+
name: string;
|
|
1261
|
+
logoUrl: string | null;
|
|
1262
|
+
slug: string | null;
|
|
1263
|
+
bannerUrl: string | null;
|
|
1264
|
+
} | null;
|
|
1265
|
+
stakerUserId?: string | null;
|
|
1266
|
+
stakerHandle?: string | null;
|
|
1267
|
+
stakerDisplayName?: string | null;
|
|
1268
|
+
metadata?: PaymentMetadata | null;
|
|
1269
|
+
};
|
|
1270
|
+
type ActivityRowSolanaPotLeg = {
|
|
1271
|
+
kind: "solana_pot_leg";
|
|
1272
|
+
groupId: string | null;
|
|
1273
|
+
id: string;
|
|
1274
|
+
chain: string;
|
|
1275
|
+
occurredAt: string;
|
|
1276
|
+
role: "outgoing" | "incoming";
|
|
1277
|
+
beneficiary: string;
|
|
1278
|
+
potId: string | null;
|
|
1279
|
+
amount: string;
|
|
1280
|
+
token: string;
|
|
1281
|
+
usdCents: number | null;
|
|
1282
|
+
status: "settled";
|
|
1283
|
+
app: {
|
|
1284
|
+
id: string;
|
|
1285
|
+
name: string;
|
|
1286
|
+
logoUrl: string | null;
|
|
1287
|
+
slug: string | null;
|
|
1288
|
+
bannerUrl: string | null;
|
|
1289
|
+
} | null;
|
|
1290
|
+
txHash: string | null;
|
|
1291
|
+
recipientUserId?: string | null;
|
|
1292
|
+
recipientHandle?: string | null;
|
|
1293
|
+
recipientDisplayName?: string | null;
|
|
1294
|
+
};
|
|
1208
1295
|
type OutstandingResponse = {
|
|
1209
1296
|
rows: Array<OutstandingByToken>;
|
|
1210
1297
|
};
|
|
@@ -1473,12 +1560,15 @@ type WalletListResponse = {
|
|
|
1473
1560
|
wallets: Array<WalletItem>;
|
|
1474
1561
|
};
|
|
1475
1562
|
type WalletChainList = Array<{
|
|
1476
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1563
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1477
1564
|
displayName: string;
|
|
1478
|
-
|
|
1565
|
+
family: "evm" | "solana";
|
|
1566
|
+
nativeSymbol: string;
|
|
1567
|
+
chainId?: number;
|
|
1479
1568
|
}>;
|
|
1480
1569
|
type WalletItem = {
|
|
1481
|
-
address: string;
|
|
1570
|
+
address: string | string;
|
|
1571
|
+
family: "evm" | "solana";
|
|
1482
1572
|
label: WalletLabel;
|
|
1483
1573
|
kind: "personal" | "app";
|
|
1484
1574
|
app: WalletAppLink;
|
|
@@ -1495,6 +1585,9 @@ type WalletBalances = {
|
|
|
1495
1585
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1496
1586
|
"base-mainnet"?: WalletChainBalance;
|
|
1497
1587
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1588
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1589
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1590
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1498
1591
|
};
|
|
1499
1592
|
type WalletChainBalance = {
|
|
1500
1593
|
native: string;
|
|
@@ -1504,12 +1597,14 @@ type WalletDelegationStatus = {
|
|
|
1504
1597
|
mode: WalletDelegationMode;
|
|
1505
1598
|
caps: WalletDelegationCaps;
|
|
1506
1599
|
policyId: string | null;
|
|
1600
|
+
slippageBps: DelegationSlippageBps;
|
|
1507
1601
|
};
|
|
1508
1602
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1509
1603
|
type WalletDelegationCaps = {
|
|
1510
1604
|
native: string;
|
|
1511
1605
|
usdc: string;
|
|
1512
1606
|
} | null;
|
|
1607
|
+
type DelegationSlippageBps = number | null;
|
|
1513
1608
|
type WalletLabelUpdateResponse = {
|
|
1514
1609
|
address: string;
|
|
1515
1610
|
label: WalletLabel;
|
|
@@ -2260,6 +2355,18 @@ type NotificationItem = {
|
|
|
2260
2355
|
payload: AppPageRejectedNotificationPayload;
|
|
2261
2356
|
read: boolean;
|
|
2262
2357
|
createdAt: string;
|
|
2358
|
+
} | {
|
|
2359
|
+
id: string;
|
|
2360
|
+
kind: "bip_update_published";
|
|
2361
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2362
|
+
read: boolean;
|
|
2363
|
+
createdAt: string;
|
|
2364
|
+
} | {
|
|
2365
|
+
id: string;
|
|
2366
|
+
kind: "bip_now_playable";
|
|
2367
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2368
|
+
read: boolean;
|
|
2369
|
+
createdAt: string;
|
|
2263
2370
|
} | {
|
|
2264
2371
|
id: string;
|
|
2265
2372
|
kind: "app_participant_invite";
|
|
@@ -2298,6 +2405,17 @@ type AppPageRejectedNotificationPayload = {
|
|
|
2298
2405
|
scope: "publish" | "changes" | "bip_publish";
|
|
2299
2406
|
notes: string;
|
|
2300
2407
|
};
|
|
2408
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2409
|
+
appId: string;
|
|
2410
|
+
appName: string;
|
|
2411
|
+
appSlug: string | null;
|
|
2412
|
+
updateId: string;
|
|
2413
|
+
};
|
|
2414
|
+
type BipNowPlayableNotificationPayload = {
|
|
2415
|
+
appId: string;
|
|
2416
|
+
appName: string;
|
|
2417
|
+
appSlug: string | null;
|
|
2418
|
+
};
|
|
2301
2419
|
type AppParticipantInviteNotificationPayload = {
|
|
2302
2420
|
appId: string;
|
|
2303
2421
|
appName: string;
|
|
@@ -2472,12 +2590,14 @@ type UpdateDeveloperApp = {
|
|
|
2472
2590
|
redirectUris?: Array<string>;
|
|
2473
2591
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2474
2592
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2593
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2475
2594
|
paymentStatusWebhookUrl?: string | null;
|
|
2476
2595
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2477
2596
|
};
|
|
2478
2597
|
type EmbedOrigin = string;
|
|
2479
2598
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2480
2599
|
type PlatformCurrency = "eth" | "tron";
|
|
2600
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2481
2601
|
type DeveloperLogoUploadResponse = {
|
|
2482
2602
|
logoUrl: string | null;
|
|
2483
2603
|
};
|
|
@@ -2540,7 +2660,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
2540
2660
|
};
|
|
2541
2661
|
type DeveloperAppWalletItem = {
|
|
2542
2662
|
chain: string;
|
|
2543
|
-
address: string;
|
|
2663
|
+
address: string | string;
|
|
2544
2664
|
custody: "server" | null;
|
|
2545
2665
|
walletId: string | null;
|
|
2546
2666
|
autoSweepEnabled: boolean;
|
|
@@ -2561,7 +2681,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
2561
2681
|
chain: string;
|
|
2562
2682
|
custody: "server";
|
|
2563
2683
|
walletId: string;
|
|
2564
|
-
address: string;
|
|
2684
|
+
address: string | string;
|
|
2565
2685
|
};
|
|
2566
2686
|
type DeveloperAppWithdrawResponse = {
|
|
2567
2687
|
appId: string;
|
|
@@ -2724,6 +2844,7 @@ type DeveloperAppItem = {
|
|
|
2724
2844
|
redirectUris: Array<string>;
|
|
2725
2845
|
embedOrigins: Array<EmbedOrigin>;
|
|
2726
2846
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2847
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2727
2848
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2728
2849
|
keys: Array<DeveloperAppKeyItem>;
|
|
2729
2850
|
pendingProductionRequestId: string | null;
|
|
@@ -2957,6 +3078,7 @@ type AdminAppPageItem = {
|
|
|
2957
3078
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2958
3079
|
bipFirstPublishedAt: string | null;
|
|
2959
3080
|
bipHiddenAt: string | null;
|
|
3081
|
+
openReportCount: number;
|
|
2960
3082
|
};
|
|
2961
3083
|
type AdminAppPageStatusResponse = {
|
|
2962
3084
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2985,6 +3107,22 @@ type AdminAppPageDiffField = {
|
|
|
2985
3107
|
type AdminAppPageBipStatusResponse = {
|
|
2986
3108
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2987
3109
|
};
|
|
3110
|
+
type AdminAppContentReportListResponse = {
|
|
3111
|
+
reports: Array<AdminAppContentReportItem>;
|
|
3112
|
+
total: number;
|
|
3113
|
+
hasMore: boolean;
|
|
3114
|
+
};
|
|
3115
|
+
type AdminAppContentReportItem = {
|
|
3116
|
+
id: string;
|
|
3117
|
+
category: AppContentReportCategory;
|
|
3118
|
+
details: string | null;
|
|
3119
|
+
status: AppContentReportStatus;
|
|
3120
|
+
acknowledgedAt: string | null;
|
|
3121
|
+
createdAt: string;
|
|
3122
|
+
appId: string;
|
|
3123
|
+
appName: string;
|
|
3124
|
+
appSlug: string | null;
|
|
3125
|
+
};
|
|
2988
3126
|
type PlatformFeesResponse = {
|
|
2989
3127
|
purchaseFeeBps: number;
|
|
2990
3128
|
stakeFeeBps: number;
|
|
@@ -3165,6 +3303,13 @@ type AppealResolveRequest = {
|
|
|
3165
3303
|
decision: "refund" | "dismiss";
|
|
3166
3304
|
notes?: string;
|
|
3167
3305
|
};
|
|
3306
|
+
type PaymentRatesResponse = {
|
|
3307
|
+
asOf: string;
|
|
3308
|
+
ethUsd: number | null;
|
|
3309
|
+
solUsd: number | null;
|
|
3310
|
+
solLamportsPerCent: number | null;
|
|
3311
|
+
tronUsdPerToken: number;
|
|
3312
|
+
};
|
|
3168
3313
|
type AppealFileResponse = {
|
|
3169
3314
|
appealId: string;
|
|
3170
3315
|
paymentId: string;
|
|
@@ -3213,7 +3358,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3213
3358
|
metadata?: PaymentMetadata;
|
|
3214
3359
|
};
|
|
3215
3360
|
type OauthPaymentDistributeResponse = {
|
|
3216
|
-
distributionId
|
|
3361
|
+
distributionId?: string;
|
|
3217
3362
|
txHash: string;
|
|
3218
3363
|
blockNumber: string;
|
|
3219
3364
|
potId: string;
|
|
@@ -3928,6 +4073,90 @@ type PostOauthPaymentsIntentByIdCompleteResponses = {
|
|
|
3928
4073
|
200: OauthPaymentIntentResolveResponse;
|
|
3929
4074
|
};
|
|
3930
4075
|
type PostOauthPaymentsIntentByIdCompleteResponse = PostOauthPaymentsIntentByIdCompleteResponses[keyof PostOauthPaymentsIntentByIdCompleteResponses];
|
|
4076
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareData = {
|
|
4077
|
+
body?: never;
|
|
4078
|
+
path?: never;
|
|
4079
|
+
query?: never;
|
|
4080
|
+
url: "/oauth/payments/intent/{id}/solana-prepare";
|
|
4081
|
+
};
|
|
4082
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareErrors = {
|
|
4083
|
+
/**
|
|
4084
|
+
* Request error
|
|
4085
|
+
*/
|
|
4086
|
+
400: ErrorResponse;
|
|
4087
|
+
/**
|
|
4088
|
+
* Request error
|
|
4089
|
+
*/
|
|
4090
|
+
401: ErrorResponse;
|
|
4091
|
+
/**
|
|
4092
|
+
* Request error
|
|
4093
|
+
*/
|
|
4094
|
+
403: ErrorResponse;
|
|
4095
|
+
/**
|
|
4096
|
+
* Request error
|
|
4097
|
+
*/
|
|
4098
|
+
404: ErrorResponse;
|
|
4099
|
+
/**
|
|
4100
|
+
* Request error
|
|
4101
|
+
*/
|
|
4102
|
+
410: ErrorResponse;
|
|
4103
|
+
/**
|
|
4104
|
+
* Request error
|
|
4105
|
+
*/
|
|
4106
|
+
503: ErrorResponse;
|
|
4107
|
+
};
|
|
4108
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareError = PostOauthPaymentsIntentByIdSolanaPrepareErrors[keyof PostOauthPaymentsIntentByIdSolanaPrepareErrors];
|
|
4109
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareResponses = {
|
|
4110
|
+
/**
|
|
4111
|
+
* Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
|
|
4112
|
+
*/
|
|
4113
|
+
200: OauthPaymentIntentSolanaPrepareResponse;
|
|
4114
|
+
};
|
|
4115
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareResponse = PostOauthPaymentsIntentByIdSolanaPrepareResponses[keyof PostOauthPaymentsIntentByIdSolanaPrepareResponses];
|
|
4116
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteData = {
|
|
4117
|
+
body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4118
|
+
path?: never;
|
|
4119
|
+
query?: never;
|
|
4120
|
+
url: "/oauth/payments/intent/{id}/solana-complete";
|
|
4121
|
+
};
|
|
4122
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteErrors = {
|
|
4123
|
+
/**
|
|
4124
|
+
* Request error
|
|
4125
|
+
*/
|
|
4126
|
+
400: ErrorResponse;
|
|
4127
|
+
/**
|
|
4128
|
+
* Request error
|
|
4129
|
+
*/
|
|
4130
|
+
401: ErrorResponse;
|
|
4131
|
+
/**
|
|
4132
|
+
* Request error
|
|
4133
|
+
*/
|
|
4134
|
+
403: ErrorResponse;
|
|
4135
|
+
/**
|
|
4136
|
+
* Request error
|
|
4137
|
+
*/
|
|
4138
|
+
404: ErrorResponse;
|
|
4139
|
+
/**
|
|
4140
|
+
* Request error
|
|
4141
|
+
*/
|
|
4142
|
+
410: ErrorResponse;
|
|
4143
|
+
/**
|
|
4144
|
+
* Request error
|
|
4145
|
+
*/
|
|
4146
|
+
502: ErrorResponse;
|
|
4147
|
+
/**
|
|
4148
|
+
* Request error
|
|
4149
|
+
*/
|
|
4150
|
+
503: ErrorResponse;
|
|
4151
|
+
};
|
|
4152
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteError = PostOauthPaymentsIntentByIdSolanaCompleteErrors[keyof PostOauthPaymentsIntentByIdSolanaCompleteErrors];
|
|
4153
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteResponses = {
|
|
4154
|
+
/**
|
|
4155
|
+
* Redirect target the SPA navigates to
|
|
4156
|
+
*/
|
|
4157
|
+
200: OauthPaymentIntentResolveResponse;
|
|
4158
|
+
};
|
|
4159
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteResponse = PostOauthPaymentsIntentByIdSolanaCompleteResponses[keyof PostOauthPaymentsIntentByIdSolanaCompleteResponses];
|
|
3931
4160
|
type PostOauthPaymentsIntentByIdDenyData = {
|
|
3932
4161
|
body?: never;
|
|
3933
4162
|
path?: never;
|
|
@@ -4098,6 +4327,7 @@ type GetPublicLibraryData = {
|
|
|
4098
4327
|
query?: {
|
|
4099
4328
|
genre?: "adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other";
|
|
4100
4329
|
q?: string;
|
|
4330
|
+
sort?: LibrarySort;
|
|
4101
4331
|
before?: string;
|
|
4102
4332
|
limit?: number;
|
|
4103
4333
|
};
|
|
@@ -4145,6 +4375,7 @@ type GetPublicBuildInPublicData = {
|
|
|
4145
4375
|
query?: {
|
|
4146
4376
|
genre?: "adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other";
|
|
4147
4377
|
q?: string;
|
|
4378
|
+
sort?: LibrarySort;
|
|
4148
4379
|
before?: string;
|
|
4149
4380
|
limit?: number;
|
|
4150
4381
|
};
|
|
@@ -4245,6 +4476,114 @@ type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses = {
|
|
|
4245
4476
|
200: BipUpdateCommentListResponse;
|
|
4246
4477
|
};
|
|
4247
4478
|
type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse = GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses[keyof GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses];
|
|
4479
|
+
type GetPublicBuildInPublicBySlugInterestData = {
|
|
4480
|
+
body?: never;
|
|
4481
|
+
path: {
|
|
4482
|
+
slug: string;
|
|
4483
|
+
};
|
|
4484
|
+
query?: never;
|
|
4485
|
+
url: "/public/build-in-public/{slug}/interest";
|
|
4486
|
+
};
|
|
4487
|
+
type GetPublicBuildInPublicBySlugInterestErrors = {
|
|
4488
|
+
/**
|
|
4489
|
+
* Request error
|
|
4490
|
+
*/
|
|
4491
|
+
404: ErrorResponse;
|
|
4492
|
+
};
|
|
4493
|
+
type GetPublicBuildInPublicBySlugInterestError = GetPublicBuildInPublicBySlugInterestErrors[keyof GetPublicBuildInPublicBySlugInterestErrors];
|
|
4494
|
+
type GetPublicBuildInPublicBySlugInterestResponses = {
|
|
4495
|
+
/**
|
|
4496
|
+
* The live count
|
|
4497
|
+
*/
|
|
4498
|
+
200: BipInterestCountResponse;
|
|
4499
|
+
};
|
|
4500
|
+
type GetPublicBuildInPublicBySlugInterestResponse = GetPublicBuildInPublicBySlugInterestResponses[keyof GetPublicBuildInPublicBySlugInterestResponses];
|
|
4501
|
+
type GetMeBuildInPublicBySlugEngagementData = {
|
|
4502
|
+
body?: never;
|
|
4503
|
+
path: {
|
|
4504
|
+
slug: string;
|
|
4505
|
+
};
|
|
4506
|
+
query?: never;
|
|
4507
|
+
url: "/me/build-in-public/{slug}/engagement";
|
|
4508
|
+
};
|
|
4509
|
+
type GetMeBuildInPublicBySlugEngagementErrors = {
|
|
4510
|
+
/**
|
|
4511
|
+
* Request error
|
|
4512
|
+
*/
|
|
4513
|
+
401: ErrorResponse;
|
|
4514
|
+
/**
|
|
4515
|
+
* Request error
|
|
4516
|
+
*/
|
|
4517
|
+
404: ErrorResponse;
|
|
4518
|
+
};
|
|
4519
|
+
type GetMeBuildInPublicBySlugEngagementError = GetMeBuildInPublicBySlugEngagementErrors[keyof GetMeBuildInPublicBySlugEngagementErrors];
|
|
4520
|
+
type GetMeBuildInPublicBySlugEngagementResponses = {
|
|
4521
|
+
/**
|
|
4522
|
+
* Engagement state + count
|
|
4523
|
+
*/
|
|
4524
|
+
200: BipEngagementResponse;
|
|
4525
|
+
};
|
|
4526
|
+
type GetMeBuildInPublicBySlugEngagementResponse = GetMeBuildInPublicBySlugEngagementResponses[keyof GetMeBuildInPublicBySlugEngagementResponses];
|
|
4527
|
+
type PostMeBuildInPublicBySlugInterestData = {
|
|
4528
|
+
body: BipInterestRequest;
|
|
4529
|
+
path: {
|
|
4530
|
+
slug: string;
|
|
4531
|
+
};
|
|
4532
|
+
query?: never;
|
|
4533
|
+
url: "/me/build-in-public/{slug}/interest";
|
|
4534
|
+
};
|
|
4535
|
+
type PostMeBuildInPublicBySlugInterestErrors = {
|
|
4536
|
+
/**
|
|
4537
|
+
* Request error
|
|
4538
|
+
*/
|
|
4539
|
+
400: ErrorResponse;
|
|
4540
|
+
/**
|
|
4541
|
+
* Request error
|
|
4542
|
+
*/
|
|
4543
|
+
401: ErrorResponse;
|
|
4544
|
+
/**
|
|
4545
|
+
* Request error
|
|
4546
|
+
*/
|
|
4547
|
+
404: ErrorResponse;
|
|
4548
|
+
};
|
|
4549
|
+
type PostMeBuildInPublicBySlugInterestError = PostMeBuildInPublicBySlugInterestErrors[keyof PostMeBuildInPublicBySlugInterestErrors];
|
|
4550
|
+
type PostMeBuildInPublicBySlugInterestResponses = {
|
|
4551
|
+
/**
|
|
4552
|
+
* Fresh engagement state + count
|
|
4553
|
+
*/
|
|
4554
|
+
200: BipEngagementResponse;
|
|
4555
|
+
};
|
|
4556
|
+
type PostMeBuildInPublicBySlugInterestResponse = PostMeBuildInPublicBySlugInterestResponses[keyof PostMeBuildInPublicBySlugInterestResponses];
|
|
4557
|
+
type PostMeBuildInPublicBySlugSubscriptionData = {
|
|
4558
|
+
body: BipSubscriptionRequest;
|
|
4559
|
+
path: {
|
|
4560
|
+
slug: string;
|
|
4561
|
+
};
|
|
4562
|
+
query?: never;
|
|
4563
|
+
url: "/me/build-in-public/{slug}/subscription";
|
|
4564
|
+
};
|
|
4565
|
+
type PostMeBuildInPublicBySlugSubscriptionErrors = {
|
|
4566
|
+
/**
|
|
4567
|
+
* Request error
|
|
4568
|
+
*/
|
|
4569
|
+
400: ErrorResponse;
|
|
4570
|
+
/**
|
|
4571
|
+
* Request error
|
|
4572
|
+
*/
|
|
4573
|
+
401: ErrorResponse;
|
|
4574
|
+
/**
|
|
4575
|
+
* Request error
|
|
4576
|
+
*/
|
|
4577
|
+
404: ErrorResponse;
|
|
4578
|
+
};
|
|
4579
|
+
type PostMeBuildInPublicBySlugSubscriptionError = PostMeBuildInPublicBySlugSubscriptionErrors[keyof PostMeBuildInPublicBySlugSubscriptionErrors];
|
|
4580
|
+
type PostMeBuildInPublicBySlugSubscriptionResponses = {
|
|
4581
|
+
/**
|
|
4582
|
+
* Fresh engagement state + count
|
|
4583
|
+
*/
|
|
4584
|
+
200: BipEngagementResponse;
|
|
4585
|
+
};
|
|
4586
|
+
type PostMeBuildInPublicBySlugSubscriptionResponse = PostMeBuildInPublicBySlugSubscriptionResponses[keyof PostMeBuildInPublicBySlugSubscriptionResponses];
|
|
4248
4587
|
type GetMeBuildInPublicBySlugReactionsData = {
|
|
4249
4588
|
body?: never;
|
|
4250
4589
|
path: {
|
|
@@ -4505,21 +4844,16 @@ type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses = {
|
|
|
4505
4844
|
200: BipUpdate;
|
|
4506
4845
|
};
|
|
4507
4846
|
type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse = PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses[keyof PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses];
|
|
4508
|
-
type
|
|
4509
|
-
body
|
|
4510
|
-
file: string;
|
|
4511
|
-
};
|
|
4847
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4848
|
+
body?: never;
|
|
4512
4849
|
path: {
|
|
4513
4850
|
appId: string;
|
|
4851
|
+
updateId: string;
|
|
4514
4852
|
};
|
|
4515
4853
|
query?: never;
|
|
4516
|
-
url: "/me/developer/apps/{appId}/bip-updates/
|
|
4854
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4517
4855
|
};
|
|
4518
|
-
type
|
|
4519
|
-
/**
|
|
4520
|
-
* Request error
|
|
4521
|
-
*/
|
|
4522
|
-
400: ErrorResponse;
|
|
4856
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4523
4857
|
/**
|
|
4524
4858
|
* Request error
|
|
4525
4859
|
*/
|
|
@@ -4532,14 +4866,81 @@ type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors = {
|
|
|
4532
4866
|
* Request error
|
|
4533
4867
|
*/
|
|
4534
4868
|
404: ErrorResponse;
|
|
4869
|
+
};
|
|
4870
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
|
|
4871
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
|
|
4872
|
+
/**
|
|
4873
|
+
* The fresh (no longer pinned) update
|
|
4874
|
+
*/
|
|
4875
|
+
200: BipUpdate;
|
|
4876
|
+
};
|
|
4877
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
|
|
4878
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4879
|
+
body?: never;
|
|
4880
|
+
path: {
|
|
4881
|
+
appId: string;
|
|
4882
|
+
updateId: string;
|
|
4883
|
+
};
|
|
4884
|
+
query?: never;
|
|
4885
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4886
|
+
};
|
|
4887
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4535
4888
|
/**
|
|
4536
4889
|
* Request error
|
|
4537
4890
|
*/
|
|
4538
|
-
|
|
4891
|
+
401: ErrorResponse;
|
|
4539
4892
|
/**
|
|
4540
4893
|
* Request error
|
|
4541
4894
|
*/
|
|
4542
|
-
|
|
4895
|
+
403: ErrorResponse;
|
|
4896
|
+
/**
|
|
4897
|
+
* Request error
|
|
4898
|
+
*/
|
|
4899
|
+
404: ErrorResponse;
|
|
4900
|
+
};
|
|
4901
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
|
|
4902
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
|
|
4903
|
+
/**
|
|
4904
|
+
* The freshly pinned update
|
|
4905
|
+
*/
|
|
4906
|
+
200: BipUpdate;
|
|
4907
|
+
};
|
|
4908
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
|
|
4909
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesMediaData = {
|
|
4910
|
+
body: {
|
|
4911
|
+
file: string;
|
|
4912
|
+
};
|
|
4913
|
+
path: {
|
|
4914
|
+
appId: string;
|
|
4915
|
+
};
|
|
4916
|
+
query?: never;
|
|
4917
|
+
url: "/me/developer/apps/{appId}/bip-updates/media";
|
|
4918
|
+
};
|
|
4919
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors = {
|
|
4920
|
+
/**
|
|
4921
|
+
* Request error
|
|
4922
|
+
*/
|
|
4923
|
+
400: ErrorResponse;
|
|
4924
|
+
/**
|
|
4925
|
+
* Request error
|
|
4926
|
+
*/
|
|
4927
|
+
401: ErrorResponse;
|
|
4928
|
+
/**
|
|
4929
|
+
* Request error
|
|
4930
|
+
*/
|
|
4931
|
+
403: ErrorResponse;
|
|
4932
|
+
/**
|
|
4933
|
+
* Request error
|
|
4934
|
+
*/
|
|
4935
|
+
404: ErrorResponse;
|
|
4936
|
+
/**
|
|
4937
|
+
* Request error
|
|
4938
|
+
*/
|
|
4939
|
+
413: ErrorResponse;
|
|
4940
|
+
/**
|
|
4941
|
+
* Request error
|
|
4942
|
+
*/
|
|
4943
|
+
415: ErrorResponse;
|
|
4543
4944
|
/**
|
|
4544
4945
|
* Request error
|
|
4545
4946
|
*/
|
|
@@ -11042,6 +11443,72 @@ type PostAdminAppPagesByAppIdHideBipResponses = {
|
|
|
11042
11443
|
200: AdminAppPageBipStatusResponse;
|
|
11043
11444
|
};
|
|
11044
11445
|
type PostAdminAppPagesByAppIdHideBipResponse = PostAdminAppPagesByAppIdHideBipResponses[keyof PostAdminAppPagesByAppIdHideBipResponses];
|
|
11446
|
+
type GetAdminContentReportsData = {
|
|
11447
|
+
body?: never;
|
|
11448
|
+
path?: never;
|
|
11449
|
+
query?: {
|
|
11450
|
+
status?: AppContentReportStatus | "all";
|
|
11451
|
+
limit?: number;
|
|
11452
|
+
offset?: number | null;
|
|
11453
|
+
};
|
|
11454
|
+
url: "/admin/content-reports";
|
|
11455
|
+
};
|
|
11456
|
+
type GetAdminContentReportsErrors = {
|
|
11457
|
+
/**
|
|
11458
|
+
* Request error
|
|
11459
|
+
*/
|
|
11460
|
+
400: ErrorResponse;
|
|
11461
|
+
/**
|
|
11462
|
+
* Request error
|
|
11463
|
+
*/
|
|
11464
|
+
401: ErrorResponse;
|
|
11465
|
+
/**
|
|
11466
|
+
* Request error
|
|
11467
|
+
*/
|
|
11468
|
+
403: ErrorResponse;
|
|
11469
|
+
};
|
|
11470
|
+
type GetAdminContentReportsError = GetAdminContentReportsErrors[keyof GetAdminContentReportsErrors];
|
|
11471
|
+
type GetAdminContentReportsResponses = {
|
|
11472
|
+
/**
|
|
11473
|
+
* Reports page (reports + total + hasMore), reporter identity omitted
|
|
11474
|
+
*/
|
|
11475
|
+
200: AdminAppContentReportListResponse;
|
|
11476
|
+
};
|
|
11477
|
+
type GetAdminContentReportsResponse = GetAdminContentReportsResponses[keyof GetAdminContentReportsResponses];
|
|
11478
|
+
type PatchAdminContentReportsByReportIdData = {
|
|
11479
|
+
body: UpdateAppContentReportStatusRequest;
|
|
11480
|
+
path: {
|
|
11481
|
+
reportId: string;
|
|
11482
|
+
};
|
|
11483
|
+
query?: never;
|
|
11484
|
+
url: "/admin/content-reports/{reportId}";
|
|
11485
|
+
};
|
|
11486
|
+
type PatchAdminContentReportsByReportIdErrors = {
|
|
11487
|
+
/**
|
|
11488
|
+
* Request error
|
|
11489
|
+
*/
|
|
11490
|
+
400: ErrorResponse;
|
|
11491
|
+
/**
|
|
11492
|
+
* Request error
|
|
11493
|
+
*/
|
|
11494
|
+
401: ErrorResponse;
|
|
11495
|
+
/**
|
|
11496
|
+
* Request error
|
|
11497
|
+
*/
|
|
11498
|
+
403: ErrorResponse;
|
|
11499
|
+
/**
|
|
11500
|
+
* Request error
|
|
11501
|
+
*/
|
|
11502
|
+
404: ErrorResponse;
|
|
11503
|
+
};
|
|
11504
|
+
type PatchAdminContentReportsByReportIdError = PatchAdminContentReportsByReportIdErrors[keyof PatchAdminContentReportsByReportIdErrors];
|
|
11505
|
+
type PatchAdminContentReportsByReportIdResponses = {
|
|
11506
|
+
/**
|
|
11507
|
+
* The triaged report (reporter identity omitted)
|
|
11508
|
+
*/
|
|
11509
|
+
200: AppContentReport;
|
|
11510
|
+
};
|
|
11511
|
+
type PatchAdminContentReportsByReportIdResponse = PatchAdminContentReportsByReportIdResponses[keyof PatchAdminContentReportsByReportIdResponses];
|
|
11045
11512
|
type PostAdminAppPagesByAppIdUnhideBipData = {
|
|
11046
11513
|
body?: never;
|
|
11047
11514
|
path: {
|
|
@@ -11643,6 +12110,19 @@ type PostAdminPaymentsAppealsByAppealIdResolveResponses = {
|
|
|
11643
12110
|
200: AppealResolveSignedResponse;
|
|
11644
12111
|
};
|
|
11645
12112
|
type PostAdminPaymentsAppealsByAppealIdResolveResponse = PostAdminPaymentsAppealsByAppealIdResolveResponses[keyof PostAdminPaymentsAppealsByAppealIdResolveResponses];
|
|
12113
|
+
type GetPaymentsRatesData = {
|
|
12114
|
+
body?: never;
|
|
12115
|
+
path?: never;
|
|
12116
|
+
query?: never;
|
|
12117
|
+
url: "/payments/rates";
|
|
12118
|
+
};
|
|
12119
|
+
type GetPaymentsRatesResponses = {
|
|
12120
|
+
/**
|
|
12121
|
+
* Current exchange rates + the cache-fill timestamp (asOf)
|
|
12122
|
+
*/
|
|
12123
|
+
200: PaymentRatesResponse;
|
|
12124
|
+
};
|
|
12125
|
+
type GetPaymentsRatesResponse = GetPaymentsRatesResponses[keyof GetPaymentsRatesResponses];
|
|
11646
12126
|
type PostPaymentsAppealsData = {
|
|
11647
12127
|
body: AppealFileRequest;
|
|
11648
12128
|
path?: never;
|
|
@@ -12713,6 +13193,11 @@ declare const zOauthPaymentIntentStatus: z$1.ZodObject<{
|
|
|
12713
13193
|
resolvedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12714
13194
|
expiresAt: z$1.ZodISODateTime;
|
|
12715
13195
|
}, z$1.core.$strip>;
|
|
13196
|
+
declare const zPaymentNetwork: z$1.ZodEnum<{
|
|
13197
|
+
ethereum: "ethereum";
|
|
13198
|
+
base: "base";
|
|
13199
|
+
solana: "solana";
|
|
13200
|
+
}>;
|
|
12716
13201
|
declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
12717
13202
|
intentId: z$1.ZodString;
|
|
12718
13203
|
consentId: z$1.ZodString;
|
|
@@ -12762,6 +13247,25 @@ declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
|
12762
13247
|
development: "development";
|
|
12763
13248
|
production: "production";
|
|
12764
13249
|
}>;
|
|
13250
|
+
onramp: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
13251
|
+
kind: z$1.ZodEnum<{
|
|
13252
|
+
bridge: "bridge";
|
|
13253
|
+
}>;
|
|
13254
|
+
from: z$1.ZodEnum<{
|
|
13255
|
+
ethereum: "ethereum";
|
|
13256
|
+
base: "base";
|
|
13257
|
+
solana: "solana";
|
|
13258
|
+
}>;
|
|
13259
|
+
to: z$1.ZodEnum<{
|
|
13260
|
+
ethereum: "ethereum";
|
|
13261
|
+
base: "base";
|
|
13262
|
+
solana: "solana";
|
|
13263
|
+
}>;
|
|
13264
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
13265
|
+
kind: z$1.ZodEnum<{
|
|
13266
|
+
insufficient: "insufficient";
|
|
13267
|
+
}>;
|
|
13268
|
+
}, z$1.core.$strip>]>>;
|
|
12765
13269
|
}, z$1.core.$strip>;
|
|
12766
13270
|
declare const zOauthPaymentIntentSignResponse: z$1.ZodObject<{
|
|
12767
13271
|
chain: z$1.ZodString;
|
|
@@ -12797,6 +13301,13 @@ declare const zOauthPaymentIntentComplete: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
|
|
|
12797
13301
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12798
13302
|
method: z$1.ZodLiteral<"offline">;
|
|
12799
13303
|
}, z$1.core.$strip>], "method">;
|
|
13304
|
+
declare const zOauthPaymentIntentSolanaPrepareResponse: z$1.ZodObject<{
|
|
13305
|
+
transaction: z$1.ZodString;
|
|
13306
|
+
payer: z$1.ZodString;
|
|
13307
|
+
}, z$1.core.$strip>;
|
|
13308
|
+
declare const zOauthPaymentIntentSolanaCompleteRequest: z$1.ZodObject<{
|
|
13309
|
+
signedTransaction: z$1.ZodString;
|
|
13310
|
+
}, z$1.core.$strip>;
|
|
12800
13311
|
declare const zAppPaymentAuthorizationItem: z$1.ZodObject<{
|
|
12801
13312
|
consentId: z$1.ZodString;
|
|
12802
13313
|
app: z$1.ZodObject<{
|
|
@@ -12959,6 +13470,10 @@ declare const zLibraryListResponse: z$1.ZodObject<{
|
|
|
12959
13470
|
}, z$1.core.$strip>>;
|
|
12960
13471
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12961
13472
|
}, z$1.core.$strip>;
|
|
13473
|
+
declare const zLibrarySort: z$1.ZodDefault<z$1.ZodEnum<{
|
|
13474
|
+
newest: "newest";
|
|
13475
|
+
top: "top";
|
|
13476
|
+
}>>;
|
|
12962
13477
|
declare const zAppPageCategories: z$1.ZodArray<z$1.ZodEnum<{
|
|
12963
13478
|
adventure: "adventure";
|
|
12964
13479
|
battle_royale: "battle_royale";
|
|
@@ -13195,6 +13710,7 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
13195
13710
|
}>>;
|
|
13196
13711
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
13197
13712
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
13713
|
+
devlog: z$1.ZodBoolean;
|
|
13198
13714
|
publishedAt: z$1.ZodISODateTime;
|
|
13199
13715
|
updatedAt: z$1.ZodISODateTime;
|
|
13200
13716
|
}, z$1.core.$strip>;
|
|
@@ -13350,6 +13866,7 @@ declare const zBipUpdate: z$1.ZodObject<{
|
|
|
13350
13866
|
commentCount: z$1.ZodInt;
|
|
13351
13867
|
createdAt: z$1.ZodISODateTime;
|
|
13352
13868
|
updatedAt: z$1.ZodISODateTime;
|
|
13869
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13353
13870
|
}, z$1.core.$strip>;
|
|
13354
13871
|
declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
13355
13872
|
updates: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -13371,9 +13888,31 @@ declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
|
13371
13888
|
commentCount: z$1.ZodInt;
|
|
13372
13889
|
createdAt: z$1.ZodISODateTime;
|
|
13373
13890
|
updatedAt: z$1.ZodISODateTime;
|
|
13891
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13374
13892
|
}, z$1.core.$strip>>;
|
|
13375
13893
|
total: z$1.ZodInt;
|
|
13376
13894
|
hasMore: z$1.ZodBoolean;
|
|
13895
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
13896
|
+
id: z$1.ZodUUID;
|
|
13897
|
+
appId: z$1.ZodUUID;
|
|
13898
|
+
body: z$1.ZodString;
|
|
13899
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
13900
|
+
url: z$1.ZodURL;
|
|
13901
|
+
kind: z$1.ZodEnum<{
|
|
13902
|
+
image: "image";
|
|
13903
|
+
video: "video";
|
|
13904
|
+
}>;
|
|
13905
|
+
order: z$1.ZodInt;
|
|
13906
|
+
}, z$1.core.$strip>>;
|
|
13907
|
+
reactions: z$1.ZodObject<{
|
|
13908
|
+
up: z$1.ZodInt;
|
|
13909
|
+
down: z$1.ZodInt;
|
|
13910
|
+
}, z$1.core.$strip>;
|
|
13911
|
+
commentCount: z$1.ZodInt;
|
|
13912
|
+
createdAt: z$1.ZodISODateTime;
|
|
13913
|
+
updatedAt: z$1.ZodISODateTime;
|
|
13914
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13915
|
+
}, z$1.core.$strip>>;
|
|
13377
13916
|
}, z$1.core.$strip>;
|
|
13378
13917
|
declare const zBipUpdateCommentBody: z$1.ZodString;
|
|
13379
13918
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
@@ -13408,6 +13947,20 @@ declare const zBipUpdateCommentListResponse: z$1.ZodObject<{
|
|
|
13408
13947
|
total: z$1.ZodInt;
|
|
13409
13948
|
hasMore: z$1.ZodBoolean;
|
|
13410
13949
|
}, z$1.core.$strip>;
|
|
13950
|
+
declare const zBipInterestCountResponse: z$1.ZodObject<{
|
|
13951
|
+
interestCount: z$1.ZodInt;
|
|
13952
|
+
}, z$1.core.$strip>;
|
|
13953
|
+
declare const zBipEngagementResponse: z$1.ZodObject<{
|
|
13954
|
+
interested: z$1.ZodBoolean;
|
|
13955
|
+
subscribed: z$1.ZodBoolean;
|
|
13956
|
+
interestCount: z$1.ZodInt;
|
|
13957
|
+
}, z$1.core.$strip>;
|
|
13958
|
+
declare const zBipInterestRequest: z$1.ZodObject<{
|
|
13959
|
+
interested: z$1.ZodBoolean;
|
|
13960
|
+
}, z$1.core.$strip>;
|
|
13961
|
+
declare const zBipSubscriptionRequest: z$1.ZodObject<{
|
|
13962
|
+
subscribed: z$1.ZodBoolean;
|
|
13963
|
+
}, z$1.core.$strip>;
|
|
13411
13964
|
declare const zMyBipUpdateReaction: z$1.ZodObject<{
|
|
13412
13965
|
updateId: z$1.ZodUUID;
|
|
13413
13966
|
vote: z$1.ZodEnum<{
|
|
@@ -13616,8 +14169,8 @@ declare const zReviewListResponse: z$1.ZodObject<{
|
|
|
13616
14169
|
hasMore: z$1.ZodBoolean;
|
|
13617
14170
|
}, z$1.core.$strip>;
|
|
13618
14171
|
declare const zReviewSort: z$1.ZodDefault<z$1.ZodEnum<{
|
|
13619
|
-
helpful: "helpful";
|
|
13620
14172
|
newest: "newest";
|
|
14173
|
+
helpful: "helpful";
|
|
13621
14174
|
oldest: "oldest";
|
|
13622
14175
|
}>>;
|
|
13623
14176
|
declare const zReviewEligibilityReason: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -13835,8 +14388,8 @@ declare const zUpdateAppContentReportStatusRequest: z$1.ZodObject<{
|
|
|
13835
14388
|
declare const zPaymentChain: z$1.ZodObject<{
|
|
13836
14389
|
id: z$1.ZodString;
|
|
13837
14390
|
family: z$1.ZodEnum<{
|
|
13838
|
-
evm: "evm";
|
|
13839
14391
|
solana: "solana";
|
|
14392
|
+
evm: "evm";
|
|
13840
14393
|
}>;
|
|
13841
14394
|
displayName: z$1.ZodString;
|
|
13842
14395
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -13847,8 +14400,8 @@ declare const zPaymentChainsResponse: z$1.ZodObject<{
|
|
|
13847
14400
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
13848
14401
|
id: z$1.ZodString;
|
|
13849
14402
|
family: z$1.ZodEnum<{
|
|
13850
|
-
evm: "evm";
|
|
13851
14403
|
solana: "solana";
|
|
14404
|
+
evm: "evm";
|
|
13852
14405
|
}>;
|
|
13853
14406
|
displayName: z$1.ZodString;
|
|
13854
14407
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -14457,6 +15010,80 @@ declare const zActivityRowNftCharge: z$1.ZodObject<{
|
|
|
14457
15010
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
14458
15011
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
14459
15012
|
}, z$1.core.$strip>;
|
|
15013
|
+
declare const zActivityRowSolanaStake: z$1.ZodObject<{
|
|
15014
|
+
kind: z$1.ZodEnum<{
|
|
15015
|
+
solana_stake: "solana_stake";
|
|
15016
|
+
}>;
|
|
15017
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15018
|
+
id: z$1.ZodString;
|
|
15019
|
+
chain: z$1.ZodString;
|
|
15020
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15021
|
+
role: z$1.ZodEnum<{
|
|
15022
|
+
outgoing: "outgoing";
|
|
15023
|
+
incoming: "incoming";
|
|
15024
|
+
}>;
|
|
15025
|
+
amount: z$1.ZodString;
|
|
15026
|
+
token: z$1.ZodString;
|
|
15027
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15028
|
+
usdCents: z$1.ZodInt;
|
|
15029
|
+
status: z$1.ZodEnum<{
|
|
15030
|
+
completed: "completed";
|
|
15031
|
+
}>;
|
|
15032
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15033
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15034
|
+
id: z$1.ZodString;
|
|
15035
|
+
name: z$1.ZodString;
|
|
15036
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15037
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15038
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15039
|
+
}, z$1.core.$strip>>;
|
|
15040
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15041
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15042
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15043
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
15044
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
15045
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
15046
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
15047
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
15048
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
15049
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
15050
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
15051
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
15052
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
15053
|
+
}, z$1.core.$strip>>>;
|
|
15054
|
+
}, z$1.core.$strip>;
|
|
15055
|
+
declare const zActivityRowSolanaPotLeg: z$1.ZodObject<{
|
|
15056
|
+
kind: z$1.ZodEnum<{
|
|
15057
|
+
solana_pot_leg: "solana_pot_leg";
|
|
15058
|
+
}>;
|
|
15059
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15060
|
+
id: z$1.ZodString;
|
|
15061
|
+
chain: z$1.ZodString;
|
|
15062
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15063
|
+
role: z$1.ZodEnum<{
|
|
15064
|
+
outgoing: "outgoing";
|
|
15065
|
+
incoming: "incoming";
|
|
15066
|
+
}>;
|
|
15067
|
+
beneficiary: z$1.ZodString;
|
|
15068
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15069
|
+
amount: z$1.ZodString;
|
|
15070
|
+
token: z$1.ZodString;
|
|
15071
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
15072
|
+
status: z$1.ZodEnum<{
|
|
15073
|
+
settled: "settled";
|
|
15074
|
+
}>;
|
|
15075
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15076
|
+
id: z$1.ZodString;
|
|
15077
|
+
name: z$1.ZodString;
|
|
15078
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15079
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15080
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15081
|
+
}, z$1.core.$strip>>;
|
|
15082
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15083
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15084
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15085
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15086
|
+
}, z$1.core.$strip>;
|
|
14460
15087
|
declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
14461
15088
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
14462
15089
|
id: z$1.ZodString;
|
|
@@ -14918,6 +15545,74 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
14918
15545
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
14919
15546
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
14920
15547
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
15548
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
15549
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15550
|
+
id: z$1.ZodString;
|
|
15551
|
+
chain: z$1.ZodString;
|
|
15552
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15553
|
+
role: z$1.ZodEnum<{
|
|
15554
|
+
outgoing: "outgoing";
|
|
15555
|
+
incoming: "incoming";
|
|
15556
|
+
}>;
|
|
15557
|
+
amount: z$1.ZodString;
|
|
15558
|
+
token: z$1.ZodString;
|
|
15559
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15560
|
+
usdCents: z$1.ZodInt;
|
|
15561
|
+
status: z$1.ZodEnum<{
|
|
15562
|
+
completed: "completed";
|
|
15563
|
+
}>;
|
|
15564
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15565
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15566
|
+
id: z$1.ZodString;
|
|
15567
|
+
name: z$1.ZodString;
|
|
15568
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15569
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15570
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15571
|
+
}, z$1.core.$strip>>;
|
|
15572
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15573
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15574
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15575
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
15576
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
15577
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
15578
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
15579
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
15580
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
15581
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
15582
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
15583
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
15584
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
15585
|
+
}, z$1.core.$strip>>>;
|
|
15586
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
15587
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
15588
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15589
|
+
id: z$1.ZodString;
|
|
15590
|
+
chain: z$1.ZodString;
|
|
15591
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15592
|
+
role: z$1.ZodEnum<{
|
|
15593
|
+
outgoing: "outgoing";
|
|
15594
|
+
incoming: "incoming";
|
|
15595
|
+
}>;
|
|
15596
|
+
beneficiary: z$1.ZodString;
|
|
15597
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15598
|
+
amount: z$1.ZodString;
|
|
15599
|
+
token: z$1.ZodString;
|
|
15600
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
15601
|
+
status: z$1.ZodEnum<{
|
|
15602
|
+
settled: "settled";
|
|
15603
|
+
}>;
|
|
15604
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15605
|
+
id: z$1.ZodString;
|
|
15606
|
+
name: z$1.ZodString;
|
|
15607
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15608
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15609
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15610
|
+
}, z$1.core.$strip>>;
|
|
15611
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15612
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15613
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15614
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15615
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
14921
15616
|
}, z$1.core.$strip>], "kind">;
|
|
14922
15617
|
declare const zActivityResponse: z$1.ZodObject<{
|
|
14923
15618
|
rows: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
@@ -15381,6 +16076,74 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
15381
16076
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
15382
16077
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
15383
16078
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
16079
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16080
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
16081
|
+
id: z$1.ZodString;
|
|
16082
|
+
chain: z$1.ZodString;
|
|
16083
|
+
occurredAt: z$1.ZodISODateTime;
|
|
16084
|
+
role: z$1.ZodEnum<{
|
|
16085
|
+
outgoing: "outgoing";
|
|
16086
|
+
incoming: "incoming";
|
|
16087
|
+
}>;
|
|
16088
|
+
amount: z$1.ZodString;
|
|
16089
|
+
token: z$1.ZodString;
|
|
16090
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
16091
|
+
usdCents: z$1.ZodInt;
|
|
16092
|
+
status: z$1.ZodEnum<{
|
|
16093
|
+
completed: "completed";
|
|
16094
|
+
}>;
|
|
16095
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
16096
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
16097
|
+
id: z$1.ZodString;
|
|
16098
|
+
name: z$1.ZodString;
|
|
16099
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16100
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
16101
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16102
|
+
}, z$1.core.$strip>>;
|
|
16103
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16104
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16105
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16106
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
16107
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
16108
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
16109
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
16110
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
16111
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
16112
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
16113
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
16114
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
16115
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
16116
|
+
}, z$1.core.$strip>>>;
|
|
16117
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
16118
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16119
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
16120
|
+
id: z$1.ZodString;
|
|
16121
|
+
chain: z$1.ZodString;
|
|
16122
|
+
occurredAt: z$1.ZodISODateTime;
|
|
16123
|
+
role: z$1.ZodEnum<{
|
|
16124
|
+
outgoing: "outgoing";
|
|
16125
|
+
incoming: "incoming";
|
|
16126
|
+
}>;
|
|
16127
|
+
beneficiary: z$1.ZodString;
|
|
16128
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
16129
|
+
amount: z$1.ZodString;
|
|
16130
|
+
token: z$1.ZodString;
|
|
16131
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
16132
|
+
status: z$1.ZodEnum<{
|
|
16133
|
+
settled: "settled";
|
|
16134
|
+
}>;
|
|
16135
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
16136
|
+
id: z$1.ZodString;
|
|
16137
|
+
name: z$1.ZodString;
|
|
16138
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16139
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
16140
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16141
|
+
}, z$1.core.$strip>>;
|
|
16142
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
16143
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16144
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16145
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16146
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
15384
16147
|
}, z$1.core.$strip>], "kind">>;
|
|
15385
16148
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15386
16149
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -15852,9 +16615,17 @@ declare const zWalletChainList: z$1.ZodArray<z$1.ZodObject<{
|
|
|
15852
16615
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
15853
16616
|
"base-mainnet": "base-mainnet";
|
|
15854
16617
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16618
|
+
"base-sepolia": "base-sepolia";
|
|
16619
|
+
"solana-mainnet": "solana-mainnet";
|
|
16620
|
+
"solana-devnet": "solana-devnet";
|
|
15855
16621
|
}>;
|
|
15856
16622
|
displayName: z$1.ZodString;
|
|
15857
|
-
|
|
16623
|
+
family: z$1.ZodEnum<{
|
|
16624
|
+
solana: "solana";
|
|
16625
|
+
evm: "evm";
|
|
16626
|
+
}>;
|
|
16627
|
+
nativeSymbol: z$1.ZodString;
|
|
16628
|
+
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
15858
16629
|
}, z$1.core.$strip>>;
|
|
15859
16630
|
declare const zWalletLabel: z$1.ZodNullable<z$1.ZodString>;
|
|
15860
16631
|
declare const zWalletAppLink: z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -15879,6 +16650,18 @@ declare const zWalletBalances: z$1.ZodObject<{
|
|
|
15879
16650
|
native: z$1.ZodString;
|
|
15880
16651
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15881
16652
|
}, z$1.core.$strip>>;
|
|
16653
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16654
|
+
native: z$1.ZodString;
|
|
16655
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16656
|
+
}, z$1.core.$strip>>;
|
|
16657
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16658
|
+
native: z$1.ZodString;
|
|
16659
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16660
|
+
}, z$1.core.$strip>>;
|
|
16661
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16662
|
+
native: z$1.ZodString;
|
|
16663
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16664
|
+
}, z$1.core.$strip>>;
|
|
15882
16665
|
}, z$1.core.$strip>;
|
|
15883
16666
|
declare const zWalletDelegationMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15884
16667
|
custom: "custom";
|
|
@@ -15889,6 +16672,7 @@ declare const zWalletDelegationCaps: z$1.ZodNullable<z$1.ZodObject<{
|
|
|
15889
16672
|
native: z$1.ZodString;
|
|
15890
16673
|
usdc: z$1.ZodString;
|
|
15891
16674
|
}, z$1.core.$strip>>;
|
|
16675
|
+
declare const zDelegationSlippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15892
16676
|
declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
15893
16677
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15894
16678
|
custom: "custom";
|
|
@@ -15900,9 +16684,14 @@ declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
|
15900
16684
|
usdc: z$1.ZodString;
|
|
15901
16685
|
}, z$1.core.$strip>>;
|
|
15902
16686
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16687
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15903
16688
|
}, z$1.core.$strip>;
|
|
15904
16689
|
declare const zWalletItem: z$1.ZodObject<{
|
|
15905
|
-
address: z$1.ZodString
|
|
16690
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
16691
|
+
family: z$1.ZodEnum<{
|
|
16692
|
+
solana: "solana";
|
|
16693
|
+
evm: "evm";
|
|
16694
|
+
}>;
|
|
15906
16695
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
15907
16696
|
kind: z$1.ZodEnum<{
|
|
15908
16697
|
app: "app";
|
|
@@ -15926,6 +16715,18 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
15926
16715
|
native: z$1.ZodString;
|
|
15927
16716
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15928
16717
|
}, z$1.core.$strip>>;
|
|
16718
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16719
|
+
native: z$1.ZodString;
|
|
16720
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16721
|
+
}, z$1.core.$strip>>;
|
|
16722
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16723
|
+
native: z$1.ZodString;
|
|
16724
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16725
|
+
}, z$1.core.$strip>>;
|
|
16726
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16727
|
+
native: z$1.ZodString;
|
|
16728
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16729
|
+
}, z$1.core.$strip>>;
|
|
15929
16730
|
}, z$1.core.$strip>;
|
|
15930
16731
|
delegation: z$1.ZodObject<{
|
|
15931
16732
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -15938,6 +16739,7 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
15938
16739
|
usdc: z$1.ZodString;
|
|
15939
16740
|
}, z$1.core.$strip>>;
|
|
15940
16741
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16742
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15941
16743
|
}, z$1.core.$strip>;
|
|
15942
16744
|
}, z$1.core.$strip>;
|
|
15943
16745
|
declare const zWalletListResponse: z$1.ZodObject<{
|
|
@@ -15946,12 +16748,24 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
15946
16748
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
15947
16749
|
"base-mainnet": "base-mainnet";
|
|
15948
16750
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16751
|
+
"base-sepolia": "base-sepolia";
|
|
16752
|
+
"solana-mainnet": "solana-mainnet";
|
|
16753
|
+
"solana-devnet": "solana-devnet";
|
|
15949
16754
|
}>;
|
|
15950
16755
|
displayName: z$1.ZodString;
|
|
15951
|
-
|
|
16756
|
+
family: z$1.ZodEnum<{
|
|
16757
|
+
solana: "solana";
|
|
16758
|
+
evm: "evm";
|
|
16759
|
+
}>;
|
|
16760
|
+
nativeSymbol: z$1.ZodString;
|
|
16761
|
+
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
15952
16762
|
}, z$1.core.$strip>>;
|
|
15953
16763
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
15954
|
-
address: z$1.ZodString
|
|
16764
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
16765
|
+
family: z$1.ZodEnum<{
|
|
16766
|
+
solana: "solana";
|
|
16767
|
+
evm: "evm";
|
|
16768
|
+
}>;
|
|
15955
16769
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
15956
16770
|
kind: z$1.ZodEnum<{
|
|
15957
16771
|
app: "app";
|
|
@@ -15975,6 +16789,18 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
15975
16789
|
native: z$1.ZodString;
|
|
15976
16790
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15977
16791
|
}, z$1.core.$strip>>;
|
|
16792
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16793
|
+
native: z$1.ZodString;
|
|
16794
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16795
|
+
}, z$1.core.$strip>>;
|
|
16796
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16797
|
+
native: z$1.ZodString;
|
|
16798
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16799
|
+
}, z$1.core.$strip>>;
|
|
16800
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16801
|
+
native: z$1.ZodString;
|
|
16802
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16803
|
+
}, z$1.core.$strip>>;
|
|
15978
16804
|
}, z$1.core.$strip>;
|
|
15979
16805
|
delegation: z$1.ZodObject<{
|
|
15980
16806
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -15987,6 +16813,7 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
15987
16813
|
usdc: z$1.ZodString;
|
|
15988
16814
|
}, z$1.core.$strip>>;
|
|
15989
16815
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16816
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15990
16817
|
}, z$1.core.$strip>;
|
|
15991
16818
|
}, z$1.core.$strip>>;
|
|
15992
16819
|
}, z$1.core.$strip>;
|
|
@@ -17912,6 +18739,17 @@ declare const zAppPageRejectedNotificationPayload: z$1.ZodObject<{
|
|
|
17912
18739
|
}>;
|
|
17913
18740
|
notes: z$1.ZodString;
|
|
17914
18741
|
}, z$1.core.$strip>;
|
|
18742
|
+
declare const zBipUpdatePublishedNotificationPayload: z$1.ZodObject<{
|
|
18743
|
+
appId: z$1.ZodUUID;
|
|
18744
|
+
appName: z$1.ZodString;
|
|
18745
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18746
|
+
updateId: z$1.ZodUUID;
|
|
18747
|
+
}, z$1.core.$strip>;
|
|
18748
|
+
declare const zBipNowPlayableNotificationPayload: z$1.ZodObject<{
|
|
18749
|
+
appId: z$1.ZodUUID;
|
|
18750
|
+
appName: z$1.ZodString;
|
|
18751
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18752
|
+
}, z$1.core.$strip>;
|
|
17915
18753
|
declare const zAppParticipantInviteNotificationPayload: z$1.ZodObject<{
|
|
17916
18754
|
appId: z$1.ZodUUID;
|
|
17917
18755
|
appName: z$1.ZodString;
|
|
@@ -17989,6 +18827,31 @@ declare const zNotificationItem: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
|
17989
18827
|
}, z$1.core.$strip>;
|
|
17990
18828
|
read: z$1.ZodBoolean;
|
|
17991
18829
|
createdAt: z$1.ZodISODateTime;
|
|
18830
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18831
|
+
id: z$1.ZodString;
|
|
18832
|
+
kind: z$1.ZodEnum<{
|
|
18833
|
+
bip_update_published: "bip_update_published";
|
|
18834
|
+
}>;
|
|
18835
|
+
payload: z$1.ZodObject<{
|
|
18836
|
+
appId: z$1.ZodUUID;
|
|
18837
|
+
appName: z$1.ZodString;
|
|
18838
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18839
|
+
updateId: z$1.ZodUUID;
|
|
18840
|
+
}, z$1.core.$strip>;
|
|
18841
|
+
read: z$1.ZodBoolean;
|
|
18842
|
+
createdAt: z$1.ZodISODateTime;
|
|
18843
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18844
|
+
id: z$1.ZodString;
|
|
18845
|
+
kind: z$1.ZodEnum<{
|
|
18846
|
+
bip_now_playable: "bip_now_playable";
|
|
18847
|
+
}>;
|
|
18848
|
+
payload: z$1.ZodObject<{
|
|
18849
|
+
appId: z$1.ZodUUID;
|
|
18850
|
+
appName: z$1.ZodString;
|
|
18851
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18852
|
+
}, z$1.core.$strip>;
|
|
18853
|
+
read: z$1.ZodBoolean;
|
|
18854
|
+
createdAt: z$1.ZodISODateTime;
|
|
17992
18855
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
17993
18856
|
id: z$1.ZodString;
|
|
17994
18857
|
kind: z$1.ZodEnum<{
|
|
@@ -18082,6 +18945,31 @@ declare const zNotificationListResponse: z$1.ZodObject<{
|
|
|
18082
18945
|
}, z$1.core.$strip>;
|
|
18083
18946
|
read: z$1.ZodBoolean;
|
|
18084
18947
|
createdAt: z$1.ZodISODateTime;
|
|
18948
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18949
|
+
id: z$1.ZodString;
|
|
18950
|
+
kind: z$1.ZodEnum<{
|
|
18951
|
+
bip_update_published: "bip_update_published";
|
|
18952
|
+
}>;
|
|
18953
|
+
payload: z$1.ZodObject<{
|
|
18954
|
+
appId: z$1.ZodUUID;
|
|
18955
|
+
appName: z$1.ZodString;
|
|
18956
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18957
|
+
updateId: z$1.ZodUUID;
|
|
18958
|
+
}, z$1.core.$strip>;
|
|
18959
|
+
read: z$1.ZodBoolean;
|
|
18960
|
+
createdAt: z$1.ZodISODateTime;
|
|
18961
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18962
|
+
id: z$1.ZodString;
|
|
18963
|
+
kind: z$1.ZodEnum<{
|
|
18964
|
+
bip_now_playable: "bip_now_playable";
|
|
18965
|
+
}>;
|
|
18966
|
+
payload: z$1.ZodObject<{
|
|
18967
|
+
appId: z$1.ZodUUID;
|
|
18968
|
+
appName: z$1.ZodString;
|
|
18969
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18970
|
+
}, z$1.core.$strip>;
|
|
18971
|
+
read: z$1.ZodBoolean;
|
|
18972
|
+
createdAt: z$1.ZodISODateTime;
|
|
18085
18973
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18086
18974
|
id: z$1.ZodString;
|
|
18087
18975
|
kind: z$1.ZodEnum<{
|
|
@@ -18477,6 +19365,11 @@ declare const zAcceptedCurrencies: z$1.ZodArray<z$1.ZodEnum<{
|
|
|
18477
19365
|
tron: "tron";
|
|
18478
19366
|
eth: "eth";
|
|
18479
19367
|
}>>;
|
|
19368
|
+
declare const zAcceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19369
|
+
ethereum: "ethereum";
|
|
19370
|
+
base: "base";
|
|
19371
|
+
solana: "solana";
|
|
19372
|
+
}>>>;
|
|
18480
19373
|
declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
18481
19374
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
18482
19375
|
slug: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -18491,6 +19384,11 @@ declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
|
18491
19384
|
tron: "tron";
|
|
18492
19385
|
eth: "eth";
|
|
18493
19386
|
}>>>;
|
|
19387
|
+
acceptedNetworks: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19388
|
+
ethereum: "ethereum";
|
|
19389
|
+
base: "base";
|
|
19390
|
+
solana: "solana";
|
|
19391
|
+
}>>>>;
|
|
18494
19392
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
18495
19393
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
18496
19394
|
}, z$1.core.$strip>;
|
|
@@ -18568,7 +19466,7 @@ declare const zDeveloperAppOverviewResponse: z$1.ZodObject<{
|
|
|
18568
19466
|
}, z$1.core.$strip>;
|
|
18569
19467
|
declare const zDeveloperAppWalletItem: z$1.ZodObject<{
|
|
18570
19468
|
chain: z$1.ZodString;
|
|
18571
|
-
address: z$1.ZodString
|
|
19469
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18572
19470
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18573
19471
|
server: "server";
|
|
18574
19472
|
}>>;
|
|
@@ -18580,7 +19478,7 @@ declare const zDeveloperAppWalletsResponse: z$1.ZodObject<{
|
|
|
18580
19478
|
appId: z$1.ZodString;
|
|
18581
19479
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
18582
19480
|
chain: z$1.ZodString;
|
|
18583
|
-
address: z$1.ZodString
|
|
19481
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18584
19482
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18585
19483
|
server: "server";
|
|
18586
19484
|
}>>;
|
|
@@ -18606,7 +19504,7 @@ declare const zDeveloperAppProvisionWalletResponse: z$1.ZodObject<{
|
|
|
18606
19504
|
server: "server";
|
|
18607
19505
|
}>;
|
|
18608
19506
|
walletId: z$1.ZodString;
|
|
18609
|
-
address: z$1.ZodString
|
|
19507
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18610
19508
|
}, z$1.core.$strip>;
|
|
18611
19509
|
declare const zDeveloperAppWithdrawResponse: z$1.ZodObject<{
|
|
18612
19510
|
appId: z$1.ZodString;
|
|
@@ -18884,6 +19782,11 @@ declare const zDeveloperAppItem: z$1.ZodObject<{
|
|
|
18884
19782
|
tron: "tron";
|
|
18885
19783
|
eth: "eth";
|
|
18886
19784
|
}>>;
|
|
19785
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19786
|
+
ethereum: "ethereum";
|
|
19787
|
+
base: "base";
|
|
19788
|
+
solana: "solana";
|
|
19789
|
+
}>>>;
|
|
18887
19790
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
18888
19791
|
chain: z$1.ZodString;
|
|
18889
19792
|
address: z$1.ZodString;
|
|
@@ -18987,6 +19890,11 @@ declare const zDeveloperMeStatus: z$1.ZodObject<{
|
|
|
18987
19890
|
tron: "tron";
|
|
18988
19891
|
eth: "eth";
|
|
18989
19892
|
}>>;
|
|
19893
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19894
|
+
ethereum: "ethereum";
|
|
19895
|
+
base: "base";
|
|
19896
|
+
solana: "solana";
|
|
19897
|
+
}>>>;
|
|
18990
19898
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
18991
19899
|
chain: z$1.ZodString;
|
|
18992
19900
|
address: z$1.ZodString;
|
|
@@ -19631,6 +20539,7 @@ declare const zAdminAppPageItem: z$1.ZodObject<{
|
|
|
19631
20539
|
}>;
|
|
19632
20540
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
19633
20541
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20542
|
+
openReportCount: z$1.ZodInt;
|
|
19634
20543
|
}, z$1.core.$strip>;
|
|
19635
20544
|
declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
19636
20545
|
items: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -19693,6 +20602,7 @@ declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
|
19693
20602
|
}>;
|
|
19694
20603
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
19695
20604
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20605
|
+
openReportCount: z$1.ZodInt;
|
|
19696
20606
|
}, z$1.core.$strip>>;
|
|
19697
20607
|
}, z$1.core.$strip>;
|
|
19698
20608
|
declare const zAdminAppPageStatusResponse: z$1.ZodObject<{
|
|
@@ -19741,6 +20651,52 @@ declare const zAdminAppPageBipStatusResponse: z$1.ZodObject<{
|
|
|
19741
20651
|
hidden: "hidden";
|
|
19742
20652
|
}>;
|
|
19743
20653
|
}, z$1.core.$strip>;
|
|
20654
|
+
declare const zAdminAppContentReportItem: z$1.ZodObject<{
|
|
20655
|
+
id: z$1.ZodUUID;
|
|
20656
|
+
category: z$1.ZodEnum<{
|
|
20657
|
+
other: "other";
|
|
20658
|
+
abuse: "abuse";
|
|
20659
|
+
inappropriate_content: "inappropriate_content";
|
|
20660
|
+
cheating: "cheating";
|
|
20661
|
+
spam: "spam";
|
|
20662
|
+
}>;
|
|
20663
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
20664
|
+
status: z$1.ZodEnum<{
|
|
20665
|
+
open: "open";
|
|
20666
|
+
acknowledged: "acknowledged";
|
|
20667
|
+
dismissed: "dismissed";
|
|
20668
|
+
}>;
|
|
20669
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20670
|
+
createdAt: z$1.ZodISODateTime;
|
|
20671
|
+
appId: z$1.ZodUUID;
|
|
20672
|
+
appName: z$1.ZodString;
|
|
20673
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
20674
|
+
}, z$1.core.$strip>;
|
|
20675
|
+
declare const zAdminAppContentReportListResponse: z$1.ZodObject<{
|
|
20676
|
+
reports: z$1.ZodArray<z$1.ZodObject<{
|
|
20677
|
+
id: z$1.ZodUUID;
|
|
20678
|
+
category: z$1.ZodEnum<{
|
|
20679
|
+
other: "other";
|
|
20680
|
+
abuse: "abuse";
|
|
20681
|
+
inappropriate_content: "inappropriate_content";
|
|
20682
|
+
cheating: "cheating";
|
|
20683
|
+
spam: "spam";
|
|
20684
|
+
}>;
|
|
20685
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
20686
|
+
status: z$1.ZodEnum<{
|
|
20687
|
+
open: "open";
|
|
20688
|
+
acknowledged: "acknowledged";
|
|
20689
|
+
dismissed: "dismissed";
|
|
20690
|
+
}>;
|
|
20691
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20692
|
+
createdAt: z$1.ZodISODateTime;
|
|
20693
|
+
appId: z$1.ZodUUID;
|
|
20694
|
+
appName: z$1.ZodString;
|
|
20695
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
20696
|
+
}, z$1.core.$strip>>;
|
|
20697
|
+
total: z$1.ZodInt;
|
|
20698
|
+
hasMore: z$1.ZodBoolean;
|
|
20699
|
+
}, z$1.core.$strip>;
|
|
19744
20700
|
declare const zPlatformFeesResponse: z$1.ZodObject<{
|
|
19745
20701
|
purchaseFeeBps: z$1.ZodInt;
|
|
19746
20702
|
stakeFeeBps: z$1.ZodInt;
|
|
@@ -20102,6 +21058,13 @@ declare const zAppealResolveRequest: z$1.ZodObject<{
|
|
|
20102
21058
|
}>;
|
|
20103
21059
|
notes: z$1.ZodOptional<z$1.ZodString>;
|
|
20104
21060
|
}, z$1.core.$strip>;
|
|
21061
|
+
declare const zPaymentRatesResponse: z$1.ZodObject<{
|
|
21062
|
+
asOf: z$1.ZodString;
|
|
21063
|
+
ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
21064
|
+
solUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
21065
|
+
solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
|
|
21066
|
+
tronUsdPerToken: z$1.ZodNumber;
|
|
21067
|
+
}, z$1.core.$strip>;
|
|
20105
21068
|
declare const zAppealFileResponse: z$1.ZodObject<{
|
|
20106
21069
|
appealId: z$1.ZodString;
|
|
20107
21070
|
paymentId: z$1.ZodString;
|
|
@@ -20172,7 +21135,7 @@ declare const zOauthPaymentPayoutRequest: z$1.ZodObject<{
|
|
|
20172
21135
|
}, z$1.core.$strip>>;
|
|
20173
21136
|
}, z$1.core.$strip>;
|
|
20174
21137
|
declare const zOauthPaymentDistributeResponse: z$1.ZodObject<{
|
|
20175
|
-
distributionId: z$1.ZodString
|
|
21138
|
+
distributionId: z$1.ZodOptional<z$1.ZodString>;
|
|
20176
21139
|
txHash: z$1.ZodString;
|
|
20177
21140
|
blockNumber: z$1.ZodString;
|
|
20178
21141
|
potId: z$1.ZodString;
|
|
@@ -20965,6 +21928,25 @@ declare const zGetOauthPaymentsIntentByIdResponse: z$1.ZodObject<{
|
|
|
20965
21928
|
development: "development";
|
|
20966
21929
|
production: "production";
|
|
20967
21930
|
}>;
|
|
21931
|
+
onramp: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
21932
|
+
kind: z$1.ZodEnum<{
|
|
21933
|
+
bridge: "bridge";
|
|
21934
|
+
}>;
|
|
21935
|
+
from: z$1.ZodEnum<{
|
|
21936
|
+
ethereum: "ethereum";
|
|
21937
|
+
base: "base";
|
|
21938
|
+
solana: "solana";
|
|
21939
|
+
}>;
|
|
21940
|
+
to: z$1.ZodEnum<{
|
|
21941
|
+
ethereum: "ethereum";
|
|
21942
|
+
base: "base";
|
|
21943
|
+
solana: "solana";
|
|
21944
|
+
}>;
|
|
21945
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21946
|
+
kind: z$1.ZodEnum<{
|
|
21947
|
+
insufficient: "insufficient";
|
|
21948
|
+
}>;
|
|
21949
|
+
}, z$1.core.$strip>]>>;
|
|
20968
21950
|
}, z$1.core.$strip>;
|
|
20969
21951
|
/**
|
|
20970
21952
|
* Signed payment payload ready for the wallet to submit on-chain
|
|
@@ -20995,6 +21977,22 @@ declare const zPostOauthPaymentsIntentByIdCompleteBody: z$1.ZodDiscriminatedUnio
|
|
|
20995
21977
|
declare const zPostOauthPaymentsIntentByIdCompleteResponse: z$1.ZodObject<{
|
|
20996
21978
|
redirect: z$1.ZodURL;
|
|
20997
21979
|
}, z$1.core.$strip>;
|
|
21980
|
+
/**
|
|
21981
|
+
* Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
|
|
21982
|
+
*/
|
|
21983
|
+
declare const zPostOauthPaymentsIntentByIdSolanaPrepareResponse: z$1.ZodObject<{
|
|
21984
|
+
transaction: z$1.ZodString;
|
|
21985
|
+
payer: z$1.ZodString;
|
|
21986
|
+
}, z$1.core.$strip>;
|
|
21987
|
+
declare const zPostOauthPaymentsIntentByIdSolanaCompleteBody: z$1.ZodObject<{
|
|
21988
|
+
signedTransaction: z$1.ZodString;
|
|
21989
|
+
}, z$1.core.$strip>;
|
|
21990
|
+
/**
|
|
21991
|
+
* Redirect target the SPA navigates to
|
|
21992
|
+
*/
|
|
21993
|
+
declare const zPostOauthPaymentsIntentByIdSolanaCompleteResponse: z$1.ZodObject<{
|
|
21994
|
+
redirect: z$1.ZodURL;
|
|
21995
|
+
}, z$1.core.$strip>;
|
|
20998
21996
|
/**
|
|
20999
21997
|
* Redirect target the SPA navigates to
|
|
21000
21998
|
*/
|
|
@@ -21097,6 +22095,10 @@ declare const zGetPublicLibraryQuery: z$1.ZodObject<{
|
|
|
21097
22095
|
other: "other";
|
|
21098
22096
|
}>>;
|
|
21099
22097
|
q: z$1.ZodOptional<z$1.ZodString>;
|
|
22098
|
+
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22099
|
+
newest: "newest";
|
|
22100
|
+
top: "top";
|
|
22101
|
+
}>>>;
|
|
21100
22102
|
before: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
21101
22103
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
21102
22104
|
}, z$1.core.$strip>;
|
|
@@ -21272,6 +22274,7 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
21272
22274
|
}>>;
|
|
21273
22275
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
21274
22276
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
22277
|
+
devlog: z$1.ZodBoolean;
|
|
21275
22278
|
publishedAt: z$1.ZodISODateTime;
|
|
21276
22279
|
updatedAt: z$1.ZodISODateTime;
|
|
21277
22280
|
}, z$1.core.$strip>;
|
|
@@ -21307,6 +22310,10 @@ declare const zGetPublicBuildInPublicQuery: z$1.ZodObject<{
|
|
|
21307
22310
|
other: "other";
|
|
21308
22311
|
}>>;
|
|
21309
22312
|
q: z$1.ZodOptional<z$1.ZodString>;
|
|
22313
|
+
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22314
|
+
newest: "newest";
|
|
22315
|
+
top: "top";
|
|
22316
|
+
}>>>;
|
|
21310
22317
|
before: z$1.ZodOptional<z$1.ZodISODateTime>;
|
|
21311
22318
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
21312
22319
|
}, z$1.core.$strip>;
|
|
@@ -21507,9 +22514,31 @@ declare const zGetPublicBuildInPublicBySlugUpdatesResponse: z$1.ZodObject<{
|
|
|
21507
22514
|
commentCount: z$1.ZodInt;
|
|
21508
22515
|
createdAt: z$1.ZodISODateTime;
|
|
21509
22516
|
updatedAt: z$1.ZodISODateTime;
|
|
22517
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21510
22518
|
}, z$1.core.$strip>>;
|
|
21511
22519
|
total: z$1.ZodInt;
|
|
21512
22520
|
hasMore: z$1.ZodBoolean;
|
|
22521
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
22522
|
+
id: z$1.ZodUUID;
|
|
22523
|
+
appId: z$1.ZodUUID;
|
|
22524
|
+
body: z$1.ZodString;
|
|
22525
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22526
|
+
url: z$1.ZodURL;
|
|
22527
|
+
kind: z$1.ZodEnum<{
|
|
22528
|
+
image: "image";
|
|
22529
|
+
video: "video";
|
|
22530
|
+
}>;
|
|
22531
|
+
order: z$1.ZodInt;
|
|
22532
|
+
}, z$1.core.$strip>>;
|
|
22533
|
+
reactions: z$1.ZodObject<{
|
|
22534
|
+
up: z$1.ZodInt;
|
|
22535
|
+
down: z$1.ZodInt;
|
|
22536
|
+
}, z$1.core.$strip>;
|
|
22537
|
+
commentCount: z$1.ZodInt;
|
|
22538
|
+
createdAt: z$1.ZodISODateTime;
|
|
22539
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22540
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22541
|
+
}, z$1.core.$strip>>;
|
|
21513
22542
|
}, z$1.core.$strip>;
|
|
21514
22543
|
declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath: z$1.ZodObject<{
|
|
21515
22544
|
slug: z$1.ZodString;
|
|
@@ -21537,6 +22566,54 @@ declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse: z$
|
|
|
21537
22566
|
total: z$1.ZodInt;
|
|
21538
22567
|
hasMore: z$1.ZodBoolean;
|
|
21539
22568
|
}, z$1.core.$strip>;
|
|
22569
|
+
declare const zGetPublicBuildInPublicBySlugInterestPath: z$1.ZodObject<{
|
|
22570
|
+
slug: z$1.ZodString;
|
|
22571
|
+
}, z$1.core.$strip>;
|
|
22572
|
+
/**
|
|
22573
|
+
* The live count
|
|
22574
|
+
*/
|
|
22575
|
+
declare const zGetPublicBuildInPublicBySlugInterestResponse: z$1.ZodObject<{
|
|
22576
|
+
interestCount: z$1.ZodInt;
|
|
22577
|
+
}, z$1.core.$strip>;
|
|
22578
|
+
declare const zGetMeBuildInPublicBySlugEngagementPath: z$1.ZodObject<{
|
|
22579
|
+
slug: z$1.ZodString;
|
|
22580
|
+
}, z$1.core.$strip>;
|
|
22581
|
+
/**
|
|
22582
|
+
* Engagement state + count
|
|
22583
|
+
*/
|
|
22584
|
+
declare const zGetMeBuildInPublicBySlugEngagementResponse: z$1.ZodObject<{
|
|
22585
|
+
interested: z$1.ZodBoolean;
|
|
22586
|
+
subscribed: z$1.ZodBoolean;
|
|
22587
|
+
interestCount: z$1.ZodInt;
|
|
22588
|
+
}, z$1.core.$strip>;
|
|
22589
|
+
declare const zPostMeBuildInPublicBySlugInterestBody: z$1.ZodObject<{
|
|
22590
|
+
interested: z$1.ZodBoolean;
|
|
22591
|
+
}, z$1.core.$strip>;
|
|
22592
|
+
declare const zPostMeBuildInPublicBySlugInterestPath: z$1.ZodObject<{
|
|
22593
|
+
slug: z$1.ZodString;
|
|
22594
|
+
}, z$1.core.$strip>;
|
|
22595
|
+
/**
|
|
22596
|
+
* Fresh engagement state + count
|
|
22597
|
+
*/
|
|
22598
|
+
declare const zPostMeBuildInPublicBySlugInterestResponse: z$1.ZodObject<{
|
|
22599
|
+
interested: z$1.ZodBoolean;
|
|
22600
|
+
subscribed: z$1.ZodBoolean;
|
|
22601
|
+
interestCount: z$1.ZodInt;
|
|
22602
|
+
}, z$1.core.$strip>;
|
|
22603
|
+
declare const zPostMeBuildInPublicBySlugSubscriptionBody: z$1.ZodObject<{
|
|
22604
|
+
subscribed: z$1.ZodBoolean;
|
|
22605
|
+
}, z$1.core.$strip>;
|
|
22606
|
+
declare const zPostMeBuildInPublicBySlugSubscriptionPath: z$1.ZodObject<{
|
|
22607
|
+
slug: z$1.ZodString;
|
|
22608
|
+
}, z$1.core.$strip>;
|
|
22609
|
+
/**
|
|
22610
|
+
* Fresh engagement state + count
|
|
22611
|
+
*/
|
|
22612
|
+
declare const zPostMeBuildInPublicBySlugSubscriptionResponse: z$1.ZodObject<{
|
|
22613
|
+
interested: z$1.ZodBoolean;
|
|
22614
|
+
subscribed: z$1.ZodBoolean;
|
|
22615
|
+
interestCount: z$1.ZodInt;
|
|
22616
|
+
}, z$1.core.$strip>;
|
|
21540
22617
|
declare const zGetMeBuildInPublicBySlugReactionsPath: z$1.ZodObject<{
|
|
21541
22618
|
slug: z$1.ZodString;
|
|
21542
22619
|
}, z$1.core.$strip>;
|
|
@@ -21639,9 +22716,31 @@ declare const zGetMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
21639
22716
|
commentCount: z$1.ZodInt;
|
|
21640
22717
|
createdAt: z$1.ZodISODateTime;
|
|
21641
22718
|
updatedAt: z$1.ZodISODateTime;
|
|
22719
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21642
22720
|
}, z$1.core.$strip>>;
|
|
21643
22721
|
total: z$1.ZodInt;
|
|
21644
22722
|
hasMore: z$1.ZodBoolean;
|
|
22723
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
22724
|
+
id: z$1.ZodUUID;
|
|
22725
|
+
appId: z$1.ZodUUID;
|
|
22726
|
+
body: z$1.ZodString;
|
|
22727
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22728
|
+
url: z$1.ZodURL;
|
|
22729
|
+
kind: z$1.ZodEnum<{
|
|
22730
|
+
image: "image";
|
|
22731
|
+
video: "video";
|
|
22732
|
+
}>;
|
|
22733
|
+
order: z$1.ZodInt;
|
|
22734
|
+
}, z$1.core.$strip>>;
|
|
22735
|
+
reactions: z$1.ZodObject<{
|
|
22736
|
+
up: z$1.ZodInt;
|
|
22737
|
+
down: z$1.ZodInt;
|
|
22738
|
+
}, z$1.core.$strip>;
|
|
22739
|
+
commentCount: z$1.ZodInt;
|
|
22740
|
+
createdAt: z$1.ZodISODateTime;
|
|
22741
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22742
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22743
|
+
}, z$1.core.$strip>>;
|
|
21645
22744
|
}, z$1.core.$strip>;
|
|
21646
22745
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesBody: z$1.ZodObject<{
|
|
21647
22746
|
body: z$1.ZodString;
|
|
@@ -21679,6 +22778,7 @@ declare const zPostMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
21679
22778
|
commentCount: z$1.ZodInt;
|
|
21680
22779
|
createdAt: z$1.ZodISODateTime;
|
|
21681
22780
|
updatedAt: z$1.ZodISODateTime;
|
|
22781
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21682
22782
|
}, z$1.core.$strip>;
|
|
21683
22783
|
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath: z$1.ZodObject<{
|
|
21684
22784
|
appId: z$1.ZodString;
|
|
@@ -21727,6 +22827,63 @@ declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodO
|
|
|
21727
22827
|
commentCount: z$1.ZodInt;
|
|
21728
22828
|
createdAt: z$1.ZodISODateTime;
|
|
21729
22829
|
updatedAt: z$1.ZodISODateTime;
|
|
22830
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22831
|
+
}, z$1.core.$strip>;
|
|
22832
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
22833
|
+
appId: z$1.ZodString;
|
|
22834
|
+
updateId: z$1.ZodUUID;
|
|
22835
|
+
}, z$1.core.$strip>;
|
|
22836
|
+
/**
|
|
22837
|
+
* The fresh (no longer pinned) update
|
|
22838
|
+
*/
|
|
22839
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
22840
|
+
id: z$1.ZodUUID;
|
|
22841
|
+
appId: z$1.ZodUUID;
|
|
22842
|
+
body: z$1.ZodString;
|
|
22843
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22844
|
+
url: z$1.ZodURL;
|
|
22845
|
+
kind: z$1.ZodEnum<{
|
|
22846
|
+
image: "image";
|
|
22847
|
+
video: "video";
|
|
22848
|
+
}>;
|
|
22849
|
+
order: z$1.ZodInt;
|
|
22850
|
+
}, z$1.core.$strip>>;
|
|
22851
|
+
reactions: z$1.ZodObject<{
|
|
22852
|
+
up: z$1.ZodInt;
|
|
22853
|
+
down: z$1.ZodInt;
|
|
22854
|
+
}, z$1.core.$strip>;
|
|
22855
|
+
commentCount: z$1.ZodInt;
|
|
22856
|
+
createdAt: z$1.ZodISODateTime;
|
|
22857
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22858
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22859
|
+
}, z$1.core.$strip>;
|
|
22860
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
22861
|
+
appId: z$1.ZodString;
|
|
22862
|
+
updateId: z$1.ZodUUID;
|
|
22863
|
+
}, z$1.core.$strip>;
|
|
22864
|
+
/**
|
|
22865
|
+
* The freshly pinned update
|
|
22866
|
+
*/
|
|
22867
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
22868
|
+
id: z$1.ZodUUID;
|
|
22869
|
+
appId: z$1.ZodUUID;
|
|
22870
|
+
body: z$1.ZodString;
|
|
22871
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22872
|
+
url: z$1.ZodURL;
|
|
22873
|
+
kind: z$1.ZodEnum<{
|
|
22874
|
+
image: "image";
|
|
22875
|
+
video: "video";
|
|
22876
|
+
}>;
|
|
22877
|
+
order: z$1.ZodInt;
|
|
22878
|
+
}, z$1.core.$strip>>;
|
|
22879
|
+
reactions: z$1.ZodObject<{
|
|
22880
|
+
up: z$1.ZodInt;
|
|
22881
|
+
down: z$1.ZodInt;
|
|
22882
|
+
}, z$1.core.$strip>;
|
|
22883
|
+
commentCount: z$1.ZodInt;
|
|
22884
|
+
createdAt: z$1.ZodISODateTime;
|
|
22885
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22886
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21730
22887
|
}, z$1.core.$strip>;
|
|
21731
22888
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody: z$1.ZodObject<{
|
|
21732
22889
|
file: z$1.ZodString;
|
|
@@ -21749,8 +22906,8 @@ declare const zGetPublicAppsBySlugReviewsPath: z$1.ZodObject<{
|
|
|
21749
22906
|
}, z$1.core.$strip>;
|
|
21750
22907
|
declare const zGetPublicAppsBySlugReviewsQuery: z$1.ZodObject<{
|
|
21751
22908
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
21752
|
-
helpful: "helpful";
|
|
21753
22909
|
newest: "newest";
|
|
22910
|
+
helpful: "helpful";
|
|
21754
22911
|
oldest: "oldest";
|
|
21755
22912
|
}>>>;
|
|
21756
22913
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
@@ -22002,8 +23159,8 @@ declare const zGetMeDeveloperAppsByAppIdReviewsPath: z$1.ZodObject<{
|
|
|
22002
23159
|
}, z$1.core.$strip>;
|
|
22003
23160
|
declare const zGetMeDeveloperAppsByAppIdReviewsQuery: z$1.ZodObject<{
|
|
22004
23161
|
sort: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodEnum<{
|
|
22005
|
-
helpful: "helpful";
|
|
22006
23162
|
newest: "newest";
|
|
23163
|
+
helpful: "helpful";
|
|
22007
23164
|
oldest: "oldest";
|
|
22008
23165
|
}>>>;
|
|
22009
23166
|
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
@@ -22183,8 +23340,8 @@ declare const zGetPaymentsChainsResponse: z$1.ZodObject<{
|
|
|
22183
23340
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
22184
23341
|
id: z$1.ZodString;
|
|
22185
23342
|
family: z$1.ZodEnum<{
|
|
22186
|
-
evm: "evm";
|
|
22187
23343
|
solana: "solana";
|
|
23344
|
+
evm: "evm";
|
|
22188
23345
|
}>;
|
|
22189
23346
|
displayName: z$1.ZodString;
|
|
22190
23347
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -22716,22 +23873,90 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
22716
23873
|
role: z$1.ZodEnum<{
|
|
22717
23874
|
outgoing: "outgoing";
|
|
22718
23875
|
}>;
|
|
22719
|
-
chargeKind: z$1.ZodEnum<{
|
|
22720
|
-
registration: "registration";
|
|
22721
|
-
mint: "mint";
|
|
22722
|
-
transfer_gas: "transfer_gas";
|
|
22723
|
-
}>;
|
|
22724
|
-
amountCents: z$1.ZodInt;
|
|
22725
|
-
usdCents: z$1.ZodInt;
|
|
23876
|
+
chargeKind: z$1.ZodEnum<{
|
|
23877
|
+
registration: "registration";
|
|
23878
|
+
mint: "mint";
|
|
23879
|
+
transfer_gas: "transfer_gas";
|
|
23880
|
+
}>;
|
|
23881
|
+
amountCents: z$1.ZodInt;
|
|
23882
|
+
usdCents: z$1.ZodInt;
|
|
23883
|
+
status: z$1.ZodEnum<{
|
|
23884
|
+
settled: "settled";
|
|
23885
|
+
}>;
|
|
23886
|
+
collectionAddress: z$1.ZodNullable<z$1.ZodString>;
|
|
23887
|
+
tokenId: z$1.ZodNullable<z$1.ZodString>;
|
|
23888
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
23889
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23890
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23891
|
+
kind: z$1.ZodLiteral<"nft_charge">;
|
|
23892
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
23893
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
23894
|
+
id: z$1.ZodString;
|
|
23895
|
+
chain: z$1.ZodString;
|
|
23896
|
+
occurredAt: z$1.ZodISODateTime;
|
|
23897
|
+
role: z$1.ZodEnum<{
|
|
23898
|
+
outgoing: "outgoing";
|
|
23899
|
+
incoming: "incoming";
|
|
23900
|
+
}>;
|
|
23901
|
+
amount: z$1.ZodString;
|
|
23902
|
+
token: z$1.ZodString;
|
|
23903
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
23904
|
+
usdCents: z$1.ZodInt;
|
|
23905
|
+
status: z$1.ZodEnum<{
|
|
23906
|
+
completed: "completed";
|
|
23907
|
+
}>;
|
|
23908
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
23909
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
23910
|
+
id: z$1.ZodString;
|
|
23911
|
+
name: z$1.ZodString;
|
|
23912
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23913
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
23914
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23915
|
+
}, z$1.core.$strip>>;
|
|
23916
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23917
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23918
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23919
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
23920
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
23921
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
23922
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
23923
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
23924
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
23925
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
23926
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
23927
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
23928
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
23929
|
+
}, z$1.core.$strip>>>;
|
|
23930
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
23931
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
23932
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
23933
|
+
id: z$1.ZodString;
|
|
23934
|
+
chain: z$1.ZodString;
|
|
23935
|
+
occurredAt: z$1.ZodISODateTime;
|
|
23936
|
+
role: z$1.ZodEnum<{
|
|
23937
|
+
outgoing: "outgoing";
|
|
23938
|
+
incoming: "incoming";
|
|
23939
|
+
}>;
|
|
23940
|
+
beneficiary: z$1.ZodString;
|
|
23941
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
23942
|
+
amount: z$1.ZodString;
|
|
23943
|
+
token: z$1.ZodString;
|
|
23944
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
22726
23945
|
status: z$1.ZodEnum<{
|
|
22727
23946
|
settled: "settled";
|
|
22728
23947
|
}>;
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
23948
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
23949
|
+
id: z$1.ZodString;
|
|
23950
|
+
name: z$1.ZodString;
|
|
23951
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23952
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
23953
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23954
|
+
}, z$1.core.$strip>>;
|
|
23955
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
23956
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23957
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23958
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23959
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
22735
23960
|
}, z$1.core.$strip>], "kind">>;
|
|
22736
23961
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22737
23962
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23205,6 +24430,74 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
23205
24430
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23206
24431
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23207
24432
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
24433
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
24434
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
24435
|
+
id: z$1.ZodString;
|
|
24436
|
+
chain: z$1.ZodString;
|
|
24437
|
+
occurredAt: z$1.ZodISODateTime;
|
|
24438
|
+
role: z$1.ZodEnum<{
|
|
24439
|
+
outgoing: "outgoing";
|
|
24440
|
+
incoming: "incoming";
|
|
24441
|
+
}>;
|
|
24442
|
+
amount: z$1.ZodString;
|
|
24443
|
+
token: z$1.ZodString;
|
|
24444
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
24445
|
+
usdCents: z$1.ZodInt;
|
|
24446
|
+
status: z$1.ZodEnum<{
|
|
24447
|
+
completed: "completed";
|
|
24448
|
+
}>;
|
|
24449
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
24450
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
24451
|
+
id: z$1.ZodString;
|
|
24452
|
+
name: z$1.ZodString;
|
|
24453
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24454
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
24455
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24456
|
+
}, z$1.core.$strip>>;
|
|
24457
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24458
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24459
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24460
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
24461
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
24462
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
24463
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
24464
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
24465
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
24466
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
24467
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
24468
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
24469
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
24470
|
+
}, z$1.core.$strip>>>;
|
|
24471
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
24472
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
24473
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
24474
|
+
id: z$1.ZodString;
|
|
24475
|
+
chain: z$1.ZodString;
|
|
24476
|
+
occurredAt: z$1.ZodISODateTime;
|
|
24477
|
+
role: z$1.ZodEnum<{
|
|
24478
|
+
outgoing: "outgoing";
|
|
24479
|
+
incoming: "incoming";
|
|
24480
|
+
}>;
|
|
24481
|
+
beneficiary: z$1.ZodString;
|
|
24482
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
24483
|
+
amount: z$1.ZodString;
|
|
24484
|
+
token: z$1.ZodString;
|
|
24485
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
24486
|
+
status: z$1.ZodEnum<{
|
|
24487
|
+
settled: "settled";
|
|
24488
|
+
}>;
|
|
24489
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
24490
|
+
id: z$1.ZodString;
|
|
24491
|
+
name: z$1.ZodString;
|
|
24492
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24493
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
24494
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24495
|
+
}, z$1.core.$strip>>;
|
|
24496
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
24497
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24498
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24499
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24500
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
23208
24501
|
}, z$1.core.$strip>], "kind">>;
|
|
23209
24502
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
23210
24503
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23706,12 +24999,24 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23706
24999
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
23707
25000
|
"base-mainnet": "base-mainnet";
|
|
23708
25001
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
25002
|
+
"base-sepolia": "base-sepolia";
|
|
25003
|
+
"solana-mainnet": "solana-mainnet";
|
|
25004
|
+
"solana-devnet": "solana-devnet";
|
|
23709
25005
|
}>;
|
|
23710
25006
|
displayName: z$1.ZodString;
|
|
23711
|
-
|
|
25007
|
+
family: z$1.ZodEnum<{
|
|
25008
|
+
solana: "solana";
|
|
25009
|
+
evm: "evm";
|
|
25010
|
+
}>;
|
|
25011
|
+
nativeSymbol: z$1.ZodString;
|
|
25012
|
+
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
23712
25013
|
}, z$1.core.$strip>>;
|
|
23713
25014
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
23714
|
-
address: z$1.ZodString
|
|
25015
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
25016
|
+
family: z$1.ZodEnum<{
|
|
25017
|
+
solana: "solana";
|
|
25018
|
+
evm: "evm";
|
|
25019
|
+
}>;
|
|
23715
25020
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
23716
25021
|
kind: z$1.ZodEnum<{
|
|
23717
25022
|
app: "app";
|
|
@@ -23735,6 +25040,18 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23735
25040
|
native: z$1.ZodString;
|
|
23736
25041
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
23737
25042
|
}, z$1.core.$strip>>;
|
|
25043
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
25044
|
+
native: z$1.ZodString;
|
|
25045
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
25046
|
+
}, z$1.core.$strip>>;
|
|
25047
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
25048
|
+
native: z$1.ZodString;
|
|
25049
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
25050
|
+
}, z$1.core.$strip>>;
|
|
25051
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
25052
|
+
native: z$1.ZodString;
|
|
25053
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
25054
|
+
}, z$1.core.$strip>>;
|
|
23738
25055
|
}, z$1.core.$strip>;
|
|
23739
25056
|
delegation: z$1.ZodObject<{
|
|
23740
25057
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -23747,6 +25064,7 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23747
25064
|
usdc: z$1.ZodString;
|
|
23748
25065
|
}, z$1.core.$strip>>;
|
|
23749
25066
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
25067
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
23750
25068
|
}, z$1.core.$strip>;
|
|
23751
25069
|
}, z$1.core.$strip>>;
|
|
23752
25070
|
}, z$1.core.$strip>;
|
|
@@ -23789,6 +25107,7 @@ declare const zGetMeWalletsByAddressDelegateResponse: z$1.ZodObject<{
|
|
|
23789
25107
|
usdc: z$1.ZodString;
|
|
23790
25108
|
}, z$1.core.$strip>>;
|
|
23791
25109
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
25110
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
23792
25111
|
}, z$1.core.$strip>;
|
|
23793
25112
|
declare const zPostMeWalletsByAddressDelegateBody: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
23794
25113
|
mode: z$1.ZodEnum<{
|
|
@@ -26258,6 +27577,31 @@ declare const zGetMeNotificationsResponse: z$1.ZodObject<{
|
|
|
26258
27577
|
}, z$1.core.$strip>;
|
|
26259
27578
|
read: z$1.ZodBoolean;
|
|
26260
27579
|
createdAt: z$1.ZodISODateTime;
|
|
27580
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
27581
|
+
id: z$1.ZodString;
|
|
27582
|
+
kind: z$1.ZodEnum<{
|
|
27583
|
+
bip_update_published: "bip_update_published";
|
|
27584
|
+
}>;
|
|
27585
|
+
payload: z$1.ZodObject<{
|
|
27586
|
+
appId: z$1.ZodUUID;
|
|
27587
|
+
appName: z$1.ZodString;
|
|
27588
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
27589
|
+
updateId: z$1.ZodUUID;
|
|
27590
|
+
}, z$1.core.$strip>;
|
|
27591
|
+
read: z$1.ZodBoolean;
|
|
27592
|
+
createdAt: z$1.ZodISODateTime;
|
|
27593
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
27594
|
+
id: z$1.ZodString;
|
|
27595
|
+
kind: z$1.ZodEnum<{
|
|
27596
|
+
bip_now_playable: "bip_now_playable";
|
|
27597
|
+
}>;
|
|
27598
|
+
payload: z$1.ZodObject<{
|
|
27599
|
+
appId: z$1.ZodUUID;
|
|
27600
|
+
appName: z$1.ZodString;
|
|
27601
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
27602
|
+
}, z$1.core.$strip>;
|
|
27603
|
+
read: z$1.ZodBoolean;
|
|
27604
|
+
createdAt: z$1.ZodISODateTime;
|
|
26261
27605
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
26262
27606
|
id: z$1.ZodString;
|
|
26263
27607
|
kind: z$1.ZodEnum<{
|
|
@@ -26626,6 +27970,11 @@ declare const zPatchMeDeveloperAppsByIdBody: z$1.ZodObject<{
|
|
|
26626
27970
|
tron: "tron";
|
|
26627
27971
|
eth: "eth";
|
|
26628
27972
|
}>>>;
|
|
27973
|
+
acceptedNetworks: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
27974
|
+
ethereum: "ethereum";
|
|
27975
|
+
base: "base";
|
|
27976
|
+
solana: "solana";
|
|
27977
|
+
}>>>>;
|
|
26629
27978
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
26630
27979
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
26631
27980
|
}, z$1.core.$strip>;
|
|
@@ -27235,6 +28584,74 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
27235
28584
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
27236
28585
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
27237
28586
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
28587
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
28588
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
28589
|
+
id: z$1.ZodString;
|
|
28590
|
+
chain: z$1.ZodString;
|
|
28591
|
+
occurredAt: z$1.ZodISODateTime;
|
|
28592
|
+
role: z$1.ZodEnum<{
|
|
28593
|
+
outgoing: "outgoing";
|
|
28594
|
+
incoming: "incoming";
|
|
28595
|
+
}>;
|
|
28596
|
+
amount: z$1.ZodString;
|
|
28597
|
+
token: z$1.ZodString;
|
|
28598
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
28599
|
+
usdCents: z$1.ZodInt;
|
|
28600
|
+
status: z$1.ZodEnum<{
|
|
28601
|
+
completed: "completed";
|
|
28602
|
+
}>;
|
|
28603
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
28604
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
28605
|
+
id: z$1.ZodString;
|
|
28606
|
+
name: z$1.ZodString;
|
|
28607
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28608
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
28609
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28610
|
+
}, z$1.core.$strip>>;
|
|
28611
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28612
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28613
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28614
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
28615
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
28616
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
28617
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
28618
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
28619
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
28620
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
28621
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
28622
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
28623
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
28624
|
+
}, z$1.core.$strip>>>;
|
|
28625
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
28626
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
28627
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
28628
|
+
id: z$1.ZodString;
|
|
28629
|
+
chain: z$1.ZodString;
|
|
28630
|
+
occurredAt: z$1.ZodISODateTime;
|
|
28631
|
+
role: z$1.ZodEnum<{
|
|
28632
|
+
outgoing: "outgoing";
|
|
28633
|
+
incoming: "incoming";
|
|
28634
|
+
}>;
|
|
28635
|
+
beneficiary: z$1.ZodString;
|
|
28636
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
28637
|
+
amount: z$1.ZodString;
|
|
28638
|
+
token: z$1.ZodString;
|
|
28639
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
28640
|
+
status: z$1.ZodEnum<{
|
|
28641
|
+
settled: "settled";
|
|
28642
|
+
}>;
|
|
28643
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
28644
|
+
id: z$1.ZodString;
|
|
28645
|
+
name: z$1.ZodString;
|
|
28646
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28647
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
28648
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28649
|
+
}, z$1.core.$strip>>;
|
|
28650
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
28651
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28652
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28653
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28654
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
27238
28655
|
}, z$1.core.$strip>], "kind">>;
|
|
27239
28656
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
27240
28657
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -27250,7 +28667,7 @@ declare const zGetMeDeveloperAppsByIdWalletsResponse: z$1.ZodObject<{
|
|
|
27250
28667
|
appId: z$1.ZodString;
|
|
27251
28668
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
27252
28669
|
chain: z$1.ZodString;
|
|
27253
|
-
address: z$1.ZodString
|
|
28670
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27254
28671
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
27255
28672
|
server: "server";
|
|
27256
28673
|
}>>;
|
|
@@ -27290,7 +28707,7 @@ declare const zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse: z$1.ZodOb
|
|
|
27290
28707
|
server: "server";
|
|
27291
28708
|
}>;
|
|
27292
28709
|
walletId: z$1.ZodString;
|
|
27293
|
-
address: z$1.ZodString
|
|
28710
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27294
28711
|
}, z$1.core.$strip>;
|
|
27295
28712
|
declare const zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath: z$1.ZodObject<{
|
|
27296
28713
|
id: z$1.ZodString;
|
|
@@ -27608,6 +29025,11 @@ declare const zGetMeDeveloperResponse: z$1.ZodObject<{
|
|
|
27608
29025
|
tron: "tron";
|
|
27609
29026
|
eth: "eth";
|
|
27610
29027
|
}>>;
|
|
29028
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
29029
|
+
ethereum: "ethereum";
|
|
29030
|
+
base: "base";
|
|
29031
|
+
solana: "solana";
|
|
29032
|
+
}>>>;
|
|
27611
29033
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
27612
29034
|
chain: z$1.ZodString;
|
|
27613
29035
|
address: z$1.ZodString;
|
|
@@ -29157,6 +30579,7 @@ declare const zGetAdminAppPagesResponse: z$1.ZodObject<{
|
|
|
29157
30579
|
}>;
|
|
29158
30580
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
29159
30581
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30582
|
+
openReportCount: z$1.ZodInt;
|
|
29160
30583
|
}, z$1.core.$strip>>;
|
|
29161
30584
|
}, z$1.core.$strip>;
|
|
29162
30585
|
declare const zPostAdminAppPagesByAppIdHideBody: z$1.ZodObject<{
|
|
@@ -29297,6 +30720,75 @@ declare const zPostAdminAppPagesByAppIdHideBipResponse: z$1.ZodObject<{
|
|
|
29297
30720
|
hidden: "hidden";
|
|
29298
30721
|
}>;
|
|
29299
30722
|
}, z$1.core.$strip>;
|
|
30723
|
+
declare const zGetAdminContentReportsQuery: z$1.ZodObject<{
|
|
30724
|
+
status: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
30725
|
+
open: "open";
|
|
30726
|
+
acknowledged: "acknowledged";
|
|
30727
|
+
dismissed: "dismissed";
|
|
30728
|
+
}>, z$1.ZodEnum<{
|
|
30729
|
+
all: "all";
|
|
30730
|
+
}>]>>;
|
|
30731
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
30732
|
+
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
30733
|
+
}, z$1.core.$strip>;
|
|
30734
|
+
/**
|
|
30735
|
+
* Reports page (reports + total + hasMore), reporter identity omitted
|
|
30736
|
+
*/
|
|
30737
|
+
declare const zGetAdminContentReportsResponse: z$1.ZodObject<{
|
|
30738
|
+
reports: z$1.ZodArray<z$1.ZodObject<{
|
|
30739
|
+
id: z$1.ZodUUID;
|
|
30740
|
+
category: z$1.ZodEnum<{
|
|
30741
|
+
other: "other";
|
|
30742
|
+
abuse: "abuse";
|
|
30743
|
+
inappropriate_content: "inappropriate_content";
|
|
30744
|
+
cheating: "cheating";
|
|
30745
|
+
spam: "spam";
|
|
30746
|
+
}>;
|
|
30747
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
30748
|
+
status: z$1.ZodEnum<{
|
|
30749
|
+
open: "open";
|
|
30750
|
+
acknowledged: "acknowledged";
|
|
30751
|
+
dismissed: "dismissed";
|
|
30752
|
+
}>;
|
|
30753
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30754
|
+
createdAt: z$1.ZodISODateTime;
|
|
30755
|
+
appId: z$1.ZodUUID;
|
|
30756
|
+
appName: z$1.ZodString;
|
|
30757
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
30758
|
+
}, z$1.core.$strip>>;
|
|
30759
|
+
total: z$1.ZodInt;
|
|
30760
|
+
hasMore: z$1.ZodBoolean;
|
|
30761
|
+
}, z$1.core.$strip>;
|
|
30762
|
+
declare const zPatchAdminContentReportsByReportIdBody: z$1.ZodObject<{
|
|
30763
|
+
status: z$1.ZodEnum<{
|
|
30764
|
+
acknowledged: "acknowledged";
|
|
30765
|
+
dismissed: "dismissed";
|
|
30766
|
+
}>;
|
|
30767
|
+
}, z$1.core.$strip>;
|
|
30768
|
+
declare const zPatchAdminContentReportsByReportIdPath: z$1.ZodObject<{
|
|
30769
|
+
reportId: z$1.ZodUUID;
|
|
30770
|
+
}, z$1.core.$strip>;
|
|
30771
|
+
/**
|
|
30772
|
+
* The triaged report (reporter identity omitted)
|
|
30773
|
+
*/
|
|
30774
|
+
declare const zPatchAdminContentReportsByReportIdResponse: z$1.ZodObject<{
|
|
30775
|
+
id: z$1.ZodUUID;
|
|
30776
|
+
category: z$1.ZodEnum<{
|
|
30777
|
+
other: "other";
|
|
30778
|
+
abuse: "abuse";
|
|
30779
|
+
inappropriate_content: "inappropriate_content";
|
|
30780
|
+
cheating: "cheating";
|
|
30781
|
+
spam: "spam";
|
|
30782
|
+
}>;
|
|
30783
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
30784
|
+
status: z$1.ZodEnum<{
|
|
30785
|
+
open: "open";
|
|
30786
|
+
acknowledged: "acknowledged";
|
|
30787
|
+
dismissed: "dismissed";
|
|
30788
|
+
}>;
|
|
30789
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30790
|
+
createdAt: z$1.ZodISODateTime;
|
|
30791
|
+
}, z$1.core.$strip>;
|
|
29300
30792
|
declare const zPostAdminAppPagesByAppIdUnhideBipPath: z$1.ZodObject<{
|
|
29301
30793
|
appId: z$1.ZodString;
|
|
29302
30794
|
}, z$1.core.$strip>;
|
|
@@ -29730,6 +31222,16 @@ declare const zPostAdminPaymentsAppealsByAppealIdResolveResponse: z$1.ZodObject<
|
|
|
29730
31222
|
resolved_dismiss: "resolved_dismiss";
|
|
29731
31223
|
}>;
|
|
29732
31224
|
}, z$1.core.$strip>;
|
|
31225
|
+
/**
|
|
31226
|
+
* Current exchange rates + the cache-fill timestamp (asOf)
|
|
31227
|
+
*/
|
|
31228
|
+
declare const zGetPaymentsRatesResponse: z$1.ZodObject<{
|
|
31229
|
+
asOf: z$1.ZodString;
|
|
31230
|
+
ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
31231
|
+
solUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
31232
|
+
solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
|
|
31233
|
+
tronUsdPerToken: z$1.ZodNumber;
|
|
31234
|
+
}, z$1.core.$strip>;
|
|
29733
31235
|
declare const zPostPaymentsAppealsBody: z$1.ZodObject<{
|
|
29734
31236
|
paymentId: z$1.ZodString;
|
|
29735
31237
|
amount: z$1.ZodString;
|
|
@@ -29959,7 +31461,7 @@ declare const zPostOauthPaymentsDistributeBody: z$1.ZodObject<{
|
|
|
29959
31461
|
* Distribution submitted (legs settled on-chain)
|
|
29960
31462
|
*/
|
|
29961
31463
|
declare const zPostOauthPaymentsDistributeResponse: z$1.ZodObject<{
|
|
29962
|
-
distributionId: z$1.ZodString
|
|
31464
|
+
distributionId: z$1.ZodOptional<z$1.ZodString>;
|
|
29963
31465
|
txHash: z$1.ZodString;
|
|
29964
31466
|
blockNumber: z$1.ZodString;
|
|
29965
31467
|
potId: z$1.ZodString;
|
|
@@ -30150,4 +31652,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
30150
31652
|
*/
|
|
30151
31653
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
30152
31654
|
//#endregion
|
|
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 };
|
|
31655
|
+
export { type AcceptedCurrencies, type AcceptedNetworks, type ActivityResponse, type ActivityRow, type ActivityRowAppeal, type ActivityRowCreditTransferred, type ActivityRowMaturedWithdrawal, type ActivityRowMoonpayBuy, type ActivityRowMoonpaySell, type ActivityRowNftCharge, type ActivityRowPayment, type ActivityRowPaymentAutoclaim, type ActivityRowPaymentWithdrawal, type ActivityRowPayoutSent, type ActivityRowPotLeg, type ActivityRowReferralEarning, type ActivityRowSolanaPotLeg, type ActivityRowSolanaStake, type ActivityRowTronCashout, type ActivityRowTronDeposit, type ActivityRowTronPot, type ActivityRowTronTransfer, type ActivityTronInvolvedUser, type AddAdminRequest, type AdminActivePlayer, type AdminActivePlayersResponse, type AdminAppContentReportItem, type AdminAppContentReportListResponse, type AdminAppPageBipStatusResponse, type AdminAppPageDiffField, type AdminAppPageDiffResponse, type AdminAppPageItem, type AdminAppPageListResponse, type AdminAppPageStatusResponse, type AdminAuditListItem, type AdminAuditListResponse, type AdminDeveloperAppItem, type AdminDeveloperListItem, type AdminDeveloperListResponse, type AdminMutationResponse, type AdminRole, type AdminRoleChangeResponse, type AdminTronCashoutItem, type AdminTronCashoutListResponse, type AdminTronCashoutRejectRequest, type AdminUser, type AdminUserBanRequest, type AdminUserBanResponse, type AdminUserListItem, type AdminUserListResponse, type AppContentReport, type AppContentReportCategory, type AppContentReportListResponse, type AppContentReportStatus, type AppFeeConfigResponse, type AppFriendListResponse, type AppPageAgeRating, type AppPageApprovedNotificationPayload, type AppPageBipState, type AppPageBipToggle, type AppPageCategories, type AppPageChapter, type AppPageChapters, type AppPageDraft, type AppPageGallery, type AppPageGalleryItem, type AppPageGalleryUploadResponse, type AppPageGameType, type AppPageLanguages, type AppPageLink, type AppPageLinks, type AppPagePaymentsMode, type AppPagePlatforms, type AppPageRejectedNotificationPayload, type AppPageReleaseStatus, type AppPageSlug, type AppPageTagline, type AppParticipantAcceptedNotificationPayload, type AppParticipantInviteNotificationPayload, type AppPaymentAuthorizationItem, type AppPlaytime, type AppealBlacklistAddRequest, type AppealBlacklistEntry, type AppealBlacklistListResponse, type AppealBlacklistRemoveRequest, type AppealBlacklistRemoveResponse, type AppealFileRequest, type AppealFileResponse, type AppealPotLegFileRequest, type AppealResolveRequest, type AppealResolveSignedResponse, type AppealRoomDetail, type AppealRoomMessage, type AppealRoomPostRequest, type AppealRoomPostResponse, type AppealRoomSenderRole, type AppealRoomSource, type AppealRoomStatus, type AppealRoomView, type AppealStatusRow, type AuthSession, type AuthUser, type BannerVariant, type BatchThreadDmKeysBody, type BatchThreadDmKeysResponse, type BearerToken, type Bio, type BipEngagementResponse, type BipInterestCountResponse, type BipInterestRequest, type BipNowPlayableNotificationPayload, type BipSubscriptionRequest, type BipUpdate, type BipUpdateAttachment, type BipUpdateAttachments, type BipUpdateBody, type BipUpdateComment, type BipUpdateCommentBody, type BipUpdateCommentListResponse, type BipUpdateListResponse, type BipUpdateMediaUploadResponse, type BipUpdatePublishedNotificationPayload, type BipUpdateReactionCounts, type BipUpdateVote, type CalldataEnvelope, type ClientOptions, type ConsentListResponse, type ConsentRecordRequest, type ConsentRow, type CreateBipUpdateCommentRequest, type CreateBipUpdateCommentResponse, type CreateBipUpdateRequest, type CreateDeveloperApiKey, type CreateDeveloperApiKeyResponse, type CreateDeveloperApp, type CreateDeveloperAppChain, type CreateDeveloperProductionRequest, type CreateDeveloperProductionRequestResponse, type CreateDeveloperRoleRequest, type CreateDirectThreadBody, type CreateGroupThreadBody, type CreateReviewCommentRequest, type CreateReviewCommentResponse, type CreateThreadResponse, type CreateWalletDelegation, type CreateWalletDelegationResponse, type DelegationSlippageBps, type DeleteAdminAdminsByIdData, type DeleteAdminAdminsByIdError, type DeleteAdminAdminsByIdErrors, type DeleteAdminAdminsByIdResponse, type DeleteAdminAdminsByIdResponses, type DeleteAdminPaymentsAppealBlacklistData, type DeleteAdminPaymentsAppealBlacklistError, type DeleteAdminPaymentsAppealBlacklistErrors, type DeleteAdminPaymentsAppealBlacklistResponse, type DeleteAdminPaymentsAppealBlacklistResponses, type DeleteBipUpdateCommentResponse, type DeleteBipUpdateResponse, type DeleteMeAvatarData, type DeleteMeAvatarError, type DeleteMeAvatarErrors, type DeleteMeAvatarResponse, type DeleteMeAvatarResponses, type DeleteMeBuildInPublicBySlugCommentsByCommentIdData, type DeleteMeBuildInPublicBySlugCommentsByCommentIdError, type DeleteMeBuildInPublicBySlugCommentsByCommentIdErrors, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, type DeleteMeBuildInPublicBySlugCommentsByCommentIdResponses, type DeleteMeData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type DeleteMeDeveloperAppsByAppIdPageBannerData, type DeleteMeDeveloperAppsByAppIdPageBannerError, type DeleteMeDeveloperAppsByAppIdPageBannerErrors, type DeleteMeDeveloperAppsByAppIdPageBannerResponse, type DeleteMeDeveloperAppsByAppIdPageBannerResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailData, type DeleteMeDeveloperAppsByAppIdPageThumbnailError, type DeleteMeDeveloperAppsByAppIdPageThumbnailErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailResponses, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoData, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoError, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type DeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type DeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type DeleteMeDeveloperAppsByIdData, type DeleteMeDeveloperAppsByIdError, type DeleteMeDeveloperAppsByIdErrors, type DeleteMeDeveloperAppsByIdLogoData, type DeleteMeDeveloperAppsByIdLogoError, type DeleteMeDeveloperAppsByIdLogoErrors, type DeleteMeDeveloperAppsByIdLogoResponse, type DeleteMeDeveloperAppsByIdLogoResponses, type DeleteMeDeveloperAppsByIdParticipantsByUserIdData, type DeleteMeDeveloperAppsByIdParticipantsByUserIdError, type DeleteMeDeveloperAppsByIdParticipantsByUserIdErrors, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, type DeleteMeDeveloperAppsByIdParticipantsByUserIdResponses, type DeleteMeDeveloperAppsByIdResponse, type DeleteMeDeveloperAppsByIdResponses, type DeleteMeDeveloperKeysByIdData, type DeleteMeDeveloperKeysByIdError, type DeleteMeDeveloperKeysByIdErrors, type DeleteMeDeveloperKeysByIdResponse, type DeleteMeDeveloperKeysByIdResponses, type DeleteMeDeveloperProfileLogoData, type DeleteMeDeveloperProfileLogoError, type DeleteMeDeveloperProfileLogoErrors, type DeleteMeDeveloperProfileLogoResponse, type DeleteMeDeveloperProfileLogoResponses, type DeleteMeDeveloperRequestLogoData, type DeleteMeDeveloperRequestLogoError, type DeleteMeDeveloperRequestLogoErrors, type DeleteMeDeveloperRequestLogoResponse, type DeleteMeDeveloperRequestLogoResponses, type DeleteMeError, type DeleteMeErrors, type DeleteMeFriendRequestsByIdData, type DeleteMeFriendRequestsByIdError, type DeleteMeFriendRequestsByIdErrors, type DeleteMeFriendRequestsByIdResponse, type DeleteMeFriendRequestsByIdResponses, type DeleteMeOauthPaymentAuthorizationsByConsentIdData, type DeleteMeOauthPaymentAuthorizationsByConsentIdError, type DeleteMeOauthPaymentAuthorizationsByConsentIdErrors, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponse, type DeleteMeOauthPaymentAuthorizationsByConsentIdResponses, type DeleteMeResponse, type DeleteMeResponses, type DeleteMeReviewsBySlugCommentsByCommentIdData, type DeleteMeReviewsBySlugCommentsByCommentIdError, type DeleteMeReviewsBySlugCommentsByCommentIdErrors, type DeleteMeReviewsBySlugCommentsByCommentIdResponse, type DeleteMeReviewsBySlugCommentsByCommentIdResponses, type DeleteMeReviewsBySlugData, type DeleteMeReviewsBySlugError, type DeleteMeReviewsBySlugErrors, type DeleteMeReviewsBySlugResponse, type DeleteMeReviewsBySlugResponses, type DeleteMeThreadsByIdData, type DeleteMeThreadsByIdError, type DeleteMeThreadsByIdErrors, type DeleteMeThreadsByIdLogoData, type DeleteMeThreadsByIdLogoError, type DeleteMeThreadsByIdLogoErrors, type DeleteMeThreadsByIdLogoResponse, type DeleteMeThreadsByIdLogoResponses, type DeleteMeThreadsByIdMessagesByMsgIdData, type DeleteMeThreadsByIdMessagesByMsgIdError, type DeleteMeThreadsByIdMessagesByMsgIdErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type DeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type DeleteMeThreadsByIdMessagesByMsgIdResponse, type DeleteMeThreadsByIdMessagesByMsgIdResponses, type DeleteMeThreadsByIdParticipantsByUserIdData, type DeleteMeThreadsByIdParticipantsByUserIdError, type DeleteMeThreadsByIdParticipantsByUserIdErrors, type DeleteMeThreadsByIdParticipantsByUserIdResponse, type DeleteMeThreadsByIdParticipantsByUserIdResponses, type DeleteMeThreadsByIdPinData, type DeleteMeThreadsByIdPinError, type DeleteMeThreadsByIdPinErrors, type DeleteMeThreadsByIdPinResponse, type DeleteMeThreadsByIdPinResponses, type DeleteMeThreadsByIdResponse, type DeleteMeThreadsByIdResponses, type DeleteMeWalletsByAddressDelegateData, type DeleteMeWalletsByAddressDelegateError, type DeleteMeWalletsByAddressDelegateErrors, type DeleteMeWalletsByAddressDelegateResponse, type DeleteMeWalletsByAddressDelegateResponses, type DeleteReviewCommentResponse, type DeleteUsersByIdFollowData, type DeleteUsersByIdFollowError, type DeleteUsersByIdFollowErrors, type DeleteUsersByIdFollowResponse, type DeleteUsersByIdFollowResponses, type DeleteUsersByIdFriendData, type DeleteUsersByIdFriendError, type DeleteUsersByIdFriendErrors, type DeleteUsersByIdFriendResponse, type DeleteUsersByIdFriendResponses, type DeleteWalletDelegationResponse, type DevAppealRow, type DevAppealsResponse, type DevPendingDepositRow, type DevPendingDepositsResponse, type DeveloperApiKeyItem, type DeveloperApiKeysResponse, type DeveloperAppAutoSweepRequest, type DeveloperAppAutoSweepResponse, type DeveloperAppBalanceItem, type DeveloperAppBalancesResponse, type DeveloperAppConsolidateResponse, type DeveloperAppEarningsBucket, type DeveloperAppEarningsResponse, type DeveloperAppIdResponse, type DeveloperAppItem, type DeveloperAppKeyItem, type DeveloperAppName, type DeveloperAppOverviewResponse, type DeveloperAppParticipant, type DeveloperAppParticipantsResponse, type DeveloperAppPayoutAddressItem, type DeveloperAppPlaytimeBucket, type DeveloperAppPlaytimeResponse, type DeveloperAppProvisionWalletResponse, type DeveloperAppTronBalanceResponse, type DeveloperAppWalletItem, type DeveloperAppWalletsResponse, type DeveloperAppWithdrawResponse, type DeveloperInvite, type DeveloperInvitesResponse, type DeveloperLogoUploadResponse, type DeveloperMeStatus, type DeveloperOkResponse, type DeveloperProductionRequestPayload, type DeveloperProfile, type DeveloperRequestItem, type DeveloperRequestSubject, type DeveloperRoleRequestPayload, type DeveloperTronBalanceSummaryResponse, type DirectThreadSummary, type DisplayName, type DmKeyAlgorithm, type DmKeyBackupOkResponse, type DmKeyBackupSetupBody, type DmKeyBackupStatusResponse, type DmKeyBackupUnlockBody, type DmKeyBackupUnlockResponse, type DmKeyResponse, type DmPublicKeyEntry, type DsarAccount, type DsarAuditEvent, type DsarConsent, type DsarExportResponse, type DsarMessage, type DsarRectifyRequest, type EarningsTimeseries, type EarningsTimeseriesBucket, type EditMessageBody, type EmbedOrigin, type ErrorResponse, type FriendAcceptedNotificationPayload, type FriendListItem, type FriendListResponse, type FriendRequestAck, type FriendRequestDecision, type FriendRequestNotificationPayload, type GetAdminActivePlayersData, type GetAdminActivePlayersError, type GetAdminActivePlayersErrors, type GetAdminActivePlayersResponse, type GetAdminActivePlayersResponses, type GetAdminAdminsData, type GetAdminAdminsError, type GetAdminAdminsErrors, type GetAdminAdminsResponse, type GetAdminAdminsResponses, type GetAdminAppPagesByAppIdChangesData, type GetAdminAppPagesByAppIdChangesError, type GetAdminAppPagesByAppIdChangesErrors, type GetAdminAppPagesByAppIdChangesResponse, type GetAdminAppPagesByAppIdChangesResponses, type GetAdminAppPagesData, type GetAdminAppPagesError, type GetAdminAppPagesErrors, type GetAdminAppPagesResponse, type GetAdminAppPagesResponses, type GetAdminAppsByAppIdFeeConfigData, type GetAdminAppsByAppIdFeeConfigError, type GetAdminAppsByAppIdFeeConfigErrors, type GetAdminAppsByAppIdFeeConfigResponse, type GetAdminAppsByAppIdFeeConfigResponses, type GetAdminAuditData, type GetAdminAuditError, type GetAdminAuditErrors, type GetAdminAuditResponse, type GetAdminAuditResponses, type GetAdminContentReportsData, type GetAdminContentReportsError, type GetAdminContentReportsErrors, type GetAdminContentReportsResponse, type GetAdminContentReportsResponses, type GetAdminDeveloperRequestsData, type GetAdminDeveloperRequestsError, type GetAdminDeveloperRequestsErrors, type GetAdminDeveloperRequestsResponse, type GetAdminDeveloperRequestsResponses, type GetAdminDevelopersData, type GetAdminDevelopersError, type GetAdminDevelopersErrors, type GetAdminDevelopersResponse, type GetAdminDevelopersResponses, type GetAdminPaymentsAppealBlacklistData, type GetAdminPaymentsAppealBlacklistError, type GetAdminPaymentsAppealBlacklistErrors, type GetAdminPaymentsAppealBlacklistResponse, type GetAdminPaymentsAppealBlacklistResponses, type GetAdminPaymentsAppealsByAppealIdRoomData, type GetAdminPaymentsAppealsByAppealIdRoomError, type GetAdminPaymentsAppealsByAppealIdRoomErrors, type GetAdminPaymentsAppealsByAppealIdRoomResponse, type GetAdminPaymentsAppealsByAppealIdRoomResponses, type GetAdminPaymentsAppealsData, type GetAdminPaymentsAppealsError, type GetAdminPaymentsAppealsErrors, type GetAdminPaymentsAppealsResponse, type GetAdminPaymentsAppealsResponses, type GetAdminPlatformFeesData, type GetAdminPlatformFeesError, type GetAdminPlatformFeesErrors, type GetAdminPlatformFeesResponse, type GetAdminPlatformFeesResponses, type GetAdminTronCashoutsData, type GetAdminTronCashoutsError, type GetAdminTronCashoutsErrors, type GetAdminTronCashoutsResponse, type GetAdminTronCashoutsResponses, type GetAdminUsersData, type GetAdminUsersError, type GetAdminUsersErrors, type GetAdminUsersResponse, type GetAdminUsersResponses, type GetAuthGetSessionData, type GetAuthGetSessionResponse, type GetAuthGetSessionResponses, type GetAuthVerifyEmailData, type GetAuthVerifyEmailError, type GetAuthVerifyEmailErrors, type GetAuthVerifyEmailResponse, type GetAuthVerifyEmailResponses, type GetHealthData, type GetHealthError, type GetHealthErrors, type GetHealthResponse, type GetHealthResponses, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonData, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonError, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonErrors, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, type GetInventoryMetadataErc1155ByTokenIdMetadataJsonResponses, type GetInventoryMetadataErc1155ContractJsonData, type GetInventoryMetadataErc1155ContractJsonResponse, type GetInventoryMetadataErc1155ContractJsonResponses, type GetInventoryMetadataErc721ByFileData, type GetInventoryMetadataErc721ByFileError, type GetInventoryMetadataErc721ByFileErrors, type GetInventoryMetadataErc721ByFileResponse, type GetInventoryMetadataErc721ByFileResponses, type GetInventoryMetadataErc721ContractJsonData, type GetInventoryMetadataErc721ContractJsonResponse, type GetInventoryMetadataErc721ContractJsonResponses, type GetMeAppsByAppIdPlaytimeData, type GetMeAppsByAppIdPlaytimeError, type GetMeAppsByAppIdPlaytimeErrors, type GetMeAppsByAppIdPlaytimeResponse, type GetMeAppsByAppIdPlaytimeResponses, type GetMeBuildInPublicBySlugEngagementData, type GetMeBuildInPublicBySlugEngagementError, type GetMeBuildInPublicBySlugEngagementErrors, type GetMeBuildInPublicBySlugEngagementResponse, type GetMeBuildInPublicBySlugEngagementResponses, type GetMeBuildInPublicBySlugReactionsData, type GetMeBuildInPublicBySlugReactionsError, type GetMeBuildInPublicBySlugReactionsErrors, type GetMeBuildInPublicBySlugReactionsResponse, type GetMeBuildInPublicBySlugReactionsResponses, type GetMeConsentData, type GetMeConsentError, type GetMeConsentErrors, type GetMeConsentResponse, type GetMeConsentResponses, type GetMeDataData, type GetMeDataError, type GetMeDataErrors, type GetMeDataResponse, type GetMeDataResponses, type GetMeDeveloperAppsByAppIdBipUpdatesData, type GetMeDeveloperAppsByAppIdBipUpdatesError, type GetMeDeveloperAppsByAppIdBipUpdatesErrors, type GetMeDeveloperAppsByAppIdBipUpdatesResponse, type GetMeDeveloperAppsByAppIdBipUpdatesResponses, type GetMeDeveloperAppsByAppIdInventoryCollectionsData, type GetMeDeveloperAppsByAppIdInventoryCollectionsError, type GetMeDeveloperAppsByAppIdInventoryCollectionsErrors, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponse, type GetMeDeveloperAppsByAppIdInventoryCollectionsResponses, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersData, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersError, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersErrors, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, type GetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponses, type GetMeDeveloperAppsByAppIdInventoryItemsData, type GetMeDeveloperAppsByAppIdInventoryItemsError, type GetMeDeveloperAppsByAppIdInventoryItemsErrors, type GetMeDeveloperAppsByAppIdInventoryItemsResponse, type GetMeDeveloperAppsByAppIdInventoryItemsResponses, type GetMeDeveloperAppsByAppIdPageData, type GetMeDeveloperAppsByAppIdPageError, type GetMeDeveloperAppsByAppIdPageErrors, type GetMeDeveloperAppsByAppIdPageResponse, type GetMeDeveloperAppsByAppIdPageResponses, type GetMeDeveloperAppsByAppIdReviewsData, type GetMeDeveloperAppsByAppIdReviewsError, type GetMeDeveloperAppsByAppIdReviewsErrors, type GetMeDeveloperAppsByAppIdReviewsResponse, type GetMeDeveloperAppsByAppIdReviewsResponses, type GetMeDeveloperAppsByIdActivityData, type GetMeDeveloperAppsByIdActivityError, type GetMeDeveloperAppsByIdActivityErrors, type GetMeDeveloperAppsByIdActivityResponse, type GetMeDeveloperAppsByIdActivityResponses, type GetMeDeveloperAppsByIdBalancesData, type GetMeDeveloperAppsByIdBalancesError, type GetMeDeveloperAppsByIdBalancesErrors, type GetMeDeveloperAppsByIdBalancesResponse, type GetMeDeveloperAppsByIdBalancesResponses, type GetMeDeveloperAppsByIdEarningsData, type GetMeDeveloperAppsByIdEarningsError, type GetMeDeveloperAppsByIdEarningsErrors, type GetMeDeveloperAppsByIdEarningsResponse, type GetMeDeveloperAppsByIdEarningsResponses, type GetMeDeveloperAppsByIdOverviewData, type GetMeDeveloperAppsByIdOverviewError, type GetMeDeveloperAppsByIdOverviewErrors, type GetMeDeveloperAppsByIdOverviewResponse, type GetMeDeveloperAppsByIdOverviewResponses, type GetMeDeveloperAppsByIdParticipantsData, type GetMeDeveloperAppsByIdParticipantsError, type GetMeDeveloperAppsByIdParticipantsErrors, type GetMeDeveloperAppsByIdParticipantsResponse, type GetMeDeveloperAppsByIdParticipantsResponses, type GetMeDeveloperAppsByIdPlaytimeData, type GetMeDeveloperAppsByIdPlaytimeError, type GetMeDeveloperAppsByIdPlaytimeErrors, type GetMeDeveloperAppsByIdPlaytimeResponse, type GetMeDeveloperAppsByIdPlaytimeResponses, type GetMeDeveloperAppsByIdReportsData, type GetMeDeveloperAppsByIdReportsError, type GetMeDeveloperAppsByIdReportsErrors, type GetMeDeveloperAppsByIdReportsResponse, type GetMeDeveloperAppsByIdReportsResponses, type GetMeDeveloperAppsByIdTronBalanceData, type GetMeDeveloperAppsByIdTronBalanceError, type GetMeDeveloperAppsByIdTronBalanceErrors, type GetMeDeveloperAppsByIdTronBalanceResponse, type GetMeDeveloperAppsByIdTronBalanceResponses, type GetMeDeveloperAppsByIdWalletsData, type GetMeDeveloperAppsByIdWalletsError, type GetMeDeveloperAppsByIdWalletsErrors, type GetMeDeveloperAppsByIdWalletsResponse, type GetMeDeveloperAppsByIdWalletsResponses, type GetMeDeveloperData, type GetMeDeveloperError, type GetMeDeveloperErrors, type GetMeDeveloperInvitesData, type GetMeDeveloperInvitesError, type GetMeDeveloperInvitesErrors, type GetMeDeveloperInvitesResponse, type GetMeDeveloperInvitesResponses, type GetMeDeveloperKeysData, type GetMeDeveloperKeysError, type GetMeDeveloperKeysErrors, type GetMeDeveloperKeysResponse, type GetMeDeveloperKeysResponses, type GetMeDeveloperPaymentsAppealsData, type GetMeDeveloperPaymentsAppealsError, type GetMeDeveloperPaymentsAppealsErrors, type GetMeDeveloperPaymentsAppealsResponse, type GetMeDeveloperPaymentsAppealsResponses, type GetMeDeveloperPaymentsPendingDepositsData, type GetMeDeveloperPaymentsPendingDepositsError, type GetMeDeveloperPaymentsPendingDepositsErrors, type GetMeDeveloperPaymentsPendingDepositsResponse, type GetMeDeveloperPaymentsPendingDepositsResponses, type GetMeDeveloperPaymentsTronBalanceData, type GetMeDeveloperPaymentsTronBalanceError, type GetMeDeveloperPaymentsTronBalanceErrors, type GetMeDeveloperPaymentsTronBalanceResponse, type GetMeDeveloperPaymentsTronBalanceResponses, type GetMeDeveloperResponse, type GetMeDeveloperResponses, type GetMeDmKeyBackupData, type GetMeDmKeyBackupError, type GetMeDmKeyBackupErrors, type GetMeDmKeyBackupResponse, type GetMeDmKeyBackupResponses, type GetMeDmKeyData, type GetMeDmKeyError, type GetMeDmKeyErrors, type GetMeDmKeyResponse, type GetMeDmKeyResponses, type GetMeEarningsTimeseriesData, type GetMeEarningsTimeseriesError, type GetMeEarningsTimeseriesErrors, type GetMeEarningsTimeseriesResponse, type GetMeEarningsTimeseriesResponses, type GetMeFriendsData, type GetMeFriendsError, type GetMeFriendsErrors, type GetMeFriendsResponse, type GetMeFriendsResponses, type GetMeGiphySearchData, type GetMeGiphySearchError, type GetMeGiphySearchErrors, type GetMeGiphySearchResponse, type GetMeGiphySearchResponses, type GetMeInventoryData, type GetMeInventoryError, type GetMeInventoryErrors, type GetMeInventoryPermitsData, type GetMeInventoryPermitsError, type GetMeInventoryPermitsErrors, type GetMeInventoryPermitsResponse, type GetMeInventoryPermitsResponses, type GetMeInventoryResponse, type GetMeInventoryResponses, type GetMeInventoryVaultPermitsData, type GetMeInventoryVaultPermitsError, type GetMeInventoryVaultPermitsErrors, type GetMeInventoryVaultPermitsResponse, type GetMeInventoryVaultPermitsResponses, type GetMeInventoryVaultedData, type GetMeInventoryVaultedError, type GetMeInventoryVaultedErrors, type GetMeInventoryVaultedResponse, type GetMeInventoryVaultedResponses, type GetMeNotificationsData, type GetMeNotificationsError, type GetMeNotificationsErrors, type GetMeNotificationsResponse, type GetMeNotificationsResponses, type GetMeOauthConnectionsData, type GetMeOauthConnectionsError, type GetMeOauthConnectionsErrors, type GetMeOauthConnectionsResponse, type GetMeOauthConnectionsResponses, type GetMeOauthPaymentAuthorizationsData, type GetMeOauthPaymentAuthorizationsError, type GetMeOauthPaymentAuthorizationsErrors, type GetMeOauthPaymentAuthorizationsResponse, type GetMeOauthPaymentAuthorizationsResponses, type GetMeOauthTronAuthorizationsData, type GetMeOauthTronAuthorizationsError, type GetMeOauthTronAuthorizationsErrors, type GetMeOauthTronAuthorizationsResponse, type GetMeOauthTronAuthorizationsResponses, type GetMePlaytimeData, type GetMePlaytimeError, type GetMePlaytimeErrors, type GetMePlaytimeResponse, type GetMePlaytimeResponses, type GetMePlaytimeTimeseriesData, type GetMePlaytimeTimeseriesError, type GetMePlaytimeTimeseriesErrors, type GetMePlaytimeTimeseriesResponse, type GetMePlaytimeTimeseriesResponses, type GetMeReferralData, type GetMeReferralError, type GetMeReferralErrors, type GetMeReferralPreviewData, type GetMeReferralPreviewError, type GetMeReferralPreviewErrors, type GetMeReferralPreviewResponse, type GetMeReferralPreviewResponses, type GetMeReferralResponse, type GetMeReferralResponses, type GetMeReviewsBySlugData, type GetMeReviewsBySlugError, type GetMeReviewsBySlugErrors, type GetMeReviewsBySlugReactionsData, type GetMeReviewsBySlugReactionsError, type GetMeReviewsBySlugReactionsErrors, type GetMeReviewsBySlugReactionsResponse, type GetMeReviewsBySlugReactionsResponses, type GetMeReviewsBySlugResponse, type GetMeReviewsBySlugResponses, type GetMeSocialsData, type GetMeSocialsError, type GetMeSocialsErrors, type GetMeSocialsResponse, type GetMeSocialsResponses, type GetMeStatsData, type GetMeStatsError, type GetMeStatsErrors, type GetMeStatsResponse, type GetMeStatsResponses, type GetMeThreadsByIdDmKeyData, type GetMeThreadsByIdDmKeyError, type GetMeThreadsByIdDmKeyErrors, type GetMeThreadsByIdDmKeyResponse, type GetMeThreadsByIdDmKeyResponses, type GetMeThreadsByIdMessagesData, type GetMeThreadsByIdMessagesError, type GetMeThreadsByIdMessagesErrors, type GetMeThreadsByIdMessagesResponse, type GetMeThreadsByIdMessagesResponses, type GetMeThreadsData, type GetMeThreadsError, type GetMeThreadsErrors, type GetMeThreadsResponse, type GetMeThreadsResponses, type GetMeWalletsByAddressDelegateData, type GetMeWalletsByAddressDelegateError, type GetMeWalletsByAddressDelegateErrors, type GetMeWalletsByAddressDelegateResponse, type GetMeWalletsByAddressDelegateResponses, type GetMeWalletsData, type GetMeWalletsError, type GetMeWalletsErrors, type GetMeWalletsResponse, type GetMeWalletsResponses, type GetOauthAuthorizeData, type GetOauthAuthorizeError, type GetOauthAuthorizeErrors, type GetOauthConsentByRequestData, type GetOauthConsentByRequestError, type GetOauthConsentByRequestErrors, type GetOauthConsentByRequestResponse, type GetOauthConsentByRequestResponses, type GetOauthFriendsData, type GetOauthFriendsError, type GetOauthFriendsErrors, type GetOauthFriendsResponse, type GetOauthFriendsResponses, type GetOauthInventoryData, type GetOauthInventoryError, type GetOauthInventoryErrors, type GetOauthInventoryResponse, type GetOauthInventoryResponses, type GetOauthInventoryVaultedData, type GetOauthInventoryVaultedError, type GetOauthInventoryVaultedErrors, type GetOauthInventoryVaultedResponse, type GetOauthInventoryVaultedResponses, type GetOauthPaymentsIntentByIdData, type GetOauthPaymentsIntentByIdError, type GetOauthPaymentsIntentByIdErrors, type GetOauthPaymentsIntentByIdResponse, type GetOauthPaymentsIntentByIdResponses, type GetOauthPaymentsLimitsData, type GetOauthPaymentsLimitsError, type GetOauthPaymentsLimitsErrors, type GetOauthPaymentsLimitsResponse, type GetOauthPaymentsLimitsResponses, type GetOauthPaymentsNotInvitedByClientIdData, type GetOauthPaymentsNotInvitedByClientIdError, type GetOauthPaymentsNotInvitedByClientIdErrors, type GetOauthPaymentsNotInvitedByClientIdResponse, type GetOauthPaymentsNotInvitedByClientIdResponses, type GetOauthPaymentsPriceData, type GetOauthPaymentsPriceError, type GetOauthPaymentsPriceErrors, type GetOauthPaymentsPriceResponse, type GetOauthPaymentsPriceResponses, type GetOauthPaymentsStatusByIdData, type GetOauthPaymentsStatusByIdError, type GetOauthPaymentsStatusByIdErrors, type GetOauthPaymentsStatusByIdResponse, type GetOauthPaymentsStatusByIdResponses, type GetOauthPaymentsTronBalanceData, type GetOauthPaymentsTronBalanceError, type GetOauthPaymentsTronBalanceErrors, type GetOauthPaymentsTronBalanceResponse, type GetOauthPaymentsTronBalanceResponses, type GetOauthPaymentsTronIntentByIdData, type GetOauthPaymentsTronIntentByIdError, type GetOauthPaymentsTronIntentByIdErrors, type GetOauthPaymentsTronIntentByIdResponse, type GetOauthPaymentsTronIntentByIdResponses, type GetOauthRaiseLimitContextData, type GetOauthRaiseLimitContextError, type GetOauthRaiseLimitContextErrors, type GetOauthRaiseLimitContextResponse, type GetOauthRaiseLimitContextResponses, type GetPaymentsAppealsByAppealIdRoomData, type GetPaymentsAppealsByAppealIdRoomError, type GetPaymentsAppealsByAppealIdRoomErrors, type GetPaymentsAppealsByAppealIdRoomResponse, type GetPaymentsAppealsByAppealIdRoomResponses, type GetPaymentsChainsData, type GetPaymentsChainsResponse, type GetPaymentsChainsResponses, type GetPaymentsMeActivityData, type GetPaymentsMeActivityError, type GetPaymentsMeActivityErrors, type GetPaymentsMeActivityGroupByGroupIdData, type GetPaymentsMeActivityGroupByGroupIdError, type GetPaymentsMeActivityGroupByGroupIdErrors, type GetPaymentsMeActivityGroupByGroupIdResponse, type GetPaymentsMeActivityGroupByGroupIdResponses, type GetPaymentsMeActivityResponse, type GetPaymentsMeActivityResponses, type GetPaymentsMeData, type GetPaymentsMeError, type GetPaymentsMeErrors, type GetPaymentsMeMoonpayAvailabilityData, type GetPaymentsMeMoonpayAvailabilityError, type GetPaymentsMeMoonpayAvailabilityErrors, type GetPaymentsMeMoonpayAvailabilityResponse, type GetPaymentsMeMoonpayAvailabilityResponses, type GetPaymentsMeOutstandingData, type GetPaymentsMeOutstandingError, type GetPaymentsMeOutstandingErrors, type GetPaymentsMeOutstandingResponse, type GetPaymentsMeOutstandingResponses, type GetPaymentsMeResponse, type GetPaymentsMeResponses, type GetPaymentsMeTronCashoutsData, type GetPaymentsMeTronCashoutsError, type GetPaymentsMeTronCashoutsErrors, type GetPaymentsMeTronCashoutsResponse, type GetPaymentsMeTronCashoutsResponses, type GetPaymentsMeTronData, type GetPaymentsMeTronError, type GetPaymentsMeTronErrors, type GetPaymentsMeTronLedgerData, type GetPaymentsMeTronLedgerError, type GetPaymentsMeTronLedgerErrors, type GetPaymentsMeTronLedgerResponse, type GetPaymentsMeTronLedgerResponses, type GetPaymentsMeTronResponse, type GetPaymentsMeTronResponses, type GetPaymentsMeTronSecurityData, type GetPaymentsMeTronSecurityError, type GetPaymentsMeTronSecurityErrors, type GetPaymentsMeTronSecurityResponse, type GetPaymentsMeTronSecurityResponses, type GetPaymentsRatesData, type GetPaymentsRatesResponse, type GetPaymentsRatesResponses, type GetPublicAppsBySlugData, type GetPublicAppsBySlugError, type GetPublicAppsBySlugErrors, type GetPublicAppsBySlugResponse, type GetPublicAppsBySlugResponses, type GetPublicAppsBySlugReviewsByReviewIdCommentsData, type GetPublicAppsBySlugReviewsByReviewIdCommentsError, type GetPublicAppsBySlugReviewsByReviewIdCommentsErrors, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponse, type GetPublicAppsBySlugReviewsByReviewIdCommentsResponses, type GetPublicAppsBySlugReviewsData, type GetPublicAppsBySlugReviewsError, type GetPublicAppsBySlugReviewsErrors, type GetPublicAppsBySlugReviewsResponse, type GetPublicAppsBySlugReviewsResponses, type GetPublicBuildInPublicBySlugData, type GetPublicBuildInPublicBySlugError, type GetPublicBuildInPublicBySlugErrors, type GetPublicBuildInPublicBySlugInterestData, type GetPublicBuildInPublicBySlugInterestError, type GetPublicBuildInPublicBySlugInterestErrors, type GetPublicBuildInPublicBySlugInterestResponse, type GetPublicBuildInPublicBySlugInterestResponses, type GetPublicBuildInPublicBySlugResponse, type GetPublicBuildInPublicBySlugResponses, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsData, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsError, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsErrors, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses, type GetPublicBuildInPublicBySlugUpdatesData, type GetPublicBuildInPublicBySlugUpdatesError, type GetPublicBuildInPublicBySlugUpdatesErrors, type GetPublicBuildInPublicBySlugUpdatesResponse, type GetPublicBuildInPublicBySlugUpdatesResponses, type GetPublicBuildInPublicData, type GetPublicBuildInPublicError, type GetPublicBuildInPublicErrors, type GetPublicBuildInPublicResponse, type GetPublicBuildInPublicResponses, type GetPublicLibraryData, type GetPublicLibraryError, type GetPublicLibraryErrors, type GetPublicLibraryResponse, type GetPublicLibraryResponses, type GetSessionResponse, type GetUserinfoData, type GetUserinfoError, type GetUserinfoErrors, type GetUserinfoResponse, type GetUserinfoResponses, type GetUsersByHandleData, type GetUsersByHandleError, type GetUsersByHandleErrors, type GetUsersByHandleResponse, type GetUsersByHandleResponses, type GetUsersSearchData, type GetUsersSearchError, type GetUsersSearchErrors, type GetUsersSearchResponse, type GetUsersSearchResponses, type GetWellKnownOauthAuthorizationServerData, type GetWellKnownOauthAuthorizationServerResponse, type GetWellKnownOauthAuthorizationServerResponses, type GiphySearchResponse, type GiphySearchResult, type GitHubUrl, type GroupParticipant, type GroupThreadMutationResponse, type GroupThreadSummary, type HealthResponse, type HideAppPage, type InventoryCollectionListResponse, type InventoryCollectionSummary, type InventoryContractMetadata, type InventoryHolding, type InventoryItemHolder, type InventoryItemHoldersResponse, type InventoryItemListResponse, type InventoryItemRecord, type InventoryItemRegistrationInput, type InventoryItemRegistrationResult, type InventoryItemRegistrationSpec, type InventoryItemStats, type InventoryListResponse, type InventoryMetadataAttribute, type InventoryMintPermitCreateInput, type InventoryMintPermitRecord, type InventoryNftTransferQuoteRequest, type InventoryNftTransferQuoteResponse, type InventoryNftTransferRequest, type InventoryNftTransferResponse, type InventoryPendingPermit, type InventoryPendingPermitListResponse, type InventoryPendingVaultPermit, type InventoryPendingVaultPermitListResponse, type InventoryPermitRedeemResult, type InventoryRegistrationQuote, type InventoryRelayedVaultQuoteResponse, type InventoryRelayedVaultSubmitRequest, type InventoryRelayedVaultSubmitResponse, type InventorySignedVaultPermit, type InventorySupplyType, type InventoryTokenMetadata, type InventoryVaultCustody, type InventoryVaultCustodyListResponse, type InventoryVaultForceWithdrawResponse, type InventoryVaultPermitCreateInput, type InventoryVaultPermitRecord, type InventoryWithdrawPermitCreateInput, type InviteDeveloperAppParticipant, type InviteParticipantsBody, type LibraryItem, type LibraryListResponse, type LibrarySort, type ListAdminsResponse, type ListAppPaymentAuthorizationsResponse, type ListAppealsResponse, type ListDeveloperRequestsResponse, type ListOauthConnectionsResponse, type ListTronPaymentAuthorizationsResponse, type MeStats, type MessageAttachment, type MessageAttachmentKind, type MessageBody, type MessageEnvelope, type MessageItem, type MessageLinkPreview, type MessageReplyPreview, type MessageTransactionNftTransfer, type MessageTransactionTronTransfer, type MessagesPageResponse, type MessagingOkResponse, type MintRequestInput, type MintRequestResult, type MoonpayAvailabilityResponse, type MoonpayBuyUrlRequest, type MoonpayBuyUrlResponse, type MoonpaySellUrlRequest, type MoonpaySellUrlResponse, type MyBipUpdateReaction, type MyBipUpdateReactionsResponse, type MyReviewReaction, type MyReviewReactionsResponse, type MyReviewResponse, type NotificationItem, type NotificationListResponse, type NotificationUpdate, type OauthAuthorizationServerMetadata, type OauthAuthorizeConfirm, type OauthAuthorizeConfirmResponse, type OauthClientId, type OauthClientRegistrationError, type OauthClientRegistrationRequest, type OauthClientRegistrationResponse, type OauthClientSecret, type OauthConnectionItem, type OauthConsentContext, type OauthErrorResponse, type OauthNotInvitedContext, type OauthPaymentCancelPotRequest, type OauthPaymentCancelPotResponse, type OauthPaymentChargeCompleted, type OauthPaymentChargeIdempotencyMismatch, type OauthPaymentChargeLimitExceeded, type OauthPaymentChargeRedirect, type OauthPaymentChargeRequest, type OauthPaymentChargeResponse, type OauthPaymentDistributeRequest, type OauthPaymentDistributeResponse, type OauthPaymentIntentComplete, type OauthPaymentIntentCompleteOffline, type OauthPaymentIntentCompleteSigned, type OauthPaymentIntentContext, type OauthPaymentIntentResolveResponse, type OauthPaymentIntentSignResponse, type OauthPaymentIntentSolanaCompleteRequest, type OauthPaymentIntentSolanaPrepareResponse, type OauthPaymentIntentStatus, type OauthPaymentLimitsResponse, type OauthPaymentMonthlyLimitCents, type OauthPaymentPayoutDirect, type OauthPaymentPayoutPull, type OauthPaymentPayoutRequest, type OauthPaymentPayoutResponse, type OauthPaymentPerTxLimitCents, type OauthPaymentPriceResponse, type OauthRedirectUri, type OauthRequestHandle, type OauthRevokeRequest, type OauthScopeString, type OauthState, type OauthTokenAuthorizationCodeRequest, type OauthTokenClientCredentialsRequest, type OauthTokenRefreshTokenRequest, type OauthTokenRequest, type OauthTokenResponse, type OauthUserInfoResponse, type OnlineStatus, type OutstandingByToken, type OutstandingResponse, type OwnReview, type ParticipantRole, type PatchAdminAdminsByIdData, type PatchAdminAdminsByIdError, type PatchAdminAdminsByIdErrors, type PatchAdminAdminsByIdResponse, type PatchAdminAdminsByIdResponses, type PatchAdminAppsByAppIdFeeConfigData, type PatchAdminAppsByAppIdFeeConfigError, type PatchAdminAppsByAppIdFeeConfigErrors, type PatchAdminAppsByAppIdFeeConfigResponse, type PatchAdminAppsByAppIdFeeConfigResponses, type PatchAdminContentReportsByReportIdData, type PatchAdminContentReportsByReportIdError, type PatchAdminContentReportsByReportIdErrors, type PatchAdminContentReportsByReportIdResponse, type PatchAdminContentReportsByReportIdResponses, type PatchAdminDeveloperRequestsByIdData, type PatchAdminDeveloperRequestsByIdError, type PatchAdminDeveloperRequestsByIdErrors, type PatchAdminDeveloperRequestsByIdResponse, type PatchAdminDeveloperRequestsByIdResponses, type PatchAdminPlatformFeesData, type PatchAdminPlatformFeesError, type PatchAdminPlatformFeesErrors, type PatchAdminPlatformFeesResponse, type PatchAdminPlatformFeesResponses, type PatchAdminUsersByIdData, type PatchAdminUsersByIdError, type PatchAdminUsersByIdErrors, type PatchAdminUsersByIdResponse, type PatchAdminUsersByIdResponses, type PatchMeData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdData, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdError, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdErrors, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses, type PatchMeDeveloperAppsByAppIdPageBipData, type PatchMeDeveloperAppsByAppIdPageBipError, type PatchMeDeveloperAppsByAppIdPageBipErrors, type PatchMeDeveloperAppsByAppIdPageBipResponse, type PatchMeDeveloperAppsByAppIdPageBipResponses, type PatchMeDeveloperAppsByAppIdPageData, type PatchMeDeveloperAppsByAppIdPageError, type PatchMeDeveloperAppsByAppIdPageErrors, type PatchMeDeveloperAppsByAppIdPageResponse, type PatchMeDeveloperAppsByAppIdPageResponses, type PatchMeDeveloperAppsByIdData, type PatchMeDeveloperAppsByIdError, type PatchMeDeveloperAppsByIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdData, type PatchMeDeveloperAppsByIdReportsByReportIdError, type PatchMeDeveloperAppsByIdReportsByReportIdErrors, type PatchMeDeveloperAppsByIdReportsByReportIdResponse, type PatchMeDeveloperAppsByIdReportsByReportIdResponses, type PatchMeDeveloperAppsByIdResponse, type PatchMeDeveloperAppsByIdResponses, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepData, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepError, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepErrors, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, type PatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponses, type PatchMeDeveloperProfileData, type PatchMeDeveloperProfileError, type PatchMeDeveloperProfileErrors, type PatchMeDeveloperProfileResponse, type PatchMeDeveloperProfileResponses, type PatchMeError, type PatchMeErrors, type PatchMeFriendRequestsByIdData, type PatchMeFriendRequestsByIdError, type PatchMeFriendRequestsByIdErrors, type PatchMeFriendRequestsByIdResponse, type PatchMeFriendRequestsByIdResponses, type PatchMeNotificationsByIdData, type PatchMeNotificationsByIdError, type PatchMeNotificationsByIdErrors, type PatchMeNotificationsByIdResponse, type PatchMeNotificationsByIdResponses, type PatchMeOauthPaymentAuthorizationsByConsentIdData, type PatchMeOauthPaymentAuthorizationsByConsentIdError, type PatchMeOauthPaymentAuthorizationsByConsentIdErrors, type PatchMeOauthPaymentAuthorizationsByConsentIdResponse, type PatchMeOauthPaymentAuthorizationsByConsentIdResponses, type PatchMeOauthTronAuthorizationsByConsentIdData, type PatchMeOauthTronAuthorizationsByConsentIdError, type PatchMeOauthTronAuthorizationsByConsentIdErrors, type PatchMeOauthTronAuthorizationsByConsentIdResponse, type PatchMeOauthTronAuthorizationsByConsentIdResponses, type PatchMeProfileData, type PatchMeProfileError, type PatchMeProfileErrors, type PatchMeProfileResponse, type PatchMeProfileResponses, type PatchMeResponse, type PatchMeResponses, type PatchMeThreadsByIdData, type PatchMeThreadsByIdError, type PatchMeThreadsByIdErrors, type PatchMeThreadsByIdMessagesByMsgIdData, type PatchMeThreadsByIdMessagesByMsgIdError, type PatchMeThreadsByIdMessagesByMsgIdErrors, type PatchMeThreadsByIdMessagesByMsgIdResponse, type PatchMeThreadsByIdMessagesByMsgIdResponses, type PatchMeThreadsByIdParticipantsByUserIdRoleData, type PatchMeThreadsByIdParticipantsByUserIdRoleError, type PatchMeThreadsByIdParticipantsByUserIdRoleErrors, type PatchMeThreadsByIdParticipantsByUserIdRoleResponse, type PatchMeThreadsByIdParticipantsByUserIdRoleResponses, type PatchMeThreadsByIdResponse, type PatchMeThreadsByIdResponses, type PatchMeWalletsByAddressData, type PatchMeWalletsByAddressError, type PatchMeWalletsByAddressErrors, type PatchMeWalletsByAddressResponse, type PatchMeWalletsByAddressResponses, type PauseRequest, type PaymentChain, type PaymentChainsResponse, type PaymentHistoryResponse, type PaymentHistoryRow, type PaymentMetadata, type PaymentNetwork, type PaymentRatesResponse, type PinThreadResponse, type PkceCodeChallenge, type PkceCodeVerifier, type PlatformCurrency, type PlatformEnvironment, type PlatformFeeEnvelope, type PlatformFeesResponse, type PlaySessionAppId, type PlaySessionConfirmRequest, type PlaySessionConfirmResponse, type PlaySessionEndRequest, type PlaySessionEndResponse, type PlaySessionHeartbeatRequest, type PlaySessionHeartbeatResponse, type PlaySessionId, type PlaySessionOpenRequest, type PlaySessionOpenResponse, type PlaySessionUserId, type PlaytimeAppEntry, type PlaytimeOverview, type PlaytimeTimeseries, type PlaytimeTimeseriesBucket, type PostAdminAdminsData, type PostAdminAdminsError, type PostAdminAdminsErrors, type PostAdminAdminsResponse, type PostAdminAdminsResponses, type PostAdminAppPagesByAppIdHideBipData, type PostAdminAppPagesByAppIdHideBipError, type PostAdminAppPagesByAppIdHideBipErrors, type PostAdminAppPagesByAppIdHideBipResponse, type PostAdminAppPagesByAppIdHideBipResponses, type PostAdminAppPagesByAppIdHideData, type PostAdminAppPagesByAppIdHideError, type PostAdminAppPagesByAppIdHideErrors, type PostAdminAppPagesByAppIdHideResponse, type PostAdminAppPagesByAppIdHideResponses, type PostAdminAppPagesByAppIdReviewBipData, type PostAdminAppPagesByAppIdReviewBipError, type PostAdminAppPagesByAppIdReviewBipErrors, type PostAdminAppPagesByAppIdReviewBipResponse, type PostAdminAppPagesByAppIdReviewBipResponses, type PostAdminAppPagesByAppIdReviewChangesData, type PostAdminAppPagesByAppIdReviewChangesError, type PostAdminAppPagesByAppIdReviewChangesErrors, type PostAdminAppPagesByAppIdReviewChangesResponse, type PostAdminAppPagesByAppIdReviewChangesResponses, type PostAdminAppPagesByAppIdReviewData, type PostAdminAppPagesByAppIdReviewError, type PostAdminAppPagesByAppIdReviewErrors, type PostAdminAppPagesByAppIdReviewResponse, type PostAdminAppPagesByAppIdReviewResponses, type PostAdminAppPagesByAppIdUnhideBipData, type PostAdminAppPagesByAppIdUnhideBipError, type PostAdminAppPagesByAppIdUnhideBipErrors, type PostAdminAppPagesByAppIdUnhideBipResponse, type PostAdminAppPagesByAppIdUnhideBipResponses, type PostAdminAppPagesByAppIdUnhideData, type PostAdminAppPagesByAppIdUnhideError, type PostAdminAppPagesByAppIdUnhideErrors, type PostAdminAppPagesByAppIdUnhideResponse, type PostAdminAppPagesByAppIdUnhideResponses, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawData, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawError, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawErrors, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, type PostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponses, type PostAdminPaymentsAppealBlacklistData, type PostAdminPaymentsAppealBlacklistError, type PostAdminPaymentsAppealBlacklistErrors, type PostAdminPaymentsAppealBlacklistResponse, type PostAdminPaymentsAppealBlacklistResponses, type PostAdminPaymentsAppealsByAppealIdResolveData, type PostAdminPaymentsAppealsByAppealIdResolveError, type PostAdminPaymentsAppealsByAppealIdResolveErrors, type PostAdminPaymentsAppealsByAppealIdResolveResponse, type PostAdminPaymentsAppealsByAppealIdResolveResponses, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsData, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsError, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostAdminPaymentsAppealsByAppealIdRoomMessagesData, type PostAdminPaymentsAppealsByAppealIdRoomMessagesError, type PostAdminPaymentsAppealsByAppealIdRoomMessagesErrors, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, type PostAdminPaymentsAppealsByAppealIdRoomMessagesResponses, type PostAdminPaymentsProcessorsByProcessorIdTreasuryData, type PostAdminPaymentsProcessorsByProcessorIdTreasuryError, type PostAdminPaymentsProcessorsByProcessorIdTreasuryErrors, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, type PostAdminPaymentsProcessorsByProcessorIdTreasuryResponses, type PostAdminPaymentsProcessorsWhitelistData, type PostAdminPaymentsProcessorsWhitelistError, type PostAdminPaymentsProcessorsWhitelistErrors, type PostAdminPaymentsProcessorsWhitelistResponse, type PostAdminPaymentsProcessorsWhitelistResponses, type PostAdminPaymentsVaultsByVaultAddressOperatorData, type PostAdminPaymentsVaultsByVaultAddressOperatorError, type PostAdminPaymentsVaultsByVaultAddressOperatorErrors, type PostAdminPaymentsVaultsByVaultAddressOperatorResponse, type PostAdminPaymentsVaultsByVaultAddressOperatorResponses, type PostAdminPaymentsVaultsByVaultAddressPauseData, type PostAdminPaymentsVaultsByVaultAddressPauseError, type PostAdminPaymentsVaultsByVaultAddressPauseErrors, type PostAdminPaymentsVaultsByVaultAddressPauseResponse, type PostAdminPaymentsVaultsByVaultAddressPauseResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponses, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideData, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideError, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideErrors, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, type PostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponses, type PostAdminTronCashoutsByIdApproveData, type PostAdminTronCashoutsByIdApproveError, type PostAdminTronCashoutsByIdApproveErrors, type PostAdminTronCashoutsByIdApproveResponse, type PostAdminTronCashoutsByIdApproveResponses, type PostAdminTronCashoutsByIdRejectData, type PostAdminTronCashoutsByIdRejectError, type PostAdminTronCashoutsByIdRejectErrors, type PostAdminTronCashoutsByIdRejectResponse, type PostAdminTronCashoutsByIdRejectResponses, type PostAuthRequestPasswordResetData, type PostAuthRequestPasswordResetError, type PostAuthRequestPasswordResetErrors, type PostAuthRequestPasswordResetResponse, type PostAuthRequestPasswordResetResponses, type PostAuthResetPasswordData, type PostAuthResetPasswordError, type PostAuthResetPasswordErrors, type PostAuthResetPasswordResponse, type PostAuthResetPasswordResponses, type PostAuthSendVerificationEmailData, type PostAuthSendVerificationEmailError, type PostAuthSendVerificationEmailErrors, type PostAuthSendVerificationEmailResponse, type PostAuthSendVerificationEmailResponses, type PostAuthSignInEmailData, type PostAuthSignInEmailError, type PostAuthSignInEmailErrors, type PostAuthSignInEmailResponse, type PostAuthSignInEmailResponses, type PostAuthSignOutData, type PostAuthSignOutResponse, type PostAuthSignOutResponses, type PostAuthSignUpEmailData, type PostAuthSignUpEmailError, type PostAuthSignUpEmailErrors, type PostAuthSignUpEmailResponse, type PostAuthSignUpEmailResponses, type PostMeAppsByAppIdReportData, type PostMeAppsByAppIdReportError, type PostMeAppsByAppIdReportErrors, type PostMeAppsByAppIdReportResponse, type PostMeAppsByAppIdReportResponses, type PostMeAvatarData, type PostMeAvatarError, type PostMeAvatarErrors, type PostMeAvatarResponse, type PostMeAvatarResponses, type PostMeBuildInPublicBySlugCommentsByUpdateIdData, type PostMeBuildInPublicBySlugCommentsByUpdateIdError, type PostMeBuildInPublicBySlugCommentsByUpdateIdErrors, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponse, type PostMeBuildInPublicBySlugCommentsByUpdateIdResponses, type PostMeBuildInPublicBySlugInterestData, type PostMeBuildInPublicBySlugInterestError, type PostMeBuildInPublicBySlugInterestErrors, type PostMeBuildInPublicBySlugInterestResponse, type PostMeBuildInPublicBySlugInterestResponses, type PostMeBuildInPublicBySlugReactionsByUpdateIdData, type PostMeBuildInPublicBySlugReactionsByUpdateIdError, type PostMeBuildInPublicBySlugReactionsByUpdateIdErrors, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponse, type PostMeBuildInPublicBySlugReactionsByUpdateIdResponses, type PostMeBuildInPublicBySlugSubscriptionData, type PostMeBuildInPublicBySlugSubscriptionError, type PostMeBuildInPublicBySlugSubscriptionErrors, type PostMeBuildInPublicBySlugSubscriptionResponse, type PostMeBuildInPublicBySlugSubscriptionResponses, type PostMeConsentData, type PostMeConsentError, type PostMeConsentErrors, type PostMeConsentResponse, type PostMeConsentResponses, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses, type PostMeDeveloperAppsByAppIdBipUpdatesData, type PostMeDeveloperAppsByAppIdBipUpdatesError, type PostMeDeveloperAppsByAppIdBipUpdatesErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaData, type PostMeDeveloperAppsByAppIdBipUpdatesMediaError, type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, type PostMeDeveloperAppsByAppIdBipUpdatesMediaResponses, type PostMeDeveloperAppsByAppIdBipUpdatesResponse, type PostMeDeveloperAppsByAppIdBipUpdatesResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsData, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsError, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponses, type PostMeDeveloperAppsByAppIdInventoryItemsData, type PostMeDeveloperAppsByAppIdInventoryItemsError, type PostMeDeveloperAppsByAppIdInventoryItemsErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteData, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteError, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteErrors, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, type PostMeDeveloperAppsByAppIdInventoryItemsQuoteResponses, type PostMeDeveloperAppsByAppIdInventoryItemsResponse, type PostMeDeveloperAppsByAppIdInventoryItemsResponses, type PostMeDeveloperAppsByAppIdPageBannerData, type PostMeDeveloperAppsByAppIdPageBannerError, type PostMeDeveloperAppsByAppIdPageBannerErrors, type PostMeDeveloperAppsByAppIdPageBannerResponse, type PostMeDeveloperAppsByAppIdPageBannerResponses, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageBipUnpublishData, type PostMeDeveloperAppsByAppIdPageBipUnpublishError, type PostMeDeveloperAppsByAppIdPageBipUnpublishErrors, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponse, type PostMeDeveloperAppsByAppIdPageBipUnpublishResponses, type PostMeDeveloperAppsByAppIdPageGalleryData, type PostMeDeveloperAppsByAppIdPageGalleryError, type PostMeDeveloperAppsByAppIdPageGalleryErrors, type PostMeDeveloperAppsByAppIdPageGalleryResponse, type PostMeDeveloperAppsByAppIdPageGalleryResponses, type PostMeDeveloperAppsByAppIdPageSubmitForReviewData, type PostMeDeveloperAppsByAppIdPageSubmitForReviewError, type PostMeDeveloperAppsByAppIdPageSubmitForReviewErrors, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, type PostMeDeveloperAppsByAppIdPageSubmitForReviewResponses, type PostMeDeveloperAppsByAppIdPageThumbnailData, type PostMeDeveloperAppsByAppIdPageThumbnailError, type PostMeDeveloperAppsByAppIdPageThumbnailErrors, type PostMeDeveloperAppsByAppIdPageThumbnailResponse, type PostMeDeveloperAppsByAppIdPageThumbnailResponses, type PostMeDeveloperAppsByAppIdPageThumbnailVideoData, type PostMeDeveloperAppsByAppIdPageThumbnailVideoError, type PostMeDeveloperAppsByAppIdPageThumbnailVideoErrors, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, type PostMeDeveloperAppsByAppIdPageThumbnailVideoResponses, type PostMeDeveloperAppsByAppIdPageUnpublishData, type PostMeDeveloperAppsByAppIdPageUnpublishError, type PostMeDeveloperAppsByAppIdPageUnpublishErrors, type PostMeDeveloperAppsByAppIdPageUnpublishResponse, type PostMeDeveloperAppsByAppIdPageUnpublishResponses, type PostMeDeveloperAppsByIdLogoData, type PostMeDeveloperAppsByIdLogoError, type PostMeDeveloperAppsByIdLogoErrors, type PostMeDeveloperAppsByIdLogoResponse, type PostMeDeveloperAppsByIdLogoResponses, type PostMeDeveloperAppsByIdParticipantsData, type PostMeDeveloperAppsByIdParticipantsError, type PostMeDeveloperAppsByIdParticipantsErrors, type PostMeDeveloperAppsByIdParticipantsResponse, type PostMeDeveloperAppsByIdParticipantsResponses, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretData, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretError, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretErrors, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, type PostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponses, type PostMeDeveloperAppsByIdProductionRequestData, type PostMeDeveloperAppsByIdProductionRequestError, type PostMeDeveloperAppsByIdProductionRequestErrors, type PostMeDeveloperAppsByIdProductionRequestResponse, type PostMeDeveloperAppsByIdProductionRequestResponses, type PostMeDeveloperAppsByIdWalletsByChainConsolidateData, type PostMeDeveloperAppsByIdWalletsByChainConsolidateError, type PostMeDeveloperAppsByIdWalletsByChainConsolidateErrors, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, type PostMeDeveloperAppsByIdWalletsByChainConsolidateResponses, type PostMeDeveloperAppsByIdWalletsByChainProvisionData, type PostMeDeveloperAppsByIdWalletsByChainProvisionError, type PostMeDeveloperAppsByIdWalletsByChainProvisionErrors, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponse, type PostMeDeveloperAppsByIdWalletsByChainProvisionResponses, type PostMeDeveloperAppsByIdWalletsByChainWithdrawData, type PostMeDeveloperAppsByIdWalletsByChainWithdrawError, type PostMeDeveloperAppsByIdWalletsByChainWithdrawErrors, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, type PostMeDeveloperAppsByIdWalletsByChainWithdrawResponses, type PostMeDeveloperAppsData, type PostMeDeveloperAppsError, type PostMeDeveloperAppsErrors, type PostMeDeveloperAppsResponse, type PostMeDeveloperAppsResponses, type PostMeDeveloperInvitesByAppIdAcceptData, type PostMeDeveloperInvitesByAppIdAcceptError, type PostMeDeveloperInvitesByAppIdAcceptErrors, type PostMeDeveloperInvitesByAppIdAcceptResponse, type PostMeDeveloperInvitesByAppIdAcceptResponses, type PostMeDeveloperInvitesByAppIdDeclineData, type PostMeDeveloperInvitesByAppIdDeclineError, type PostMeDeveloperInvitesByAppIdDeclineErrors, type PostMeDeveloperInvitesByAppIdDeclineResponse, type PostMeDeveloperInvitesByAppIdDeclineResponses, type PostMeDeveloperKeysData, type PostMeDeveloperKeysError, type PostMeDeveloperKeysErrors, type PostMeDeveloperKeysResponse, type PostMeDeveloperKeysResponses, type PostMeDeveloperProfileLogoData, type PostMeDeveloperProfileLogoError, type PostMeDeveloperProfileLogoErrors, type PostMeDeveloperProfileLogoResponse, type PostMeDeveloperProfileLogoResponses, type PostMeDeveloperRequestData, type PostMeDeveloperRequestError, type PostMeDeveloperRequestErrors, type PostMeDeveloperRequestLogoData, type PostMeDeveloperRequestLogoError, type PostMeDeveloperRequestLogoErrors, type PostMeDeveloperRequestLogoResponse, type PostMeDeveloperRequestLogoResponses, type PostMeDeveloperRequestResponse, type PostMeDeveloperRequestResponses, type PostMeDmKeyBackupData, type PostMeDmKeyBackupError, type PostMeDmKeyBackupErrors, type PostMeDmKeyBackupResponse, type PostMeDmKeyBackupResponses, type PostMeDmKeyBackupUnlockData, type PostMeDmKeyBackupUnlockError, type PostMeDmKeyBackupUnlockErrors, type PostMeDmKeyBackupUnlockResponse, type PostMeDmKeyBackupUnlockResponses, type PostMeInventoryNftTransfersData, type PostMeInventoryNftTransfersError, type PostMeInventoryNftTransfersErrors, type PostMeInventoryNftTransfersQuoteData, type PostMeInventoryNftTransfersQuoteError, type PostMeInventoryNftTransfersQuoteErrors, type PostMeInventoryNftTransfersQuoteResponse, type PostMeInventoryNftTransfersQuoteResponses, type PostMeInventoryNftTransfersResponse, type PostMeInventoryNftTransfersResponses, type PostMeInventoryPermitsByPermitIdRedeemData, type PostMeInventoryPermitsByPermitIdRedeemError, type PostMeInventoryPermitsByPermitIdRedeemErrors, type PostMeInventoryPermitsByPermitIdRedeemResponse, type PostMeInventoryPermitsByPermitIdRedeemResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteData, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteError, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponses, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitData, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitError, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitErrors, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, type PostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponses, type PostMeInventoryVaultPermitsByPermitIdSignData, type PostMeInventoryVaultPermitsByPermitIdSignError, type PostMeInventoryVaultPermitsByPermitIdSignErrors, type PostMeInventoryVaultPermitsByPermitIdSignResponse, type PostMeInventoryVaultPermitsByPermitIdSignResponses, type PostMeNotificationsMarkAllReadData, type PostMeNotificationsMarkAllReadError, type PostMeNotificationsMarkAllReadErrors, type PostMeNotificationsMarkAllReadResponse, type PostMeNotificationsMarkAllReadResponses, type PostMePlaySessionsOpenData, type PostMePlaySessionsOpenError, type PostMePlaySessionsOpenErrors, type PostMePlaySessionsOpenResponse, type PostMePlaySessionsOpenResponses, type PostMePresenceHeartbeatData, type PostMePresenceHeartbeatError, type PostMePresenceHeartbeatErrors, type PostMePresenceHeartbeatResponse, type PostMePresenceHeartbeatResponses, type PostMeReferralBindData, type PostMeReferralBindError, type PostMeReferralBindErrors, type PostMeReferralBindResponse, type PostMeReferralBindResponses, type PostMeReferralCodeData, type PostMeReferralCodeError, type PostMeReferralCodeErrors, type PostMeReferralCodeResponse, type PostMeReferralCodeResponses, type PostMeReviewsBySlugCommentsByReviewIdData, type PostMeReviewsBySlugCommentsByReviewIdError, type PostMeReviewsBySlugCommentsByReviewIdErrors, type PostMeReviewsBySlugCommentsByReviewIdResponse, type PostMeReviewsBySlugCommentsByReviewIdResponses, type PostMeReviewsBySlugReactionsByReviewIdData, type PostMeReviewsBySlugReactionsByReviewIdError, type PostMeReviewsBySlugReactionsByReviewIdErrors, type PostMeReviewsBySlugReactionsByReviewIdResponse, type PostMeReviewsBySlugReactionsByReviewIdResponses, type PostMeReviewsBySlugTipsByReviewIdData, type PostMeReviewsBySlugTipsByReviewIdError, type PostMeReviewsBySlugTipsByReviewIdErrors, type PostMeReviewsBySlugTipsByReviewIdResponse, type PostMeReviewsBySlugTipsByReviewIdResponses, type PostMeThreadsByIdAttachmentsData, type PostMeThreadsByIdAttachmentsError, type PostMeThreadsByIdAttachmentsErrors, type PostMeThreadsByIdAttachmentsResponse, type PostMeThreadsByIdAttachmentsResponses, type PostMeThreadsByIdHideData, type PostMeThreadsByIdHideError, type PostMeThreadsByIdHideErrors, type PostMeThreadsByIdHideResponse, type PostMeThreadsByIdHideResponses, type PostMeThreadsByIdInviteData, type PostMeThreadsByIdInviteError, type PostMeThreadsByIdInviteErrors, type PostMeThreadsByIdInviteResponse, type PostMeThreadsByIdInviteResponses, type PostMeThreadsByIdLeaveData, type PostMeThreadsByIdLeaveError, type PostMeThreadsByIdLeaveErrors, type PostMeThreadsByIdLeaveResponse, type PostMeThreadsByIdLeaveResponses, type PostMeThreadsByIdLogoData, type PostMeThreadsByIdLogoError, type PostMeThreadsByIdLogoErrors, type PostMeThreadsByIdLogoResponse, type PostMeThreadsByIdLogoResponses, type PostMeThreadsByIdMessagesData, type PostMeThreadsByIdMessagesError, type PostMeThreadsByIdMessagesErrors, type PostMeThreadsByIdMessagesResponse, type PostMeThreadsByIdMessagesResponses, type PostMeThreadsByIdPinData, type PostMeThreadsByIdPinError, type PostMeThreadsByIdPinErrors, type PostMeThreadsByIdPinResponse, type PostMeThreadsByIdPinResponses, type PostMeThreadsByIdReadData, type PostMeThreadsByIdReadError, type PostMeThreadsByIdReadErrors, type PostMeThreadsByIdReadResponse, type PostMeThreadsByIdReadResponses, type PostMeThreadsData, type PostMeThreadsDmKeysData, type PostMeThreadsDmKeysError, type PostMeThreadsDmKeysErrors, type PostMeThreadsDmKeysResponse, type PostMeThreadsDmKeysResponses, type PostMeThreadsError, type PostMeThreadsErrors, type PostMeThreadsResponse, type PostMeThreadsResponses, type PostMeWalletsByAddressDelegateData, type PostMeWalletsByAddressDelegateError, type PostMeWalletsByAddressDelegateErrors, type PostMeWalletsByAddressDelegateResponse, type PostMeWalletsByAddressDelegateResponses, type PostOauthAuthorizeConfirmData, type PostOauthAuthorizeConfirmError, type PostOauthAuthorizeConfirmErrors, type PostOauthAuthorizeConfirmResponse, type PostOauthAuthorizeConfirmResponses, type PostOauthInventoryMintData, type PostOauthInventoryMintError, type PostOauthInventoryMintErrors, type PostOauthInventoryMintResponse, type PostOauthInventoryMintResponses, type PostOauthPaymentsCancelPotData, type PostOauthPaymentsCancelPotError, type PostOauthPaymentsCancelPotErrors, type PostOauthPaymentsCancelPotResponse, type PostOauthPaymentsCancelPotResponses, type PostOauthPaymentsChargeData, type PostOauthPaymentsChargeError, type PostOauthPaymentsChargeErrors, type PostOauthPaymentsChargeResponse, type PostOauthPaymentsChargeResponses, type PostOauthPaymentsDistributeData, type PostOauthPaymentsDistributeError, type PostOauthPaymentsDistributeErrors, type PostOauthPaymentsDistributeResponse, type PostOauthPaymentsDistributeResponses, type PostOauthPaymentsIntentByIdCompleteData, type PostOauthPaymentsIntentByIdCompleteError, type PostOauthPaymentsIntentByIdCompleteErrors, type PostOauthPaymentsIntentByIdCompleteResponse, type PostOauthPaymentsIntentByIdCompleteResponses, type PostOauthPaymentsIntentByIdDenyData, type PostOauthPaymentsIntentByIdDenyError, type PostOauthPaymentsIntentByIdDenyErrors, type PostOauthPaymentsIntentByIdDenyResponse, type PostOauthPaymentsIntentByIdDenyResponses, type PostOauthPaymentsIntentByIdSignData, type PostOauthPaymentsIntentByIdSignError, type PostOauthPaymentsIntentByIdSignErrors, type PostOauthPaymentsIntentByIdSignResponse, type PostOauthPaymentsIntentByIdSignResponses, type PostOauthPaymentsIntentByIdSolanaCompleteData, type PostOauthPaymentsIntentByIdSolanaCompleteError, type PostOauthPaymentsIntentByIdSolanaCompleteErrors, type PostOauthPaymentsIntentByIdSolanaCompleteResponse, type PostOauthPaymentsIntentByIdSolanaCompleteResponses, type PostOauthPaymentsIntentByIdSolanaPrepareData, type PostOauthPaymentsIntentByIdSolanaPrepareError, type PostOauthPaymentsIntentByIdSolanaPrepareErrors, type PostOauthPaymentsIntentByIdSolanaPrepareResponse, type PostOauthPaymentsIntentByIdSolanaPrepareResponses, type PostOauthPaymentsPayoutData, type PostOauthPaymentsPayoutError, type PostOauthPaymentsPayoutErrors, type PostOauthPaymentsPayoutResponse, type PostOauthPaymentsPayoutResponses, type PostOauthPaymentsTronChargeData, type PostOauthPaymentsTronChargeDirectData, type PostOauthPaymentsTronChargeDirectError, type PostOauthPaymentsTronChargeDirectErrors, type PostOauthPaymentsTronChargeDirectResponse, type PostOauthPaymentsTronChargeDirectResponses, type PostOauthPaymentsTronChargeError, type PostOauthPaymentsTronChargeErrors, type PostOauthPaymentsTronChargeResponse, type PostOauthPaymentsTronChargeResponses, type PostOauthPaymentsTronDistributeData, type PostOauthPaymentsTronDistributeError, type PostOauthPaymentsTronDistributeErrors, type PostOauthPaymentsTronDistributeResponse, type PostOauthPaymentsTronDistributeResponses, type PostOauthPaymentsTronIntentByIdCompleteData, type PostOauthPaymentsTronIntentByIdCompleteError, type PostOauthPaymentsTronIntentByIdCompleteErrors, type PostOauthPaymentsTronIntentByIdCompleteResponse, type PostOauthPaymentsTronIntentByIdCompleteResponses, type PostOauthPaymentsTronIntentByIdDenyData, type PostOauthPaymentsTronIntentByIdDenyError, type PostOauthPaymentsTronIntentByIdDenyErrors, type PostOauthPaymentsTronIntentByIdDenyResponse, type PostOauthPaymentsTronIntentByIdDenyResponses, type PostOauthPlaySessionsConfirmData, type PostOauthPlaySessionsConfirmError, type PostOauthPlaySessionsConfirmErrors, type PostOauthPlaySessionsConfirmResponse, type PostOauthPlaySessionsConfirmResponses, type PostOauthPlaySessionsEndData, type PostOauthPlaySessionsEndError, type PostOauthPlaySessionsEndErrors, type PostOauthPlaySessionsEndResponse, type PostOauthPlaySessionsEndResponses, type PostOauthPlaySessionsHeartbeatData, type PostOauthPlaySessionsHeartbeatError, type PostOauthPlaySessionsHeartbeatErrors, type PostOauthPlaySessionsHeartbeatResponse, type PostOauthPlaySessionsHeartbeatResponses, type PostOauthRegisterData, type PostOauthRegisterError, type PostOauthRegisterErrors, type PostOauthRegisterResponse, type PostOauthRegisterResponses, type PostOauthRevokeData, type PostOauthRevokeError, type PostOauthRevokeErrors, type PostOauthRevokeResponses, type PostOauthTokenData, type PostOauthTokenError, type PostOauthTokenErrors, type PostOauthTokenResponse, type PostOauthTokenResponses, type PostPaymentsAppealsByAppealIdRoomAttachmentsData, type PostPaymentsAppealsByAppealIdRoomAttachmentsError, type PostPaymentsAppealsByAppealIdRoomAttachmentsErrors, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponse, type PostPaymentsAppealsByAppealIdRoomAttachmentsResponses, type PostPaymentsAppealsByAppealIdRoomMessagesData, type PostPaymentsAppealsByAppealIdRoomMessagesError, type PostPaymentsAppealsByAppealIdRoomMessagesErrors, type PostPaymentsAppealsByAppealIdRoomMessagesResponse, type PostPaymentsAppealsByAppealIdRoomMessagesResponses, type PostPaymentsAppealsData, type PostPaymentsAppealsError, type PostPaymentsAppealsErrors, type PostPaymentsAppealsPotLegData, type PostPaymentsAppealsPotLegError, type PostPaymentsAppealsPotLegErrors, type PostPaymentsAppealsPotLegResponse, type PostPaymentsAppealsPotLegResponses, type PostPaymentsAppealsResponse, type PostPaymentsAppealsResponses, type PostPaymentsMeMoonpayBuyUrlData, type PostPaymentsMeMoonpayBuyUrlError, type PostPaymentsMeMoonpayBuyUrlErrors, type PostPaymentsMeMoonpayBuyUrlResponse, type PostPaymentsMeMoonpayBuyUrlResponses, type PostPaymentsMeMoonpaySellUrlData, type PostPaymentsMeMoonpaySellUrlError, type PostPaymentsMeMoonpaySellUrlErrors, type PostPaymentsMeMoonpaySellUrlResponse, type PostPaymentsMeMoonpaySellUrlResponses, type PostPaymentsMeTronCashoutsData, type PostPaymentsMeTronCashoutsError, type PostPaymentsMeTronCashoutsErrors, type PostPaymentsMeTronCashoutsResponse, type PostPaymentsMeTronCashoutsResponses, type PostPaymentsMeTronConnectData, type PostPaymentsMeTronConnectError, type PostPaymentsMeTronConnectErrors, type PostPaymentsMeTronConnectResponse, type PostPaymentsMeTronConnectResponses, type PostPaymentsMeTronDepositData, type PostPaymentsMeTronDepositError, type PostPaymentsMeTronDepositErrors, type PostPaymentsMeTronDepositResponse, type PostPaymentsMeTronDepositResponses, type PostPaymentsMeTronTransferChallengeData, type PostPaymentsMeTronTransferChallengeError, type PostPaymentsMeTronTransferChallengeErrors, type PostPaymentsMeTronTransferChallengeResponse, type PostPaymentsMeTronTransferChallengeResponses, type PostPaymentsMeTronTransferData, type PostPaymentsMeTronTransferError, type PostPaymentsMeTronTransferErrors, type PostPaymentsMeTronTransferResponse, type PostPaymentsMeTronTransferResponses, type PostUsersByIdFollowData, type PostUsersByIdFollowError, type PostUsersByIdFollowErrors, type PostUsersByIdFollowResponse, type PostUsersByIdFollowResponses, type PostUsersByIdFriendData, type PostUsersByIdFriendError, type PostUsersByIdFriendErrors, type PostUsersByIdFriendResponse, type PostUsersByIdFriendResponses, type PresenceStatusMode, type ProfileCounts, type ProfileRecentReview, type ProfileStats, type ProfileTopGame, type ProfileUpdate, type ProjectDescription, type PublicAppPage, type PublicAppPageStudio, type PublicBipPage, type PublicDeveloperApp, type PublicProfile, type PublicProfileDeveloper, type PublishDmKeyBody, type PurposeHeader, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyData, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyError, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyErrors, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, type PutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponses, type PutMeDeveloperAppsByIdKeysByEnvData, type PutMeDeveloperAppsByIdKeysByEnvError, type PutMeDeveloperAppsByIdKeysByEnvErrors, type PutMeDeveloperAppsByIdKeysByEnvResponse, type PutMeDeveloperAppsByIdKeysByEnvResponses, type PutMeDmKeyData, type PutMeDmKeyError, type PutMeDmKeyErrors, type PutMeDmKeyResponse, type PutMeDmKeyResponses, type PutMeReviewsBySlugData, type PutMeReviewsBySlugError, type PutMeReviewsBySlugErrors, type PutMeReviewsBySlugResponse, type PutMeReviewsBySlugResponses, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiData, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiError, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiErrors, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, type PutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponses, type PutPaymentsMeTronSecurityData, type PutPaymentsMeTronSecurityError, type PutPaymentsMeTronSecurityErrors, type PutPaymentsMeTronSecurityResponse, type PutPaymentsMeTronSecurityResponses, type RaiseLimitContextResponse, type ReactionAggregate, type ReactionEmoji, type ReactionMutationResponse, type ReferralBindRequest, type ReferralBindResponse, type ReferralCodeResponse, type ReferralEarningTotal, type ReferralOverview, type ReferralPreviewResponse, type ReferralReferrer, type RegenerateDeveloperAppKeyResponse, type RegenerateDeveloperAppWebhookSecretResponse, type Relationship, type RequestPasswordResetRequest, type RequestPasswordResetResponse, type ResetPasswordRequest, type ResetPasswordResponse, type Review, type ReviewAggregate, type ReviewAppPage, type ReviewAuthor, type ReviewBody, type ReviewComment, type ReviewCommentBody, type ReviewCommentListResponse, type ReviewDeveloperRequest, type ReviewDeveloperRequestResponse, type ReviewEligibilityReason, type ReviewListResponse, type ReviewReactionCounts, type ReviewRecommended, type ReviewReply, type ReviewReplyBody, type ReviewReplyResponse, type ReviewSort, type ReviewSummaryLabel, type ReviewVote, type ReviewerStats, type RotateProcessorTreasuryRequest, type SendMessageBody, type SendMessageText, type SendVerificationEmailRequest, type SendVerificationEmailResponse, type SetBipUpdateReactionRequest, type SetBipUpdateReactionResponse, type SetDefaultWithdrawLockRequest, type SetOperatorRequest, type SetProcessorWhitelistRequest, type SetReviewReactionRequest, type SetReviewReactionResponse, type SetWithdrawLockOverrideRequest, type SignInEmailRequest, type SignInEmailResponse, type SignOutResponse, type SignUpEmailRequest, type SignUpEmailResponse, type SocialAccount, type SocialActionAck, type SocialListResponse, type SubmitAppContentReportRequest, type SubmitAppContentReportResponse, type TeamName, type ThreadDescription, type ThreadDmKeyEntry, type ThreadLastMessagePreview, type ThreadListResponse, type ThreadLogoUrl, type ThreadParticipant, type ThreadSummary, type ThreadTitle, type TipReviewRequest, type TipReviewResponse, type TronBalanceResponse, type TronCapCents, type TronCashoutCreateRequest, type TronCashoutItem, type TronCashoutListResponse, type TronChargeCompleted, type TronChargeInsufficient, type TronChargeRedirect, type TronChargeRequest, type TronChargeResponse, type TronConnectOnboardingResponse, type TronDepositRequest, type TronDepositResponse, type TronDirectChargeCompleted, type TronDirectChargeInsufficient, type TronDirectChargeRedirect, type TronDirectChargeRequest, type TronDirectChargeResponse, type TronDistributeRequest, type TronDistributeResponse, type TronGameBalanceResponse, type TronLedgerEntry, type TronLedgerResponse, type TronPaymentAuthorizationItem, type TronPaymentIntentContext, type TronPaymentIntentResolveInsufficient, type TronPaymentIntentResolveRedirect, type TronPaymentIntentResolveResponse, type TronSecuritySetting, type TronTransferChallengeNotRequired, type TronTransferChallengeRequest, type TronTransferChallengeRequired, type TronTransferChallengeResponse, type TronTransferRequest, type TronTransferResponse, type UpdateAdminRoleRequest, type UpdateAppContentReportStatusRequest, type UpdateAppFeeConfigRequest, type UpdateAppPage, type UpdateAppPaymentAuthorization, type UpdateBipUpdateRequest, type UpdateDeveloperApp, type UpdateDeveloperProfile, type UpdateParticipantRoleBody, type UpdatePlatformFeesRequest, type UpdatePlatformFeesResponse, type UpdateThreadSettingsBody, type UpdateTronPaymentAuthorization, type UploadAttachmentResponse, type UpsertReviewReplyRequest, type UpsertReviewRequest, type UserSearchResponse, type UserSearchResult, type Username, type VerifyEmailResponse, type WalletAppLink, type WalletBalances, type WalletChainBalance, type WalletChainList, type WalletDelegationCaps, type WalletDelegationMode, type WalletDelegationStatus, type WalletItem, type WalletLabel, type WalletLabelUpdate, type WalletLabelUpdateResponse, type WalletListResponse, type WebPresenceHeartbeatAck, type WebsiteUrl, type XHandle, ZodError, z, zAcceptedCurrencies, zAcceptedNetworks, zActivityResponse, zActivityRow, zActivityRowAppeal, zActivityRowCreditTransferred, zActivityRowMaturedWithdrawal, zActivityRowMoonpayBuy, zActivityRowMoonpaySell, zActivityRowNftCharge, zActivityRowPayment, zActivityRowPaymentAutoclaim, zActivityRowPaymentWithdrawal, zActivityRowPayoutSent, zActivityRowPotLeg, zActivityRowReferralEarning, zActivityRowSolanaPotLeg, zActivityRowSolanaStake, zActivityRowTronCashout, zActivityRowTronDeposit, zActivityRowTronPot, zActivityRowTronTransfer, zActivityTronInvolvedUser, zAddAdminRequest, zAdminActivePlayer, zAdminActivePlayersResponse, zAdminAppContentReportItem, zAdminAppContentReportListResponse, zAdminAppPageBipStatusResponse, zAdminAppPageDiffField, zAdminAppPageDiffResponse, zAdminAppPageItem, zAdminAppPageListResponse, zAdminAppPageStatusResponse, zAdminAuditListItem, zAdminAuditListResponse, zAdminDeveloperAppItem, zAdminDeveloperListItem, zAdminDeveloperListResponse, zAdminMutationResponse, zAdminRole, zAdminRoleChangeResponse, zAdminTronCashoutItem, zAdminTronCashoutListResponse, zAdminTronCashoutRejectRequest, zAdminUser, zAdminUserBanRequest, zAdminUserBanResponse, zAdminUserListItem, zAdminUserListResponse, zAppContentReport, zAppContentReportCategory, zAppContentReportListResponse, zAppContentReportStatus, zAppFeeConfigResponse, zAppFriendListResponse, zAppPageAgeRating, zAppPageApprovedNotificationPayload, zAppPageBipState, zAppPageBipToggle, zAppPageCategories, zAppPageChapter, zAppPageChapters, zAppPageDraft, zAppPageGallery, zAppPageGalleryItem, zAppPageGalleryUploadResponse, zAppPageGameType, zAppPageLanguages, zAppPageLink, zAppPageLinks, zAppPagePaymentsMode, zAppPagePlatforms, zAppPageRejectedNotificationPayload, zAppPageReleaseStatus, zAppPageSlug, zAppPageTagline, zAppParticipantAcceptedNotificationPayload, zAppParticipantInviteNotificationPayload, zAppPaymentAuthorizationItem, zAppPlaytime, zAppealBlacklistAddRequest, zAppealBlacklistEntry, zAppealBlacklistListResponse, zAppealBlacklistRemoveRequest, zAppealBlacklistRemoveResponse, zAppealFileRequest, zAppealFileResponse, zAppealPotLegFileRequest, zAppealResolveRequest, zAppealResolveSignedResponse, zAppealRoomDetail, zAppealRoomMessage, zAppealRoomPostRequest, zAppealRoomPostResponse, zAppealRoomSenderRole, zAppealRoomSource, zAppealRoomStatus, zAppealRoomView, zAppealStatusRow, zAuthSession, zAuthUser, zBannerVariant, zBatchThreadDmKeysBody, zBatchThreadDmKeysResponse, zBearerToken, zBio, zBipEngagementResponse, zBipInterestCountResponse, zBipInterestRequest, zBipNowPlayableNotificationPayload, zBipSubscriptionRequest, zBipUpdate, zBipUpdateAttachment, zBipUpdateAttachments, zBipUpdateBody, zBipUpdateComment, zBipUpdateCommentBody, zBipUpdateCommentListResponse, zBipUpdateListResponse, zBipUpdateMediaUploadResponse, zBipUpdatePublishedNotificationPayload, zBipUpdateReactionCounts, zBipUpdateVote, zCalldataEnvelope, zConsentListResponse, zConsentRecordRequest, zConsentRow, zCreateBipUpdateCommentRequest, zCreateBipUpdateCommentResponse, zCreateBipUpdateRequest, zCreateDeveloperApiKey, zCreateDeveloperApiKeyResponse, zCreateDeveloperApp, zCreateDeveloperAppChain, zCreateDeveloperProductionRequest, zCreateDeveloperProductionRequestResponse, zCreateDeveloperRoleRequest, zCreateDirectThreadBody, zCreateGroupThreadBody, zCreateReviewCommentRequest, zCreateReviewCommentResponse, zCreateThreadResponse, zCreateWalletDelegation, zCreateWalletDelegationResponse, zDelegationSlippageBps, zDeleteAdminAdminsByIdPath, zDeleteAdminAdminsByIdResponse, zDeleteAdminPaymentsAppealBlacklistBody, zDeleteAdminPaymentsAppealBlacklistResponse, zDeleteBipUpdateCommentResponse, zDeleteBipUpdateResponse, zDeleteMeAvatarResponse, zDeleteMeBuildInPublicBySlugCommentsByCommentIdPath, zDeleteMeBuildInPublicBySlugCommentsByCommentIdResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zDeleteMeDeveloperAppsByAppIdPageBannerPath, zDeleteMeDeveloperAppsByAppIdPageBannerResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailResponse, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoPath, zDeleteMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zDeleteMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zDeleteMeDeveloperAppsByIdLogoPath, zDeleteMeDeveloperAppsByIdLogoResponse, zDeleteMeDeveloperAppsByIdParticipantsByUserIdPath, zDeleteMeDeveloperAppsByIdParticipantsByUserIdResponse, zDeleteMeDeveloperAppsByIdPath, zDeleteMeDeveloperAppsByIdResponse, zDeleteMeDeveloperKeysByIdPath, zDeleteMeDeveloperKeysByIdResponse, zDeleteMeDeveloperProfileLogoResponse, zDeleteMeDeveloperRequestLogoResponse, zDeleteMeFriendRequestsByIdPath, zDeleteMeFriendRequestsByIdResponse, zDeleteMeOauthPaymentAuthorizationsByConsentIdResponse, zDeleteMeResponse, zDeleteMeReviewsBySlugCommentsByCommentIdPath, zDeleteMeReviewsBySlugCommentsByCommentIdResponse, zDeleteMeReviewsBySlugPath, zDeleteMeReviewsBySlugResponse, zDeleteMeThreadsByIdLogoPath, zDeleteMeThreadsByIdLogoResponse, zDeleteMeThreadsByIdMessagesByMsgIdPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zDeleteMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zDeleteMeThreadsByIdMessagesByMsgIdResponse, zDeleteMeThreadsByIdParticipantsByUserIdPath, zDeleteMeThreadsByIdParticipantsByUserIdResponse, zDeleteMeThreadsByIdPath, zDeleteMeThreadsByIdPinPath, zDeleteMeThreadsByIdPinResponse, zDeleteMeThreadsByIdResponse, zDeleteMeWalletsByAddressDelegatePath, zDeleteMeWalletsByAddressDelegateResponse, zDeleteReviewCommentResponse, zDeleteUsersByIdFollowPath, zDeleteUsersByIdFollowResponse, zDeleteUsersByIdFriendPath, zDeleteUsersByIdFriendResponse, zDeleteWalletDelegationResponse, zDevAppealRow, zDevAppealsResponse, zDevPendingDepositRow, zDevPendingDepositsResponse, zDeveloperApiKeyItem, zDeveloperApiKeysResponse, zDeveloperAppAutoSweepRequest, zDeveloperAppAutoSweepResponse, zDeveloperAppBalanceItem, zDeveloperAppBalancesResponse, zDeveloperAppConsolidateResponse, zDeveloperAppEarningsBucket, zDeveloperAppEarningsResponse, zDeveloperAppIdResponse, zDeveloperAppItem, zDeveloperAppKeyItem, zDeveloperAppName, zDeveloperAppOverviewResponse, zDeveloperAppParticipant, zDeveloperAppParticipantsResponse, zDeveloperAppPayoutAddressItem, zDeveloperAppPlaytimeBucket, zDeveloperAppPlaytimeResponse, zDeveloperAppProvisionWalletResponse, zDeveloperAppTronBalanceResponse, zDeveloperAppWalletItem, zDeveloperAppWalletsResponse, zDeveloperAppWithdrawResponse, zDeveloperInvite, zDeveloperInvitesResponse, zDeveloperLogoUploadResponse, zDeveloperMeStatus, zDeveloperOkResponse, zDeveloperProductionRequestPayload, zDeveloperProfile, zDeveloperRequestItem, zDeveloperRequestSubject, zDeveloperRoleRequestPayload, zDeveloperTronBalanceSummaryResponse, zDirectThreadSummary, zDisplayName, zDmKeyAlgorithm, zDmKeyBackupOkResponse, zDmKeyBackupSetupBody, zDmKeyBackupStatusResponse, zDmKeyBackupUnlockBody, zDmKeyBackupUnlockResponse, zDmKeyResponse, zDmPublicKeyEntry, zDsarAccount, zDsarAuditEvent, zDsarConsent, zDsarExportResponse, zDsarMessage, zDsarRectifyRequest, zEarningsTimeseries, zEarningsTimeseriesBucket, zEditMessageBody, zEmbedOrigin, zErrorResponse, zFriendAcceptedNotificationPayload, zFriendListItem, zFriendListResponse, zFriendRequestAck, zFriendRequestDecision, zFriendRequestNotificationPayload, zGetAdminActivePlayersResponse, zGetAdminAdminsResponse, zGetAdminAppPagesByAppIdChangesPath, zGetAdminAppPagesByAppIdChangesResponse, zGetAdminAppPagesQuery, zGetAdminAppPagesResponse, zGetAdminAppsByAppIdFeeConfigPath, zGetAdminAppsByAppIdFeeConfigResponse, zGetAdminAuditQuery, zGetAdminAuditResponse, zGetAdminContentReportsQuery, zGetAdminContentReportsResponse, zGetAdminDeveloperRequestsQuery, zGetAdminDeveloperRequestsResponse, zGetAdminDevelopersResponse, zGetAdminPaymentsAppealBlacklistQuery, zGetAdminPaymentsAppealBlacklistResponse, zGetAdminPaymentsAppealsByAppealIdRoomPath, zGetAdminPaymentsAppealsByAppealIdRoomResponse, zGetAdminPaymentsAppealsQuery, zGetAdminPaymentsAppealsResponse, zGetAdminPlatformFeesResponse, zGetAdminTronCashoutsResponse, zGetAdminUsersQuery, zGetAdminUsersResponse, zGetAuthGetSessionResponse, zGetAuthVerifyEmailQuery, zGetAuthVerifyEmailResponse, zGetHealthResponse, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonPath, zGetInventoryMetadataErc1155ByTokenIdMetadataJsonResponse, zGetInventoryMetadataErc1155ContractJsonResponse, zGetInventoryMetadataErc721ByFilePath, zGetInventoryMetadataErc721ByFileResponse, zGetInventoryMetadataErc721ContractJsonResponse, zGetMeAppsByAppIdPlaytimePath, zGetMeAppsByAppIdPlaytimeResponse, zGetMeBuildInPublicBySlugEngagementPath, zGetMeBuildInPublicBySlugEngagementResponse, zGetMeBuildInPublicBySlugReactionsPath, zGetMeBuildInPublicBySlugReactionsResponse, zGetMeConsentResponse, zGetMeDataResponse, zGetMeDeveloperAppsByAppIdBipUpdatesPath, zGetMeDeveloperAppsByAppIdBipUpdatesQuery, zGetMeDeveloperAppsByAppIdBipUpdatesResponse, zGetMeDeveloperAppsByAppIdInventoryCollectionsPath, zGetMeDeveloperAppsByAppIdInventoryCollectionsResponse, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersPath, zGetMeDeveloperAppsByAppIdInventoryItemsByItemIdHoldersResponse, zGetMeDeveloperAppsByAppIdInventoryItemsPath, zGetMeDeveloperAppsByAppIdInventoryItemsResponse, zGetMeDeveloperAppsByAppIdPagePath, zGetMeDeveloperAppsByAppIdPageResponse, zGetMeDeveloperAppsByAppIdReviewsPath, zGetMeDeveloperAppsByAppIdReviewsQuery, zGetMeDeveloperAppsByAppIdReviewsResponse, zGetMeDeveloperAppsByIdActivityPath, zGetMeDeveloperAppsByIdActivityQuery, zGetMeDeveloperAppsByIdActivityResponse, zGetMeDeveloperAppsByIdBalancesPath, zGetMeDeveloperAppsByIdBalancesResponse, zGetMeDeveloperAppsByIdEarningsPath, zGetMeDeveloperAppsByIdEarningsQuery, zGetMeDeveloperAppsByIdEarningsResponse, zGetMeDeveloperAppsByIdOverviewPath, zGetMeDeveloperAppsByIdOverviewResponse, zGetMeDeveloperAppsByIdParticipantsPath, zGetMeDeveloperAppsByIdParticipantsResponse, zGetMeDeveloperAppsByIdPlaytimePath, zGetMeDeveloperAppsByIdPlaytimeQuery, zGetMeDeveloperAppsByIdPlaytimeResponse, zGetMeDeveloperAppsByIdReportsPath, zGetMeDeveloperAppsByIdReportsQuery, zGetMeDeveloperAppsByIdReportsResponse, zGetMeDeveloperAppsByIdTronBalancePath, zGetMeDeveloperAppsByIdTronBalanceResponse, zGetMeDeveloperAppsByIdWalletsPath, zGetMeDeveloperAppsByIdWalletsResponse, zGetMeDeveloperInvitesResponse, zGetMeDeveloperKeysResponse, zGetMeDeveloperPaymentsAppealsQuery, zGetMeDeveloperPaymentsAppealsResponse, zGetMeDeveloperPaymentsPendingDepositsQuery, zGetMeDeveloperPaymentsPendingDepositsResponse, zGetMeDeveloperPaymentsTronBalanceResponse, zGetMeDeveloperResponse, zGetMeDmKeyBackupResponse, zGetMeDmKeyResponse, zGetMeEarningsTimeseriesQuery, zGetMeEarningsTimeseriesResponse, zGetMeFriendsResponse, zGetMeGiphySearchQuery, zGetMeGiphySearchResponse, zGetMeInventoryPermitsResponse, zGetMeInventoryResponse, zGetMeInventoryVaultPermitsResponse, zGetMeInventoryVaultedResponse, zGetMeNotificationsResponse, zGetMeOauthConnectionsResponse, zGetMeOauthPaymentAuthorizationsResponse, zGetMeOauthTronAuthorizationsResponse, zGetMePlaytimeResponse, zGetMePlaytimeTimeseriesQuery, zGetMePlaytimeTimeseriesResponse, zGetMeReferralPreviewQuery, zGetMeReferralPreviewResponse, zGetMeReferralResponse, zGetMeReviewsBySlugPath, zGetMeReviewsBySlugReactionsPath, zGetMeReviewsBySlugReactionsResponse, zGetMeReviewsBySlugResponse, zGetMeSocialsResponse, zGetMeStatsResponse, zGetMeThreadsByIdDmKeyPath, zGetMeThreadsByIdDmKeyResponse, zGetMeThreadsByIdMessagesPath, zGetMeThreadsByIdMessagesQuery, zGetMeThreadsByIdMessagesResponse, zGetMeThreadsResponse, zGetMeWalletsByAddressDelegatePath, zGetMeWalletsByAddressDelegateResponse, zGetMeWalletsResponse, zGetOauthAuthorizeQuery, zGetOauthConsentByRequestPath, zGetOauthConsentByRequestResponse, zGetOauthFriendsResponse, zGetOauthInventoryResponse, zGetOauthInventoryVaultedResponse, zGetOauthPaymentsIntentByIdResponse, zGetOauthPaymentsLimitsResponse, zGetOauthPaymentsNotInvitedByClientIdPath, zGetOauthPaymentsNotInvitedByClientIdResponse, zGetOauthPaymentsPriceQuery, zGetOauthPaymentsPriceResponse, zGetOauthPaymentsStatusByIdResponse, zGetOauthPaymentsTronBalanceResponse, zGetOauthPaymentsTronIntentByIdResponse, zGetOauthRaiseLimitContextQuery, zGetOauthRaiseLimitContextResponse, zGetPaymentsAppealsByAppealIdRoomPath, zGetPaymentsAppealsByAppealIdRoomResponse, zGetPaymentsChainsResponse, zGetPaymentsMeActivityGroupByGroupIdPath, zGetPaymentsMeActivityGroupByGroupIdResponse, zGetPaymentsMeActivityQuery, zGetPaymentsMeActivityResponse, zGetPaymentsMeMoonpayAvailabilityResponse, zGetPaymentsMeOutstandingQuery, zGetPaymentsMeOutstandingResponse, zGetPaymentsMeQuery, zGetPaymentsMeResponse, zGetPaymentsMeTronCashoutsResponse, zGetPaymentsMeTronLedgerQuery, zGetPaymentsMeTronLedgerResponse, zGetPaymentsMeTronResponse, zGetPaymentsMeTronSecurityResponse, zGetPaymentsRatesResponse, zGetPublicAppsBySlugPath, zGetPublicAppsBySlugResponse, zGetPublicAppsBySlugReviewsByReviewIdCommentsPath, zGetPublicAppsBySlugReviewsByReviewIdCommentsQuery, zGetPublicAppsBySlugReviewsByReviewIdCommentsResponse, zGetPublicAppsBySlugReviewsPath, zGetPublicAppsBySlugReviewsQuery, zGetPublicAppsBySlugReviewsResponse, zGetPublicBuildInPublicBySlugInterestPath, zGetPublicBuildInPublicBySlugInterestResponse, zGetPublicBuildInPublicBySlugPath, zGetPublicBuildInPublicBySlugResponse, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsQuery, zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse, zGetPublicBuildInPublicBySlugUpdatesPath, zGetPublicBuildInPublicBySlugUpdatesQuery, zGetPublicBuildInPublicBySlugUpdatesResponse, zGetPublicBuildInPublicQuery, zGetPublicBuildInPublicResponse, zGetPublicLibraryQuery, zGetPublicLibraryResponse, zGetSessionResponse, zGetUserinfoResponse, zGetUsersByHandlePath, zGetUsersByHandleResponse, zGetUsersSearchQuery, zGetUsersSearchResponse, zGetWellKnownOauthAuthorizationServerResponse, zGiphySearchResponse, zGiphySearchResult, zGitHubUrl, zGroupParticipant, zGroupThreadMutationResponse, zGroupThreadSummary, zHealthResponse, zHideAppPage, zInventoryCollectionListResponse, zInventoryCollectionSummary, zInventoryContractMetadata, zInventoryHolding, zInventoryItemHolder, zInventoryItemHoldersResponse, zInventoryItemListResponse, zInventoryItemRecord, zInventoryItemRegistrationInput, zInventoryItemRegistrationResult, zInventoryItemRegistrationSpec, zInventoryItemStats, zInventoryListResponse, zInventoryMetadataAttribute, zInventoryMintPermitCreateInput, zInventoryMintPermitRecord, zInventoryNftTransferQuoteRequest, zInventoryNftTransferQuoteResponse, zInventoryNftTransferRequest, zInventoryNftTransferResponse, zInventoryPendingPermit, zInventoryPendingPermitListResponse, zInventoryPendingVaultPermit, zInventoryPendingVaultPermitListResponse, zInventoryPermitRedeemResult, zInventoryRegistrationQuote, zInventoryRelayedVaultQuoteResponse, zInventoryRelayedVaultSubmitRequest, zInventoryRelayedVaultSubmitResponse, zInventorySignedVaultPermit, zInventorySupplyType, zInventoryTokenMetadata, zInventoryVaultCustody, zInventoryVaultCustodyListResponse, zInventoryVaultForceWithdrawResponse, zInventoryVaultPermitCreateInput, zInventoryVaultPermitRecord, zInventoryWithdrawPermitCreateInput, zInviteDeveloperAppParticipant, zInviteParticipantsBody, zLibraryItem, zLibraryListResponse, zLibrarySort, zListAdminsResponse, zListAppPaymentAuthorizationsResponse, zListAppealsResponse, zListDeveloperRequestsResponse, zListOauthConnectionsResponse, zListTronPaymentAuthorizationsResponse, zMeStats, zMessageAttachment, zMessageAttachmentKind, zMessageBody, zMessageEnvelope, zMessageItem, zMessageLinkPreview, zMessageReplyPreview, zMessageTransactionNftTransfer, zMessageTransactionTronTransfer, zMessagesPageResponse, zMessagingOkResponse, zMintRequestInput, zMintRequestResult, zMoonpayAvailabilityResponse, zMoonpayBuyUrlRequest, zMoonpayBuyUrlResponse, zMoonpaySellUrlRequest, zMoonpaySellUrlResponse, zMyBipUpdateReaction, zMyBipUpdateReactionsResponse, zMyReviewReaction, zMyReviewReactionsResponse, zMyReviewResponse, zNotificationItem, zNotificationListResponse, zNotificationUpdate, zOauthAuthorizationServerMetadata, zOauthAuthorizeConfirm, zOauthAuthorizeConfirmResponse, zOauthClientId, zOauthClientRegistrationError, zOauthClientRegistrationRequest, zOauthClientRegistrationResponse, zOauthClientSecret, zOauthConnectionItem, zOauthConsentContext, zOauthErrorResponse, zOauthNotInvitedContext, zOauthPaymentCancelPotRequest, zOauthPaymentCancelPotResponse, zOauthPaymentChargeCompleted, zOauthPaymentChargeIdempotencyMismatch, zOauthPaymentChargeLimitExceeded, zOauthPaymentChargeRedirect, zOauthPaymentChargeRequest, zOauthPaymentChargeResponse, zOauthPaymentDistributeRequest, zOauthPaymentDistributeResponse, zOauthPaymentIntentComplete, zOauthPaymentIntentCompleteOffline, zOauthPaymentIntentCompleteSigned, zOauthPaymentIntentContext, zOauthPaymentIntentResolveResponse, zOauthPaymentIntentSignResponse, zOauthPaymentIntentSolanaCompleteRequest, zOauthPaymentIntentSolanaPrepareResponse, zOauthPaymentIntentStatus, zOauthPaymentLimitsResponse, zOauthPaymentMonthlyLimitCents, zOauthPaymentPayoutDirect, zOauthPaymentPayoutPull, zOauthPaymentPayoutRequest, zOauthPaymentPayoutResponse, zOauthPaymentPerTxLimitCents, zOauthPaymentPriceResponse, zOauthRedirectUri, zOauthRequestHandle, zOauthRevokeRequest, zOauthScopeString, zOauthState, zOauthTokenAuthorizationCodeRequest, zOauthTokenClientCredentialsRequest, zOauthTokenRefreshTokenRequest, zOauthTokenRequest, zOauthTokenResponse, zOauthUserInfoResponse, zOnlineStatus, zOutstandingByToken, zOutstandingResponse, zOwnReview, zParticipantRole, zPatchAdminAdminsByIdBody, zPatchAdminAdminsByIdPath, zPatchAdminAdminsByIdResponse, zPatchAdminAppsByAppIdFeeConfigBody, zPatchAdminAppsByAppIdFeeConfigPath, zPatchAdminAppsByAppIdFeeConfigResponse, zPatchAdminContentReportsByReportIdBody, zPatchAdminContentReportsByReportIdPath, zPatchAdminContentReportsByReportIdResponse, zPatchAdminDeveloperRequestsByIdBody, zPatchAdminDeveloperRequestsByIdPath, zPatchAdminDeveloperRequestsByIdResponse, zPatchAdminPlatformFeesBody, zPatchAdminPlatformFeesResponse, zPatchAdminUsersByIdBody, zPatchAdminUsersByIdPath, zPatchAdminUsersByIdResponse, zPatchMeBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdBody, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath, zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse, zPatchMeDeveloperAppsByAppIdPageBipBody, zPatchMeDeveloperAppsByAppIdPageBipPath, zPatchMeDeveloperAppsByAppIdPageBipResponse, zPatchMeDeveloperAppsByAppIdPageBody, zPatchMeDeveloperAppsByAppIdPagePath, zPatchMeDeveloperAppsByAppIdPageResponse, zPatchMeDeveloperAppsByIdBody, zPatchMeDeveloperAppsByIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdBody, zPatchMeDeveloperAppsByIdReportsByReportIdPath, zPatchMeDeveloperAppsByIdReportsByReportIdResponse, zPatchMeDeveloperAppsByIdResponse, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepBody, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepPath, zPatchMeDeveloperAppsByIdWalletsByChainAutoSweepResponse, zPatchMeDeveloperProfileBody, zPatchMeDeveloperProfileResponse, zPatchMeFriendRequestsByIdBody, zPatchMeFriendRequestsByIdPath, zPatchMeFriendRequestsByIdResponse, zPatchMeNotificationsByIdBody, zPatchMeNotificationsByIdPath, zPatchMeNotificationsByIdResponse, zPatchMeOauthPaymentAuthorizationsByConsentIdBody, zPatchMeOauthPaymentAuthorizationsByConsentIdResponse, zPatchMeOauthTronAuthorizationsByConsentIdBody, zPatchMeOauthTronAuthorizationsByConsentIdResponse, zPatchMeProfileBody, zPatchMeProfileResponse, zPatchMeResponse, zPatchMeThreadsByIdBody, zPatchMeThreadsByIdMessagesByMsgIdBody, zPatchMeThreadsByIdMessagesByMsgIdPath, zPatchMeThreadsByIdMessagesByMsgIdResponse, zPatchMeThreadsByIdParticipantsByUserIdRoleBody, zPatchMeThreadsByIdParticipantsByUserIdRolePath, zPatchMeThreadsByIdParticipantsByUserIdRoleResponse, zPatchMeThreadsByIdPath, zPatchMeThreadsByIdResponse, zPatchMeWalletsByAddressBody, zPatchMeWalletsByAddressPath, zPatchMeWalletsByAddressResponse, zPauseRequest, zPaymentChain, zPaymentChainsResponse, zPaymentHistoryResponse, zPaymentHistoryRow, zPaymentMetadata, zPaymentNetwork, zPaymentRatesResponse, zPinThreadResponse, zPkceCodeChallenge, zPkceCodeVerifier, zPlatformCurrency, zPlatformEnvironment, zPlatformFeeEnvelope, zPlatformFeesResponse, zPlaySessionAppId, zPlaySessionConfirmRequest, zPlaySessionConfirmResponse, zPlaySessionEndRequest, zPlaySessionEndResponse, zPlaySessionHeartbeatRequest, zPlaySessionHeartbeatResponse, zPlaySessionId, zPlaySessionOpenRequest, zPlaySessionOpenResponse, zPlaySessionUserId, zPlaytimeAppEntry, zPlaytimeOverview, zPlaytimeTimeseries, zPlaytimeTimeseriesBucket, zPostAdminAdminsBody, zPostAdminAdminsResponse, zPostAdminAppPagesByAppIdHideBipBody, zPostAdminAppPagesByAppIdHideBipPath, zPostAdminAppPagesByAppIdHideBipResponse, zPostAdminAppPagesByAppIdHideBody, zPostAdminAppPagesByAppIdHidePath, zPostAdminAppPagesByAppIdHideResponse, zPostAdminAppPagesByAppIdReviewBipBody, zPostAdminAppPagesByAppIdReviewBipPath, zPostAdminAppPagesByAppIdReviewBipResponse, zPostAdminAppPagesByAppIdReviewBody, zPostAdminAppPagesByAppIdReviewChangesBody, zPostAdminAppPagesByAppIdReviewChangesPath, zPostAdminAppPagesByAppIdReviewChangesResponse, zPostAdminAppPagesByAppIdReviewPath, zPostAdminAppPagesByAppIdReviewResponse, zPostAdminAppPagesByAppIdUnhideBipPath, zPostAdminAppPagesByAppIdUnhideBipResponse, zPostAdminAppPagesByAppIdUnhidePath, zPostAdminAppPagesByAppIdUnhideResponse, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawPath, zPostAdminInventoryVaultCustodyByCustodyIdForceWithdrawResponse, zPostAdminPaymentsAppealBlacklistBody, zPostAdminPaymentsAppealBlacklistResponse, zPostAdminPaymentsAppealsByAppealIdResolveBody, zPostAdminPaymentsAppealsByAppealIdResolvePath, zPostAdminPaymentsAppealsByAppealIdResolveResponse, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostAdminPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostAdminPaymentsAppealsByAppealIdRoomMessagesBody, zPostAdminPaymentsAppealsByAppealIdRoomMessagesPath, zPostAdminPaymentsAppealsByAppealIdRoomMessagesResponse, zPostAdminPaymentsProcessorsByProcessorIdTreasuryBody, zPostAdminPaymentsProcessorsByProcessorIdTreasuryPath, zPostAdminPaymentsProcessorsByProcessorIdTreasuryResponse, zPostAdminPaymentsProcessorsWhitelistBody, zPostAdminPaymentsProcessorsWhitelistResponse, zPostAdminPaymentsVaultsByVaultAddressOperatorBody, zPostAdminPaymentsVaultsByVaultAddressOperatorPath, zPostAdminPaymentsVaultsByVaultAddressOperatorResponse, zPostAdminPaymentsVaultsByVaultAddressPauseBody, zPostAdminPaymentsVaultsByVaultAddressPausePath, zPostAdminPaymentsVaultsByVaultAddressPauseResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultPath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockDefaultResponse, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideBody, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverridePath, zPostAdminPaymentsVaultsByVaultAddressWithdrawLockOverrideResponse, zPostAdminTronCashoutsByIdApproveResponse, zPostAdminTronCashoutsByIdRejectBody, zPostAdminTronCashoutsByIdRejectResponse, zPostAuthRequestPasswordResetBody, zPostAuthRequestPasswordResetResponse, zPostAuthResetPasswordBody, zPostAuthResetPasswordResponse, zPostAuthSendVerificationEmailBody, zPostAuthSendVerificationEmailResponse, zPostAuthSignInEmailBody, zPostAuthSignInEmailResponse, zPostAuthSignOutResponse, zPostAuthSignUpEmailBody, zPostAuthSignUpEmailResponse, zPostMeAppsByAppIdReportBody, zPostMeAppsByAppIdReportPath, zPostMeAppsByAppIdReportResponse, zPostMeAvatarBody, zPostMeAvatarResponse, zPostMeBuildInPublicBySlugCommentsByUpdateIdBody, zPostMeBuildInPublicBySlugCommentsByUpdateIdPath, zPostMeBuildInPublicBySlugCommentsByUpdateIdResponse, zPostMeBuildInPublicBySlugInterestBody, zPostMeBuildInPublicBySlugInterestPath, zPostMeBuildInPublicBySlugInterestResponse, zPostMeBuildInPublicBySlugReactionsByUpdateIdBody, zPostMeBuildInPublicBySlugReactionsByUpdateIdPath, zPostMeBuildInPublicBySlugReactionsByUpdateIdResponse, zPostMeBuildInPublicBySlugSubscriptionBody, zPostMeBuildInPublicBySlugSubscriptionPath, zPostMeBuildInPublicBySlugSubscriptionResponse, zPostMeConsentBody, zPostMeConsentResponse, zPostMeDeveloperAppsBody, zPostMeDeveloperAppsByAppIdBipUpdatesBody, zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath, zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse, zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody, zPostMeDeveloperAppsByAppIdBipUpdatesMediaPath, zPostMeDeveloperAppsByAppIdBipUpdatesMediaResponse, zPostMeDeveloperAppsByAppIdBipUpdatesPath, zPostMeDeveloperAppsByAppIdBipUpdatesResponse, zPostMeDeveloperAppsByAppIdInventoryItemsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdBannerResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImagePath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdImageResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdVaultPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsBody, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsPath, zPostMeDeveloperAppsByAppIdInventoryItemsByItemIdWithdrawPermitsResponse, zPostMeDeveloperAppsByAppIdInventoryItemsPath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteBody, zPostMeDeveloperAppsByAppIdInventoryItemsQuotePath, zPostMeDeveloperAppsByAppIdInventoryItemsQuoteResponse, zPostMeDeveloperAppsByAppIdInventoryItemsResponse, zPostMeDeveloperAppsByAppIdPageBannerBody, zPostMeDeveloperAppsByAppIdPageBannerPath, zPostMeDeveloperAppsByAppIdPageBannerResponse, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageBipSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageBipUnpublishPath, zPostMeDeveloperAppsByAppIdPageBipUnpublishResponse, zPostMeDeveloperAppsByAppIdPageGalleryBody, zPostMeDeveloperAppsByAppIdPageGalleryPath, zPostMeDeveloperAppsByAppIdPageGalleryResponse, zPostMeDeveloperAppsByAppIdPageSubmitForReviewPath, zPostMeDeveloperAppsByAppIdPageSubmitForReviewResponse, zPostMeDeveloperAppsByAppIdPageThumbnailBody, zPostMeDeveloperAppsByAppIdPageThumbnailPath, zPostMeDeveloperAppsByAppIdPageThumbnailResponse, zPostMeDeveloperAppsByAppIdPageThumbnailVideoBody, zPostMeDeveloperAppsByAppIdPageThumbnailVideoPath, zPostMeDeveloperAppsByAppIdPageThumbnailVideoResponse, zPostMeDeveloperAppsByAppIdPageUnpublishPath, zPostMeDeveloperAppsByAppIdPageUnpublishResponse, zPostMeDeveloperAppsByIdLogoBody, zPostMeDeveloperAppsByIdLogoPath, zPostMeDeveloperAppsByIdLogoResponse, zPostMeDeveloperAppsByIdParticipantsBody, zPostMeDeveloperAppsByIdParticipantsPath, zPostMeDeveloperAppsByIdParticipantsResponse, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretPath, zPostMeDeveloperAppsByIdPaymentStatusWebhookSecretResponse, zPostMeDeveloperAppsByIdProductionRequestBody, zPostMeDeveloperAppsByIdProductionRequestPath, zPostMeDeveloperAppsByIdProductionRequestResponse, zPostMeDeveloperAppsByIdWalletsByChainConsolidatePath, zPostMeDeveloperAppsByIdWalletsByChainConsolidateResponse, zPostMeDeveloperAppsByIdWalletsByChainProvisionPath, zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse, zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath, zPostMeDeveloperAppsByIdWalletsByChainWithdrawQuery, zPostMeDeveloperAppsByIdWalletsByChainWithdrawResponse, zPostMeDeveloperAppsResponse, zPostMeDeveloperInvitesByAppIdAcceptPath, zPostMeDeveloperInvitesByAppIdAcceptResponse, zPostMeDeveloperInvitesByAppIdDeclinePath, zPostMeDeveloperInvitesByAppIdDeclineResponse, zPostMeDeveloperKeysBody, zPostMeDeveloperKeysResponse, zPostMeDeveloperProfileLogoBody, zPostMeDeveloperProfileLogoResponse, zPostMeDeveloperRequestBody, zPostMeDeveloperRequestLogoBody, zPostMeDeveloperRequestLogoResponse, zPostMeDeveloperRequestResponse, zPostMeDmKeyBackupBody, zPostMeDmKeyBackupResponse, zPostMeDmKeyBackupUnlockBody, zPostMeDmKeyBackupUnlockResponse, zPostMeInventoryNftTransfersBody, zPostMeInventoryNftTransfersQuoteBody, zPostMeInventoryNftTransfersQuoteResponse, zPostMeInventoryNftTransfersResponse, zPostMeInventoryPermitsByPermitIdRedeemPath, zPostMeInventoryPermitsByPermitIdRedeemResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedQuotePath, zPostMeInventoryVaultPermitsByPermitIdRelayedQuoteResponse, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitBody, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitPath, zPostMeInventoryVaultPermitsByPermitIdRelayedSubmitResponse, zPostMeInventoryVaultPermitsByPermitIdSignPath, zPostMeInventoryVaultPermitsByPermitIdSignResponse, zPostMeNotificationsMarkAllReadResponse, zPostMePlaySessionsOpenBody, zPostMePlaySessionsOpenResponse, zPostMePresenceHeartbeatResponse, zPostMeReferralBindBody, zPostMeReferralBindResponse, zPostMeReferralCodeBody, zPostMeReferralCodeResponse, zPostMeReviewsBySlugCommentsByReviewIdBody, zPostMeReviewsBySlugCommentsByReviewIdPath, zPostMeReviewsBySlugCommentsByReviewIdResponse, zPostMeReviewsBySlugReactionsByReviewIdBody, zPostMeReviewsBySlugReactionsByReviewIdPath, zPostMeReviewsBySlugReactionsByReviewIdResponse, zPostMeReviewsBySlugTipsByReviewIdBody, zPostMeReviewsBySlugTipsByReviewIdPath, zPostMeReviewsBySlugTipsByReviewIdResponse, zPostMeThreadsBody, zPostMeThreadsByIdAttachmentsBody, zPostMeThreadsByIdAttachmentsPath, zPostMeThreadsByIdAttachmentsResponse, zPostMeThreadsByIdHidePath, zPostMeThreadsByIdHideResponse, zPostMeThreadsByIdInviteBody, zPostMeThreadsByIdInvitePath, zPostMeThreadsByIdInviteResponse, zPostMeThreadsByIdLeavePath, zPostMeThreadsByIdLeaveResponse, zPostMeThreadsByIdLogoBody, zPostMeThreadsByIdLogoPath, zPostMeThreadsByIdLogoResponse, zPostMeThreadsByIdMessagesBody, zPostMeThreadsByIdMessagesPath, zPostMeThreadsByIdMessagesResponse, zPostMeThreadsByIdPinPath, zPostMeThreadsByIdPinResponse, zPostMeThreadsByIdReadPath, zPostMeThreadsByIdReadResponse, zPostMeThreadsDmKeysBody, zPostMeThreadsDmKeysResponse, zPostMeThreadsResponse, zPostMeWalletsByAddressDelegateBody, zPostMeWalletsByAddressDelegatePath, zPostMeWalletsByAddressDelegateResponse, zPostOauthAuthorizeConfirmBody, zPostOauthAuthorizeConfirmResponse, zPostOauthInventoryMintBody, zPostOauthInventoryMintResponse, zPostOauthPaymentsCancelPotBody, zPostOauthPaymentsCancelPotResponse, zPostOauthPaymentsChargeBody, zPostOauthPaymentsChargeResponse, zPostOauthPaymentsDistributeBody, zPostOauthPaymentsDistributeResponse, zPostOauthPaymentsIntentByIdCompleteBody, zPostOauthPaymentsIntentByIdCompleteResponse, zPostOauthPaymentsIntentByIdDenyResponse, zPostOauthPaymentsIntentByIdSignResponse, zPostOauthPaymentsIntentByIdSolanaCompleteBody, zPostOauthPaymentsIntentByIdSolanaCompleteResponse, zPostOauthPaymentsIntentByIdSolanaPrepareResponse, zPostOauthPaymentsPayoutBody, zPostOauthPaymentsPayoutResponse, zPostOauthPaymentsTronChargeBody, zPostOauthPaymentsTronChargeDirectBody, zPostOauthPaymentsTronChargeDirectResponse, zPostOauthPaymentsTronChargeResponse, zPostOauthPaymentsTronDistributeBody, zPostOauthPaymentsTronDistributeResponse, zPostOauthPaymentsTronIntentByIdCompleteResponse, zPostOauthPaymentsTronIntentByIdDenyResponse, zPostOauthPlaySessionsConfirmBody, zPostOauthPlaySessionsConfirmResponse, zPostOauthPlaySessionsEndBody, zPostOauthPlaySessionsEndResponse, zPostOauthPlaySessionsHeartbeatBody, zPostOauthPlaySessionsHeartbeatResponse, zPostOauthRegisterBody, zPostOauthRegisterResponse, zPostOauthRevokeBody, zPostOauthTokenBody, zPostOauthTokenResponse, zPostPaymentsAppealsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsBody, zPostPaymentsAppealsByAppealIdRoomAttachmentsPath, zPostPaymentsAppealsByAppealIdRoomAttachmentsResponse, zPostPaymentsAppealsByAppealIdRoomMessagesBody, zPostPaymentsAppealsByAppealIdRoomMessagesPath, zPostPaymentsAppealsByAppealIdRoomMessagesResponse, zPostPaymentsAppealsPotLegBody, zPostPaymentsAppealsPotLegResponse, zPostPaymentsAppealsResponse, zPostPaymentsMeMoonpayBuyUrlBody, zPostPaymentsMeMoonpayBuyUrlResponse, zPostPaymentsMeMoonpaySellUrlBody, zPostPaymentsMeMoonpaySellUrlResponse, zPostPaymentsMeTronCashoutsBody, zPostPaymentsMeTronCashoutsResponse, zPostPaymentsMeTronConnectResponse, zPostPaymentsMeTronDepositBody, zPostPaymentsMeTronDepositResponse, zPostPaymentsMeTronTransferBody, zPostPaymentsMeTronTransferChallengeBody, zPostPaymentsMeTronTransferChallengeResponse, zPostPaymentsMeTronTransferResponse, zPostUsersByIdFollowPath, zPostUsersByIdFollowResponse, zPostUsersByIdFriendPath, zPostUsersByIdFriendResponse, zPresenceStatusMode, zProfileCounts, zProfileRecentReview, zProfileStats, zProfileTopGame, zProfileUpdate, zProjectDescription, zPublicAppPage, zPublicAppPageStudio, zPublicBipPage, zPublicDeveloperApp, zPublicProfile, zPublicProfileDeveloper, zPublishDmKeyBody, zPurposeHeader, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyBody, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyPath, zPutMeDeveloperAppsByAppIdReviewsByReviewIdReplyResponse, zPutMeDeveloperAppsByIdKeysByEnvPath, zPutMeDeveloperAppsByIdKeysByEnvResponse, zPutMeDmKeyBody, zPutMeDmKeyResponse, zPutMeReviewsBySlugBody, zPutMeReviewsBySlugPath, zPutMeReviewsBySlugResponse, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiPath, zPutMeThreadsByIdMessagesByMsgIdReactionsByEmojiResponse, zPutPaymentsMeTronSecurityBody, zPutPaymentsMeTronSecurityResponse, zRaiseLimitContextResponse, zReactionAggregate, zReactionEmoji, zReactionMutationResponse, zReferralBindRequest, zReferralBindResponse, zReferralCodeResponse, zReferralEarningTotal, zReferralOverview, zReferralPreviewResponse, zReferralReferrer, zRegenerateDeveloperAppKeyResponse, zRegenerateDeveloperAppWebhookSecretResponse, zRelationship, zRequestPasswordResetRequest, zRequestPasswordResetResponse, zResetPasswordRequest, zResetPasswordResponse, zReview, zReviewAggregate, zReviewAppPage, zReviewAuthor, zReviewBody, zReviewComment, zReviewCommentBody, zReviewCommentListResponse, zReviewDeveloperRequest, zReviewDeveloperRequestResponse, zReviewEligibilityReason, zReviewListResponse, zReviewReactionCounts, zReviewRecommended, zReviewReply, zReviewReplyBody, zReviewReplyResponse, zReviewSort, zReviewSummaryLabel, zReviewVote, zReviewerStats, zRotateProcessorTreasuryRequest, zSendMessageBody, zSendMessageText, zSendVerificationEmailRequest, zSendVerificationEmailResponse, zSetBipUpdateReactionRequest, zSetBipUpdateReactionResponse, zSetDefaultWithdrawLockRequest, zSetOperatorRequest, zSetProcessorWhitelistRequest, zSetReviewReactionRequest, zSetReviewReactionResponse, zSetWithdrawLockOverrideRequest, zSignInEmailRequest, zSignInEmailResponse, zSignOutResponse, zSignUpEmailRequest, zSignUpEmailResponse, zSocialAccount, zSocialActionAck, zSocialListResponse, zSubmitAppContentReportRequest, zSubmitAppContentReportResponse, zTeamName, zThreadDescription, zThreadDmKeyEntry, zThreadLastMessagePreview, zThreadListResponse, zThreadLogoUrl, zThreadParticipant, zThreadSummary, zThreadTitle, zTipReviewRequest, zTipReviewResponse, zTronBalanceResponse, zTronCapCents, zTronCashoutCreateRequest, zTronCashoutItem, zTronCashoutListResponse, zTronChargeCompleted, zTronChargeInsufficient, zTronChargeRedirect, zTronChargeRequest, zTronChargeResponse, zTronConnectOnboardingResponse, zTronDepositRequest, zTronDepositResponse, zTronDirectChargeCompleted, zTronDirectChargeInsufficient, zTronDirectChargeRedirect, zTronDirectChargeRequest, zTronDirectChargeResponse, zTronDistributeRequest, zTronDistributeResponse, zTronGameBalanceResponse, zTronLedgerEntry, zTronLedgerResponse, zTronPaymentAuthorizationItem, zTronPaymentIntentContext, zTronPaymentIntentResolveInsufficient, zTronPaymentIntentResolveRedirect, zTronPaymentIntentResolveResponse, zTronSecuritySetting, zTronTransferChallengeNotRequired, zTronTransferChallengeRequest, zTronTransferChallengeRequired, zTronTransferChallengeResponse, zTronTransferRequest, zTronTransferResponse, zUpdateAdminRoleRequest, zUpdateAppContentReportStatusRequest, zUpdateAppFeeConfigRequest, zUpdateAppPage, zUpdateAppPaymentAuthorization, zUpdateBipUpdateRequest, zUpdateDeveloperApp, zUpdateDeveloperProfile, zUpdateParticipantRoleBody, zUpdatePlatformFeesRequest, zUpdatePlatformFeesResponse, zUpdateThreadSettingsBody, zUpdateTronPaymentAuthorization, zUploadAttachmentResponse, zUpsertReviewReplyRequest, zUpsertReviewRequest, zUserSearchResponse, zUserSearchResult, zUsername, zVerifyEmailResponse, zWalletAppLink, zWalletBalances, zWalletChainBalance, zWalletChainList, zWalletDelegationCaps, zWalletDelegationMode, zWalletDelegationStatus, zWalletItem, zWalletLabel, zWalletLabelUpdate, zWalletLabelUpdateResponse, zWalletListResponse, zWebPresenceHeartbeatAck, zWebsiteUrl, zXHandle };
|