@metatrongg/sdk 0.8.0-dev.3dc9fcb → 0.8.0-dev.40e1ce9
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 +884 -58
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +99 -4
- 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 +1 -1
package/dist/node/index.d.ts
CHANGED
|
@@ -329,6 +329,13 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
329
329
|
type OauthPaymentIntentCompleteOffline = {
|
|
330
330
|
method: "offline";
|
|
331
331
|
};
|
|
332
|
+
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
333
|
+
transaction: string;
|
|
334
|
+
payer: string;
|
|
335
|
+
};
|
|
336
|
+
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
337
|
+
signedTransaction: string;
|
|
338
|
+
};
|
|
332
339
|
type ListAppPaymentAuthorizationsResponse = {
|
|
333
340
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
334
341
|
};
|
|
@@ -395,6 +402,7 @@ type PublicAppPage = {
|
|
|
395
402
|
paymentsMode: AppPagePaymentsMode;
|
|
396
403
|
oauthScopes: Array<string>;
|
|
397
404
|
chains: Array<string>;
|
|
405
|
+
devlog: boolean;
|
|
398
406
|
publishedAt: string;
|
|
399
407
|
updatedAt: string;
|
|
400
408
|
};
|
|
@@ -460,6 +468,7 @@ type BipUpdateListResponse = {
|
|
|
460
468
|
updates: Array<BipUpdate>;
|
|
461
469
|
total: number;
|
|
462
470
|
hasMore: boolean;
|
|
471
|
+
pinned: BipUpdate | null;
|
|
463
472
|
};
|
|
464
473
|
type BipUpdate = {
|
|
465
474
|
id: string;
|
|
@@ -470,6 +479,7 @@ type BipUpdate = {
|
|
|
470
479
|
commentCount: number;
|
|
471
480
|
createdAt: string;
|
|
472
481
|
updatedAt: string;
|
|
482
|
+
pinnedAt: string | null;
|
|
473
483
|
};
|
|
474
484
|
type BipUpdateBody = string;
|
|
475
485
|
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
@@ -768,7 +778,11 @@ type ActivityRow = ({
|
|
|
768
778
|
kind: "referral_earning";
|
|
769
779
|
} & ActivityRowReferralEarning) | ({
|
|
770
780
|
kind: "nft_charge";
|
|
771
|
-
} & ActivityRowNftCharge)
|
|
781
|
+
} & ActivityRowNftCharge) | ({
|
|
782
|
+
kind: "solana_stake";
|
|
783
|
+
} & ActivityRowSolanaStake) | ({
|
|
784
|
+
kind: "solana_pot_leg";
|
|
785
|
+
} & ActivityRowSolanaPotLeg);
|
|
772
786
|
type ActivityRowPayment = {
|
|
773
787
|
kind: "payment";
|
|
774
788
|
groupId: string | null;
|
|
@@ -1096,6 +1110,56 @@ type ActivityRowNftCharge = {
|
|
|
1096
1110
|
counterpartyHandle: string | null;
|
|
1097
1111
|
counterpartyDisplayName: string | null;
|
|
1098
1112
|
};
|
|
1113
|
+
type ActivityRowSolanaStake = {
|
|
1114
|
+
kind: "solana_stake";
|
|
1115
|
+
groupId: string | null;
|
|
1116
|
+
id: string;
|
|
1117
|
+
chain: string;
|
|
1118
|
+
occurredAt: string;
|
|
1119
|
+
role: "outgoing" | "incoming";
|
|
1120
|
+
amount: string;
|
|
1121
|
+
token: string;
|
|
1122
|
+
potId: string | null;
|
|
1123
|
+
usdCents: number;
|
|
1124
|
+
status: "completed";
|
|
1125
|
+
txHash: string | null;
|
|
1126
|
+
app: {
|
|
1127
|
+
id: string;
|
|
1128
|
+
name: string;
|
|
1129
|
+
logoUrl: string | null;
|
|
1130
|
+
slug: string | null;
|
|
1131
|
+
bannerUrl: string | null;
|
|
1132
|
+
} | null;
|
|
1133
|
+
stakerUserId?: string | null;
|
|
1134
|
+
stakerHandle?: string | null;
|
|
1135
|
+
stakerDisplayName?: string | null;
|
|
1136
|
+
metadata?: PaymentMetadata | null;
|
|
1137
|
+
};
|
|
1138
|
+
type ActivityRowSolanaPotLeg = {
|
|
1139
|
+
kind: "solana_pot_leg";
|
|
1140
|
+
groupId: string | null;
|
|
1141
|
+
id: string;
|
|
1142
|
+
chain: string;
|
|
1143
|
+
occurredAt: string;
|
|
1144
|
+
role: "outgoing" | "incoming";
|
|
1145
|
+
beneficiary: string;
|
|
1146
|
+
potId: string | null;
|
|
1147
|
+
amount: string;
|
|
1148
|
+
token: string;
|
|
1149
|
+
usdCents: number | null;
|
|
1150
|
+
status: "settled";
|
|
1151
|
+
app: {
|
|
1152
|
+
id: string;
|
|
1153
|
+
name: string;
|
|
1154
|
+
logoUrl: string | null;
|
|
1155
|
+
slug: string | null;
|
|
1156
|
+
bannerUrl: string | null;
|
|
1157
|
+
} | null;
|
|
1158
|
+
txHash: string | null;
|
|
1159
|
+
recipientUserId?: string | null;
|
|
1160
|
+
recipientHandle?: string | null;
|
|
1161
|
+
recipientDisplayName?: string | null;
|
|
1162
|
+
};
|
|
1099
1163
|
type OutstandingResponse = {
|
|
1100
1164
|
rows: Array<OutstandingByToken>;
|
|
1101
1165
|
};
|
|
@@ -2333,7 +2397,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
2333
2397
|
};
|
|
2334
2398
|
type DeveloperAppWalletItem = {
|
|
2335
2399
|
chain: string;
|
|
2336
|
-
address: string;
|
|
2400
|
+
address: string | string;
|
|
2337
2401
|
custody: "server" | null;
|
|
2338
2402
|
walletId: string | null;
|
|
2339
2403
|
autoSweepEnabled: boolean;
|
|
@@ -2354,7 +2418,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
2354
2418
|
chain: string;
|
|
2355
2419
|
custody: "server";
|
|
2356
2420
|
walletId: string;
|
|
2357
|
-
address: string;
|
|
2421
|
+
address: string | string;
|
|
2358
2422
|
};
|
|
2359
2423
|
type DeveloperAppWithdrawResponse = {
|
|
2360
2424
|
appId: string;
|
|
@@ -2976,6 +3040,13 @@ type AppealResolveRequest = {
|
|
|
2976
3040
|
decision: "refund" | "dismiss";
|
|
2977
3041
|
notes?: string;
|
|
2978
3042
|
};
|
|
3043
|
+
type PaymentRatesResponse = {
|
|
3044
|
+
asOf: string;
|
|
3045
|
+
ethUsd: number | null;
|
|
3046
|
+
solUsd: number | null;
|
|
3047
|
+
solLamportsPerCent: number | null;
|
|
3048
|
+
tronUsdPerToken: number;
|
|
3049
|
+
};
|
|
2979
3050
|
type AppealFileResponse = {
|
|
2980
3051
|
appealId: string;
|
|
2981
3052
|
paymentId: string;
|
|
@@ -3426,6 +3497,16 @@ declare function deleteBipUpdate(context: TransportContext, input: {
|
|
|
3426
3497
|
readonly appId: string;
|
|
3427
3498
|
readonly updateId: string;
|
|
3428
3499
|
}): Promise<DeleteBipUpdateResponse>;
|
|
3500
|
+
declare function pinBipUpdate(context: TransportContext, input: {
|
|
3501
|
+
readonly bearer: string;
|
|
3502
|
+
readonly appId: string;
|
|
3503
|
+
readonly updateId: string;
|
|
3504
|
+
}): Promise<BipUpdate>;
|
|
3505
|
+
declare function unpinBipUpdate(context: TransportContext, input: {
|
|
3506
|
+
readonly bearer: string;
|
|
3507
|
+
readonly appId: string;
|
|
3508
|
+
readonly updateId: string;
|
|
3509
|
+
}): Promise<BipUpdate>;
|
|
3429
3510
|
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3430
3511
|
readonly bearer: string;
|
|
3431
3512
|
readonly appId: string;
|
|
@@ -3457,6 +3538,7 @@ declare function getBipDirectory(context: TransportContext, input: {
|
|
|
3457
3538
|
readonly bearer?: string;
|
|
3458
3539
|
readonly genre?: string;
|
|
3459
3540
|
readonly q?: string;
|
|
3541
|
+
readonly sort?: "newest" | "top";
|
|
3460
3542
|
readonly before?: string;
|
|
3461
3543
|
readonly limit?: number;
|
|
3462
3544
|
}): Promise<LibraryListResponse>;
|
|
@@ -3477,6 +3559,7 @@ declare function getLibrary(context: TransportContext, input: {
|
|
|
3477
3559
|
readonly bearer?: string;
|
|
3478
3560
|
readonly genre?: string;
|
|
3479
3561
|
readonly q?: string;
|
|
3562
|
+
readonly sort?: "newest" | "top";
|
|
3480
3563
|
readonly before?: string;
|
|
3481
3564
|
readonly limit?: number;
|
|
3482
3565
|
}): Promise<LibraryListResponse>;
|
|
@@ -3635,6 +3718,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3635
3718
|
readonly before?: string;
|
|
3636
3719
|
}): Promise<PaymentHistoryResponse>;
|
|
3637
3720
|
//#endregion
|
|
3721
|
+
//#region src/dashboard/rates.d.ts
|
|
3722
|
+
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3723
|
+
//#endregion
|
|
3638
3724
|
//#region src/developer/api-keys.d.ts
|
|
3639
3725
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3640
3726
|
readonly bearer: string;
|
|
@@ -4422,6 +4508,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4422
4508
|
readonly bearer: string;
|
|
4423
4509
|
readonly intentId: string;
|
|
4424
4510
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4511
|
+
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4512
|
+
readonly bearer: string;
|
|
4513
|
+
readonly intentId: string;
|
|
4514
|
+
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4515
|
+
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4516
|
+
readonly bearer: string;
|
|
4517
|
+
readonly intentId: string;
|
|
4518
|
+
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4519
|
+
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4425
4520
|
//#endregion
|
|
4426
4521
|
//#region src/payments/limits.d.ts
|
|
4427
4522
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4932,4 +5027,4 @@ declare class TronNodeClient {
|
|
|
4932
5027
|
};
|
|
4933
5028
|
}
|
|
4934
5029
|
//#endregion
|
|
4935
|
-
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 };
|
|
5030
|
+
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, pinBipUpdate, 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, unpinBipUpdate, 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 };
|