@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/browser/index.d.ts
CHANGED
|
@@ -249,7 +249,15 @@ type OauthPaymentIntentContext = {
|
|
|
249
249
|
};
|
|
250
250
|
} | null;
|
|
251
251
|
environment: "development" | "production";
|
|
252
|
+
onramp?: {
|
|
253
|
+
kind: "bridge";
|
|
254
|
+
from: PaymentNetwork;
|
|
255
|
+
to: PaymentNetwork;
|
|
256
|
+
} | {
|
|
257
|
+
kind: "insufficient";
|
|
258
|
+
};
|
|
252
259
|
};
|
|
260
|
+
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
253
261
|
type OauthPaymentIntentSignResponse = {
|
|
254
262
|
chain: string;
|
|
255
263
|
chainId: number;
|
|
@@ -279,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
279
287
|
type OauthPaymentIntentCompleteOffline = {
|
|
280
288
|
method: "offline";
|
|
281
289
|
};
|
|
290
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
291
|
+
transaction: string;
|
|
292
|
+
payer: string;
|
|
293
|
+
};
|
|
294
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
295
|
+
signedTransaction: string;
|
|
296
|
+
};
|
|
282
297
|
type ListAppPaymentAuthorizationsResponse = {
|
|
283
298
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
284
299
|
};
|
|
@@ -450,6 +465,14 @@ type ReviewAuthor = {
|
|
|
450
465
|
name: string | null;
|
|
451
466
|
avatarUrl: string | null;
|
|
452
467
|
};
|
|
468
|
+
type BipInterestCountResponse = {
|
|
469
|
+
interestCount: number;
|
|
470
|
+
};
|
|
471
|
+
type BipEngagementResponse = {
|
|
472
|
+
interested: boolean;
|
|
473
|
+
subscribed: boolean;
|
|
474
|
+
interestCount: number;
|
|
475
|
+
};
|
|
453
476
|
type MyBipUpdateReactionsResponse = {
|
|
454
477
|
reactions: Array<MyBipUpdateReaction>;
|
|
455
478
|
};
|
|
@@ -1197,12 +1220,15 @@ type WalletListResponse = {
|
|
|
1197
1220
|
wallets: Array<WalletItem>;
|
|
1198
1221
|
};
|
|
1199
1222
|
type WalletChainList = Array<{
|
|
1200
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1223
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
|
|
1201
1224
|
displayName: string;
|
|
1202
|
-
|
|
1225
|
+
family: "evm" | "solana";
|
|
1226
|
+
nativeSymbol: string;
|
|
1227
|
+
chainId?: number;
|
|
1203
1228
|
}>;
|
|
1204
1229
|
type WalletItem = {
|
|
1205
|
-
address: string;
|
|
1230
|
+
address: string | string;
|
|
1231
|
+
family: "evm" | "solana";
|
|
1206
1232
|
label: WalletLabel;
|
|
1207
1233
|
kind: "personal" | "app";
|
|
1208
1234
|
app: WalletAppLink;
|
|
@@ -1219,6 +1245,9 @@ type WalletBalances = {
|
|
|
1219
1245
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1220
1246
|
"base-mainnet"?: WalletChainBalance;
|
|
1221
1247
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1248
|
+
"base-sepolia"?: WalletChainBalance;
|
|
1249
|
+
"solana-mainnet"?: WalletChainBalance;
|
|
1250
|
+
"solana-devnet"?: WalletChainBalance;
|
|
1222
1251
|
};
|
|
1223
1252
|
type WalletChainBalance = {
|
|
1224
1253
|
native: string;
|
|
@@ -1228,12 +1257,14 @@ type WalletDelegationStatus = {
|
|
|
1228
1257
|
mode: WalletDelegationMode;
|
|
1229
1258
|
caps: WalletDelegationCaps;
|
|
1230
1259
|
policyId: string | null;
|
|
1260
|
+
slippageBps: DelegationSlippageBps;
|
|
1231
1261
|
};
|
|
1232
1262
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1233
1263
|
type WalletDelegationCaps = {
|
|
1234
1264
|
native: string;
|
|
1235
1265
|
usdc: string;
|
|
1236
1266
|
} | null;
|
|
1267
|
+
type DelegationSlippageBps = number | null;
|
|
1237
1268
|
type WalletLabelUpdateResponse = {
|
|
1238
1269
|
address: string;
|
|
1239
1270
|
label: WalletLabel;
|
|
@@ -1914,6 +1945,18 @@ type NotificationItem = {
|
|
|
1914
1945
|
payload: AppPageRejectedNotificationPayload;
|
|
1915
1946
|
read: boolean;
|
|
1916
1947
|
createdAt: string;
|
|
1948
|
+
} | {
|
|
1949
|
+
id: string;
|
|
1950
|
+
kind: "bip_update_published";
|
|
1951
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
1952
|
+
read: boolean;
|
|
1953
|
+
createdAt: string;
|
|
1954
|
+
} | {
|
|
1955
|
+
id: string;
|
|
1956
|
+
kind: "bip_now_playable";
|
|
1957
|
+
payload: BipNowPlayableNotificationPayload;
|
|
1958
|
+
read: boolean;
|
|
1959
|
+
createdAt: string;
|
|
1917
1960
|
} | {
|
|
1918
1961
|
id: string;
|
|
1919
1962
|
kind: "app_participant_invite";
|
|
@@ -1952,6 +1995,17 @@ type AppPageRejectedNotificationPayload = {
|
|
|
1952
1995
|
scope: "publish" | "changes" | "bip_publish";
|
|
1953
1996
|
notes: string;
|
|
1954
1997
|
};
|
|
1998
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
1999
|
+
appId: string;
|
|
2000
|
+
appName: string;
|
|
2001
|
+
appSlug: string | null;
|
|
2002
|
+
updateId: string;
|
|
2003
|
+
};
|
|
2004
|
+
type BipNowPlayableNotificationPayload = {
|
|
2005
|
+
appId: string;
|
|
2006
|
+
appName: string;
|
|
2007
|
+
appSlug: string | null;
|
|
2008
|
+
};
|
|
1955
2009
|
type AppParticipantInviteNotificationPayload = {
|
|
1956
2010
|
appId: string;
|
|
1957
2011
|
appName: string;
|
|
@@ -2119,12 +2173,14 @@ type UpdateDeveloperApp = {
|
|
|
2119
2173
|
redirectUris?: Array<string>;
|
|
2120
2174
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2121
2175
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2176
|
+
acceptedNetworks?: AcceptedNetworks;
|
|
2122
2177
|
paymentStatusWebhookUrl?: string | null;
|
|
2123
2178
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2124
2179
|
};
|
|
2125
2180
|
type EmbedOrigin = string;
|
|
2126
2181
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2127
2182
|
type PlatformCurrency = "eth" | "tron";
|
|
2183
|
+
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2128
2184
|
type DeveloperLogoUploadResponse = {
|
|
2129
2185
|
logoUrl: string | null;
|
|
2130
2186
|
};
|
|
@@ -2371,6 +2427,7 @@ type DeveloperAppItem = {
|
|
|
2371
2427
|
redirectUris: Array<string>;
|
|
2372
2428
|
embedOrigins: Array<EmbedOrigin>;
|
|
2373
2429
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2430
|
+
acceptedNetworks: AcceptedNetworks;
|
|
2374
2431
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2375
2432
|
keys: Array<DeveloperAppKeyItem>;
|
|
2376
2433
|
pendingProductionRequestId: string | null;
|
|
@@ -2604,6 +2661,7 @@ type AdminAppPageItem = {
|
|
|
2604
2661
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2605
2662
|
bipFirstPublishedAt: string | null;
|
|
2606
2663
|
bipHiddenAt: string | null;
|
|
2664
|
+
openReportCount: number;
|
|
2607
2665
|
};
|
|
2608
2666
|
type AdminAppPageStatusResponse = {
|
|
2609
2667
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2828,6 +2886,13 @@ type AppealResolveRequest = {
|
|
|
2828
2886
|
decision: "refund" | "dismiss";
|
|
2829
2887
|
notes?: string;
|
|
2830
2888
|
};
|
|
2889
|
+
type PaymentRatesResponse = {
|
|
2890
|
+
asOf: string;
|
|
2891
|
+
ethUsd: number | null;
|
|
2892
|
+
solUsd: number | null;
|
|
2893
|
+
solLamportsPerCent: number | null;
|
|
2894
|
+
tronUsdPerToken: number;
|
|
2895
|
+
};
|
|
2831
2896
|
type AppealFileResponse = {
|
|
2832
2897
|
appealId: string;
|
|
2833
2898
|
paymentId: string;
|
|
@@ -3223,6 +3288,24 @@ declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
|
3223
3288
|
readonly filename: string;
|
|
3224
3289
|
readonly contentType: string;
|
|
3225
3290
|
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3291
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3292
|
+
readonly bearer?: string;
|
|
3293
|
+
readonly slug: string;
|
|
3294
|
+
}): Promise<BipInterestCountResponse>;
|
|
3295
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3296
|
+
readonly bearer: string;
|
|
3297
|
+
readonly slug: string;
|
|
3298
|
+
}): Promise<BipEngagementResponse>;
|
|
3299
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3300
|
+
readonly bearer: string;
|
|
3301
|
+
readonly slug: string;
|
|
3302
|
+
readonly interested: boolean;
|
|
3303
|
+
}): Promise<BipEngagementResponse>;
|
|
3304
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3305
|
+
readonly bearer: string;
|
|
3306
|
+
readonly slug: string;
|
|
3307
|
+
readonly subscribed: boolean;
|
|
3308
|
+
}): Promise<BipEngagementResponse>;
|
|
3226
3309
|
//#endregion
|
|
3227
3310
|
//#region src/catalog/build-in-public.d.ts
|
|
3228
3311
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
@@ -3401,6 +3484,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3401
3484
|
readonly before?: string;
|
|
3402
3485
|
}): Promise<PaymentHistoryResponse>;
|
|
3403
3486
|
//#endregion
|
|
3487
|
+
//#region src/dashboard/rates.d.ts
|
|
3488
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3489
|
+
//#endregion
|
|
3404
3490
|
//#region src/developer/api-keys.d.ts
|
|
3405
3491
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3406
3492
|
readonly bearer: string;
|
|
@@ -4027,6 +4113,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4027
4113
|
readonly bearer: string;
|
|
4028
4114
|
readonly intentId: string;
|
|
4029
4115
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4116
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4117
|
+
readonly bearer: string;
|
|
4118
|
+
readonly intentId: string;
|
|
4119
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4120
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4121
|
+
readonly bearer: string;
|
|
4122
|
+
readonly intentId: string;
|
|
4123
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4124
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4030
4125
|
//#endregion
|
|
4031
4126
|
//#region src/payments/limits.d.ts
|
|
4032
4127
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4531,4 +4626,4 @@ type CookieTokenStoreOptions = {
|
|
|
4531
4626
|
};
|
|
4532
4627
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
4533
4628
|
//#endregion
|
|
4534
|
-
export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, 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, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, consolidateDeveloperAppWallet, createBipUpdate, createConsoleLogger, createCookieTokenStore, 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, editMessage, 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, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, 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, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, 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 };
|
|
4629
|
+
export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, 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, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, consolidateDeveloperAppWallet, createBipUpdate, createConsoleLogger, createCookieTokenStore, 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, editMessage, 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, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, 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, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, 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 };
|