@metatrongg/sdk 0.8.0-dev.4fc3172 → 0.8.0-dev.59008a3
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 +49 -4
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +349 -16
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +50 -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
|
};
|
|
@@ -1323,12 +1338,15 @@ type WalletListResponse = {
|
|
|
1323
1338
|
wallets: Array<WalletItem>;
|
|
1324
1339
|
};
|
|
1325
1340
|
type WalletChainList = Array<{
|
|
1326
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1341
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1327
1342
|
displayName: string;
|
|
1328
|
-
|
|
1343
|
+
family: "evm" | "solana";
|
|
1344
|
+
nativeSymbol: string;
|
|
1345
|
+
chainId?: number;
|
|
1329
1346
|
}>;
|
|
1330
1347
|
type WalletItem = {
|
|
1331
|
-
address: string;
|
|
1348
|
+
address: string | string;
|
|
1349
|
+
family: "evm" | "solana";
|
|
1332
1350
|
label: WalletLabel;
|
|
1333
1351
|
kind: "personal" | "app";
|
|
1334
1352
|
app: WalletAppLink;
|
|
@@ -1345,6 +1363,9 @@ type WalletBalances = {
|
|
|
1345
1363
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1346
1364
|
"base-mainnet"?: WalletChainBalance;
|
|
1347
1365
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1366
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1367
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1368
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1348
1369
|
};
|
|
1349
1370
|
type WalletChainBalance = {
|
|
1350
1371
|
native: string;
|
|
@@ -1354,12 +1375,14 @@ type WalletDelegationStatus = {
|
|
|
1354
1375
|
mode: WalletDelegationMode;
|
|
1355
1376
|
caps: WalletDelegationCaps;
|
|
1356
1377
|
policyId: string | null;
|
|
1378
|
+
slippageBps: DelegationSlippageBps;
|
|
1357
1379
|
};
|
|
1358
1380
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1359
1381
|
type WalletDelegationCaps = {
|
|
1360
1382
|
native: string;
|
|
1361
1383
|
usdc: string;
|
|
1362
1384
|
} | null;
|
|
1385
|
+
type DelegationSlippageBps = number | null;
|
|
1363
1386
|
type WalletLabelUpdateResponse = {
|
|
1364
1387
|
address: string;
|
|
1365
1388
|
label: WalletLabel;
|
|
@@ -2247,12 +2270,14 @@ type UpdateDeveloperApp = {
|
|
|
2247
2270
|
redirectUris?: Array<string>;
|
|
2248
2271
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2249
2272
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2273
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2250
2274
|
paymentStatusWebhookUrl?: string | null;
|
|
2251
2275
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2252
2276
|
};
|
|
2253
2277
|
type EmbedOrigin = string;
|
|
2254
2278
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2255
2279
|
type PlatformCurrency = "eth" | "tron";
|
|
2280
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2256
2281
|
type DeveloperLogoUploadResponse = {
|
|
2257
2282
|
logoUrl: string | null;
|
|
2258
2283
|
};
|
|
@@ -2499,6 +2524,7 @@ type DeveloperAppItem = {
|
|
|
2499
2524
|
redirectUris: Array<string>;
|
|
2500
2525
|
embedOrigins: Array<EmbedOrigin>;
|
|
2501
2526
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2527
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2502
2528
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2503
2529
|
keys: Array<DeveloperAppKeyItem>;
|
|
2504
2530
|
pendingProductionRequestId: string | null;
|
|
@@ -2957,6 +2983,13 @@ type AppealResolveRequest = {
|
|
|
2957
2983
|
decision: "refund" | "dismiss";
|
|
2958
2984
|
notes?: string;
|
|
2959
2985
|
};
|
|
2986
|
+
type PaymentRatesResponse = {
|
|
2987
|
+
asOf: string;
|
|
2988
|
+
ethUsd: number | null;
|
|
2989
|
+
solUsd: number | null;
|
|
2990
|
+
solLamportsPerCent: number | null;
|
|
2991
|
+
tronUsdPerToken: number;
|
|
2992
|
+
};
|
|
2960
2993
|
type AppealFileResponse = {
|
|
2961
2994
|
appealId: string;
|
|
2962
2995
|
paymentId: string;
|
|
@@ -3005,7 +3038,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3005
3038
|
metadata?: PaymentMetadata;
|
|
3006
3039
|
};
|
|
3007
3040
|
type OauthPaymentDistributeResponse = {
|
|
3008
|
-
distributionId
|
|
3041
|
+
distributionId?: string;
|
|
3009
3042
|
txHash: string;
|
|
3010
3043
|
blockNumber: string;
|
|
3011
3044
|
potId: string;
|
|
@@ -3616,6 +3649,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3616
3649
|
readonly before?: string;
|
|
3617
3650
|
}): Promise<PaymentHistoryResponse>;
|
|
3618
3651
|
//#endregion
|
|
3652
|
+
//#region src/dashboard/rates.d.ts
|
|
3653
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3654
|
+
//#endregion
|
|
3619
3655
|
//#region src/developer/api-keys.d.ts
|
|
3620
3656
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3621
3657
|
readonly bearer: string;
|
|
@@ -4403,6 +4439,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4403
4439
|
readonly bearer: string;
|
|
4404
4440
|
readonly intentId: string;
|
|
4405
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>;
|
|
4406
4451
|
//#endregion
|
|
4407
4452
|
//#region src/payments/limits.d.ts
|
|
4408
4453
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4913,4 +4958,4 @@ declare class TronNodeClient {
|
|
|
4913
4958
|
};
|
|
4914
4959
|
}
|
|
4915
4960
|
//#endregion
|
|
4916
|
-
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, 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, 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, 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 };
|
|
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 };
|