@metatrongg/sdk 0.8.0-dev.42c667f → 0.8.0-dev.46fc1a5
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 +198 -7
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1549 -62
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +199 -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
|
};
|
|
@@ -506,6 +521,7 @@ type PublicAppPage = {
|
|
|
506
521
|
paymentsMode: AppPagePaymentsMode;
|
|
507
522
|
oauthScopes: Array<string>;
|
|
508
523
|
chains: Array<string>;
|
|
524
|
+
devlog: boolean;
|
|
509
525
|
publishedAt: string;
|
|
510
526
|
updatedAt: string;
|
|
511
527
|
};
|
|
@@ -571,6 +587,7 @@ type BipUpdateListResponse = {
|
|
|
571
587
|
updates: Array<BipUpdate>;
|
|
572
588
|
total: number;
|
|
573
589
|
hasMore: boolean;
|
|
590
|
+
pinned: BipUpdate | null;
|
|
574
591
|
};
|
|
575
592
|
type BipUpdate = {
|
|
576
593
|
id: string;
|
|
@@ -581,6 +598,7 @@ type BipUpdate = {
|
|
|
581
598
|
commentCount: number;
|
|
582
599
|
createdAt: string;
|
|
583
600
|
updatedAt: string;
|
|
601
|
+
pinnedAt: string | null;
|
|
584
602
|
};
|
|
585
603
|
type BipUpdateBody = string;
|
|
586
604
|
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
@@ -611,6 +629,20 @@ type ReviewAuthor = {
|
|
|
611
629
|
name: string | null;
|
|
612
630
|
avatarUrl: string | null;
|
|
613
631
|
};
|
|
632
|
+
type BipInterestCountResponse = {
|
|
633
|
+
interestCount: number;
|
|
634
|
+
};
|
|
635
|
+
type BipEngagementResponse = {
|
|
636
|
+
interested: boolean;
|
|
637
|
+
subscribed: boolean;
|
|
638
|
+
interestCount: number;
|
|
639
|
+
};
|
|
640
|
+
type BipInterestRequest = {
|
|
641
|
+
interested: boolean;
|
|
642
|
+
};
|
|
643
|
+
type BipSubscriptionRequest = {
|
|
644
|
+
subscribed: boolean;
|
|
645
|
+
};
|
|
614
646
|
type MyBipUpdateReactionsResponse = {
|
|
615
647
|
reactions: Array<MyBipUpdateReaction>;
|
|
616
648
|
};
|
|
@@ -877,7 +909,11 @@ type ActivityRow = ({
|
|
|
877
909
|
kind: "referral_earning";
|
|
878
910
|
} & ActivityRowReferralEarning) | ({
|
|
879
911
|
kind: "nft_charge";
|
|
880
|
-
} & ActivityRowNftCharge)
|
|
912
|
+
} & ActivityRowNftCharge) | ({
|
|
913
|
+
kind: "solana_stake";
|
|
914
|
+
} & ActivityRowSolanaStake) | ({
|
|
915
|
+
kind: "solana_pot_leg";
|
|
916
|
+
} & ActivityRowSolanaPotLeg);
|
|
881
917
|
type ActivityRowPayment = {
|
|
882
918
|
kind: "payment";
|
|
883
919
|
groupId: string | null;
|
|
@@ -1205,6 +1241,56 @@ type ActivityRowNftCharge = {
|
|
|
1205
1241
|
counterpartyHandle: string | null;
|
|
1206
1242
|
counterpartyDisplayName: string | null;
|
|
1207
1243
|
};
|
|
1244
|
+
type ActivityRowSolanaStake = {
|
|
1245
|
+
kind: "solana_stake";
|
|
1246
|
+
groupId: string | null;
|
|
1247
|
+
id: string;
|
|
1248
|
+
chain: string;
|
|
1249
|
+
occurredAt: string;
|
|
1250
|
+
role: "outgoing" | "incoming";
|
|
1251
|
+
amount: string;
|
|
1252
|
+
token: string;
|
|
1253
|
+
potId: string | null;
|
|
1254
|
+
usdCents: number;
|
|
1255
|
+
status: "completed";
|
|
1256
|
+
txHash: string | null;
|
|
1257
|
+
app: {
|
|
1258
|
+
id: string;
|
|
1259
|
+
name: string;
|
|
1260
|
+
logoUrl: string | null;
|
|
1261
|
+
slug: string | null;
|
|
1262
|
+
bannerUrl: string | null;
|
|
1263
|
+
} | null;
|
|
1264
|
+
stakerUserId?: string | null;
|
|
1265
|
+
stakerHandle?: string | null;
|
|
1266
|
+
stakerDisplayName?: string | null;
|
|
1267
|
+
metadata?: PaymentMetadata | null;
|
|
1268
|
+
};
|
|
1269
|
+
type ActivityRowSolanaPotLeg = {
|
|
1270
|
+
kind: "solana_pot_leg";
|
|
1271
|
+
groupId: string | null;
|
|
1272
|
+
id: string;
|
|
1273
|
+
chain: string;
|
|
1274
|
+
occurredAt: string;
|
|
1275
|
+
role: "outgoing" | "incoming";
|
|
1276
|
+
beneficiary: string;
|
|
1277
|
+
potId: string | null;
|
|
1278
|
+
amount: string;
|
|
1279
|
+
token: string;
|
|
1280
|
+
usdCents: number | null;
|
|
1281
|
+
status: "settled";
|
|
1282
|
+
app: {
|
|
1283
|
+
id: string;
|
|
1284
|
+
name: string;
|
|
1285
|
+
logoUrl: string | null;
|
|
1286
|
+
slug: string | null;
|
|
1287
|
+
bannerUrl: string | null;
|
|
1288
|
+
} | null;
|
|
1289
|
+
txHash: string | null;
|
|
1290
|
+
recipientUserId?: string | null;
|
|
1291
|
+
recipientHandle?: string | null;
|
|
1292
|
+
recipientDisplayName?: string | null;
|
|
1293
|
+
};
|
|
1208
1294
|
type OutstandingResponse = {
|
|
1209
1295
|
rows: Array<OutstandingByToken>;
|
|
1210
1296
|
};
|
|
@@ -1473,12 +1559,15 @@ type WalletListResponse = {
|
|
|
1473
1559
|
wallets: Array<WalletItem>;
|
|
1474
1560
|
};
|
|
1475
1561
|
type WalletChainList = Array<{
|
|
1476
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1562
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1477
1563
|
displayName: string;
|
|
1478
|
-
|
|
1564
|
+
family: "evm" | "solana";
|
|
1565
|
+
nativeSymbol: string;
|
|
1566
|
+
chainId?: number;
|
|
1479
1567
|
}>;
|
|
1480
1568
|
type WalletItem = {
|
|
1481
|
-
address: string;
|
|
1569
|
+
address: string | string;
|
|
1570
|
+
family: "evm" | "solana";
|
|
1482
1571
|
label: WalletLabel;
|
|
1483
1572
|
kind: "personal" | "app";
|
|
1484
1573
|
app: WalletAppLink;
|
|
@@ -1495,6 +1584,9 @@ type WalletBalances = {
|
|
|
1495
1584
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1496
1585
|
"base-mainnet"?: WalletChainBalance;
|
|
1497
1586
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1587
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1588
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1589
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1498
1590
|
};
|
|
1499
1591
|
type WalletChainBalance = {
|
|
1500
1592
|
native: string;
|
|
@@ -1504,12 +1596,14 @@ type WalletDelegationStatus = {
|
|
|
1504
1596
|
mode: WalletDelegationMode;
|
|
1505
1597
|
caps: WalletDelegationCaps;
|
|
1506
1598
|
policyId: string | null;
|
|
1599
|
+
slippageBps: DelegationSlippageBps;
|
|
1507
1600
|
};
|
|
1508
1601
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1509
1602
|
type WalletDelegationCaps = {
|
|
1510
1603
|
native: string;
|
|
1511
1604
|
usdc: string;
|
|
1512
1605
|
} | null;
|
|
1606
|
+
type DelegationSlippageBps = number | null;
|
|
1513
1607
|
type WalletLabelUpdateResponse = {
|
|
1514
1608
|
address: string;
|
|
1515
1609
|
label: WalletLabel;
|
|
@@ -2260,6 +2354,18 @@ type NotificationItem = {
|
|
|
2260
2354
|
payload: AppPageRejectedNotificationPayload;
|
|
2261
2355
|
read: boolean;
|
|
2262
2356
|
createdAt: string;
|
|
2357
|
+
} | {
|
|
2358
|
+
id: string;
|
|
2359
|
+
kind: "bip_update_published";
|
|
2360
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2361
|
+
read: boolean;
|
|
2362
|
+
createdAt: string;
|
|
2363
|
+
} | {
|
|
2364
|
+
id: string;
|
|
2365
|
+
kind: "bip_now_playable";
|
|
2366
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2367
|
+
read: boolean;
|
|
2368
|
+
createdAt: string;
|
|
2263
2369
|
} | {
|
|
2264
2370
|
id: string;
|
|
2265
2371
|
kind: "app_participant_invite";
|
|
@@ -2298,6 +2404,17 @@ type AppPageRejectedNotificationPayload = {
|
|
|
2298
2404
|
scope: "publish" | "changes" | "bip_publish";
|
|
2299
2405
|
notes: string;
|
|
2300
2406
|
};
|
|
2407
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2408
|
+
appId: string;
|
|
2409
|
+
appName: string;
|
|
2410
|
+
appSlug: string | null;
|
|
2411
|
+
updateId: string;
|
|
2412
|
+
};
|
|
2413
|
+
type BipNowPlayableNotificationPayload = {
|
|
2414
|
+
appId: string;
|
|
2415
|
+
appName: string;
|
|
2416
|
+
appSlug: string | null;
|
|
2417
|
+
};
|
|
2301
2418
|
type AppParticipantInviteNotificationPayload = {
|
|
2302
2419
|
appId: string;
|
|
2303
2420
|
appName: string;
|
|
@@ -2472,12 +2589,14 @@ type UpdateDeveloperApp = {
|
|
|
2472
2589
|
redirectUris?: Array<string>;
|
|
2473
2590
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2474
2591
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2592
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2475
2593
|
paymentStatusWebhookUrl?: string | null;
|
|
2476
2594
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2477
2595
|
};
|
|
2478
2596
|
type EmbedOrigin = string;
|
|
2479
2597
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2480
2598
|
type PlatformCurrency = "eth" | "tron";
|
|
2599
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2481
2600
|
type DeveloperLogoUploadResponse = {
|
|
2482
2601
|
logoUrl: string | null;
|
|
2483
2602
|
};
|
|
@@ -2540,7 +2659,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
2540
2659
|
};
|
|
2541
2660
|
type DeveloperAppWalletItem = {
|
|
2542
2661
|
chain: string;
|
|
2543
|
-
address: string;
|
|
2662
|
+
address: string | string;
|
|
2544
2663
|
custody: "server" | null;
|
|
2545
2664
|
walletId: string | null;
|
|
2546
2665
|
autoSweepEnabled: boolean;
|
|
@@ -2561,7 +2680,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
2561
2680
|
chain: string;
|
|
2562
2681
|
custody: "server";
|
|
2563
2682
|
walletId: string;
|
|
2564
|
-
address: string;
|
|
2683
|
+
address: string | string;
|
|
2565
2684
|
};
|
|
2566
2685
|
type DeveloperAppWithdrawResponse = {
|
|
2567
2686
|
appId: string;
|
|
@@ -2724,6 +2843,7 @@ type DeveloperAppItem = {
|
|
|
2724
2843
|
redirectUris: Array<string>;
|
|
2725
2844
|
embedOrigins: Array<EmbedOrigin>;
|
|
2726
2845
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2846
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2727
2847
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2728
2848
|
keys: Array<DeveloperAppKeyItem>;
|
|
2729
2849
|
pendingProductionRequestId: string | null;
|
|
@@ -2957,6 +3077,7 @@ type AdminAppPageItem = {
|
|
|
2957
3077
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2958
3078
|
bipFirstPublishedAt: string | null;
|
|
2959
3079
|
bipHiddenAt: string | null;
|
|
3080
|
+
openReportCount: number;
|
|
2960
3081
|
};
|
|
2961
3082
|
type AdminAppPageStatusResponse = {
|
|
2962
3083
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2985,6 +3106,22 @@ type AdminAppPageDiffField = {
|
|
|
2985
3106
|
type AdminAppPageBipStatusResponse = {
|
|
2986
3107
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2987
3108
|
};
|
|
3109
|
+
type AdminAppContentReportListResponse = {
|
|
3110
|
+
reports: Array<AdminAppContentReportItem>;
|
|
3111
|
+
total: number;
|
|
3112
|
+
hasMore: boolean;
|
|
3113
|
+
};
|
|
3114
|
+
type AdminAppContentReportItem = {
|
|
3115
|
+
id: string;
|
|
3116
|
+
category: AppContentReportCategory;
|
|
3117
|
+
details: string | null;
|
|
3118
|
+
status: AppContentReportStatus;
|
|
3119
|
+
acknowledgedAt: string | null;
|
|
3120
|
+
createdAt: string;
|
|
3121
|
+
appId: string;
|
|
3122
|
+
appName: string;
|
|
3123
|
+
appSlug: string | null;
|
|
3124
|
+
};
|
|
2988
3125
|
type PlatformFeesResponse = {
|
|
2989
3126
|
purchaseFeeBps: number;
|
|
2990
3127
|
stakeFeeBps: number;
|
|
@@ -3165,6 +3302,13 @@ type AppealResolveRequest = {
|
|
|
3165
3302
|
decision: "refund" | "dismiss";
|
|
3166
3303
|
notes?: string;
|
|
3167
3304
|
};
|
|
3305
|
+
type PaymentRatesResponse = {
|
|
3306
|
+
asOf: string;
|
|
3307
|
+
ethUsd: number | null;
|
|
3308
|
+
solUsd: number | null;
|
|
3309
|
+
solLamportsPerCent: number | null;
|
|
3310
|
+
tronUsdPerToken: number;
|
|
3311
|
+
};
|
|
3168
3312
|
type AppealFileResponse = {
|
|
3169
3313
|
appealId: string;
|
|
3170
3314
|
paymentId: string;
|
|
@@ -3213,7 +3357,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3213
3357
|
metadata?: PaymentMetadata;
|
|
3214
3358
|
};
|
|
3215
3359
|
type OauthPaymentDistributeResponse = {
|
|
3216
|
-
distributionId
|
|
3360
|
+
distributionId?: string;
|
|
3217
3361
|
txHash: string;
|
|
3218
3362
|
blockNumber: string;
|
|
3219
3363
|
potId: string;
|
|
@@ -3928,6 +4072,90 @@ type PostOauthPaymentsIntentByIdCompleteResponses = {
|
|
|
3928
4072
|
200: OauthPaymentIntentResolveResponse;
|
|
3929
4073
|
};
|
|
3930
4074
|
type PostOauthPaymentsIntentByIdCompleteResponse = PostOauthPaymentsIntentByIdCompleteResponses[keyof PostOauthPaymentsIntentByIdCompleteResponses];
|
|
4075
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareData = {
|
|
4076
|
+
body?: never;
|
|
4077
|
+
path?: never;
|
|
4078
|
+
query?: never;
|
|
4079
|
+
url: "/oauth/payments/intent/{id}/solana-prepare";
|
|
4080
|
+
};
|
|
4081
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareErrors = {
|
|
4082
|
+
/**
|
|
4083
|
+
* Request error
|
|
4084
|
+
*/
|
|
4085
|
+
400: ErrorResponse;
|
|
4086
|
+
/**
|
|
4087
|
+
* Request error
|
|
4088
|
+
*/
|
|
4089
|
+
401: ErrorResponse;
|
|
4090
|
+
/**
|
|
4091
|
+
* Request error
|
|
4092
|
+
*/
|
|
4093
|
+
403: ErrorResponse;
|
|
4094
|
+
/**
|
|
4095
|
+
* Request error
|
|
4096
|
+
*/
|
|
4097
|
+
404: ErrorResponse;
|
|
4098
|
+
/**
|
|
4099
|
+
* Request error
|
|
4100
|
+
*/
|
|
4101
|
+
410: ErrorResponse;
|
|
4102
|
+
/**
|
|
4103
|
+
* Request error
|
|
4104
|
+
*/
|
|
4105
|
+
503: ErrorResponse;
|
|
4106
|
+
};
|
|
4107
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareError = PostOauthPaymentsIntentByIdSolanaPrepareErrors[keyof PostOauthPaymentsIntentByIdSolanaPrepareErrors];
|
|
4108
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareResponses = {
|
|
4109
|
+
/**
|
|
4110
|
+
* Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
|
|
4111
|
+
*/
|
|
4112
|
+
200: OauthPaymentIntentSolanaPrepareResponse;
|
|
4113
|
+
};
|
|
4114
|
+
type PostOauthPaymentsIntentByIdSolanaPrepareResponse = PostOauthPaymentsIntentByIdSolanaPrepareResponses[keyof PostOauthPaymentsIntentByIdSolanaPrepareResponses];
|
|
4115
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteData = {
|
|
4116
|
+
body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4117
|
+
path?: never;
|
|
4118
|
+
query?: never;
|
|
4119
|
+
url: "/oauth/payments/intent/{id}/solana-complete";
|
|
4120
|
+
};
|
|
4121
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteErrors = {
|
|
4122
|
+
/**
|
|
4123
|
+
* Request error
|
|
4124
|
+
*/
|
|
4125
|
+
400: ErrorResponse;
|
|
4126
|
+
/**
|
|
4127
|
+
* Request error
|
|
4128
|
+
*/
|
|
4129
|
+
401: ErrorResponse;
|
|
4130
|
+
/**
|
|
4131
|
+
* Request error
|
|
4132
|
+
*/
|
|
4133
|
+
403: ErrorResponse;
|
|
4134
|
+
/**
|
|
4135
|
+
* Request error
|
|
4136
|
+
*/
|
|
4137
|
+
404: ErrorResponse;
|
|
4138
|
+
/**
|
|
4139
|
+
* Request error
|
|
4140
|
+
*/
|
|
4141
|
+
410: ErrorResponse;
|
|
4142
|
+
/**
|
|
4143
|
+
* Request error
|
|
4144
|
+
*/
|
|
4145
|
+
502: ErrorResponse;
|
|
4146
|
+
/**
|
|
4147
|
+
* Request error
|
|
4148
|
+
*/
|
|
4149
|
+
503: ErrorResponse;
|
|
4150
|
+
};
|
|
4151
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteError = PostOauthPaymentsIntentByIdSolanaCompleteErrors[keyof PostOauthPaymentsIntentByIdSolanaCompleteErrors];
|
|
4152
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteResponses = {
|
|
4153
|
+
/**
|
|
4154
|
+
* Redirect target the SPA navigates to
|
|
4155
|
+
*/
|
|
4156
|
+
200: OauthPaymentIntentResolveResponse;
|
|
4157
|
+
};
|
|
4158
|
+
type PostOauthPaymentsIntentByIdSolanaCompleteResponse = PostOauthPaymentsIntentByIdSolanaCompleteResponses[keyof PostOauthPaymentsIntentByIdSolanaCompleteResponses];
|
|
3931
4159
|
type PostOauthPaymentsIntentByIdDenyData = {
|
|
3932
4160
|
body?: never;
|
|
3933
4161
|
path?: never;
|
|
@@ -4245,6 +4473,114 @@ type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses = {
|
|
|
4245
4473
|
200: BipUpdateCommentListResponse;
|
|
4246
4474
|
};
|
|
4247
4475
|
type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse = GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses[keyof GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses];
|
|
4476
|
+
type GetPublicBuildInPublicBySlugInterestData = {
|
|
4477
|
+
body?: never;
|
|
4478
|
+
path: {
|
|
4479
|
+
slug: string;
|
|
4480
|
+
};
|
|
4481
|
+
query?: never;
|
|
4482
|
+
url: "/public/build-in-public/{slug}/interest";
|
|
4483
|
+
};
|
|
4484
|
+
type GetPublicBuildInPublicBySlugInterestErrors = {
|
|
4485
|
+
/**
|
|
4486
|
+
* Request error
|
|
4487
|
+
*/
|
|
4488
|
+
404: ErrorResponse;
|
|
4489
|
+
};
|
|
4490
|
+
type GetPublicBuildInPublicBySlugInterestError = GetPublicBuildInPublicBySlugInterestErrors[keyof GetPublicBuildInPublicBySlugInterestErrors];
|
|
4491
|
+
type GetPublicBuildInPublicBySlugInterestResponses = {
|
|
4492
|
+
/**
|
|
4493
|
+
* The live count
|
|
4494
|
+
*/
|
|
4495
|
+
200: BipInterestCountResponse;
|
|
4496
|
+
};
|
|
4497
|
+
type GetPublicBuildInPublicBySlugInterestResponse = GetPublicBuildInPublicBySlugInterestResponses[keyof GetPublicBuildInPublicBySlugInterestResponses];
|
|
4498
|
+
type GetMeBuildInPublicBySlugEngagementData = {
|
|
4499
|
+
body?: never;
|
|
4500
|
+
path: {
|
|
4501
|
+
slug: string;
|
|
4502
|
+
};
|
|
4503
|
+
query?: never;
|
|
4504
|
+
url: "/me/build-in-public/{slug}/engagement";
|
|
4505
|
+
};
|
|
4506
|
+
type GetMeBuildInPublicBySlugEngagementErrors = {
|
|
4507
|
+
/**
|
|
4508
|
+
* Request error
|
|
4509
|
+
*/
|
|
4510
|
+
401: ErrorResponse;
|
|
4511
|
+
/**
|
|
4512
|
+
* Request error
|
|
4513
|
+
*/
|
|
4514
|
+
404: ErrorResponse;
|
|
4515
|
+
};
|
|
4516
|
+
type GetMeBuildInPublicBySlugEngagementError = GetMeBuildInPublicBySlugEngagementErrors[keyof GetMeBuildInPublicBySlugEngagementErrors];
|
|
4517
|
+
type GetMeBuildInPublicBySlugEngagementResponses = {
|
|
4518
|
+
/**
|
|
4519
|
+
* Engagement state + count
|
|
4520
|
+
*/
|
|
4521
|
+
200: BipEngagementResponse;
|
|
4522
|
+
};
|
|
4523
|
+
type GetMeBuildInPublicBySlugEngagementResponse = GetMeBuildInPublicBySlugEngagementResponses[keyof GetMeBuildInPublicBySlugEngagementResponses];
|
|
4524
|
+
type PostMeBuildInPublicBySlugInterestData = {
|
|
4525
|
+
body: BipInterestRequest;
|
|
4526
|
+
path: {
|
|
4527
|
+
slug: string;
|
|
4528
|
+
};
|
|
4529
|
+
query?: never;
|
|
4530
|
+
url: "/me/build-in-public/{slug}/interest";
|
|
4531
|
+
};
|
|
4532
|
+
type PostMeBuildInPublicBySlugInterestErrors = {
|
|
4533
|
+
/**
|
|
4534
|
+
* Request error
|
|
4535
|
+
*/
|
|
4536
|
+
400: ErrorResponse;
|
|
4537
|
+
/**
|
|
4538
|
+
* Request error
|
|
4539
|
+
*/
|
|
4540
|
+
401: ErrorResponse;
|
|
4541
|
+
/**
|
|
4542
|
+
* Request error
|
|
4543
|
+
*/
|
|
4544
|
+
404: ErrorResponse;
|
|
4545
|
+
};
|
|
4546
|
+
type PostMeBuildInPublicBySlugInterestError = PostMeBuildInPublicBySlugInterestErrors[keyof PostMeBuildInPublicBySlugInterestErrors];
|
|
4547
|
+
type PostMeBuildInPublicBySlugInterestResponses = {
|
|
4548
|
+
/**
|
|
4549
|
+
* Fresh engagement state + count
|
|
4550
|
+
*/
|
|
4551
|
+
200: BipEngagementResponse;
|
|
4552
|
+
};
|
|
4553
|
+
type PostMeBuildInPublicBySlugInterestResponse = PostMeBuildInPublicBySlugInterestResponses[keyof PostMeBuildInPublicBySlugInterestResponses];
|
|
4554
|
+
type PostMeBuildInPublicBySlugSubscriptionData = {
|
|
4555
|
+
body: BipSubscriptionRequest;
|
|
4556
|
+
path: {
|
|
4557
|
+
slug: string;
|
|
4558
|
+
};
|
|
4559
|
+
query?: never;
|
|
4560
|
+
url: "/me/build-in-public/{slug}/subscription";
|
|
4561
|
+
};
|
|
4562
|
+
type PostMeBuildInPublicBySlugSubscriptionErrors = {
|
|
4563
|
+
/**
|
|
4564
|
+
* Request error
|
|
4565
|
+
*/
|
|
4566
|
+
400: ErrorResponse;
|
|
4567
|
+
/**
|
|
4568
|
+
* Request error
|
|
4569
|
+
*/
|
|
4570
|
+
401: ErrorResponse;
|
|
4571
|
+
/**
|
|
4572
|
+
* Request error
|
|
4573
|
+
*/
|
|
4574
|
+
404: ErrorResponse;
|
|
4575
|
+
};
|
|
4576
|
+
type PostMeBuildInPublicBySlugSubscriptionError = PostMeBuildInPublicBySlugSubscriptionErrors[keyof PostMeBuildInPublicBySlugSubscriptionErrors];
|
|
4577
|
+
type PostMeBuildInPublicBySlugSubscriptionResponses = {
|
|
4578
|
+
/**
|
|
4579
|
+
* Fresh engagement state + count
|
|
4580
|
+
*/
|
|
4581
|
+
200: BipEngagementResponse;
|
|
4582
|
+
};
|
|
4583
|
+
type PostMeBuildInPublicBySlugSubscriptionResponse = PostMeBuildInPublicBySlugSubscriptionResponses[keyof PostMeBuildInPublicBySlugSubscriptionResponses];
|
|
4248
4584
|
type GetMeBuildInPublicBySlugReactionsData = {
|
|
4249
4585
|
body?: never;
|
|
4250
4586
|
path: {
|
|
@@ -4505,21 +4841,16 @@ type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses = {
|
|
|
4505
4841
|
200: BipUpdate;
|
|
4506
4842
|
};
|
|
4507
4843
|
type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse = PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses[keyof PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses];
|
|
4508
|
-
type
|
|
4509
|
-
body
|
|
4510
|
-
file: string;
|
|
4511
|
-
};
|
|
4844
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4845
|
+
body?: never;
|
|
4512
4846
|
path: {
|
|
4513
4847
|
appId: string;
|
|
4848
|
+
updateId: string;
|
|
4514
4849
|
};
|
|
4515
4850
|
query?: never;
|
|
4516
|
-
url: "/me/developer/apps/{appId}/bip-updates/
|
|
4851
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4517
4852
|
};
|
|
4518
|
-
type
|
|
4519
|
-
/**
|
|
4520
|
-
* Request error
|
|
4521
|
-
*/
|
|
4522
|
-
400: ErrorResponse;
|
|
4853
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4523
4854
|
/**
|
|
4524
4855
|
* Request error
|
|
4525
4856
|
*/
|
|
@@ -4532,14 +4863,81 @@ type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors = {
|
|
|
4532
4863
|
* Request error
|
|
4533
4864
|
*/
|
|
4534
4865
|
404: ErrorResponse;
|
|
4866
|
+
};
|
|
4867
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
|
|
4868
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
|
|
4869
|
+
/**
|
|
4870
|
+
* The fresh (no longer pinned) update
|
|
4871
|
+
*/
|
|
4872
|
+
200: BipUpdate;
|
|
4873
|
+
};
|
|
4874
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
|
|
4875
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4876
|
+
body?: never;
|
|
4877
|
+
path: {
|
|
4878
|
+
appId: string;
|
|
4879
|
+
updateId: string;
|
|
4880
|
+
};
|
|
4881
|
+
query?: never;
|
|
4882
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4883
|
+
};
|
|
4884
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4535
4885
|
/**
|
|
4536
4886
|
* Request error
|
|
4537
4887
|
*/
|
|
4538
|
-
|
|
4888
|
+
401: ErrorResponse;
|
|
4539
4889
|
/**
|
|
4540
4890
|
* Request error
|
|
4541
4891
|
*/
|
|
4542
|
-
|
|
4892
|
+
403: ErrorResponse;
|
|
4893
|
+
/**
|
|
4894
|
+
* Request error
|
|
4895
|
+
*/
|
|
4896
|
+
404: ErrorResponse;
|
|
4897
|
+
};
|
|
4898
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinError = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors];
|
|
4899
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses = {
|
|
4900
|
+
/**
|
|
4901
|
+
* The freshly pinned update
|
|
4902
|
+
*/
|
|
4903
|
+
200: BipUpdate;
|
|
4904
|
+
};
|
|
4905
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse = PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses[keyof PostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponses];
|
|
4906
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesMediaData = {
|
|
4907
|
+
body: {
|
|
4908
|
+
file: string;
|
|
4909
|
+
};
|
|
4910
|
+
path: {
|
|
4911
|
+
appId: string;
|
|
4912
|
+
};
|
|
4913
|
+
query?: never;
|
|
4914
|
+
url: "/me/developer/apps/{appId}/bip-updates/media";
|
|
4915
|
+
};
|
|
4916
|
+
type PostMeDeveloperAppsByAppIdBipUpdatesMediaErrors = {
|
|
4917
|
+
/**
|
|
4918
|
+
* Request error
|
|
4919
|
+
*/
|
|
4920
|
+
400: ErrorResponse;
|
|
4921
|
+
/**
|
|
4922
|
+
* Request error
|
|
4923
|
+
*/
|
|
4924
|
+
401: ErrorResponse;
|
|
4925
|
+
/**
|
|
4926
|
+
* Request error
|
|
4927
|
+
*/
|
|
4928
|
+
403: ErrorResponse;
|
|
4929
|
+
/**
|
|
4930
|
+
* Request error
|
|
4931
|
+
*/
|
|
4932
|
+
404: ErrorResponse;
|
|
4933
|
+
/**
|
|
4934
|
+
* Request error
|
|
4935
|
+
*/
|
|
4936
|
+
413: ErrorResponse;
|
|
4937
|
+
/**
|
|
4938
|
+
* Request error
|
|
4939
|
+
*/
|
|
4940
|
+
415: ErrorResponse;
|
|
4543
4941
|
/**
|
|
4544
4942
|
* Request error
|
|
4545
4943
|
*/
|
|
@@ -11042,6 +11440,72 @@ type PostAdminAppPagesByAppIdHideBipResponses = {
|
|
|
11042
11440
|
200: AdminAppPageBipStatusResponse;
|
|
11043
11441
|
};
|
|
11044
11442
|
type PostAdminAppPagesByAppIdHideBipResponse = PostAdminAppPagesByAppIdHideBipResponses[keyof PostAdminAppPagesByAppIdHideBipResponses];
|
|
11443
|
+
type GetAdminContentReportsData = {
|
|
11444
|
+
body?: never;
|
|
11445
|
+
path?: never;
|
|
11446
|
+
query?: {
|
|
11447
|
+
status?: AppContentReportStatus | "all";
|
|
11448
|
+
limit?: number;
|
|
11449
|
+
offset?: number | null;
|
|
11450
|
+
};
|
|
11451
|
+
url: "/admin/content-reports";
|
|
11452
|
+
};
|
|
11453
|
+
type GetAdminContentReportsErrors = {
|
|
11454
|
+
/**
|
|
11455
|
+
* Request error
|
|
11456
|
+
*/
|
|
11457
|
+
400: ErrorResponse;
|
|
11458
|
+
/**
|
|
11459
|
+
* Request error
|
|
11460
|
+
*/
|
|
11461
|
+
401: ErrorResponse;
|
|
11462
|
+
/**
|
|
11463
|
+
* Request error
|
|
11464
|
+
*/
|
|
11465
|
+
403: ErrorResponse;
|
|
11466
|
+
};
|
|
11467
|
+
type GetAdminContentReportsError = GetAdminContentReportsErrors[keyof GetAdminContentReportsErrors];
|
|
11468
|
+
type GetAdminContentReportsResponses = {
|
|
11469
|
+
/**
|
|
11470
|
+
* Reports page (reports + total + hasMore), reporter identity omitted
|
|
11471
|
+
*/
|
|
11472
|
+
200: AdminAppContentReportListResponse;
|
|
11473
|
+
};
|
|
11474
|
+
type GetAdminContentReportsResponse = GetAdminContentReportsResponses[keyof GetAdminContentReportsResponses];
|
|
11475
|
+
type PatchAdminContentReportsByReportIdData = {
|
|
11476
|
+
body: UpdateAppContentReportStatusRequest;
|
|
11477
|
+
path: {
|
|
11478
|
+
reportId: string;
|
|
11479
|
+
};
|
|
11480
|
+
query?: never;
|
|
11481
|
+
url: "/admin/content-reports/{reportId}";
|
|
11482
|
+
};
|
|
11483
|
+
type PatchAdminContentReportsByReportIdErrors = {
|
|
11484
|
+
/**
|
|
11485
|
+
* Request error
|
|
11486
|
+
*/
|
|
11487
|
+
400: ErrorResponse;
|
|
11488
|
+
/**
|
|
11489
|
+
* Request error
|
|
11490
|
+
*/
|
|
11491
|
+
401: ErrorResponse;
|
|
11492
|
+
/**
|
|
11493
|
+
* Request error
|
|
11494
|
+
*/
|
|
11495
|
+
403: ErrorResponse;
|
|
11496
|
+
/**
|
|
11497
|
+
* Request error
|
|
11498
|
+
*/
|
|
11499
|
+
404: ErrorResponse;
|
|
11500
|
+
};
|
|
11501
|
+
type PatchAdminContentReportsByReportIdError = PatchAdminContentReportsByReportIdErrors[keyof PatchAdminContentReportsByReportIdErrors];
|
|
11502
|
+
type PatchAdminContentReportsByReportIdResponses = {
|
|
11503
|
+
/**
|
|
11504
|
+
* The triaged report (reporter identity omitted)
|
|
11505
|
+
*/
|
|
11506
|
+
200: AppContentReport;
|
|
11507
|
+
};
|
|
11508
|
+
type PatchAdminContentReportsByReportIdResponse = PatchAdminContentReportsByReportIdResponses[keyof PatchAdminContentReportsByReportIdResponses];
|
|
11045
11509
|
type PostAdminAppPagesByAppIdUnhideBipData = {
|
|
11046
11510
|
body?: never;
|
|
11047
11511
|
path: {
|
|
@@ -11643,6 +12107,19 @@ type PostAdminPaymentsAppealsByAppealIdResolveResponses = {
|
|
|
11643
12107
|
200: AppealResolveSignedResponse;
|
|
11644
12108
|
};
|
|
11645
12109
|
type PostAdminPaymentsAppealsByAppealIdResolveResponse = PostAdminPaymentsAppealsByAppealIdResolveResponses[keyof PostAdminPaymentsAppealsByAppealIdResolveResponses];
|
|
12110
|
+
type GetPaymentsRatesData = {
|
|
12111
|
+
body?: never;
|
|
12112
|
+
path?: never;
|
|
12113
|
+
query?: never;
|
|
12114
|
+
url: "/payments/rates";
|
|
12115
|
+
};
|
|
12116
|
+
type GetPaymentsRatesResponses = {
|
|
12117
|
+
/**
|
|
12118
|
+
* Current exchange rates + the cache-fill timestamp (asOf)
|
|
12119
|
+
*/
|
|
12120
|
+
200: PaymentRatesResponse;
|
|
12121
|
+
};
|
|
12122
|
+
type GetPaymentsRatesResponse = GetPaymentsRatesResponses[keyof GetPaymentsRatesResponses];
|
|
11646
12123
|
type PostPaymentsAppealsData = {
|
|
11647
12124
|
body: AppealFileRequest;
|
|
11648
12125
|
path?: never;
|
|
@@ -12713,6 +13190,11 @@ declare const zOauthPaymentIntentStatus: z$1.ZodObject<{
|
|
|
12713
13190
|
resolvedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12714
13191
|
expiresAt: z$1.ZodISODateTime;
|
|
12715
13192
|
}, z$1.core.$strip>;
|
|
13193
|
+
declare const zPaymentNetwork: z$1.ZodEnum<{
|
|
13194
|
+
ethereum: "ethereum";
|
|
13195
|
+
base: "base";
|
|
13196
|
+
solana: "solana";
|
|
13197
|
+
}>;
|
|
12716
13198
|
declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
12717
13199
|
intentId: z$1.ZodString;
|
|
12718
13200
|
consentId: z$1.ZodString;
|
|
@@ -12762,6 +13244,25 @@ declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
|
12762
13244
|
development: "development";
|
|
12763
13245
|
production: "production";
|
|
12764
13246
|
}>;
|
|
13247
|
+
onramp: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
13248
|
+
kind: z$1.ZodEnum<{
|
|
13249
|
+
bridge: "bridge";
|
|
13250
|
+
}>;
|
|
13251
|
+
from: z$1.ZodEnum<{
|
|
13252
|
+
ethereum: "ethereum";
|
|
13253
|
+
base: "base";
|
|
13254
|
+
solana: "solana";
|
|
13255
|
+
}>;
|
|
13256
|
+
to: z$1.ZodEnum<{
|
|
13257
|
+
ethereum: "ethereum";
|
|
13258
|
+
base: "base";
|
|
13259
|
+
solana: "solana";
|
|
13260
|
+
}>;
|
|
13261
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
13262
|
+
kind: z$1.ZodEnum<{
|
|
13263
|
+
insufficient: "insufficient";
|
|
13264
|
+
}>;
|
|
13265
|
+
}, z$1.core.$strip>]>>;
|
|
12765
13266
|
}, z$1.core.$strip>;
|
|
12766
13267
|
declare const zOauthPaymentIntentSignResponse: z$1.ZodObject<{
|
|
12767
13268
|
chain: z$1.ZodString;
|
|
@@ -12797,6 +13298,13 @@ declare const zOauthPaymentIntentComplete: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
|
|
|
12797
13298
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12798
13299
|
method: z$1.ZodLiteral<"offline">;
|
|
12799
13300
|
}, z$1.core.$strip>], "method">;
|
|
13301
|
+
declare const zOauthPaymentIntentSolanaPrepareResponse: z$1.ZodObject<{
|
|
13302
|
+
transaction: z$1.ZodString;
|
|
13303
|
+
payer: z$1.ZodString;
|
|
13304
|
+
}, z$1.core.$strip>;
|
|
13305
|
+
declare const zOauthPaymentIntentSolanaCompleteRequest: z$1.ZodObject<{
|
|
13306
|
+
signedTransaction: z$1.ZodString;
|
|
13307
|
+
}, z$1.core.$strip>;
|
|
12800
13308
|
declare const zAppPaymentAuthorizationItem: z$1.ZodObject<{
|
|
12801
13309
|
consentId: z$1.ZodString;
|
|
12802
13310
|
app: z$1.ZodObject<{
|
|
@@ -13195,6 +13703,7 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
13195
13703
|
}>>;
|
|
13196
13704
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
13197
13705
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
13706
|
+
devlog: z$1.ZodBoolean;
|
|
13198
13707
|
publishedAt: z$1.ZodISODateTime;
|
|
13199
13708
|
updatedAt: z$1.ZodISODateTime;
|
|
13200
13709
|
}, z$1.core.$strip>;
|
|
@@ -13350,6 +13859,7 @@ declare const zBipUpdate: z$1.ZodObject<{
|
|
|
13350
13859
|
commentCount: z$1.ZodInt;
|
|
13351
13860
|
createdAt: z$1.ZodISODateTime;
|
|
13352
13861
|
updatedAt: z$1.ZodISODateTime;
|
|
13862
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13353
13863
|
}, z$1.core.$strip>;
|
|
13354
13864
|
declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
13355
13865
|
updates: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -13371,9 +13881,31 @@ declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
|
13371
13881
|
commentCount: z$1.ZodInt;
|
|
13372
13882
|
createdAt: z$1.ZodISODateTime;
|
|
13373
13883
|
updatedAt: z$1.ZodISODateTime;
|
|
13884
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13374
13885
|
}, z$1.core.$strip>>;
|
|
13375
13886
|
total: z$1.ZodInt;
|
|
13376
13887
|
hasMore: z$1.ZodBoolean;
|
|
13888
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
13889
|
+
id: z$1.ZodUUID;
|
|
13890
|
+
appId: z$1.ZodUUID;
|
|
13891
|
+
body: z$1.ZodString;
|
|
13892
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
13893
|
+
url: z$1.ZodURL;
|
|
13894
|
+
kind: z$1.ZodEnum<{
|
|
13895
|
+
image: "image";
|
|
13896
|
+
video: "video";
|
|
13897
|
+
}>;
|
|
13898
|
+
order: z$1.ZodInt;
|
|
13899
|
+
}, z$1.core.$strip>>;
|
|
13900
|
+
reactions: z$1.ZodObject<{
|
|
13901
|
+
up: z$1.ZodInt;
|
|
13902
|
+
down: z$1.ZodInt;
|
|
13903
|
+
}, z$1.core.$strip>;
|
|
13904
|
+
commentCount: z$1.ZodInt;
|
|
13905
|
+
createdAt: z$1.ZodISODateTime;
|
|
13906
|
+
updatedAt: z$1.ZodISODateTime;
|
|
13907
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13908
|
+
}, z$1.core.$strip>>;
|
|
13377
13909
|
}, z$1.core.$strip>;
|
|
13378
13910
|
declare const zBipUpdateCommentBody: z$1.ZodString;
|
|
13379
13911
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
@@ -13408,6 +13940,20 @@ declare const zBipUpdateCommentListResponse: z$1.ZodObject<{
|
|
|
13408
13940
|
total: z$1.ZodInt;
|
|
13409
13941
|
hasMore: z$1.ZodBoolean;
|
|
13410
13942
|
}, z$1.core.$strip>;
|
|
13943
|
+
declare const zBipInterestCountResponse: z$1.ZodObject<{
|
|
13944
|
+
interestCount: z$1.ZodInt;
|
|
13945
|
+
}, z$1.core.$strip>;
|
|
13946
|
+
declare const zBipEngagementResponse: z$1.ZodObject<{
|
|
13947
|
+
interested: z$1.ZodBoolean;
|
|
13948
|
+
subscribed: z$1.ZodBoolean;
|
|
13949
|
+
interestCount: z$1.ZodInt;
|
|
13950
|
+
}, z$1.core.$strip>;
|
|
13951
|
+
declare const zBipInterestRequest: z$1.ZodObject<{
|
|
13952
|
+
interested: z$1.ZodBoolean;
|
|
13953
|
+
}, z$1.core.$strip>;
|
|
13954
|
+
declare const zBipSubscriptionRequest: z$1.ZodObject<{
|
|
13955
|
+
subscribed: z$1.ZodBoolean;
|
|
13956
|
+
}, z$1.core.$strip>;
|
|
13411
13957
|
declare const zMyBipUpdateReaction: z$1.ZodObject<{
|
|
13412
13958
|
updateId: z$1.ZodUUID;
|
|
13413
13959
|
vote: z$1.ZodEnum<{
|
|
@@ -13835,8 +14381,8 @@ declare const zUpdateAppContentReportStatusRequest: z$1.ZodObject<{
|
|
|
13835
14381
|
declare const zPaymentChain: z$1.ZodObject<{
|
|
13836
14382
|
id: z$1.ZodString;
|
|
13837
14383
|
family: z$1.ZodEnum<{
|
|
13838
|
-
evm: "evm";
|
|
13839
14384
|
solana: "solana";
|
|
14385
|
+
evm: "evm";
|
|
13840
14386
|
}>;
|
|
13841
14387
|
displayName: z$1.ZodString;
|
|
13842
14388
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -13847,8 +14393,8 @@ declare const zPaymentChainsResponse: z$1.ZodObject<{
|
|
|
13847
14393
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
13848
14394
|
id: z$1.ZodString;
|
|
13849
14395
|
family: z$1.ZodEnum<{
|
|
13850
|
-
evm: "evm";
|
|
13851
14396
|
solana: "solana";
|
|
14397
|
+
evm: "evm";
|
|
13852
14398
|
}>;
|
|
13853
14399
|
displayName: z$1.ZodString;
|
|
13854
14400
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -14457,6 +15003,80 @@ declare const zActivityRowNftCharge: z$1.ZodObject<{
|
|
|
14457
15003
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
14458
15004
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
14459
15005
|
}, z$1.core.$strip>;
|
|
15006
|
+
declare const zActivityRowSolanaStake: z$1.ZodObject<{
|
|
15007
|
+
kind: z$1.ZodEnum<{
|
|
15008
|
+
solana_stake: "solana_stake";
|
|
15009
|
+
}>;
|
|
15010
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15011
|
+
id: z$1.ZodString;
|
|
15012
|
+
chain: z$1.ZodString;
|
|
15013
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15014
|
+
role: z$1.ZodEnum<{
|
|
15015
|
+
outgoing: "outgoing";
|
|
15016
|
+
incoming: "incoming";
|
|
15017
|
+
}>;
|
|
15018
|
+
amount: z$1.ZodString;
|
|
15019
|
+
token: z$1.ZodString;
|
|
15020
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15021
|
+
usdCents: z$1.ZodInt;
|
|
15022
|
+
status: z$1.ZodEnum<{
|
|
15023
|
+
completed: "completed";
|
|
15024
|
+
}>;
|
|
15025
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15026
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15027
|
+
id: z$1.ZodString;
|
|
15028
|
+
name: z$1.ZodString;
|
|
15029
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15030
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15031
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15032
|
+
}, z$1.core.$strip>>;
|
|
15033
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15034
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15035
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15036
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
15037
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
15038
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
15039
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
15040
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
15041
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
15042
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
15043
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
15044
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
15045
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
15046
|
+
}, z$1.core.$strip>>>;
|
|
15047
|
+
}, z$1.core.$strip>;
|
|
15048
|
+
declare const zActivityRowSolanaPotLeg: z$1.ZodObject<{
|
|
15049
|
+
kind: z$1.ZodEnum<{
|
|
15050
|
+
solana_pot_leg: "solana_pot_leg";
|
|
15051
|
+
}>;
|
|
15052
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15053
|
+
id: z$1.ZodString;
|
|
15054
|
+
chain: z$1.ZodString;
|
|
15055
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15056
|
+
role: z$1.ZodEnum<{
|
|
15057
|
+
outgoing: "outgoing";
|
|
15058
|
+
incoming: "incoming";
|
|
15059
|
+
}>;
|
|
15060
|
+
beneficiary: z$1.ZodString;
|
|
15061
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15062
|
+
amount: z$1.ZodString;
|
|
15063
|
+
token: z$1.ZodString;
|
|
15064
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
15065
|
+
status: z$1.ZodEnum<{
|
|
15066
|
+
settled: "settled";
|
|
15067
|
+
}>;
|
|
15068
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15069
|
+
id: z$1.ZodString;
|
|
15070
|
+
name: z$1.ZodString;
|
|
15071
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15072
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15073
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15074
|
+
}, z$1.core.$strip>>;
|
|
15075
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15076
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15077
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15078
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15079
|
+
}, z$1.core.$strip>;
|
|
14460
15080
|
declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
14461
15081
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
14462
15082
|
id: z$1.ZodString;
|
|
@@ -14918,6 +15538,74 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
14918
15538
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
14919
15539
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
14920
15540
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
15541
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
15542
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15543
|
+
id: z$1.ZodString;
|
|
15544
|
+
chain: z$1.ZodString;
|
|
15545
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15546
|
+
role: z$1.ZodEnum<{
|
|
15547
|
+
outgoing: "outgoing";
|
|
15548
|
+
incoming: "incoming";
|
|
15549
|
+
}>;
|
|
15550
|
+
amount: z$1.ZodString;
|
|
15551
|
+
token: z$1.ZodString;
|
|
15552
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15553
|
+
usdCents: z$1.ZodInt;
|
|
15554
|
+
status: z$1.ZodEnum<{
|
|
15555
|
+
completed: "completed";
|
|
15556
|
+
}>;
|
|
15557
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15558
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15559
|
+
id: z$1.ZodString;
|
|
15560
|
+
name: z$1.ZodString;
|
|
15561
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15562
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15563
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15564
|
+
}, z$1.core.$strip>>;
|
|
15565
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15566
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15567
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15568
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
15569
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
15570
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
15571
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
15572
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
15573
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
15574
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
15575
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
15576
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
15577
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
15578
|
+
}, z$1.core.$strip>>>;
|
|
15579
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
15580
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
15581
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
15582
|
+
id: z$1.ZodString;
|
|
15583
|
+
chain: z$1.ZodString;
|
|
15584
|
+
occurredAt: z$1.ZodISODateTime;
|
|
15585
|
+
role: z$1.ZodEnum<{
|
|
15586
|
+
outgoing: "outgoing";
|
|
15587
|
+
incoming: "incoming";
|
|
15588
|
+
}>;
|
|
15589
|
+
beneficiary: z$1.ZodString;
|
|
15590
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
15591
|
+
amount: z$1.ZodString;
|
|
15592
|
+
token: z$1.ZodString;
|
|
15593
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
15594
|
+
status: z$1.ZodEnum<{
|
|
15595
|
+
settled: "settled";
|
|
15596
|
+
}>;
|
|
15597
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
15598
|
+
id: z$1.ZodString;
|
|
15599
|
+
name: z$1.ZodString;
|
|
15600
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15601
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
15602
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
15603
|
+
}, z$1.core.$strip>>;
|
|
15604
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
15605
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15606
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15607
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
15608
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
14921
15609
|
}, z$1.core.$strip>], "kind">;
|
|
14922
15610
|
declare const zActivityResponse: z$1.ZodObject<{
|
|
14923
15611
|
rows: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
@@ -15381,6 +16069,74 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
15381
16069
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
15382
16070
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
15383
16071
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
16072
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16073
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
16074
|
+
id: z$1.ZodString;
|
|
16075
|
+
chain: z$1.ZodString;
|
|
16076
|
+
occurredAt: z$1.ZodISODateTime;
|
|
16077
|
+
role: z$1.ZodEnum<{
|
|
16078
|
+
outgoing: "outgoing";
|
|
16079
|
+
incoming: "incoming";
|
|
16080
|
+
}>;
|
|
16081
|
+
amount: z$1.ZodString;
|
|
16082
|
+
token: z$1.ZodString;
|
|
16083
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
16084
|
+
usdCents: z$1.ZodInt;
|
|
16085
|
+
status: z$1.ZodEnum<{
|
|
16086
|
+
completed: "completed";
|
|
16087
|
+
}>;
|
|
16088
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
16089
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
16090
|
+
id: z$1.ZodString;
|
|
16091
|
+
name: z$1.ZodString;
|
|
16092
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16093
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
16094
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16095
|
+
}, z$1.core.$strip>>;
|
|
16096
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16097
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16098
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16099
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
16100
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
16101
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
16102
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
16103
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
16104
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
16105
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
16106
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
16107
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
16108
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
16109
|
+
}, z$1.core.$strip>>>;
|
|
16110
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
16111
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
16112
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
16113
|
+
id: z$1.ZodString;
|
|
16114
|
+
chain: z$1.ZodString;
|
|
16115
|
+
occurredAt: z$1.ZodISODateTime;
|
|
16116
|
+
role: z$1.ZodEnum<{
|
|
16117
|
+
outgoing: "outgoing";
|
|
16118
|
+
incoming: "incoming";
|
|
16119
|
+
}>;
|
|
16120
|
+
beneficiary: z$1.ZodString;
|
|
16121
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
16122
|
+
amount: z$1.ZodString;
|
|
16123
|
+
token: z$1.ZodString;
|
|
16124
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
16125
|
+
status: z$1.ZodEnum<{
|
|
16126
|
+
settled: "settled";
|
|
16127
|
+
}>;
|
|
16128
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
16129
|
+
id: z$1.ZodString;
|
|
16130
|
+
name: z$1.ZodString;
|
|
16131
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16132
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
16133
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
16134
|
+
}, z$1.core.$strip>>;
|
|
16135
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
16136
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16137
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16138
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
16139
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
15384
16140
|
}, z$1.core.$strip>], "kind">>;
|
|
15385
16141
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15386
16142
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -15852,9 +16608,17 @@ declare const zWalletChainList: z$1.ZodArray<z$1.ZodObject<{
|
|
|
15852
16608
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
15853
16609
|
"base-mainnet": "base-mainnet";
|
|
15854
16610
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16611
|
+
"base-sepolia": "base-sepolia";
|
|
16612
|
+
"solana-mainnet": "solana-mainnet";
|
|
16613
|
+
"solana-devnet": "solana-devnet";
|
|
15855
16614
|
}>;
|
|
15856
16615
|
displayName: z$1.ZodString;
|
|
15857
|
-
|
|
16616
|
+
family: z$1.ZodEnum<{
|
|
16617
|
+
solana: "solana";
|
|
16618
|
+
evm: "evm";
|
|
16619
|
+
}>;
|
|
16620
|
+
nativeSymbol: z$1.ZodString;
|
|
16621
|
+
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
15858
16622
|
}, z$1.core.$strip>>;
|
|
15859
16623
|
declare const zWalletLabel: z$1.ZodNullable<z$1.ZodString>;
|
|
15860
16624
|
declare const zWalletAppLink: z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -15879,6 +16643,18 @@ declare const zWalletBalances: z$1.ZodObject<{
|
|
|
15879
16643
|
native: z$1.ZodString;
|
|
15880
16644
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15881
16645
|
}, z$1.core.$strip>>;
|
|
16646
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16647
|
+
native: z$1.ZodString;
|
|
16648
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16649
|
+
}, z$1.core.$strip>>;
|
|
16650
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16651
|
+
native: z$1.ZodString;
|
|
16652
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16653
|
+
}, z$1.core.$strip>>;
|
|
16654
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16655
|
+
native: z$1.ZodString;
|
|
16656
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16657
|
+
}, z$1.core.$strip>>;
|
|
15882
16658
|
}, z$1.core.$strip>;
|
|
15883
16659
|
declare const zWalletDelegationMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15884
16660
|
custom: "custom";
|
|
@@ -15889,6 +16665,7 @@ declare const zWalletDelegationCaps: z$1.ZodNullable<z$1.ZodObject<{
|
|
|
15889
16665
|
native: z$1.ZodString;
|
|
15890
16666
|
usdc: z$1.ZodString;
|
|
15891
16667
|
}, z$1.core.$strip>>;
|
|
16668
|
+
declare const zDelegationSlippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15892
16669
|
declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
15893
16670
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15894
16671
|
custom: "custom";
|
|
@@ -15900,9 +16677,14 @@ declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
|
15900
16677
|
usdc: z$1.ZodString;
|
|
15901
16678
|
}, z$1.core.$strip>>;
|
|
15902
16679
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16680
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15903
16681
|
}, z$1.core.$strip>;
|
|
15904
16682
|
declare const zWalletItem: z$1.ZodObject<{
|
|
15905
|
-
address: z$1.ZodString
|
|
16683
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
16684
|
+
family: z$1.ZodEnum<{
|
|
16685
|
+
solana: "solana";
|
|
16686
|
+
evm: "evm";
|
|
16687
|
+
}>;
|
|
15906
16688
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
15907
16689
|
kind: z$1.ZodEnum<{
|
|
15908
16690
|
app: "app";
|
|
@@ -15926,6 +16708,18 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
15926
16708
|
native: z$1.ZodString;
|
|
15927
16709
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15928
16710
|
}, z$1.core.$strip>>;
|
|
16711
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16712
|
+
native: z$1.ZodString;
|
|
16713
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16714
|
+
}, z$1.core.$strip>>;
|
|
16715
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16716
|
+
native: z$1.ZodString;
|
|
16717
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16718
|
+
}, z$1.core.$strip>>;
|
|
16719
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16720
|
+
native: z$1.ZodString;
|
|
16721
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16722
|
+
}, z$1.core.$strip>>;
|
|
15929
16723
|
}, z$1.core.$strip>;
|
|
15930
16724
|
delegation: z$1.ZodObject<{
|
|
15931
16725
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -15938,6 +16732,7 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
15938
16732
|
usdc: z$1.ZodString;
|
|
15939
16733
|
}, z$1.core.$strip>>;
|
|
15940
16734
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16735
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15941
16736
|
}, z$1.core.$strip>;
|
|
15942
16737
|
}, z$1.core.$strip>;
|
|
15943
16738
|
declare const zWalletListResponse: z$1.ZodObject<{
|
|
@@ -15946,12 +16741,24 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
15946
16741
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
15947
16742
|
"base-mainnet": "base-mainnet";
|
|
15948
16743
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16744
|
+
"base-sepolia": "base-sepolia";
|
|
16745
|
+
"solana-mainnet": "solana-mainnet";
|
|
16746
|
+
"solana-devnet": "solana-devnet";
|
|
15949
16747
|
}>;
|
|
15950
16748
|
displayName: z$1.ZodString;
|
|
15951
|
-
|
|
16749
|
+
family: z$1.ZodEnum<{
|
|
16750
|
+
solana: "solana";
|
|
16751
|
+
evm: "evm";
|
|
16752
|
+
}>;
|
|
16753
|
+
nativeSymbol: z$1.ZodString;
|
|
16754
|
+
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
15952
16755
|
}, z$1.core.$strip>>;
|
|
15953
16756
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
15954
|
-
address: z$1.ZodString
|
|
16757
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
16758
|
+
family: z$1.ZodEnum<{
|
|
16759
|
+
solana: "solana";
|
|
16760
|
+
evm: "evm";
|
|
16761
|
+
}>;
|
|
15955
16762
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
15956
16763
|
kind: z$1.ZodEnum<{
|
|
15957
16764
|
app: "app";
|
|
@@ -15975,6 +16782,18 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
15975
16782
|
native: z$1.ZodString;
|
|
15976
16783
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15977
16784
|
}, z$1.core.$strip>>;
|
|
16785
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
16786
|
+
native: z$1.ZodString;
|
|
16787
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16788
|
+
}, z$1.core.$strip>>;
|
|
16789
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16790
|
+
native: z$1.ZodString;
|
|
16791
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16792
|
+
}, z$1.core.$strip>>;
|
|
16793
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
16794
|
+
native: z$1.ZodString;
|
|
16795
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16796
|
+
}, z$1.core.$strip>>;
|
|
15978
16797
|
}, z$1.core.$strip>;
|
|
15979
16798
|
delegation: z$1.ZodObject<{
|
|
15980
16799
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -15987,6 +16806,7 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
15987
16806
|
usdc: z$1.ZodString;
|
|
15988
16807
|
}, z$1.core.$strip>>;
|
|
15989
16808
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16809
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15990
16810
|
}, z$1.core.$strip>;
|
|
15991
16811
|
}, z$1.core.$strip>>;
|
|
15992
16812
|
}, z$1.core.$strip>;
|
|
@@ -17912,6 +18732,17 @@ declare const zAppPageRejectedNotificationPayload: z$1.ZodObject<{
|
|
|
17912
18732
|
}>;
|
|
17913
18733
|
notes: z$1.ZodString;
|
|
17914
18734
|
}, z$1.core.$strip>;
|
|
18735
|
+
declare const zBipUpdatePublishedNotificationPayload: z$1.ZodObject<{
|
|
18736
|
+
appId: z$1.ZodUUID;
|
|
18737
|
+
appName: z$1.ZodString;
|
|
18738
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18739
|
+
updateId: z$1.ZodUUID;
|
|
18740
|
+
}, z$1.core.$strip>;
|
|
18741
|
+
declare const zBipNowPlayableNotificationPayload: z$1.ZodObject<{
|
|
18742
|
+
appId: z$1.ZodUUID;
|
|
18743
|
+
appName: z$1.ZodString;
|
|
18744
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18745
|
+
}, z$1.core.$strip>;
|
|
17915
18746
|
declare const zAppParticipantInviteNotificationPayload: z$1.ZodObject<{
|
|
17916
18747
|
appId: z$1.ZodUUID;
|
|
17917
18748
|
appName: z$1.ZodString;
|
|
@@ -17989,6 +18820,31 @@ declare const zNotificationItem: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
|
17989
18820
|
}, z$1.core.$strip>;
|
|
17990
18821
|
read: z$1.ZodBoolean;
|
|
17991
18822
|
createdAt: z$1.ZodISODateTime;
|
|
18823
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18824
|
+
id: z$1.ZodString;
|
|
18825
|
+
kind: z$1.ZodEnum<{
|
|
18826
|
+
bip_update_published: "bip_update_published";
|
|
18827
|
+
}>;
|
|
18828
|
+
payload: z$1.ZodObject<{
|
|
18829
|
+
appId: z$1.ZodUUID;
|
|
18830
|
+
appName: z$1.ZodString;
|
|
18831
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18832
|
+
updateId: z$1.ZodUUID;
|
|
18833
|
+
}, z$1.core.$strip>;
|
|
18834
|
+
read: z$1.ZodBoolean;
|
|
18835
|
+
createdAt: z$1.ZodISODateTime;
|
|
18836
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18837
|
+
id: z$1.ZodString;
|
|
18838
|
+
kind: z$1.ZodEnum<{
|
|
18839
|
+
bip_now_playable: "bip_now_playable";
|
|
18840
|
+
}>;
|
|
18841
|
+
payload: z$1.ZodObject<{
|
|
18842
|
+
appId: z$1.ZodUUID;
|
|
18843
|
+
appName: z$1.ZodString;
|
|
18844
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18845
|
+
}, z$1.core.$strip>;
|
|
18846
|
+
read: z$1.ZodBoolean;
|
|
18847
|
+
createdAt: z$1.ZodISODateTime;
|
|
17992
18848
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
17993
18849
|
id: z$1.ZodString;
|
|
17994
18850
|
kind: z$1.ZodEnum<{
|
|
@@ -18052,33 +18908,58 @@ declare const zNotificationListResponse: z$1.ZodObject<{
|
|
|
18052
18908
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18053
18909
|
id: z$1.ZodString;
|
|
18054
18910
|
kind: z$1.ZodEnum<{
|
|
18055
|
-
app_page_approved: "app_page_approved";
|
|
18911
|
+
app_page_approved: "app_page_approved";
|
|
18912
|
+
}>;
|
|
18913
|
+
payload: z$1.ZodObject<{
|
|
18914
|
+
appId: z$1.ZodUUID;
|
|
18915
|
+
appName: z$1.ZodString;
|
|
18916
|
+
scope: z$1.ZodEnum<{
|
|
18917
|
+
publish: "publish";
|
|
18918
|
+
changes: "changes";
|
|
18919
|
+
bip_publish: "bip_publish";
|
|
18920
|
+
}>;
|
|
18921
|
+
}, z$1.core.$strip>;
|
|
18922
|
+
read: z$1.ZodBoolean;
|
|
18923
|
+
createdAt: z$1.ZodISODateTime;
|
|
18924
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18925
|
+
id: z$1.ZodString;
|
|
18926
|
+
kind: z$1.ZodEnum<{
|
|
18927
|
+
app_page_rejected: "app_page_rejected";
|
|
18928
|
+
}>;
|
|
18929
|
+
payload: z$1.ZodObject<{
|
|
18930
|
+
appId: z$1.ZodUUID;
|
|
18931
|
+
appName: z$1.ZodString;
|
|
18932
|
+
scope: z$1.ZodEnum<{
|
|
18933
|
+
publish: "publish";
|
|
18934
|
+
changes: "changes";
|
|
18935
|
+
bip_publish: "bip_publish";
|
|
18936
|
+
}>;
|
|
18937
|
+
notes: z$1.ZodString;
|
|
18938
|
+
}, z$1.core.$strip>;
|
|
18939
|
+
read: z$1.ZodBoolean;
|
|
18940
|
+
createdAt: z$1.ZodISODateTime;
|
|
18941
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18942
|
+
id: z$1.ZodString;
|
|
18943
|
+
kind: z$1.ZodEnum<{
|
|
18944
|
+
bip_update_published: "bip_update_published";
|
|
18056
18945
|
}>;
|
|
18057
18946
|
payload: z$1.ZodObject<{
|
|
18058
18947
|
appId: z$1.ZodUUID;
|
|
18059
18948
|
appName: z$1.ZodString;
|
|
18060
|
-
|
|
18061
|
-
|
|
18062
|
-
changes: "changes";
|
|
18063
|
-
bip_publish: "bip_publish";
|
|
18064
|
-
}>;
|
|
18949
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18950
|
+
updateId: z$1.ZodUUID;
|
|
18065
18951
|
}, z$1.core.$strip>;
|
|
18066
18952
|
read: z$1.ZodBoolean;
|
|
18067
18953
|
createdAt: z$1.ZodISODateTime;
|
|
18068
18954
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18069
18955
|
id: z$1.ZodString;
|
|
18070
18956
|
kind: z$1.ZodEnum<{
|
|
18071
|
-
|
|
18957
|
+
bip_now_playable: "bip_now_playable";
|
|
18072
18958
|
}>;
|
|
18073
18959
|
payload: z$1.ZodObject<{
|
|
18074
18960
|
appId: z$1.ZodUUID;
|
|
18075
18961
|
appName: z$1.ZodString;
|
|
18076
|
-
|
|
18077
|
-
publish: "publish";
|
|
18078
|
-
changes: "changes";
|
|
18079
|
-
bip_publish: "bip_publish";
|
|
18080
|
-
}>;
|
|
18081
|
-
notes: z$1.ZodString;
|
|
18962
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18082
18963
|
}, z$1.core.$strip>;
|
|
18083
18964
|
read: z$1.ZodBoolean;
|
|
18084
18965
|
createdAt: z$1.ZodISODateTime;
|
|
@@ -18477,6 +19358,11 @@ declare const zAcceptedCurrencies: z$1.ZodArray<z$1.ZodEnum<{
|
|
|
18477
19358
|
tron: "tron";
|
|
18478
19359
|
eth: "eth";
|
|
18479
19360
|
}>>;
|
|
19361
|
+
declare const zAcceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19362
|
+
ethereum: "ethereum";
|
|
19363
|
+
base: "base";
|
|
19364
|
+
solana: "solana";
|
|
19365
|
+
}>>>;
|
|
18480
19366
|
declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
18481
19367
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
18482
19368
|
slug: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -18491,6 +19377,11 @@ declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
|
18491
19377
|
tron: "tron";
|
|
18492
19378
|
eth: "eth";
|
|
18493
19379
|
}>>>;
|
|
19380
|
+
acceptedNetworks: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19381
|
+
ethereum: "ethereum";
|
|
19382
|
+
base: "base";
|
|
19383
|
+
solana: "solana";
|
|
19384
|
+
}>>>>;
|
|
18494
19385
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
18495
19386
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
18496
19387
|
}, z$1.core.$strip>;
|
|
@@ -18568,7 +19459,7 @@ declare const zDeveloperAppOverviewResponse: z$1.ZodObject<{
|
|
|
18568
19459
|
}, z$1.core.$strip>;
|
|
18569
19460
|
declare const zDeveloperAppWalletItem: z$1.ZodObject<{
|
|
18570
19461
|
chain: z$1.ZodString;
|
|
18571
|
-
address: z$1.ZodString
|
|
19462
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18572
19463
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18573
19464
|
server: "server";
|
|
18574
19465
|
}>>;
|
|
@@ -18580,7 +19471,7 @@ declare const zDeveloperAppWalletsResponse: z$1.ZodObject<{
|
|
|
18580
19471
|
appId: z$1.ZodString;
|
|
18581
19472
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
18582
19473
|
chain: z$1.ZodString;
|
|
18583
|
-
address: z$1.ZodString
|
|
19474
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18584
19475
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18585
19476
|
server: "server";
|
|
18586
19477
|
}>>;
|
|
@@ -18606,7 +19497,7 @@ declare const zDeveloperAppProvisionWalletResponse: z$1.ZodObject<{
|
|
|
18606
19497
|
server: "server";
|
|
18607
19498
|
}>;
|
|
18608
19499
|
walletId: z$1.ZodString;
|
|
18609
|
-
address: z$1.ZodString
|
|
19500
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18610
19501
|
}, z$1.core.$strip>;
|
|
18611
19502
|
declare const zDeveloperAppWithdrawResponse: z$1.ZodObject<{
|
|
18612
19503
|
appId: z$1.ZodString;
|
|
@@ -18884,6 +19775,11 @@ declare const zDeveloperAppItem: z$1.ZodObject<{
|
|
|
18884
19775
|
tron: "tron";
|
|
18885
19776
|
eth: "eth";
|
|
18886
19777
|
}>>;
|
|
19778
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19779
|
+
ethereum: "ethereum";
|
|
19780
|
+
base: "base";
|
|
19781
|
+
solana: "solana";
|
|
19782
|
+
}>>>;
|
|
18887
19783
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
18888
19784
|
chain: z$1.ZodString;
|
|
18889
19785
|
address: z$1.ZodString;
|
|
@@ -18987,6 +19883,11 @@ declare const zDeveloperMeStatus: z$1.ZodObject<{
|
|
|
18987
19883
|
tron: "tron";
|
|
18988
19884
|
eth: "eth";
|
|
18989
19885
|
}>>;
|
|
19886
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19887
|
+
ethereum: "ethereum";
|
|
19888
|
+
base: "base";
|
|
19889
|
+
solana: "solana";
|
|
19890
|
+
}>>>;
|
|
18990
19891
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
18991
19892
|
chain: z$1.ZodString;
|
|
18992
19893
|
address: z$1.ZodString;
|
|
@@ -19631,6 +20532,7 @@ declare const zAdminAppPageItem: z$1.ZodObject<{
|
|
|
19631
20532
|
}>;
|
|
19632
20533
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
19633
20534
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20535
|
+
openReportCount: z$1.ZodInt;
|
|
19634
20536
|
}, z$1.core.$strip>;
|
|
19635
20537
|
declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
19636
20538
|
items: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -19693,6 +20595,7 @@ declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
|
19693
20595
|
}>;
|
|
19694
20596
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
19695
20597
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20598
|
+
openReportCount: z$1.ZodInt;
|
|
19696
20599
|
}, z$1.core.$strip>>;
|
|
19697
20600
|
}, z$1.core.$strip>;
|
|
19698
20601
|
declare const zAdminAppPageStatusResponse: z$1.ZodObject<{
|
|
@@ -19741,6 +20644,52 @@ declare const zAdminAppPageBipStatusResponse: z$1.ZodObject<{
|
|
|
19741
20644
|
hidden: "hidden";
|
|
19742
20645
|
}>;
|
|
19743
20646
|
}, z$1.core.$strip>;
|
|
20647
|
+
declare const zAdminAppContentReportItem: z$1.ZodObject<{
|
|
20648
|
+
id: z$1.ZodUUID;
|
|
20649
|
+
category: z$1.ZodEnum<{
|
|
20650
|
+
other: "other";
|
|
20651
|
+
abuse: "abuse";
|
|
20652
|
+
inappropriate_content: "inappropriate_content";
|
|
20653
|
+
cheating: "cheating";
|
|
20654
|
+
spam: "spam";
|
|
20655
|
+
}>;
|
|
20656
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
20657
|
+
status: z$1.ZodEnum<{
|
|
20658
|
+
open: "open";
|
|
20659
|
+
acknowledged: "acknowledged";
|
|
20660
|
+
dismissed: "dismissed";
|
|
20661
|
+
}>;
|
|
20662
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20663
|
+
createdAt: z$1.ZodISODateTime;
|
|
20664
|
+
appId: z$1.ZodUUID;
|
|
20665
|
+
appName: z$1.ZodString;
|
|
20666
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
20667
|
+
}, z$1.core.$strip>;
|
|
20668
|
+
declare const zAdminAppContentReportListResponse: z$1.ZodObject<{
|
|
20669
|
+
reports: z$1.ZodArray<z$1.ZodObject<{
|
|
20670
|
+
id: z$1.ZodUUID;
|
|
20671
|
+
category: z$1.ZodEnum<{
|
|
20672
|
+
other: "other";
|
|
20673
|
+
abuse: "abuse";
|
|
20674
|
+
inappropriate_content: "inappropriate_content";
|
|
20675
|
+
cheating: "cheating";
|
|
20676
|
+
spam: "spam";
|
|
20677
|
+
}>;
|
|
20678
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
20679
|
+
status: z$1.ZodEnum<{
|
|
20680
|
+
open: "open";
|
|
20681
|
+
acknowledged: "acknowledged";
|
|
20682
|
+
dismissed: "dismissed";
|
|
20683
|
+
}>;
|
|
20684
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20685
|
+
createdAt: z$1.ZodISODateTime;
|
|
20686
|
+
appId: z$1.ZodUUID;
|
|
20687
|
+
appName: z$1.ZodString;
|
|
20688
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
20689
|
+
}, z$1.core.$strip>>;
|
|
20690
|
+
total: z$1.ZodInt;
|
|
20691
|
+
hasMore: z$1.ZodBoolean;
|
|
20692
|
+
}, z$1.core.$strip>;
|
|
19744
20693
|
declare const zPlatformFeesResponse: z$1.ZodObject<{
|
|
19745
20694
|
purchaseFeeBps: z$1.ZodInt;
|
|
19746
20695
|
stakeFeeBps: z$1.ZodInt;
|
|
@@ -20102,6 +21051,13 @@ declare const zAppealResolveRequest: z$1.ZodObject<{
|
|
|
20102
21051
|
}>;
|
|
20103
21052
|
notes: z$1.ZodOptional<z$1.ZodString>;
|
|
20104
21053
|
}, z$1.core.$strip>;
|
|
21054
|
+
declare const zPaymentRatesResponse: z$1.ZodObject<{
|
|
21055
|
+
asOf: z$1.ZodString;
|
|
21056
|
+
ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
21057
|
+
solUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
21058
|
+
solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
|
|
21059
|
+
tronUsdPerToken: z$1.ZodNumber;
|
|
21060
|
+
}, z$1.core.$strip>;
|
|
20105
21061
|
declare const zAppealFileResponse: z$1.ZodObject<{
|
|
20106
21062
|
appealId: z$1.ZodString;
|
|
20107
21063
|
paymentId: z$1.ZodString;
|
|
@@ -20172,7 +21128,7 @@ declare const zOauthPaymentPayoutRequest: z$1.ZodObject<{
|
|
|
20172
21128
|
}, z$1.core.$strip>>;
|
|
20173
21129
|
}, z$1.core.$strip>;
|
|
20174
21130
|
declare const zOauthPaymentDistributeResponse: z$1.ZodObject<{
|
|
20175
|
-
distributionId: z$1.ZodString
|
|
21131
|
+
distributionId: z$1.ZodOptional<z$1.ZodString>;
|
|
20176
21132
|
txHash: z$1.ZodString;
|
|
20177
21133
|
blockNumber: z$1.ZodString;
|
|
20178
21134
|
potId: z$1.ZodString;
|
|
@@ -20965,6 +21921,25 @@ declare const zGetOauthPaymentsIntentByIdResponse: z$1.ZodObject<{
|
|
|
20965
21921
|
development: "development";
|
|
20966
21922
|
production: "production";
|
|
20967
21923
|
}>;
|
|
21924
|
+
onramp: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
21925
|
+
kind: z$1.ZodEnum<{
|
|
21926
|
+
bridge: "bridge";
|
|
21927
|
+
}>;
|
|
21928
|
+
from: z$1.ZodEnum<{
|
|
21929
|
+
ethereum: "ethereum";
|
|
21930
|
+
base: "base";
|
|
21931
|
+
solana: "solana";
|
|
21932
|
+
}>;
|
|
21933
|
+
to: z$1.ZodEnum<{
|
|
21934
|
+
ethereum: "ethereum";
|
|
21935
|
+
base: "base";
|
|
21936
|
+
solana: "solana";
|
|
21937
|
+
}>;
|
|
21938
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
21939
|
+
kind: z$1.ZodEnum<{
|
|
21940
|
+
insufficient: "insufficient";
|
|
21941
|
+
}>;
|
|
21942
|
+
}, z$1.core.$strip>]>>;
|
|
20968
21943
|
}, z$1.core.$strip>;
|
|
20969
21944
|
/**
|
|
20970
21945
|
* Signed payment payload ready for the wallet to submit on-chain
|
|
@@ -20995,6 +21970,22 @@ declare const zPostOauthPaymentsIntentByIdCompleteBody: z$1.ZodDiscriminatedUnio
|
|
|
20995
21970
|
declare const zPostOauthPaymentsIntentByIdCompleteResponse: z$1.ZodObject<{
|
|
20996
21971
|
redirect: z$1.ZodURL;
|
|
20997
21972
|
}, z$1.core.$strip>;
|
|
21973
|
+
/**
|
|
21974
|
+
* Platform-partial-signed deposit_pot tx (base64) + the payer to sign with
|
|
21975
|
+
*/
|
|
21976
|
+
declare const zPostOauthPaymentsIntentByIdSolanaPrepareResponse: z$1.ZodObject<{
|
|
21977
|
+
transaction: z$1.ZodString;
|
|
21978
|
+
payer: z$1.ZodString;
|
|
21979
|
+
}, z$1.core.$strip>;
|
|
21980
|
+
declare const zPostOauthPaymentsIntentByIdSolanaCompleteBody: z$1.ZodObject<{
|
|
21981
|
+
signedTransaction: z$1.ZodString;
|
|
21982
|
+
}, z$1.core.$strip>;
|
|
21983
|
+
/**
|
|
21984
|
+
* Redirect target the SPA navigates to
|
|
21985
|
+
*/
|
|
21986
|
+
declare const zPostOauthPaymentsIntentByIdSolanaCompleteResponse: z$1.ZodObject<{
|
|
21987
|
+
redirect: z$1.ZodURL;
|
|
21988
|
+
}, z$1.core.$strip>;
|
|
20998
21989
|
/**
|
|
20999
21990
|
* Redirect target the SPA navigates to
|
|
21000
21991
|
*/
|
|
@@ -21272,6 +22263,7 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
21272
22263
|
}>>;
|
|
21273
22264
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
21274
22265
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
22266
|
+
devlog: z$1.ZodBoolean;
|
|
21275
22267
|
publishedAt: z$1.ZodISODateTime;
|
|
21276
22268
|
updatedAt: z$1.ZodISODateTime;
|
|
21277
22269
|
}, z$1.core.$strip>;
|
|
@@ -21507,9 +22499,31 @@ declare const zGetPublicBuildInPublicBySlugUpdatesResponse: z$1.ZodObject<{
|
|
|
21507
22499
|
commentCount: z$1.ZodInt;
|
|
21508
22500
|
createdAt: z$1.ZodISODateTime;
|
|
21509
22501
|
updatedAt: z$1.ZodISODateTime;
|
|
22502
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21510
22503
|
}, z$1.core.$strip>>;
|
|
21511
22504
|
total: z$1.ZodInt;
|
|
21512
22505
|
hasMore: z$1.ZodBoolean;
|
|
22506
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
22507
|
+
id: z$1.ZodUUID;
|
|
22508
|
+
appId: z$1.ZodUUID;
|
|
22509
|
+
body: z$1.ZodString;
|
|
22510
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22511
|
+
url: z$1.ZodURL;
|
|
22512
|
+
kind: z$1.ZodEnum<{
|
|
22513
|
+
image: "image";
|
|
22514
|
+
video: "video";
|
|
22515
|
+
}>;
|
|
22516
|
+
order: z$1.ZodInt;
|
|
22517
|
+
}, z$1.core.$strip>>;
|
|
22518
|
+
reactions: z$1.ZodObject<{
|
|
22519
|
+
up: z$1.ZodInt;
|
|
22520
|
+
down: z$1.ZodInt;
|
|
22521
|
+
}, z$1.core.$strip>;
|
|
22522
|
+
commentCount: z$1.ZodInt;
|
|
22523
|
+
createdAt: z$1.ZodISODateTime;
|
|
22524
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22525
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22526
|
+
}, z$1.core.$strip>>;
|
|
21513
22527
|
}, z$1.core.$strip>;
|
|
21514
22528
|
declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath: z$1.ZodObject<{
|
|
21515
22529
|
slug: z$1.ZodString;
|
|
@@ -21537,6 +22551,54 @@ declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse: z$
|
|
|
21537
22551
|
total: z$1.ZodInt;
|
|
21538
22552
|
hasMore: z$1.ZodBoolean;
|
|
21539
22553
|
}, z$1.core.$strip>;
|
|
22554
|
+
declare const zGetPublicBuildInPublicBySlugInterestPath: z$1.ZodObject<{
|
|
22555
|
+
slug: z$1.ZodString;
|
|
22556
|
+
}, z$1.core.$strip>;
|
|
22557
|
+
/**
|
|
22558
|
+
* The live count
|
|
22559
|
+
*/
|
|
22560
|
+
declare const zGetPublicBuildInPublicBySlugInterestResponse: z$1.ZodObject<{
|
|
22561
|
+
interestCount: z$1.ZodInt;
|
|
22562
|
+
}, z$1.core.$strip>;
|
|
22563
|
+
declare const zGetMeBuildInPublicBySlugEngagementPath: z$1.ZodObject<{
|
|
22564
|
+
slug: z$1.ZodString;
|
|
22565
|
+
}, z$1.core.$strip>;
|
|
22566
|
+
/**
|
|
22567
|
+
* Engagement state + count
|
|
22568
|
+
*/
|
|
22569
|
+
declare const zGetMeBuildInPublicBySlugEngagementResponse: z$1.ZodObject<{
|
|
22570
|
+
interested: z$1.ZodBoolean;
|
|
22571
|
+
subscribed: z$1.ZodBoolean;
|
|
22572
|
+
interestCount: z$1.ZodInt;
|
|
22573
|
+
}, z$1.core.$strip>;
|
|
22574
|
+
declare const zPostMeBuildInPublicBySlugInterestBody: z$1.ZodObject<{
|
|
22575
|
+
interested: z$1.ZodBoolean;
|
|
22576
|
+
}, z$1.core.$strip>;
|
|
22577
|
+
declare const zPostMeBuildInPublicBySlugInterestPath: z$1.ZodObject<{
|
|
22578
|
+
slug: z$1.ZodString;
|
|
22579
|
+
}, z$1.core.$strip>;
|
|
22580
|
+
/**
|
|
22581
|
+
* Fresh engagement state + count
|
|
22582
|
+
*/
|
|
22583
|
+
declare const zPostMeBuildInPublicBySlugInterestResponse: z$1.ZodObject<{
|
|
22584
|
+
interested: z$1.ZodBoolean;
|
|
22585
|
+
subscribed: z$1.ZodBoolean;
|
|
22586
|
+
interestCount: z$1.ZodInt;
|
|
22587
|
+
}, z$1.core.$strip>;
|
|
22588
|
+
declare const zPostMeBuildInPublicBySlugSubscriptionBody: z$1.ZodObject<{
|
|
22589
|
+
subscribed: z$1.ZodBoolean;
|
|
22590
|
+
}, z$1.core.$strip>;
|
|
22591
|
+
declare const zPostMeBuildInPublicBySlugSubscriptionPath: z$1.ZodObject<{
|
|
22592
|
+
slug: z$1.ZodString;
|
|
22593
|
+
}, z$1.core.$strip>;
|
|
22594
|
+
/**
|
|
22595
|
+
* Fresh engagement state + count
|
|
22596
|
+
*/
|
|
22597
|
+
declare const zPostMeBuildInPublicBySlugSubscriptionResponse: z$1.ZodObject<{
|
|
22598
|
+
interested: z$1.ZodBoolean;
|
|
22599
|
+
subscribed: z$1.ZodBoolean;
|
|
22600
|
+
interestCount: z$1.ZodInt;
|
|
22601
|
+
}, z$1.core.$strip>;
|
|
21540
22602
|
declare const zGetMeBuildInPublicBySlugReactionsPath: z$1.ZodObject<{
|
|
21541
22603
|
slug: z$1.ZodString;
|
|
21542
22604
|
}, z$1.core.$strip>;
|
|
@@ -21639,9 +22701,31 @@ declare const zGetMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
21639
22701
|
commentCount: z$1.ZodInt;
|
|
21640
22702
|
createdAt: z$1.ZodISODateTime;
|
|
21641
22703
|
updatedAt: z$1.ZodISODateTime;
|
|
22704
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21642
22705
|
}, z$1.core.$strip>>;
|
|
21643
22706
|
total: z$1.ZodInt;
|
|
21644
22707
|
hasMore: z$1.ZodBoolean;
|
|
22708
|
+
pinned: z$1.ZodNullable<z$1.ZodObject<{
|
|
22709
|
+
id: z$1.ZodUUID;
|
|
22710
|
+
appId: z$1.ZodUUID;
|
|
22711
|
+
body: z$1.ZodString;
|
|
22712
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22713
|
+
url: z$1.ZodURL;
|
|
22714
|
+
kind: z$1.ZodEnum<{
|
|
22715
|
+
image: "image";
|
|
22716
|
+
video: "video";
|
|
22717
|
+
}>;
|
|
22718
|
+
order: z$1.ZodInt;
|
|
22719
|
+
}, z$1.core.$strip>>;
|
|
22720
|
+
reactions: z$1.ZodObject<{
|
|
22721
|
+
up: z$1.ZodInt;
|
|
22722
|
+
down: z$1.ZodInt;
|
|
22723
|
+
}, z$1.core.$strip>;
|
|
22724
|
+
commentCount: z$1.ZodInt;
|
|
22725
|
+
createdAt: z$1.ZodISODateTime;
|
|
22726
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22727
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22728
|
+
}, z$1.core.$strip>>;
|
|
21645
22729
|
}, z$1.core.$strip>;
|
|
21646
22730
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesBody: z$1.ZodObject<{
|
|
21647
22731
|
body: z$1.ZodString;
|
|
@@ -21679,6 +22763,7 @@ declare const zPostMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
21679
22763
|
commentCount: z$1.ZodInt;
|
|
21680
22764
|
createdAt: z$1.ZodISODateTime;
|
|
21681
22765
|
updatedAt: z$1.ZodISODateTime;
|
|
22766
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21682
22767
|
}, z$1.core.$strip>;
|
|
21683
22768
|
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath: z$1.ZodObject<{
|
|
21684
22769
|
appId: z$1.ZodString;
|
|
@@ -21727,6 +22812,63 @@ declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodO
|
|
|
21727
22812
|
commentCount: z$1.ZodInt;
|
|
21728
22813
|
createdAt: z$1.ZodISODateTime;
|
|
21729
22814
|
updatedAt: z$1.ZodISODateTime;
|
|
22815
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22816
|
+
}, z$1.core.$strip>;
|
|
22817
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
22818
|
+
appId: z$1.ZodString;
|
|
22819
|
+
updateId: z$1.ZodUUID;
|
|
22820
|
+
}, z$1.core.$strip>;
|
|
22821
|
+
/**
|
|
22822
|
+
* The fresh (no longer pinned) update
|
|
22823
|
+
*/
|
|
22824
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
22825
|
+
id: z$1.ZodUUID;
|
|
22826
|
+
appId: z$1.ZodUUID;
|
|
22827
|
+
body: z$1.ZodString;
|
|
22828
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22829
|
+
url: z$1.ZodURL;
|
|
22830
|
+
kind: z$1.ZodEnum<{
|
|
22831
|
+
image: "image";
|
|
22832
|
+
video: "video";
|
|
22833
|
+
}>;
|
|
22834
|
+
order: z$1.ZodInt;
|
|
22835
|
+
}, z$1.core.$strip>>;
|
|
22836
|
+
reactions: z$1.ZodObject<{
|
|
22837
|
+
up: z$1.ZodInt;
|
|
22838
|
+
down: z$1.ZodInt;
|
|
22839
|
+
}, z$1.core.$strip>;
|
|
22840
|
+
commentCount: z$1.ZodInt;
|
|
22841
|
+
createdAt: z$1.ZodISODateTime;
|
|
22842
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22843
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22844
|
+
}, z$1.core.$strip>;
|
|
22845
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
22846
|
+
appId: z$1.ZodString;
|
|
22847
|
+
updateId: z$1.ZodUUID;
|
|
22848
|
+
}, z$1.core.$strip>;
|
|
22849
|
+
/**
|
|
22850
|
+
* The freshly pinned update
|
|
22851
|
+
*/
|
|
22852
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
22853
|
+
id: z$1.ZodUUID;
|
|
22854
|
+
appId: z$1.ZodUUID;
|
|
22855
|
+
body: z$1.ZodString;
|
|
22856
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22857
|
+
url: z$1.ZodURL;
|
|
22858
|
+
kind: z$1.ZodEnum<{
|
|
22859
|
+
image: "image";
|
|
22860
|
+
video: "video";
|
|
22861
|
+
}>;
|
|
22862
|
+
order: z$1.ZodInt;
|
|
22863
|
+
}, z$1.core.$strip>>;
|
|
22864
|
+
reactions: z$1.ZodObject<{
|
|
22865
|
+
up: z$1.ZodInt;
|
|
22866
|
+
down: z$1.ZodInt;
|
|
22867
|
+
}, z$1.core.$strip>;
|
|
22868
|
+
commentCount: z$1.ZodInt;
|
|
22869
|
+
createdAt: z$1.ZodISODateTime;
|
|
22870
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22871
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21730
22872
|
}, z$1.core.$strip>;
|
|
21731
22873
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody: z$1.ZodObject<{
|
|
21732
22874
|
file: z$1.ZodString;
|
|
@@ -22183,8 +23325,8 @@ declare const zGetPaymentsChainsResponse: z$1.ZodObject<{
|
|
|
22183
23325
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
22184
23326
|
id: z$1.ZodString;
|
|
22185
23327
|
family: z$1.ZodEnum<{
|
|
22186
|
-
evm: "evm";
|
|
22187
23328
|
solana: "solana";
|
|
23329
|
+
evm: "evm";
|
|
22188
23330
|
}>;
|
|
22189
23331
|
displayName: z$1.ZodString;
|
|
22190
23332
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -22716,22 +23858,90 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
22716
23858
|
role: z$1.ZodEnum<{
|
|
22717
23859
|
outgoing: "outgoing";
|
|
22718
23860
|
}>;
|
|
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;
|
|
23861
|
+
chargeKind: z$1.ZodEnum<{
|
|
23862
|
+
registration: "registration";
|
|
23863
|
+
mint: "mint";
|
|
23864
|
+
transfer_gas: "transfer_gas";
|
|
23865
|
+
}>;
|
|
23866
|
+
amountCents: z$1.ZodInt;
|
|
23867
|
+
usdCents: z$1.ZodInt;
|
|
23868
|
+
status: z$1.ZodEnum<{
|
|
23869
|
+
settled: "settled";
|
|
23870
|
+
}>;
|
|
23871
|
+
collectionAddress: z$1.ZodNullable<z$1.ZodString>;
|
|
23872
|
+
tokenId: z$1.ZodNullable<z$1.ZodString>;
|
|
23873
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
23874
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23875
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23876
|
+
kind: z$1.ZodLiteral<"nft_charge">;
|
|
23877
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
23878
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
23879
|
+
id: z$1.ZodString;
|
|
23880
|
+
chain: z$1.ZodString;
|
|
23881
|
+
occurredAt: z$1.ZodISODateTime;
|
|
23882
|
+
role: z$1.ZodEnum<{
|
|
23883
|
+
outgoing: "outgoing";
|
|
23884
|
+
incoming: "incoming";
|
|
23885
|
+
}>;
|
|
23886
|
+
amount: z$1.ZodString;
|
|
23887
|
+
token: z$1.ZodString;
|
|
23888
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
23889
|
+
usdCents: z$1.ZodInt;
|
|
23890
|
+
status: z$1.ZodEnum<{
|
|
23891
|
+
completed: "completed";
|
|
23892
|
+
}>;
|
|
23893
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
23894
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
23895
|
+
id: z$1.ZodString;
|
|
23896
|
+
name: z$1.ZodString;
|
|
23897
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23898
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
23899
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23900
|
+
}, z$1.core.$strip>>;
|
|
23901
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23902
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23903
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23904
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
23905
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
23906
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
23907
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
23908
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
23909
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
23910
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
23911
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
23912
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
23913
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
23914
|
+
}, z$1.core.$strip>>>;
|
|
23915
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
23916
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
23917
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
23918
|
+
id: z$1.ZodString;
|
|
23919
|
+
chain: z$1.ZodString;
|
|
23920
|
+
occurredAt: z$1.ZodISODateTime;
|
|
23921
|
+
role: z$1.ZodEnum<{
|
|
23922
|
+
outgoing: "outgoing";
|
|
23923
|
+
incoming: "incoming";
|
|
23924
|
+
}>;
|
|
23925
|
+
beneficiary: z$1.ZodString;
|
|
23926
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
23927
|
+
amount: z$1.ZodString;
|
|
23928
|
+
token: z$1.ZodString;
|
|
23929
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
22726
23930
|
status: z$1.ZodEnum<{
|
|
22727
23931
|
settled: "settled";
|
|
22728
23932
|
}>;
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
23933
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
23934
|
+
id: z$1.ZodString;
|
|
23935
|
+
name: z$1.ZodString;
|
|
23936
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23937
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
23938
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
23939
|
+
}, z$1.core.$strip>>;
|
|
23940
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
23941
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23942
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23943
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
23944
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
22735
23945
|
}, z$1.core.$strip>], "kind">>;
|
|
22736
23946
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22737
23947
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23205,6 +24415,74 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
23205
24415
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23206
24416
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23207
24417
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
24418
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
24419
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
24420
|
+
id: z$1.ZodString;
|
|
24421
|
+
chain: z$1.ZodString;
|
|
24422
|
+
occurredAt: z$1.ZodISODateTime;
|
|
24423
|
+
role: z$1.ZodEnum<{
|
|
24424
|
+
outgoing: "outgoing";
|
|
24425
|
+
incoming: "incoming";
|
|
24426
|
+
}>;
|
|
24427
|
+
amount: z$1.ZodString;
|
|
24428
|
+
token: z$1.ZodString;
|
|
24429
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
24430
|
+
usdCents: z$1.ZodInt;
|
|
24431
|
+
status: z$1.ZodEnum<{
|
|
24432
|
+
completed: "completed";
|
|
24433
|
+
}>;
|
|
24434
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
24435
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
24436
|
+
id: z$1.ZodString;
|
|
24437
|
+
name: z$1.ZodString;
|
|
24438
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24439
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
24440
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24441
|
+
}, z$1.core.$strip>>;
|
|
24442
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24443
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24444
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24445
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
24446
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
24447
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
24448
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
24449
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
24450
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
24451
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
24452
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
24453
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
24454
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
24455
|
+
}, z$1.core.$strip>>>;
|
|
24456
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
24457
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
24458
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
24459
|
+
id: z$1.ZodString;
|
|
24460
|
+
chain: z$1.ZodString;
|
|
24461
|
+
occurredAt: z$1.ZodISODateTime;
|
|
24462
|
+
role: z$1.ZodEnum<{
|
|
24463
|
+
outgoing: "outgoing";
|
|
24464
|
+
incoming: "incoming";
|
|
24465
|
+
}>;
|
|
24466
|
+
beneficiary: z$1.ZodString;
|
|
24467
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
24468
|
+
amount: z$1.ZodString;
|
|
24469
|
+
token: z$1.ZodString;
|
|
24470
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
24471
|
+
status: z$1.ZodEnum<{
|
|
24472
|
+
settled: "settled";
|
|
24473
|
+
}>;
|
|
24474
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
24475
|
+
id: z$1.ZodString;
|
|
24476
|
+
name: z$1.ZodString;
|
|
24477
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24478
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
24479
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
24480
|
+
}, z$1.core.$strip>>;
|
|
24481
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
24482
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24483
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24484
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
24485
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
23208
24486
|
}, z$1.core.$strip>], "kind">>;
|
|
23209
24487
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
23210
24488
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23706,12 +24984,24 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23706
24984
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
23707
24985
|
"base-mainnet": "base-mainnet";
|
|
23708
24986
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
24987
|
+
"base-sepolia": "base-sepolia";
|
|
24988
|
+
"solana-mainnet": "solana-mainnet";
|
|
24989
|
+
"solana-devnet": "solana-devnet";
|
|
23709
24990
|
}>;
|
|
23710
24991
|
displayName: z$1.ZodString;
|
|
23711
|
-
|
|
24992
|
+
family: z$1.ZodEnum<{
|
|
24993
|
+
solana: "solana";
|
|
24994
|
+
evm: "evm";
|
|
24995
|
+
}>;
|
|
24996
|
+
nativeSymbol: z$1.ZodString;
|
|
24997
|
+
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
23712
24998
|
}, z$1.core.$strip>>;
|
|
23713
24999
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
23714
|
-
address: z$1.ZodString
|
|
25000
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
25001
|
+
family: z$1.ZodEnum<{
|
|
25002
|
+
solana: "solana";
|
|
25003
|
+
evm: "evm";
|
|
25004
|
+
}>;
|
|
23715
25005
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
23716
25006
|
kind: z$1.ZodEnum<{
|
|
23717
25007
|
app: "app";
|
|
@@ -23735,6 +25025,18 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23735
25025
|
native: z$1.ZodString;
|
|
23736
25026
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
23737
25027
|
}, z$1.core.$strip>>;
|
|
25028
|
+
"base-sepolia": z$1.ZodOptional<z$1.ZodObject<{
|
|
25029
|
+
native: z$1.ZodString;
|
|
25030
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
25031
|
+
}, z$1.core.$strip>>;
|
|
25032
|
+
"solana-mainnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
25033
|
+
native: z$1.ZodString;
|
|
25034
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
25035
|
+
}, z$1.core.$strip>>;
|
|
25036
|
+
"solana-devnet": z$1.ZodOptional<z$1.ZodObject<{
|
|
25037
|
+
native: z$1.ZodString;
|
|
25038
|
+
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
25039
|
+
}, z$1.core.$strip>>;
|
|
23738
25040
|
}, z$1.core.$strip>;
|
|
23739
25041
|
delegation: z$1.ZodObject<{
|
|
23740
25042
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -23747,6 +25049,7 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23747
25049
|
usdc: z$1.ZodString;
|
|
23748
25050
|
}, z$1.core.$strip>>;
|
|
23749
25051
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
25052
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
23750
25053
|
}, z$1.core.$strip>;
|
|
23751
25054
|
}, z$1.core.$strip>>;
|
|
23752
25055
|
}, z$1.core.$strip>;
|
|
@@ -23789,6 +25092,7 @@ declare const zGetMeWalletsByAddressDelegateResponse: z$1.ZodObject<{
|
|
|
23789
25092
|
usdc: z$1.ZodString;
|
|
23790
25093
|
}, z$1.core.$strip>>;
|
|
23791
25094
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
25095
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
23792
25096
|
}, z$1.core.$strip>;
|
|
23793
25097
|
declare const zPostMeWalletsByAddressDelegateBody: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
23794
25098
|
mode: z$1.ZodEnum<{
|
|
@@ -26258,6 +27562,31 @@ declare const zGetMeNotificationsResponse: z$1.ZodObject<{
|
|
|
26258
27562
|
}, z$1.core.$strip>;
|
|
26259
27563
|
read: z$1.ZodBoolean;
|
|
26260
27564
|
createdAt: z$1.ZodISODateTime;
|
|
27565
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
27566
|
+
id: z$1.ZodString;
|
|
27567
|
+
kind: z$1.ZodEnum<{
|
|
27568
|
+
bip_update_published: "bip_update_published";
|
|
27569
|
+
}>;
|
|
27570
|
+
payload: z$1.ZodObject<{
|
|
27571
|
+
appId: z$1.ZodUUID;
|
|
27572
|
+
appName: z$1.ZodString;
|
|
27573
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
27574
|
+
updateId: z$1.ZodUUID;
|
|
27575
|
+
}, z$1.core.$strip>;
|
|
27576
|
+
read: z$1.ZodBoolean;
|
|
27577
|
+
createdAt: z$1.ZodISODateTime;
|
|
27578
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
27579
|
+
id: z$1.ZodString;
|
|
27580
|
+
kind: z$1.ZodEnum<{
|
|
27581
|
+
bip_now_playable: "bip_now_playable";
|
|
27582
|
+
}>;
|
|
27583
|
+
payload: z$1.ZodObject<{
|
|
27584
|
+
appId: z$1.ZodUUID;
|
|
27585
|
+
appName: z$1.ZodString;
|
|
27586
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
27587
|
+
}, z$1.core.$strip>;
|
|
27588
|
+
read: z$1.ZodBoolean;
|
|
27589
|
+
createdAt: z$1.ZodISODateTime;
|
|
26261
27590
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
26262
27591
|
id: z$1.ZodString;
|
|
26263
27592
|
kind: z$1.ZodEnum<{
|
|
@@ -26626,6 +27955,11 @@ declare const zPatchMeDeveloperAppsByIdBody: z$1.ZodObject<{
|
|
|
26626
27955
|
tron: "tron";
|
|
26627
27956
|
eth: "eth";
|
|
26628
27957
|
}>>>;
|
|
27958
|
+
acceptedNetworks: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
27959
|
+
ethereum: "ethereum";
|
|
27960
|
+
base: "base";
|
|
27961
|
+
solana: "solana";
|
|
27962
|
+
}>>>>;
|
|
26629
27963
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
26630
27964
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
26631
27965
|
}, z$1.core.$strip>;
|
|
@@ -27235,6 +28569,74 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
27235
28569
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
27236
28570
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
27237
28571
|
kind: z$1.ZodLiteral<"nft_charge">;
|
|
28572
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
28573
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
28574
|
+
id: z$1.ZodString;
|
|
28575
|
+
chain: z$1.ZodString;
|
|
28576
|
+
occurredAt: z$1.ZodISODateTime;
|
|
28577
|
+
role: z$1.ZodEnum<{
|
|
28578
|
+
outgoing: "outgoing";
|
|
28579
|
+
incoming: "incoming";
|
|
28580
|
+
}>;
|
|
28581
|
+
amount: z$1.ZodString;
|
|
28582
|
+
token: z$1.ZodString;
|
|
28583
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
28584
|
+
usdCents: z$1.ZodInt;
|
|
28585
|
+
status: z$1.ZodEnum<{
|
|
28586
|
+
completed: "completed";
|
|
28587
|
+
}>;
|
|
28588
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
28589
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
28590
|
+
id: z$1.ZodString;
|
|
28591
|
+
name: z$1.ZodString;
|
|
28592
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28593
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
28594
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28595
|
+
}, z$1.core.$strip>>;
|
|
28596
|
+
stakerUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28597
|
+
stakerHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28598
|
+
stakerDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28599
|
+
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
28600
|
+
purpose: z$1.ZodOptional<z$1.ZodString>;
|
|
28601
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
28602
|
+
note: z$1.ZodOptional<z$1.ZodString>;
|
|
28603
|
+
quantity: z$1.ZodOptional<z$1.ZodInt>;
|
|
28604
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
28605
|
+
sessionId: z$1.ZodOptional<z$1.ZodString>;
|
|
28606
|
+
groupId: z$1.ZodOptional<z$1.ZodString>;
|
|
28607
|
+
image: z$1.ZodOptional<z$1.ZodURL>;
|
|
28608
|
+
extra: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodNumber, z$1.ZodBoolean]>>>;
|
|
28609
|
+
}, z$1.core.$strip>>>;
|
|
28610
|
+
kind: z$1.ZodLiteral<"solana_stake">;
|
|
28611
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
28612
|
+
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
28613
|
+
id: z$1.ZodString;
|
|
28614
|
+
chain: z$1.ZodString;
|
|
28615
|
+
occurredAt: z$1.ZodISODateTime;
|
|
28616
|
+
role: z$1.ZodEnum<{
|
|
28617
|
+
outgoing: "outgoing";
|
|
28618
|
+
incoming: "incoming";
|
|
28619
|
+
}>;
|
|
28620
|
+
beneficiary: z$1.ZodString;
|
|
28621
|
+
potId: z$1.ZodNullable<z$1.ZodString>;
|
|
28622
|
+
amount: z$1.ZodString;
|
|
28623
|
+
token: z$1.ZodString;
|
|
28624
|
+
usdCents: z$1.ZodNullable<z$1.ZodInt>;
|
|
28625
|
+
status: z$1.ZodEnum<{
|
|
28626
|
+
settled: "settled";
|
|
28627
|
+
}>;
|
|
28628
|
+
app: z$1.ZodNullable<z$1.ZodObject<{
|
|
28629
|
+
id: z$1.ZodString;
|
|
28630
|
+
name: z$1.ZodString;
|
|
28631
|
+
logoUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28632
|
+
slug: z$1.ZodNullable<z$1.ZodString>;
|
|
28633
|
+
bannerUrl: z$1.ZodNullable<z$1.ZodURL>;
|
|
28634
|
+
}, z$1.core.$strip>>;
|
|
28635
|
+
txHash: z$1.ZodNullable<z$1.ZodString>;
|
|
28636
|
+
recipientUserId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28637
|
+
recipientHandle: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28638
|
+
recipientDisplayName: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
28639
|
+
kind: z$1.ZodLiteral<"solana_pot_leg">;
|
|
27238
28640
|
}, z$1.core.$strip>], "kind">>;
|
|
27239
28641
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
27240
28642
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -27250,7 +28652,7 @@ declare const zGetMeDeveloperAppsByIdWalletsResponse: z$1.ZodObject<{
|
|
|
27250
28652
|
appId: z$1.ZodString;
|
|
27251
28653
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
27252
28654
|
chain: z$1.ZodString;
|
|
27253
|
-
address: z$1.ZodString
|
|
28655
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27254
28656
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
27255
28657
|
server: "server";
|
|
27256
28658
|
}>>;
|
|
@@ -27290,7 +28692,7 @@ declare const zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse: z$1.ZodOb
|
|
|
27290
28692
|
server: "server";
|
|
27291
28693
|
}>;
|
|
27292
28694
|
walletId: z$1.ZodString;
|
|
27293
|
-
address: z$1.ZodString
|
|
28695
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27294
28696
|
}, z$1.core.$strip>;
|
|
27295
28697
|
declare const zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath: z$1.ZodObject<{
|
|
27296
28698
|
id: z$1.ZodString;
|
|
@@ -27608,6 +29010,11 @@ declare const zGetMeDeveloperResponse: z$1.ZodObject<{
|
|
|
27608
29010
|
tron: "tron";
|
|
27609
29011
|
eth: "eth";
|
|
27610
29012
|
}>>;
|
|
29013
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
29014
|
+
ethereum: "ethereum";
|
|
29015
|
+
base: "base";
|
|
29016
|
+
solana: "solana";
|
|
29017
|
+
}>>>;
|
|
27611
29018
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
27612
29019
|
chain: z$1.ZodString;
|
|
27613
29020
|
address: z$1.ZodString;
|
|
@@ -29157,6 +30564,7 @@ declare const zGetAdminAppPagesResponse: z$1.ZodObject<{
|
|
|
29157
30564
|
}>;
|
|
29158
30565
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
29159
30566
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30567
|
+
openReportCount: z$1.ZodInt;
|
|
29160
30568
|
}, z$1.core.$strip>>;
|
|
29161
30569
|
}, z$1.core.$strip>;
|
|
29162
30570
|
declare const zPostAdminAppPagesByAppIdHideBody: z$1.ZodObject<{
|
|
@@ -29297,6 +30705,75 @@ declare const zPostAdminAppPagesByAppIdHideBipResponse: z$1.ZodObject<{
|
|
|
29297
30705
|
hidden: "hidden";
|
|
29298
30706
|
}>;
|
|
29299
30707
|
}, z$1.core.$strip>;
|
|
30708
|
+
declare const zGetAdminContentReportsQuery: z$1.ZodObject<{
|
|
30709
|
+
status: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
30710
|
+
open: "open";
|
|
30711
|
+
acknowledged: "acknowledged";
|
|
30712
|
+
dismissed: "dismissed";
|
|
30713
|
+
}>, z$1.ZodEnum<{
|
|
30714
|
+
all: "all";
|
|
30715
|
+
}>]>>;
|
|
30716
|
+
limit: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodInt>>;
|
|
30717
|
+
offset: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodInt>>>;
|
|
30718
|
+
}, z$1.core.$strip>;
|
|
30719
|
+
/**
|
|
30720
|
+
* Reports page (reports + total + hasMore), reporter identity omitted
|
|
30721
|
+
*/
|
|
30722
|
+
declare const zGetAdminContentReportsResponse: z$1.ZodObject<{
|
|
30723
|
+
reports: z$1.ZodArray<z$1.ZodObject<{
|
|
30724
|
+
id: z$1.ZodUUID;
|
|
30725
|
+
category: z$1.ZodEnum<{
|
|
30726
|
+
other: "other";
|
|
30727
|
+
abuse: "abuse";
|
|
30728
|
+
inappropriate_content: "inappropriate_content";
|
|
30729
|
+
cheating: "cheating";
|
|
30730
|
+
spam: "spam";
|
|
30731
|
+
}>;
|
|
30732
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
30733
|
+
status: z$1.ZodEnum<{
|
|
30734
|
+
open: "open";
|
|
30735
|
+
acknowledged: "acknowledged";
|
|
30736
|
+
dismissed: "dismissed";
|
|
30737
|
+
}>;
|
|
30738
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30739
|
+
createdAt: z$1.ZodISODateTime;
|
|
30740
|
+
appId: z$1.ZodUUID;
|
|
30741
|
+
appName: z$1.ZodString;
|
|
30742
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
30743
|
+
}, z$1.core.$strip>>;
|
|
30744
|
+
total: z$1.ZodInt;
|
|
30745
|
+
hasMore: z$1.ZodBoolean;
|
|
30746
|
+
}, z$1.core.$strip>;
|
|
30747
|
+
declare const zPatchAdminContentReportsByReportIdBody: z$1.ZodObject<{
|
|
30748
|
+
status: z$1.ZodEnum<{
|
|
30749
|
+
acknowledged: "acknowledged";
|
|
30750
|
+
dismissed: "dismissed";
|
|
30751
|
+
}>;
|
|
30752
|
+
}, z$1.core.$strip>;
|
|
30753
|
+
declare const zPatchAdminContentReportsByReportIdPath: z$1.ZodObject<{
|
|
30754
|
+
reportId: z$1.ZodUUID;
|
|
30755
|
+
}, z$1.core.$strip>;
|
|
30756
|
+
/**
|
|
30757
|
+
* The triaged report (reporter identity omitted)
|
|
30758
|
+
*/
|
|
30759
|
+
declare const zPatchAdminContentReportsByReportIdResponse: z$1.ZodObject<{
|
|
30760
|
+
id: z$1.ZodUUID;
|
|
30761
|
+
category: z$1.ZodEnum<{
|
|
30762
|
+
other: "other";
|
|
30763
|
+
abuse: "abuse";
|
|
30764
|
+
inappropriate_content: "inappropriate_content";
|
|
30765
|
+
cheating: "cheating";
|
|
30766
|
+
spam: "spam";
|
|
30767
|
+
}>;
|
|
30768
|
+
details: z$1.ZodNullable<z$1.ZodString>;
|
|
30769
|
+
status: z$1.ZodEnum<{
|
|
30770
|
+
open: "open";
|
|
30771
|
+
acknowledged: "acknowledged";
|
|
30772
|
+
dismissed: "dismissed";
|
|
30773
|
+
}>;
|
|
30774
|
+
acknowledgedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30775
|
+
createdAt: z$1.ZodISODateTime;
|
|
30776
|
+
}, z$1.core.$strip>;
|
|
29300
30777
|
declare const zPostAdminAppPagesByAppIdUnhideBipPath: z$1.ZodObject<{
|
|
29301
30778
|
appId: z$1.ZodString;
|
|
29302
30779
|
}, z$1.core.$strip>;
|
|
@@ -29730,6 +31207,16 @@ declare const zPostAdminPaymentsAppealsByAppealIdResolveResponse: z$1.ZodObject<
|
|
|
29730
31207
|
resolved_dismiss: "resolved_dismiss";
|
|
29731
31208
|
}>;
|
|
29732
31209
|
}, z$1.core.$strip>;
|
|
31210
|
+
/**
|
|
31211
|
+
* Current exchange rates + the cache-fill timestamp (asOf)
|
|
31212
|
+
*/
|
|
31213
|
+
declare const zGetPaymentsRatesResponse: z$1.ZodObject<{
|
|
31214
|
+
asOf: z$1.ZodString;
|
|
31215
|
+
ethUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
31216
|
+
solUsd: z$1.ZodNullable<z$1.ZodNumber>;
|
|
31217
|
+
solLamportsPerCent: z$1.ZodNullable<z$1.ZodInt>;
|
|
31218
|
+
tronUsdPerToken: z$1.ZodNumber;
|
|
31219
|
+
}, z$1.core.$strip>;
|
|
29733
31220
|
declare const zPostPaymentsAppealsBody: z$1.ZodObject<{
|
|
29734
31221
|
paymentId: z$1.ZodString;
|
|
29735
31222
|
amount: z$1.ZodString;
|
|
@@ -29959,7 +31446,7 @@ declare const zPostOauthPaymentsDistributeBody: z$1.ZodObject<{
|
|
|
29959
31446
|
* Distribution submitted (legs settled on-chain)
|
|
29960
31447
|
*/
|
|
29961
31448
|
declare const zPostOauthPaymentsDistributeResponse: z$1.ZodObject<{
|
|
29962
|
-
distributionId: z$1.ZodString
|
|
31449
|
+
distributionId: z$1.ZodOptional<z$1.ZodString>;
|
|
29963
31450
|
txHash: z$1.ZodString;
|
|
29964
31451
|
blockNumber: z$1.ZodString;
|
|
29965
31452
|
potId: z$1.ZodString;
|
|
@@ -30150,4 +31637,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
30150
31637
|
*/
|
|
30151
31638
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
30152
31639
|
//#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 };
|
|
31640
|
+
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 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, 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 };
|