@metatrongg/sdk 0.8.0-dev.39ac646 → 0.8.0-dev.3c98bda
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 +75 -4
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +705 -25
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +75 -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 +4 -4
package/dist/browser/index.d.ts
CHANGED
|
@@ -360,6 +360,7 @@ type PublicAppPage = {
|
|
|
360
360
|
paymentsMode: AppPagePaymentsMode;
|
|
361
361
|
oauthScopes: Array<string>;
|
|
362
362
|
chains: Array<string>;
|
|
363
|
+
devlog: boolean;
|
|
363
364
|
publishedAt: string;
|
|
364
365
|
updatedAt: string;
|
|
365
366
|
};
|
|
@@ -425,6 +426,7 @@ type BipUpdateListResponse = {
|
|
|
425
426
|
updates: Array<BipUpdate>;
|
|
426
427
|
total: number;
|
|
427
428
|
hasMore: boolean;
|
|
429
|
+
pinned: BipUpdate | null;
|
|
428
430
|
};
|
|
429
431
|
type BipUpdate = {
|
|
430
432
|
id: string;
|
|
@@ -435,6 +437,7 @@ type BipUpdate = {
|
|
|
435
437
|
commentCount: number;
|
|
436
438
|
createdAt: string;
|
|
437
439
|
updatedAt: string;
|
|
440
|
+
pinnedAt: string | null;
|
|
438
441
|
};
|
|
439
442
|
type BipUpdateBody = string;
|
|
440
443
|
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
@@ -733,7 +736,11 @@ type ActivityRow = ({
|
|
|
733
736
|
kind: "referral_earning";
|
|
734
737
|
} & ActivityRowReferralEarning) | ({
|
|
735
738
|
kind: "nft_charge";
|
|
736
|
-
} & ActivityRowNftCharge)
|
|
739
|
+
} & ActivityRowNftCharge) | ({
|
|
740
|
+
kind: "solana_stake";
|
|
741
|
+
} & ActivityRowSolanaStake) | ({
|
|
742
|
+
kind: "solana_pot_leg";
|
|
743
|
+
} & ActivityRowSolanaPotLeg);
|
|
737
744
|
type ActivityRowPayment = {
|
|
738
745
|
kind: "payment";
|
|
739
746
|
groupId: string | null;
|
|
@@ -1061,6 +1068,56 @@ type ActivityRowNftCharge = {
|
|
|
1061
1068
|
counterpartyHandle: string | null;
|
|
1062
1069
|
counterpartyDisplayName: string | null;
|
|
1063
1070
|
};
|
|
1071
|
+
type ActivityRowSolanaStake = {
|
|
1072
|
+
kind: "solana_stake";
|
|
1073
|
+
groupId: string | null;
|
|
1074
|
+
id: string;
|
|
1075
|
+
chain: string;
|
|
1076
|
+
occurredAt: string;
|
|
1077
|
+
role: "outgoing" | "incoming";
|
|
1078
|
+
amount: string;
|
|
1079
|
+
token: string;
|
|
1080
|
+
potId: string | null;
|
|
1081
|
+
usdCents: number;
|
|
1082
|
+
status: "completed";
|
|
1083
|
+
txHash: string | null;
|
|
1084
|
+
app: {
|
|
1085
|
+
id: string;
|
|
1086
|
+
name: string;
|
|
1087
|
+
logoUrl: string | null;
|
|
1088
|
+
slug: string | null;
|
|
1089
|
+
bannerUrl: string | null;
|
|
1090
|
+
} | null;
|
|
1091
|
+
stakerUserId?: string | null;
|
|
1092
|
+
stakerHandle?: string | null;
|
|
1093
|
+
stakerDisplayName?: string | null;
|
|
1094
|
+
metadata?: PaymentMetadata | null;
|
|
1095
|
+
};
|
|
1096
|
+
type ActivityRowSolanaPotLeg = {
|
|
1097
|
+
kind: "solana_pot_leg";
|
|
1098
|
+
groupId: string | null;
|
|
1099
|
+
id: string;
|
|
1100
|
+
chain: string;
|
|
1101
|
+
occurredAt: string;
|
|
1102
|
+
role: "outgoing" | "incoming";
|
|
1103
|
+
beneficiary: string;
|
|
1104
|
+
potId: string | null;
|
|
1105
|
+
amount: string;
|
|
1106
|
+
token: string;
|
|
1107
|
+
usdCents: number | null;
|
|
1108
|
+
status: "settled";
|
|
1109
|
+
app: {
|
|
1110
|
+
id: string;
|
|
1111
|
+
name: string;
|
|
1112
|
+
logoUrl: string | null;
|
|
1113
|
+
slug: string | null;
|
|
1114
|
+
bannerUrl: string | null;
|
|
1115
|
+
} | null;
|
|
1116
|
+
txHash: string | null;
|
|
1117
|
+
recipientUserId?: string | null;
|
|
1118
|
+
recipientHandle?: string | null;
|
|
1119
|
+
recipientDisplayName?: string | null;
|
|
1120
|
+
};
|
|
1064
1121
|
type OutstandingResponse = {
|
|
1065
1122
|
rows: Array<OutstandingByToken>;
|
|
1066
1123
|
};
|
|
@@ -2243,7 +2300,7 @@ type DeveloperAppWalletsResponse = {
|
|
|
2243
2300
|
};
|
|
2244
2301
|
type DeveloperAppWalletItem = {
|
|
2245
2302
|
chain: string;
|
|
2246
|
-
address: string;
|
|
2303
|
+
address: string | string;
|
|
2247
2304
|
custody: "server" | null;
|
|
2248
2305
|
walletId: string | null;
|
|
2249
2306
|
autoSweepEnabled: boolean;
|
|
@@ -2264,7 +2321,7 @@ type DeveloperAppProvisionWalletResponse = {
|
|
|
2264
2321
|
chain: string;
|
|
2265
2322
|
custody: "server";
|
|
2266
2323
|
walletId: string;
|
|
2267
|
-
address: string;
|
|
2324
|
+
address: string | string;
|
|
2268
2325
|
};
|
|
2269
2326
|
type DeveloperAppWithdrawResponse = {
|
|
2270
2327
|
appId: string;
|
|
@@ -2590,6 +2647,7 @@ type AdminAuditListResponse = {
|
|
|
2590
2647
|
total: number;
|
|
2591
2648
|
offset: number;
|
|
2592
2649
|
limit: number;
|
|
2650
|
+
nextCursor: string | null;
|
|
2593
2651
|
};
|
|
2594
2652
|
type AdminAuditListItem = {
|
|
2595
2653
|
id: string;
|
|
@@ -3214,6 +3272,7 @@ declare function listAudit(context: TransportContext, input: {
|
|
|
3214
3272
|
readonly actorId?: string;
|
|
3215
3273
|
readonly targetType?: string;
|
|
3216
3274
|
readonly targetId?: string;
|
|
3275
|
+
readonly cursor?: string;
|
|
3217
3276
|
readonly offset?: number;
|
|
3218
3277
|
readonly limit?: number;
|
|
3219
3278
|
}): Promise<AdminAuditListResponse>;
|
|
@@ -3281,6 +3340,16 @@ declare function deleteBipUpdate(context: TransportContext, input: {
|
|
|
3281
3340
|
readonly appId: string;
|
|
3282
3341
|
readonly updateId: string;
|
|
3283
3342
|
}): Promise<DeleteBipUpdateResponse>;
|
|
3343
|
+
declare function pinBipUpdate(context: TransportContext, input: {
|
|
3344
|
+
readonly bearer: string;
|
|
3345
|
+
readonly appId: string;
|
|
3346
|
+
readonly updateId: string;
|
|
3347
|
+
}): Promise<BipUpdate>;
|
|
3348
|
+
declare function unpinBipUpdate(context: TransportContext, input: {
|
|
3349
|
+
readonly bearer: string;
|
|
3350
|
+
readonly appId: string;
|
|
3351
|
+
readonly updateId: string;
|
|
3352
|
+
}): Promise<BipUpdate>;
|
|
3284
3353
|
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3285
3354
|
readonly bearer: string;
|
|
3286
3355
|
readonly appId: string;
|
|
@@ -3312,6 +3381,7 @@ declare function getBipDirectory(context: TransportContext, input: {
|
|
|
3312
3381
|
readonly bearer?: string;
|
|
3313
3382
|
readonly genre?: string;
|
|
3314
3383
|
readonly q?: string;
|
|
3384
|
+
readonly sort?: "newest" | "top";
|
|
3315
3385
|
readonly before?: string;
|
|
3316
3386
|
readonly limit?: number;
|
|
3317
3387
|
}): Promise<LibraryListResponse>;
|
|
@@ -3332,6 +3402,7 @@ declare function getLibrary(context: TransportContext, input: {
|
|
|
3332
3402
|
readonly bearer?: string;
|
|
3333
3403
|
readonly genre?: string;
|
|
3334
3404
|
readonly q?: string;
|
|
3405
|
+
readonly sort?: "newest" | "top";
|
|
3335
3406
|
readonly before?: string;
|
|
3336
3407
|
readonly limit?: number;
|
|
3337
3408
|
}): Promise<LibraryListResponse>;
|
|
@@ -4626,4 +4697,4 @@ type CookieTokenStoreOptions = {
|
|
|
4626
4697
|
};
|
|
4627
4698
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
4628
4699
|
//#endregion
|
|
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 };
|
|
4700
|
+
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, pinBipUpdate, 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, 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 };
|