@metatrongg/sdk 0.8.0-dev.91af108 → 0.8.0-dev.9b2d5db
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 +99 -4
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +646 -16
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +100 -5
- package/dist/node/index.js +1 -1
- package/dist/webhook/express.js +1 -1
- package/dist/webhook/fastify.js +1 -1
- package/dist/webhook/hono.js +1 -1
- package/dist/webhook/index.js +1 -1
- package/package.json +3 -3
package/dist/node/index.d.ts
CHANGED
|
@@ -291,7 +291,15 @@ type OauthPaymentIntentContext = {
|
|
|
291
291
|
};
|
|
292
292
|
} | null;
|
|
293
293
|
environment: "development" | "production";
|
|
294
|
+
onramp?: {
|
|
295
|
+
kind: "bridge";
|
|
296
|
+
from: PaymentNetwork;
|
|
297
|
+
to: PaymentNetwork;
|
|
298
|
+
} | {
|
|
299
|
+
kind: "insufficient";
|
|
300
|
+
};
|
|
294
301
|
};
|
|
302
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
295
303
|
type OauthPaymentIntentSignResponse = {
|
|
296
304
|
chain: string;
|
|
297
305
|
chainId: number;
|
|
@@ -321,6 +329,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
321
329
|
type OauthPaymentIntentCompleteOffline = {
|
|
322
330
|
method: "offline";
|
|
323
331
|
};
|
|
332
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
333
|
+
transaction: string;
|
|
334
|
+
payer: string;
|
|
335
|
+
};
|
|
336
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
337
|
+
signedTransaction: string;
|
|
338
|
+
};
|
|
324
339
|
type ListAppPaymentAuthorizationsResponse = {
|
|
325
340
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
326
341
|
};
|
|
@@ -492,6 +507,14 @@ type ReviewAuthor = {
|
|
|
492
507
|
name: string | null;
|
|
493
508
|
avatarUrl: string | null;
|
|
494
509
|
};
|
|
510
|
+
type BipInterestCountResponse = {
|
|
511
|
+
interestCount: number;
|
|
512
|
+
};
|
|
513
|
+
type BipEngagementResponse = {
|
|
514
|
+
interested: boolean;
|
|
515
|
+
subscribed: boolean;
|
|
516
|
+
interestCount: number;
|
|
517
|
+
};
|
|
495
518
|
type MyBipUpdateReactionsResponse = {
|
|
496
519
|
reactions: Array<MyBipUpdateReaction>;
|
|
497
520
|
};
|
|
@@ -1315,12 +1338,15 @@ type WalletListResponse = {
|
|
|
1315
1338
|
wallets: Array<WalletItem>;
|
|
1316
1339
|
};
|
|
1317
1340
|
type WalletChainList = Array<{
|
|
1318
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1341
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1319
1342
|
displayName: string;
|
|
1320
|
-
|
|
1343
|
+
family: "evm" | "solana";
|
|
1344
|
+
nativeSymbol: string;
|
|
1345
|
+
chainId?: number;
|
|
1321
1346
|
}>;
|
|
1322
1347
|
type WalletItem = {
|
|
1323
|
-
address: string;
|
|
1348
|
+
address: string | string;
|
|
1349
|
+
family: "evm" | "solana";
|
|
1324
1350
|
label: WalletLabel;
|
|
1325
1351
|
kind: "personal" | "app";
|
|
1326
1352
|
app: WalletAppLink;
|
|
@@ -1337,6 +1363,9 @@ type WalletBalances = {
|
|
|
1337
1363
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1338
1364
|
"base-mainnet"?: WalletChainBalance;
|
|
1339
1365
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1366
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1367
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1368
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1340
1369
|
};
|
|
1341
1370
|
type WalletChainBalance = {
|
|
1342
1371
|
native: string;
|
|
@@ -1346,12 +1375,14 @@ type WalletDelegationStatus = {
|
|
|
1346
1375
|
mode: WalletDelegationMode;
|
|
1347
1376
|
caps: WalletDelegationCaps;
|
|
1348
1377
|
policyId: string | null;
|
|
1378
|
+
slippageBps: DelegationSlippageBps;
|
|
1349
1379
|
};
|
|
1350
1380
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1351
1381
|
type WalletDelegationCaps = {
|
|
1352
1382
|
native: string;
|
|
1353
1383
|
usdc: string;
|
|
1354
1384
|
} | null;
|
|
1385
|
+
type DelegationSlippageBps = number | null;
|
|
1355
1386
|
type WalletLabelUpdateResponse = {
|
|
1356
1387
|
address: string;
|
|
1357
1388
|
label: WalletLabel;
|
|
@@ -2011,6 +2042,18 @@ type NotificationItem = {
|
|
|
2011
2042
|
payload: AppPageRejectedNotificationPayload;
|
|
2012
2043
|
read: boolean;
|
|
2013
2044
|
createdAt: string;
|
|
2045
|
+
} | {
|
|
2046
|
+
id: string;
|
|
2047
|
+
kind: "bip_update_published";
|
|
2048
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
2049
|
+
read: boolean;
|
|
2050
|
+
createdAt: string;
|
|
2051
|
+
} | {
|
|
2052
|
+
id: string;
|
|
2053
|
+
kind: "bip_now_playable";
|
|
2054
|
+
payload: BipNowPlayableNotificationPayload;
|
|
2055
|
+
read: boolean;
|
|
2056
|
+
createdAt: string;
|
|
2014
2057
|
} | {
|
|
2015
2058
|
id: string;
|
|
2016
2059
|
kind: "app_participant_invite";
|
|
@@ -2049,6 +2092,17 @@ type AppPageRejectedNotificationPayload = {
|
|
|
2049
2092
|
scope: "publish" | "changes" | "bip_publish";
|
|
2050
2093
|
notes: string;
|
|
2051
2094
|
};
|
|
2095
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
2096
|
+
appId: string;
|
|
2097
|
+
appName: string;
|
|
2098
|
+
appSlug: string | null;
|
|
2099
|
+
updateId: string;
|
|
2100
|
+
};
|
|
2101
|
+
type BipNowPlayableNotificationPayload = {
|
|
2102
|
+
appId: string;
|
|
2103
|
+
appName: string;
|
|
2104
|
+
appSlug: string | null;
|
|
2105
|
+
};
|
|
2052
2106
|
type AppParticipantInviteNotificationPayload = {
|
|
2053
2107
|
appId: string;
|
|
2054
2108
|
appName: string;
|
|
@@ -2216,12 +2270,14 @@ type UpdateDeveloperApp = {
|
|
|
2216
2270
|
redirectUris?: Array<string>;
|
|
2217
2271
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2218
2272
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2273
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2219
2274
|
paymentStatusWebhookUrl?: string | null;
|
|
2220
2275
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2221
2276
|
};
|
|
2222
2277
|
type EmbedOrigin = string;
|
|
2223
2278
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2224
2279
|
type PlatformCurrency = "eth" | "tron";
|
|
2280
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2225
2281
|
type DeveloperLogoUploadResponse = {
|
|
2226
2282
|
logoUrl: string | null;
|
|
2227
2283
|
};
|
|
@@ -2468,6 +2524,7 @@ type DeveloperAppItem = {
|
|
|
2468
2524
|
redirectUris: Array<string>;
|
|
2469
2525
|
embedOrigins: Array<EmbedOrigin>;
|
|
2470
2526
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2527
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2471
2528
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2472
2529
|
keys: Array<DeveloperAppKeyItem>;
|
|
2473
2530
|
pendingProductionRequestId: string | null;
|
|
@@ -2701,6 +2758,7 @@ type AdminAppPageItem = {
|
|
|
2701
2758
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2702
2759
|
bipFirstPublishedAt: string | null;
|
|
2703
2760
|
bipHiddenAt: string | null;
|
|
2761
|
+
openReportCount: number;
|
|
2704
2762
|
};
|
|
2705
2763
|
type AdminAppPageStatusResponse = {
|
|
2706
2764
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2925,6 +2983,13 @@ type AppealResolveRequest = {
|
|
|
2925
2983
|
decision: "refund" | "dismiss";
|
|
2926
2984
|
notes?: string;
|
|
2927
2985
|
};
|
|
2986
|
+
type PaymentRatesResponse = {
|
|
2987
|
+
asOf: string;
|
|
2988
|
+
ethUsd: number | null;
|
|
2989
|
+
solUsd: number | null;
|
|
2990
|
+
solLamportsPerCent: number | null;
|
|
2991
|
+
tronUsdPerToken: number;
|
|
2992
|
+
};
|
|
2928
2993
|
type AppealFileResponse = {
|
|
2929
2994
|
appealId: string;
|
|
2930
2995
|
paymentId: string;
|
|
@@ -2973,7 +3038,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
2973
3038
|
metadata?: PaymentMetadata;
|
|
2974
3039
|
};
|
|
2975
3040
|
type OauthPaymentDistributeResponse = {
|
|
2976
|
-
distributionId
|
|
3041
|
+
distributionId?: string;
|
|
2977
3042
|
txHash: string;
|
|
2978
3043
|
blockNumber: string;
|
|
2979
3044
|
potId: string;
|
|
@@ -3382,6 +3447,24 @@ declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
|
3382
3447
|
readonly filename: string;
|
|
3383
3448
|
readonly contentType: string;
|
|
3384
3449
|
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3450
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3451
|
+
readonly bearer?: string;
|
|
3452
|
+
readonly slug: string;
|
|
3453
|
+
}): Promise<BipInterestCountResponse>;
|
|
3454
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3455
|
+
readonly bearer: string;
|
|
3456
|
+
readonly slug: string;
|
|
3457
|
+
}): Promise<BipEngagementResponse>;
|
|
3458
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3459
|
+
readonly bearer: string;
|
|
3460
|
+
readonly slug: string;
|
|
3461
|
+
readonly interested: boolean;
|
|
3462
|
+
}): Promise<BipEngagementResponse>;
|
|
3463
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3464
|
+
readonly bearer: string;
|
|
3465
|
+
readonly slug: string;
|
|
3466
|
+
readonly subscribed: boolean;
|
|
3467
|
+
}): Promise<BipEngagementResponse>;
|
|
3385
3468
|
//#endregion
|
|
3386
3469
|
//#region src/catalog/build-in-public.d.ts
|
|
3387
3470
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
@@ -3566,6 +3649,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3566
3649
|
readonly before?: string;
|
|
3567
3650
|
}): Promise<PaymentHistoryResponse>;
|
|
3568
3651
|
//#endregion
|
|
3652
|
+
//#region src/dashboard/rates.d.ts
|
|
3653
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3654
|
+
//#endregion
|
|
3569
3655
|
//#region src/developer/api-keys.d.ts
|
|
3570
3656
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3571
3657
|
readonly bearer: string;
|
|
@@ -4353,6 +4439,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4353
4439
|
readonly bearer: string;
|
|
4354
4440
|
readonly intentId: string;
|
|
4355
4441
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4442
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4443
|
+
readonly bearer: string;
|
|
4444
|
+
readonly intentId: string;
|
|
4445
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4446
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4447
|
+
readonly bearer: string;
|
|
4448
|
+
readonly intentId: string;
|
|
4449
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4450
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4356
4451
|
//#endregion
|
|
4357
4452
|
//#region src/payments/limits.d.ts
|
|
4358
4453
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4863,4 +4958,4 @@ declare class TronNodeClient {
|
|
|
4863
4958
|
};
|
|
4864
4959
|
}
|
|
4865
4960
|
//#endregion
|
|
4866
|
-
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createBipUpdate, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|
|
4961
|
+
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createBipUpdate, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|