@metatrongg/sdk 0.8.0-dev.91af108 → 0.8.0-dev.9dc0233
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 +169 -7
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1334 -44
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +170 -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 +4 -4
|
@@ -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";
|
|
@@ -3181,6 +3302,13 @@ type AppealResolveRequest = {
|
|
|
3181
3302
|
decision: "refund" | "dismiss";
|
|
3182
3303
|
notes?: string;
|
|
3183
3304
|
};
|
|
3305
|
+
type PaymentRatesResponse = {
|
|
3306
|
+
asOf: string;
|
|
3307
|
+
ethUsd: number | null;
|
|
3308
|
+
solUsd: number | null;
|
|
3309
|
+
solLamportsPerCent: number | null;
|
|
3310
|
+
tronUsdPerToken: number;
|
|
3311
|
+
};
|
|
3184
3312
|
type AppealFileResponse = {
|
|
3185
3313
|
appealId: string;
|
|
3186
3314
|
paymentId: string;
|
|
@@ -3229,7 +3357,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3229
3357
|
metadata?: PaymentMetadata;
|
|
3230
3358
|
};
|
|
3231
3359
|
type OauthPaymentDistributeResponse = {
|
|
3232
|
-
distributionId
|
|
3360
|
+
distributionId?: string;
|
|
3233
3361
|
txHash: string;
|
|
3234
3362
|
blockNumber: string;
|
|
3235
3363
|
potId: string;
|
|
@@ -3944,6 +4072,90 @@ type PostOauthPaymentsIntentByIdCompleteResponses = {
|
|
|
3944
4072
|
200: OauthPaymentIntentResolveResponse;
|
|
3945
4073
|
};
|
|
3946
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];
|
|
3947
4159
|
type PostOauthPaymentsIntentByIdDenyData = {
|
|
3948
4160
|
body?: never;
|
|
3949
4161
|
path?: never;
|
|
@@ -4261,6 +4473,114 @@ type GetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponses = {
|
|
|
4261
4473
|
200: BipUpdateCommentListResponse;
|
|
4262
4474
|
};
|
|
4263
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];
|
|
4264
4584
|
type GetMeBuildInPublicBySlugReactionsData = {
|
|
4265
4585
|
body?: never;
|
|
4266
4586
|
path: {
|
|
@@ -4521,6 +4841,68 @@ type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses = {
|
|
|
4521
4841
|
200: BipUpdate;
|
|
4522
4842
|
};
|
|
4523
4843
|
type PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse = PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses[keyof PatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponses];
|
|
4844
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinData = {
|
|
4845
|
+
body?: never;
|
|
4846
|
+
path: {
|
|
4847
|
+
appId: string;
|
|
4848
|
+
updateId: string;
|
|
4849
|
+
};
|
|
4850
|
+
query?: never;
|
|
4851
|
+
url: "/me/developer/apps/{appId}/bip-updates/{updateId}/pin";
|
|
4852
|
+
};
|
|
4853
|
+
type DeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinErrors = {
|
|
4854
|
+
/**
|
|
4855
|
+
* Request error
|
|
4856
|
+
*/
|
|
4857
|
+
401: ErrorResponse;
|
|
4858
|
+
/**
|
|
4859
|
+
* Request error
|
|
4860
|
+
*/
|
|
4861
|
+
403: ErrorResponse;
|
|
4862
|
+
/**
|
|
4863
|
+
* Request error
|
|
4864
|
+
*/
|
|
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 = {
|
|
4885
|
+
/**
|
|
4886
|
+
* Request error
|
|
4887
|
+
*/
|
|
4888
|
+
401: ErrorResponse;
|
|
4889
|
+
/**
|
|
4890
|
+
* Request error
|
|
4891
|
+
*/
|
|
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];
|
|
4524
4906
|
type PostMeDeveloperAppsByAppIdBipUpdatesMediaData = {
|
|
4525
4907
|
body: {
|
|
4526
4908
|
file: string;
|
|
@@ -11725,6 +12107,19 @@ type PostAdminPaymentsAppealsByAppealIdResolveResponses = {
|
|
|
11725
12107
|
200: AppealResolveSignedResponse;
|
|
11726
12108
|
};
|
|
11727
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];
|
|
11728
12123
|
type PostPaymentsAppealsData = {
|
|
11729
12124
|
body: AppealFileRequest;
|
|
11730
12125
|
path?: never;
|
|
@@ -12795,6 +13190,11 @@ declare const zOauthPaymentIntentStatus: z$1.ZodObject<{
|
|
|
12795
13190
|
resolvedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
12796
13191
|
expiresAt: z$1.ZodISODateTime;
|
|
12797
13192
|
}, z$1.core.$strip>;
|
|
13193
|
+
declare const zPaymentNetwork: z$1.ZodEnum<{
|
|
13194
|
+
ethereum: "ethereum";
|
|
13195
|
+
base: "base";
|
|
13196
|
+
solana: "solana";
|
|
13197
|
+
}>;
|
|
12798
13198
|
declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
12799
13199
|
intentId: z$1.ZodString;
|
|
12800
13200
|
consentId: z$1.ZodString;
|
|
@@ -12844,6 +13244,25 @@ declare const zOauthPaymentIntentContext: z$1.ZodObject<{
|
|
|
12844
13244
|
development: "development";
|
|
12845
13245
|
production: "production";
|
|
12846
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>]>>;
|
|
12847
13266
|
}, z$1.core.$strip>;
|
|
12848
13267
|
declare const zOauthPaymentIntentSignResponse: z$1.ZodObject<{
|
|
12849
13268
|
chain: z$1.ZodString;
|
|
@@ -12879,6 +13298,13 @@ declare const zOauthPaymentIntentComplete: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
|
|
|
12879
13298
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
12880
13299
|
method: z$1.ZodLiteral<"offline">;
|
|
12881
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>;
|
|
12882
13308
|
declare const zAppPaymentAuthorizationItem: z$1.ZodObject<{
|
|
12883
13309
|
consentId: z$1.ZodString;
|
|
12884
13310
|
app: z$1.ZodObject<{
|
|
@@ -13277,6 +13703,7 @@ declare const zPublicAppPage: z$1.ZodObject<{
|
|
|
13277
13703
|
}>>;
|
|
13278
13704
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
13279
13705
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
13706
|
+
devlog: z$1.ZodBoolean;
|
|
13280
13707
|
publishedAt: z$1.ZodISODateTime;
|
|
13281
13708
|
updatedAt: z$1.ZodISODateTime;
|
|
13282
13709
|
}, z$1.core.$strip>;
|
|
@@ -13432,6 +13859,7 @@ declare const zBipUpdate: z$1.ZodObject<{
|
|
|
13432
13859
|
commentCount: z$1.ZodInt;
|
|
13433
13860
|
createdAt: z$1.ZodISODateTime;
|
|
13434
13861
|
updatedAt: z$1.ZodISODateTime;
|
|
13862
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13435
13863
|
}, z$1.core.$strip>;
|
|
13436
13864
|
declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
13437
13865
|
updates: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -13453,9 +13881,31 @@ declare const zBipUpdateListResponse: z$1.ZodObject<{
|
|
|
13453
13881
|
commentCount: z$1.ZodInt;
|
|
13454
13882
|
createdAt: z$1.ZodISODateTime;
|
|
13455
13883
|
updatedAt: z$1.ZodISODateTime;
|
|
13884
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
13456
13885
|
}, z$1.core.$strip>>;
|
|
13457
13886
|
total: z$1.ZodInt;
|
|
13458
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>>;
|
|
13459
13909
|
}, z$1.core.$strip>;
|
|
13460
13910
|
declare const zBipUpdateCommentBody: z$1.ZodString;
|
|
13461
13911
|
declare const zReviewAuthor: z$1.ZodObject<{
|
|
@@ -13490,6 +13940,20 @@ declare const zBipUpdateCommentListResponse: z$1.ZodObject<{
|
|
|
13490
13940
|
total: z$1.ZodInt;
|
|
13491
13941
|
hasMore: z$1.ZodBoolean;
|
|
13492
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>;
|
|
13493
13957
|
declare const zMyBipUpdateReaction: z$1.ZodObject<{
|
|
13494
13958
|
updateId: z$1.ZodUUID;
|
|
13495
13959
|
vote: z$1.ZodEnum<{
|
|
@@ -13917,8 +14381,8 @@ declare const zUpdateAppContentReportStatusRequest: z$1.ZodObject<{
|
|
|
13917
14381
|
declare const zPaymentChain: z$1.ZodObject<{
|
|
13918
14382
|
id: z$1.ZodString;
|
|
13919
14383
|
family: z$1.ZodEnum<{
|
|
13920
|
-
evm: "evm";
|
|
13921
14384
|
solana: "solana";
|
|
14385
|
+
evm: "evm";
|
|
13922
14386
|
}>;
|
|
13923
14387
|
displayName: z$1.ZodString;
|
|
13924
14388
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -13929,8 +14393,8 @@ declare const zPaymentChainsResponse: z$1.ZodObject<{
|
|
|
13929
14393
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
13930
14394
|
id: z$1.ZodString;
|
|
13931
14395
|
family: z$1.ZodEnum<{
|
|
13932
|
-
evm: "evm";
|
|
13933
14396
|
solana: "solana";
|
|
14397
|
+
evm: "evm";
|
|
13934
14398
|
}>;
|
|
13935
14399
|
displayName: z$1.ZodString;
|
|
13936
14400
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -14539,6 +15003,80 @@ declare const zActivityRowNftCharge: z$1.ZodObject<{
|
|
|
14539
15003
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
14540
15004
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
14541
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>;
|
|
14542
15080
|
declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
14543
15081
|
groupId: z$1.ZodNullable<z$1.ZodString>;
|
|
14544
15082
|
id: z$1.ZodString;
|
|
@@ -15000,6 +15538,74 @@ declare const zActivityRow: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
|
15000
15538
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
15001
15539
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
15002
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">;
|
|
15003
15609
|
}, z$1.core.$strip>], "kind">;
|
|
15004
15610
|
declare const zActivityResponse: z$1.ZodObject<{
|
|
15005
15611
|
rows: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
@@ -15457,12 +16063,80 @@ declare const zActivityResponse: z$1.ZodObject<{
|
|
|
15457
16063
|
status: z$1.ZodEnum<{
|
|
15458
16064
|
settled: "settled";
|
|
15459
16065
|
}>;
|
|
15460
|
-
collectionAddress: z$1.ZodNullable<z$1.ZodString>;
|
|
15461
|
-
tokenId: z$1.ZodNullable<z$1.ZodString>;
|
|
15462
|
-
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
15463
|
-
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
15464
|
-
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
15465
|
-
kind: z$1.ZodLiteral<"nft_charge">;
|
|
16066
|
+
collectionAddress: z$1.ZodNullable<z$1.ZodString>;
|
|
16067
|
+
tokenId: z$1.ZodNullable<z$1.ZodString>;
|
|
16068
|
+
counterpartyUserId: z$1.ZodNullable<z$1.ZodString>;
|
|
16069
|
+
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
16070
|
+
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
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">;
|
|
15466
16140
|
}, z$1.core.$strip>], "kind">>;
|
|
15467
16141
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
15468
16142
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -15934,9 +16608,17 @@ declare const zWalletChainList: z$1.ZodArray<z$1.ZodObject<{
|
|
|
15934
16608
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
15935
16609
|
"base-mainnet": "base-mainnet";
|
|
15936
16610
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16611
|
+
"base-sepolia": "base-sepolia";
|
|
16612
|
+
"solana-mainnet": "solana-mainnet";
|
|
16613
|
+
"solana-devnet": "solana-devnet";
|
|
15937
16614
|
}>;
|
|
15938
16615
|
displayName: z$1.ZodString;
|
|
15939
|
-
|
|
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>;
|
|
15940
16622
|
}, z$1.core.$strip>>;
|
|
15941
16623
|
declare const zWalletLabel: z$1.ZodNullable<z$1.ZodString>;
|
|
15942
16624
|
declare const zWalletAppLink: z$1.ZodNullable<z$1.ZodObject<{
|
|
@@ -15961,6 +16643,18 @@ declare const zWalletBalances: z$1.ZodObject<{
|
|
|
15961
16643
|
native: z$1.ZodString;
|
|
15962
16644
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
15963
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>>;
|
|
15964
16658
|
}, z$1.core.$strip>;
|
|
15965
16659
|
declare const zWalletDelegationMode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15966
16660
|
custom: "custom";
|
|
@@ -15971,6 +16665,7 @@ declare const zWalletDelegationCaps: z$1.ZodNullable<z$1.ZodObject<{
|
|
|
15971
16665
|
native: z$1.ZodString;
|
|
15972
16666
|
usdc: z$1.ZodString;
|
|
15973
16667
|
}, z$1.core.$strip>>;
|
|
16668
|
+
declare const zDelegationSlippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15974
16669
|
declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
15975
16670
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
15976
16671
|
custom: "custom";
|
|
@@ -15982,9 +16677,14 @@ declare const zWalletDelegationStatus: z$1.ZodObject<{
|
|
|
15982
16677
|
usdc: z$1.ZodString;
|
|
15983
16678
|
}, z$1.core.$strip>>;
|
|
15984
16679
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16680
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
15985
16681
|
}, z$1.core.$strip>;
|
|
15986
16682
|
declare const zWalletItem: z$1.ZodObject<{
|
|
15987
|
-
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
|
+
}>;
|
|
15988
16688
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
15989
16689
|
kind: z$1.ZodEnum<{
|
|
15990
16690
|
app: "app";
|
|
@@ -16008,6 +16708,18 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
16008
16708
|
native: z$1.ZodString;
|
|
16009
16709
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16010
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>>;
|
|
16011
16723
|
}, z$1.core.$strip>;
|
|
16012
16724
|
delegation: z$1.ZodObject<{
|
|
16013
16725
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -16020,6 +16732,7 @@ declare const zWalletItem: z$1.ZodObject<{
|
|
|
16020
16732
|
usdc: z$1.ZodString;
|
|
16021
16733
|
}, z$1.core.$strip>>;
|
|
16022
16734
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16735
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
16023
16736
|
}, z$1.core.$strip>;
|
|
16024
16737
|
}, z$1.core.$strip>;
|
|
16025
16738
|
declare const zWalletListResponse: z$1.ZodObject<{
|
|
@@ -16028,12 +16741,24 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
16028
16741
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
16029
16742
|
"base-mainnet": "base-mainnet";
|
|
16030
16743
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
16744
|
+
"base-sepolia": "base-sepolia";
|
|
16745
|
+
"solana-mainnet": "solana-mainnet";
|
|
16746
|
+
"solana-devnet": "solana-devnet";
|
|
16031
16747
|
}>;
|
|
16032
16748
|
displayName: z$1.ZodString;
|
|
16033
|
-
|
|
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>;
|
|
16034
16755
|
}, z$1.core.$strip>>;
|
|
16035
16756
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
16036
|
-
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
|
+
}>;
|
|
16037
16762
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
16038
16763
|
kind: z$1.ZodEnum<{
|
|
16039
16764
|
app: "app";
|
|
@@ -16057,6 +16782,18 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
16057
16782
|
native: z$1.ZodString;
|
|
16058
16783
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
16059
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>>;
|
|
16060
16797
|
}, z$1.core.$strip>;
|
|
16061
16798
|
delegation: z$1.ZodObject<{
|
|
16062
16799
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -16069,6 +16806,7 @@ declare const zWalletListResponse: z$1.ZodObject<{
|
|
|
16069
16806
|
usdc: z$1.ZodString;
|
|
16070
16807
|
}, z$1.core.$strip>>;
|
|
16071
16808
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
16809
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
16072
16810
|
}, z$1.core.$strip>;
|
|
16073
16811
|
}, z$1.core.$strip>>;
|
|
16074
16812
|
}, z$1.core.$strip>;
|
|
@@ -17994,6 +18732,17 @@ declare const zAppPageRejectedNotificationPayload: z$1.ZodObject<{
|
|
|
17994
18732
|
}>;
|
|
17995
18733
|
notes: z$1.ZodString;
|
|
17996
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>;
|
|
17997
18746
|
declare const zAppParticipantInviteNotificationPayload: z$1.ZodObject<{
|
|
17998
18747
|
appId: z$1.ZodUUID;
|
|
17999
18748
|
appName: z$1.ZodString;
|
|
@@ -18071,6 +18820,31 @@ declare const zNotificationItem: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
|
18071
18820
|
}, z$1.core.$strip>;
|
|
18072
18821
|
read: z$1.ZodBoolean;
|
|
18073
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;
|
|
18074
18848
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18075
18849
|
id: z$1.ZodString;
|
|
18076
18850
|
kind: z$1.ZodEnum<{
|
|
@@ -18164,6 +18938,31 @@ declare const zNotificationListResponse: z$1.ZodObject<{
|
|
|
18164
18938
|
}, z$1.core.$strip>;
|
|
18165
18939
|
read: z$1.ZodBoolean;
|
|
18166
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";
|
|
18945
|
+
}>;
|
|
18946
|
+
payload: z$1.ZodObject<{
|
|
18947
|
+
appId: z$1.ZodUUID;
|
|
18948
|
+
appName: z$1.ZodString;
|
|
18949
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18950
|
+
updateId: z$1.ZodUUID;
|
|
18951
|
+
}, z$1.core.$strip>;
|
|
18952
|
+
read: z$1.ZodBoolean;
|
|
18953
|
+
createdAt: z$1.ZodISODateTime;
|
|
18954
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18955
|
+
id: z$1.ZodString;
|
|
18956
|
+
kind: z$1.ZodEnum<{
|
|
18957
|
+
bip_now_playable: "bip_now_playable";
|
|
18958
|
+
}>;
|
|
18959
|
+
payload: z$1.ZodObject<{
|
|
18960
|
+
appId: z$1.ZodUUID;
|
|
18961
|
+
appName: z$1.ZodString;
|
|
18962
|
+
appSlug: z$1.ZodNullable<z$1.ZodString>;
|
|
18963
|
+
}, z$1.core.$strip>;
|
|
18964
|
+
read: z$1.ZodBoolean;
|
|
18965
|
+
createdAt: z$1.ZodISODateTime;
|
|
18167
18966
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
18168
18967
|
id: z$1.ZodString;
|
|
18169
18968
|
kind: z$1.ZodEnum<{
|
|
@@ -18559,6 +19358,11 @@ declare const zAcceptedCurrencies: z$1.ZodArray<z$1.ZodEnum<{
|
|
|
18559
19358
|
tron: "tron";
|
|
18560
19359
|
eth: "eth";
|
|
18561
19360
|
}>>;
|
|
19361
|
+
declare const zAcceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19362
|
+
ethereum: "ethereum";
|
|
19363
|
+
base: "base";
|
|
19364
|
+
solana: "solana";
|
|
19365
|
+
}>>>;
|
|
18562
19366
|
declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
18563
19367
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
18564
19368
|
slug: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -18573,6 +19377,11 @@ declare const zUpdateDeveloperApp: z$1.ZodObject<{
|
|
|
18573
19377
|
tron: "tron";
|
|
18574
19378
|
eth: "eth";
|
|
18575
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
|
+
}>>>>;
|
|
18576
19385
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
18577
19386
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
18578
19387
|
}, z$1.core.$strip>;
|
|
@@ -18650,7 +19459,7 @@ declare const zDeveloperAppOverviewResponse: z$1.ZodObject<{
|
|
|
18650
19459
|
}, z$1.core.$strip>;
|
|
18651
19460
|
declare const zDeveloperAppWalletItem: z$1.ZodObject<{
|
|
18652
19461
|
chain: z$1.ZodString;
|
|
18653
|
-
address: z$1.ZodString
|
|
19462
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18654
19463
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18655
19464
|
server: "server";
|
|
18656
19465
|
}>>;
|
|
@@ -18662,7 +19471,7 @@ declare const zDeveloperAppWalletsResponse: z$1.ZodObject<{
|
|
|
18662
19471
|
appId: z$1.ZodString;
|
|
18663
19472
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
18664
19473
|
chain: z$1.ZodString;
|
|
18665
|
-
address: z$1.ZodString
|
|
19474
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18666
19475
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
18667
19476
|
server: "server";
|
|
18668
19477
|
}>>;
|
|
@@ -18688,7 +19497,7 @@ declare const zDeveloperAppProvisionWalletResponse: z$1.ZodObject<{
|
|
|
18688
19497
|
server: "server";
|
|
18689
19498
|
}>;
|
|
18690
19499
|
walletId: z$1.ZodString;
|
|
18691
|
-
address: z$1.ZodString
|
|
19500
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
18692
19501
|
}, z$1.core.$strip>;
|
|
18693
19502
|
declare const zDeveloperAppWithdrawResponse: z$1.ZodObject<{
|
|
18694
19503
|
appId: z$1.ZodString;
|
|
@@ -18966,6 +19775,11 @@ declare const zDeveloperAppItem: z$1.ZodObject<{
|
|
|
18966
19775
|
tron: "tron";
|
|
18967
19776
|
eth: "eth";
|
|
18968
19777
|
}>>;
|
|
19778
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19779
|
+
ethereum: "ethereum";
|
|
19780
|
+
base: "base";
|
|
19781
|
+
solana: "solana";
|
|
19782
|
+
}>>>;
|
|
18969
19783
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
18970
19784
|
chain: z$1.ZodString;
|
|
18971
19785
|
address: z$1.ZodString;
|
|
@@ -19069,6 +19883,11 @@ declare const zDeveloperMeStatus: z$1.ZodObject<{
|
|
|
19069
19883
|
tron: "tron";
|
|
19070
19884
|
eth: "eth";
|
|
19071
19885
|
}>>;
|
|
19886
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
19887
|
+
ethereum: "ethereum";
|
|
19888
|
+
base: "base";
|
|
19889
|
+
solana: "solana";
|
|
19890
|
+
}>>>;
|
|
19072
19891
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
19073
19892
|
chain: z$1.ZodString;
|
|
19074
19893
|
address: z$1.ZodString;
|
|
@@ -19713,6 +20532,7 @@ declare const zAdminAppPageItem: z$1.ZodObject<{
|
|
|
19713
20532
|
}>;
|
|
19714
20533
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
19715
20534
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20535
|
+
openReportCount: z$1.ZodInt;
|
|
19716
20536
|
}, z$1.core.$strip>;
|
|
19717
20537
|
declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
19718
20538
|
items: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -19775,6 +20595,7 @@ declare const zAdminAppPageListResponse: z$1.ZodObject<{
|
|
|
19775
20595
|
}>;
|
|
19776
20596
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
19777
20597
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
20598
|
+
openReportCount: z$1.ZodInt;
|
|
19778
20599
|
}, z$1.core.$strip>>;
|
|
19779
20600
|
}, z$1.core.$strip>;
|
|
19780
20601
|
declare const zAdminAppPageStatusResponse: z$1.ZodObject<{
|
|
@@ -20230,6 +21051,13 @@ declare const zAppealResolveRequest: z$1.ZodObject<{
|
|
|
20230
21051
|
}>;
|
|
20231
21052
|
notes: z$1.ZodOptional<z$1.ZodString>;
|
|
20232
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>;
|
|
20233
21061
|
declare const zAppealFileResponse: z$1.ZodObject<{
|
|
20234
21062
|
appealId: z$1.ZodString;
|
|
20235
21063
|
paymentId: z$1.ZodString;
|
|
@@ -20300,7 +21128,7 @@ declare const zOauthPaymentPayoutRequest: z$1.ZodObject<{
|
|
|
20300
21128
|
}, z$1.core.$strip>>;
|
|
20301
21129
|
}, z$1.core.$strip>;
|
|
20302
21130
|
declare const zOauthPaymentDistributeResponse: z$1.ZodObject<{
|
|
20303
|
-
distributionId: z$1.ZodString
|
|
21131
|
+
distributionId: z$1.ZodOptional<z$1.ZodString>;
|
|
20304
21132
|
txHash: z$1.ZodString;
|
|
20305
21133
|
blockNumber: z$1.ZodString;
|
|
20306
21134
|
potId: z$1.ZodString;
|
|
@@ -21093,6 +21921,25 @@ declare const zGetOauthPaymentsIntentByIdResponse: z$1.ZodObject<{
|
|
|
21093
21921
|
development: "development";
|
|
21094
21922
|
production: "production";
|
|
21095
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>]>>;
|
|
21096
21943
|
}, z$1.core.$strip>;
|
|
21097
21944
|
/**
|
|
21098
21945
|
* Signed payment payload ready for the wallet to submit on-chain
|
|
@@ -21123,6 +21970,22 @@ declare const zPostOauthPaymentsIntentByIdCompleteBody: z$1.ZodDiscriminatedUnio
|
|
|
21123
21970
|
declare const zPostOauthPaymentsIntentByIdCompleteResponse: z$1.ZodObject<{
|
|
21124
21971
|
redirect: z$1.ZodURL;
|
|
21125
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>;
|
|
21126
21989
|
/**
|
|
21127
21990
|
* Redirect target the SPA navigates to
|
|
21128
21991
|
*/
|
|
@@ -21400,6 +22263,7 @@ declare const zGetPublicAppsBySlugResponse: z$1.ZodObject<{
|
|
|
21400
22263
|
}>>;
|
|
21401
22264
|
oauthScopes: z$1.ZodArray<z$1.ZodString>;
|
|
21402
22265
|
chains: z$1.ZodArray<z$1.ZodString>;
|
|
22266
|
+
devlog: z$1.ZodBoolean;
|
|
21403
22267
|
publishedAt: z$1.ZodISODateTime;
|
|
21404
22268
|
updatedAt: z$1.ZodISODateTime;
|
|
21405
22269
|
}, z$1.core.$strip>;
|
|
@@ -21635,9 +22499,31 @@ declare const zGetPublicBuildInPublicBySlugUpdatesResponse: z$1.ZodObject<{
|
|
|
21635
22499
|
commentCount: z$1.ZodInt;
|
|
21636
22500
|
createdAt: z$1.ZodISODateTime;
|
|
21637
22501
|
updatedAt: z$1.ZodISODateTime;
|
|
22502
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21638
22503
|
}, z$1.core.$strip>>;
|
|
21639
22504
|
total: z$1.ZodInt;
|
|
21640
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>>;
|
|
21641
22527
|
}, z$1.core.$strip>;
|
|
21642
22528
|
declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsPath: z$1.ZodObject<{
|
|
21643
22529
|
slug: z$1.ZodString;
|
|
@@ -21665,6 +22551,54 @@ declare const zGetPublicBuildInPublicBySlugUpdatesByUpdateIdCommentsResponse: z$
|
|
|
21665
22551
|
total: z$1.ZodInt;
|
|
21666
22552
|
hasMore: z$1.ZodBoolean;
|
|
21667
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>;
|
|
21668
22602
|
declare const zGetMeBuildInPublicBySlugReactionsPath: z$1.ZodObject<{
|
|
21669
22603
|
slug: z$1.ZodString;
|
|
21670
22604
|
}, z$1.core.$strip>;
|
|
@@ -21767,9 +22701,31 @@ declare const zGetMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
21767
22701
|
commentCount: z$1.ZodInt;
|
|
21768
22702
|
createdAt: z$1.ZodISODateTime;
|
|
21769
22703
|
updatedAt: z$1.ZodISODateTime;
|
|
22704
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21770
22705
|
}, z$1.core.$strip>>;
|
|
21771
22706
|
total: z$1.ZodInt;
|
|
21772
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>>;
|
|
21773
22729
|
}, z$1.core.$strip>;
|
|
21774
22730
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesBody: z$1.ZodObject<{
|
|
21775
22731
|
body: z$1.ZodString;
|
|
@@ -21786,9 +22742,58 @@ declare const zPostMeDeveloperAppsByAppIdBipUpdatesPath: z$1.ZodObject<{
|
|
|
21786
22742
|
appId: z$1.ZodString;
|
|
21787
22743
|
}, z$1.core.$strip>;
|
|
21788
22744
|
/**
|
|
21789
|
-
* The new update
|
|
22745
|
+
* The new update
|
|
22746
|
+
*/
|
|
22747
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
22748
|
+
id: z$1.ZodUUID;
|
|
22749
|
+
appId: z$1.ZodUUID;
|
|
22750
|
+
body: z$1.ZodString;
|
|
22751
|
+
attachments: z$1.ZodArray<z$1.ZodObject<{
|
|
22752
|
+
url: z$1.ZodURL;
|
|
22753
|
+
kind: z$1.ZodEnum<{
|
|
22754
|
+
image: "image";
|
|
22755
|
+
video: "video";
|
|
22756
|
+
}>;
|
|
22757
|
+
order: z$1.ZodInt;
|
|
22758
|
+
}, z$1.core.$strip>>;
|
|
22759
|
+
reactions: z$1.ZodObject<{
|
|
22760
|
+
up: z$1.ZodInt;
|
|
22761
|
+
down: z$1.ZodInt;
|
|
22762
|
+
}, z$1.core.$strip>;
|
|
22763
|
+
commentCount: z$1.ZodInt;
|
|
22764
|
+
createdAt: z$1.ZodISODateTime;
|
|
22765
|
+
updatedAt: z$1.ZodISODateTime;
|
|
22766
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22767
|
+
}, z$1.core.$strip>;
|
|
22768
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath: z$1.ZodObject<{
|
|
22769
|
+
appId: z$1.ZodString;
|
|
22770
|
+
updateId: z$1.ZodUUID;
|
|
22771
|
+
}, z$1.core.$strip>;
|
|
22772
|
+
/**
|
|
22773
|
+
* Deleted
|
|
22774
|
+
*/
|
|
22775
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodObject<{
|
|
22776
|
+
deleted: z$1.ZodLiteral<true>;
|
|
22777
|
+
}, z$1.core.$strip>;
|
|
22778
|
+
declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdBody: z$1.ZodObject<{
|
|
22779
|
+
body: z$1.ZodOptional<z$1.ZodString>;
|
|
22780
|
+
attachments: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
22781
|
+
url: z$1.ZodURL;
|
|
22782
|
+
kind: z$1.ZodEnum<{
|
|
22783
|
+
image: "image";
|
|
22784
|
+
video: "video";
|
|
22785
|
+
}>;
|
|
22786
|
+
order: z$1.ZodInt;
|
|
22787
|
+
}, z$1.core.$strip>>>;
|
|
22788
|
+
}, z$1.core.$strip>;
|
|
22789
|
+
declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPath: z$1.ZodObject<{
|
|
22790
|
+
appId: z$1.ZodString;
|
|
22791
|
+
updateId: z$1.ZodUUID;
|
|
22792
|
+
}, z$1.core.$strip>;
|
|
22793
|
+
/**
|
|
22794
|
+
* The fresh update
|
|
21790
22795
|
*/
|
|
21791
|
-
declare const
|
|
22796
|
+
declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodObject<{
|
|
21792
22797
|
id: z$1.ZodUUID;
|
|
21793
22798
|
appId: z$1.ZodUUID;
|
|
21794
22799
|
body: z$1.ZodString;
|
|
@@ -21807,36 +22812,44 @@ declare const zPostMeDeveloperAppsByAppIdBipUpdatesResponse: z$1.ZodObject<{
|
|
|
21807
22812
|
commentCount: z$1.ZodInt;
|
|
21808
22813
|
createdAt: z$1.ZodISODateTime;
|
|
21809
22814
|
updatedAt: z$1.ZodISODateTime;
|
|
22815
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21810
22816
|
}, z$1.core.$strip>;
|
|
21811
|
-
declare const
|
|
22817
|
+
declare const zDeleteMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
21812
22818
|
appId: z$1.ZodString;
|
|
21813
22819
|
updateId: z$1.ZodUUID;
|
|
21814
22820
|
}, z$1.core.$strip>;
|
|
21815
22821
|
/**
|
|
21816
|
-
*
|
|
22822
|
+
* The fresh (no longer pinned) update
|
|
21817
22823
|
*/
|
|
21818
|
-
declare const
|
|
21819
|
-
|
|
21820
|
-
|
|
21821
|
-
|
|
21822
|
-
|
|
21823
|
-
attachments: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
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<{
|
|
21824
22829
|
url: z$1.ZodURL;
|
|
21825
22830
|
kind: z$1.ZodEnum<{
|
|
21826
22831
|
image: "image";
|
|
21827
22832
|
video: "video";
|
|
21828
22833
|
}>;
|
|
21829
22834
|
order: z$1.ZodInt;
|
|
21830
|
-
}, z$1.core.$strip
|
|
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>;
|
|
21831
22844
|
}, z$1.core.$strip>;
|
|
21832
|
-
declare const
|
|
22845
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinPath: z$1.ZodObject<{
|
|
21833
22846
|
appId: z$1.ZodString;
|
|
21834
22847
|
updateId: z$1.ZodUUID;
|
|
21835
22848
|
}, z$1.core.$strip>;
|
|
21836
22849
|
/**
|
|
21837
|
-
* The
|
|
22850
|
+
* The freshly pinned update
|
|
21838
22851
|
*/
|
|
21839
|
-
declare const
|
|
22852
|
+
declare const zPostMeDeveloperAppsByAppIdBipUpdatesByUpdateIdPinResponse: z$1.ZodObject<{
|
|
21840
22853
|
id: z$1.ZodUUID;
|
|
21841
22854
|
appId: z$1.ZodUUID;
|
|
21842
22855
|
body: z$1.ZodString;
|
|
@@ -21855,6 +22868,7 @@ declare const zPatchMeDeveloperAppsByAppIdBipUpdatesByUpdateIdResponse: z$1.ZodO
|
|
|
21855
22868
|
commentCount: z$1.ZodInt;
|
|
21856
22869
|
createdAt: z$1.ZodISODateTime;
|
|
21857
22870
|
updatedAt: z$1.ZodISODateTime;
|
|
22871
|
+
pinnedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
21858
22872
|
}, z$1.core.$strip>;
|
|
21859
22873
|
declare const zPostMeDeveloperAppsByAppIdBipUpdatesMediaBody: z$1.ZodObject<{
|
|
21860
22874
|
file: z$1.ZodString;
|
|
@@ -22311,8 +23325,8 @@ declare const zGetPaymentsChainsResponse: z$1.ZodObject<{
|
|
|
22311
23325
|
chains: z$1.ZodArray<z$1.ZodObject<{
|
|
22312
23326
|
id: z$1.ZodString;
|
|
22313
23327
|
family: z$1.ZodEnum<{
|
|
22314
|
-
evm: "evm";
|
|
22315
23328
|
solana: "solana";
|
|
23329
|
+
evm: "evm";
|
|
22316
23330
|
}>;
|
|
22317
23331
|
displayName: z$1.ZodString;
|
|
22318
23332
|
chainId: z$1.ZodOptional<z$1.ZodInt>;
|
|
@@ -22860,6 +23874,74 @@ declare const zGetPaymentsMeActivityResponse: z$1.ZodObject<{
|
|
|
22860
23874
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
22861
23875
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
22862
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>;
|
|
23930
|
+
status: z$1.ZodEnum<{
|
|
23931
|
+
settled: "settled";
|
|
23932
|
+
}>;
|
|
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">;
|
|
22863
23945
|
}, z$1.core.$strip>], "kind">>;
|
|
22864
23946
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
22865
23947
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23333,6 +24415,74 @@ declare const zGetPaymentsMeActivityGroupByGroupIdResponse: z$1.ZodObject<{
|
|
|
23333
24415
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
23334
24416
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
23335
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">;
|
|
23336
24486
|
}, z$1.core.$strip>], "kind">>;
|
|
23337
24487
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
23338
24488
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -23834,12 +24984,24 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23834
24984
|
"ethereum-mainnet": "ethereum-mainnet";
|
|
23835
24985
|
"base-mainnet": "base-mainnet";
|
|
23836
24986
|
"ethereum-sepolia": "ethereum-sepolia";
|
|
24987
|
+
"base-sepolia": "base-sepolia";
|
|
24988
|
+
"solana-mainnet": "solana-mainnet";
|
|
24989
|
+
"solana-devnet": "solana-devnet";
|
|
23837
24990
|
}>;
|
|
23838
24991
|
displayName: z$1.ZodString;
|
|
23839
|
-
|
|
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>;
|
|
23840
24998
|
}, z$1.core.$strip>>;
|
|
23841
24999
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
23842
|
-
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
|
+
}>;
|
|
23843
25005
|
label: z$1.ZodNullable<z$1.ZodString>;
|
|
23844
25006
|
kind: z$1.ZodEnum<{
|
|
23845
25007
|
app: "app";
|
|
@@ -23863,6 +25025,18 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23863
25025
|
native: z$1.ZodString;
|
|
23864
25026
|
usdc: z$1.ZodOptional<z$1.ZodString>;
|
|
23865
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>>;
|
|
23866
25040
|
}, z$1.core.$strip>;
|
|
23867
25041
|
delegation: z$1.ZodObject<{
|
|
23868
25042
|
mode: z$1.ZodNullable<z$1.ZodEnum<{
|
|
@@ -23875,6 +25049,7 @@ declare const zGetMeWalletsResponse: z$1.ZodObject<{
|
|
|
23875
25049
|
usdc: z$1.ZodString;
|
|
23876
25050
|
}, z$1.core.$strip>>;
|
|
23877
25051
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
25052
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
23878
25053
|
}, z$1.core.$strip>;
|
|
23879
25054
|
}, z$1.core.$strip>>;
|
|
23880
25055
|
}, z$1.core.$strip>;
|
|
@@ -23917,6 +25092,7 @@ declare const zGetMeWalletsByAddressDelegateResponse: z$1.ZodObject<{
|
|
|
23917
25092
|
usdc: z$1.ZodString;
|
|
23918
25093
|
}, z$1.core.$strip>>;
|
|
23919
25094
|
policyId: z$1.ZodNullable<z$1.ZodString>;
|
|
25095
|
+
slippageBps: z$1.ZodNullable<z$1.ZodInt>;
|
|
23920
25096
|
}, z$1.core.$strip>;
|
|
23921
25097
|
declare const zPostMeWalletsByAddressDelegateBody: z$1.ZodUnion<readonly [z$1.ZodObject<{
|
|
23922
25098
|
mode: z$1.ZodEnum<{
|
|
@@ -26386,6 +27562,31 @@ declare const zGetMeNotificationsResponse: z$1.ZodObject<{
|
|
|
26386
27562
|
}, z$1.core.$strip>;
|
|
26387
27563
|
read: z$1.ZodBoolean;
|
|
26388
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;
|
|
26389
27590
|
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
26390
27591
|
id: z$1.ZodString;
|
|
26391
27592
|
kind: z$1.ZodEnum<{
|
|
@@ -26754,6 +27955,11 @@ declare const zPatchMeDeveloperAppsByIdBody: z$1.ZodObject<{
|
|
|
26754
27955
|
tron: "tron";
|
|
26755
27956
|
eth: "eth";
|
|
26756
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
|
+
}>>>>;
|
|
26757
27963
|
paymentStatusWebhookUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
26758
27964
|
paymentStatusWebhookUrlTest: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodURL>>;
|
|
26759
27965
|
}, z$1.core.$strip>;
|
|
@@ -27363,6 +28569,74 @@ declare const zGetMeDeveloperAppsByIdActivityResponse: z$1.ZodObject<{
|
|
|
27363
28569
|
counterpartyHandle: z$1.ZodNullable<z$1.ZodString>;
|
|
27364
28570
|
counterpartyDisplayName: z$1.ZodNullable<z$1.ZodString>;
|
|
27365
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">;
|
|
27366
28640
|
}, z$1.core.$strip>], "kind">>;
|
|
27367
28641
|
nextBefore: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
27368
28642
|
nextCursor: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -27378,7 +28652,7 @@ declare const zGetMeDeveloperAppsByIdWalletsResponse: z$1.ZodObject<{
|
|
|
27378
28652
|
appId: z$1.ZodString;
|
|
27379
28653
|
wallets: z$1.ZodArray<z$1.ZodObject<{
|
|
27380
28654
|
chain: z$1.ZodString;
|
|
27381
|
-
address: z$1.ZodString
|
|
28655
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27382
28656
|
custody: z$1.ZodNullable<z$1.ZodEnum<{
|
|
27383
28657
|
server: "server";
|
|
27384
28658
|
}>>;
|
|
@@ -27418,7 +28692,7 @@ declare const zPostMeDeveloperAppsByIdWalletsByChainProvisionResponse: z$1.ZodOb
|
|
|
27418
28692
|
server: "server";
|
|
27419
28693
|
}>;
|
|
27420
28694
|
walletId: z$1.ZodString;
|
|
27421
|
-
address: z$1.ZodString
|
|
28695
|
+
address: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodString]>;
|
|
27422
28696
|
}, z$1.core.$strip>;
|
|
27423
28697
|
declare const zPostMeDeveloperAppsByIdWalletsByChainWithdrawPath: z$1.ZodObject<{
|
|
27424
28698
|
id: z$1.ZodString;
|
|
@@ -27736,6 +29010,11 @@ declare const zGetMeDeveloperResponse: z$1.ZodObject<{
|
|
|
27736
29010
|
tron: "tron";
|
|
27737
29011
|
eth: "eth";
|
|
27738
29012
|
}>>;
|
|
29013
|
+
acceptedNetworks: z$1.ZodNullable<z$1.ZodArray<z$1.ZodEnum<{
|
|
29014
|
+
ethereum: "ethereum";
|
|
29015
|
+
base: "base";
|
|
29016
|
+
solana: "solana";
|
|
29017
|
+
}>>>;
|
|
27739
29018
|
payoutAddresses: z$1.ZodArray<z$1.ZodObject<{
|
|
27740
29019
|
chain: z$1.ZodString;
|
|
27741
29020
|
address: z$1.ZodString;
|
|
@@ -29285,6 +30564,7 @@ declare const zGetAdminAppPagesResponse: z$1.ZodObject<{
|
|
|
29285
30564
|
}>;
|
|
29286
30565
|
bipFirstPublishedAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
29287
30566
|
bipHiddenAt: z$1.ZodNullable<z$1.ZodISODateTime>;
|
|
30567
|
+
openReportCount: z$1.ZodInt;
|
|
29288
30568
|
}, z$1.core.$strip>>;
|
|
29289
30569
|
}, z$1.core.$strip>;
|
|
29290
30570
|
declare const zPostAdminAppPagesByAppIdHideBody: z$1.ZodObject<{
|
|
@@ -29927,6 +31207,16 @@ declare const zPostAdminPaymentsAppealsByAppealIdResolveResponse: z$1.ZodObject<
|
|
|
29927
31207
|
resolved_dismiss: "resolved_dismiss";
|
|
29928
31208
|
}>;
|
|
29929
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>;
|
|
29930
31220
|
declare const zPostPaymentsAppealsBody: z$1.ZodObject<{
|
|
29931
31221
|
paymentId: z$1.ZodString;
|
|
29932
31222
|
amount: z$1.ZodString;
|
|
@@ -30156,7 +31446,7 @@ declare const zPostOauthPaymentsDistributeBody: z$1.ZodObject<{
|
|
|
30156
31446
|
* Distribution submitted (legs settled on-chain)
|
|
30157
31447
|
*/
|
|
30158
31448
|
declare const zPostOauthPaymentsDistributeResponse: z$1.ZodObject<{
|
|
30159
|
-
distributionId: z$1.ZodString
|
|
31449
|
+
distributionId: z$1.ZodOptional<z$1.ZodString>;
|
|
30160
31450
|
txHash: z$1.ZodString;
|
|
30161
31451
|
blockNumber: z$1.ZodString;
|
|
30162
31452
|
potId: z$1.ZodString;
|
|
@@ -30347,4 +31637,4 @@ declare const zPostMeConsentBody: z$1.ZodObject<{
|
|
|
30347
31637
|
*/
|
|
30348
31638
|
declare const zPostMeConsentResponse: z$1.ZodVoid;
|
|
30349
31639
|
//#endregion
|
|
30350
|
-
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 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 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 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 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 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 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, 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, 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, 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, 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, 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, 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 };
|