@metatrongg/sdk 0.8.0-dev.3dc9fcb → 0.8.0-dev.42c667f
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 +4 -102
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +16 -692
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +5 -103
- 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,15 +291,7 @@ 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
|
-
};
|
|
301
294
|
};
|
|
302
|
-
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
303
295
|
type OauthPaymentIntentSignResponse = {
|
|
304
296
|
chain: string;
|
|
305
297
|
chainId: number;
|
|
@@ -500,14 +492,6 @@ type ReviewAuthor = {
|
|
|
500
492
|
name: string | null;
|
|
501
493
|
avatarUrl: string | null;
|
|
502
494
|
};
|
|
503
|
-
type BipInterestCountResponse = {
|
|
504
|
-
interestCount: number;
|
|
505
|
-
};
|
|
506
|
-
type BipEngagementResponse = {
|
|
507
|
-
interested: boolean;
|
|
508
|
-
subscribed: boolean;
|
|
509
|
-
interestCount: number;
|
|
510
|
-
};
|
|
511
495
|
type MyBipUpdateReactionsResponse = {
|
|
512
496
|
reactions: Array<MyBipUpdateReaction>;
|
|
513
497
|
};
|
|
@@ -1331,15 +1315,12 @@ type WalletListResponse = {
|
|
|
1331
1315
|
wallets: Array<WalletItem>;
|
|
1332
1316
|
};
|
|
1333
1317
|
type WalletChainList = Array<{
|
|
1334
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia"
|
|
1318
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1335
1319
|
displayName: string;
|
|
1336
|
-
|
|
1337
|
-
nativeSymbol: string;
|
|
1338
|
-
chainId?: number;
|
|
1320
|
+
chainId: number;
|
|
1339
1321
|
}>;
|
|
1340
1322
|
type WalletItem = {
|
|
1341
|
-
address: string
|
|
1342
|
-
family: "evm" | "solana";
|
|
1323
|
+
address: string;
|
|
1343
1324
|
label: WalletLabel;
|
|
1344
1325
|
kind: "personal" | "app";
|
|
1345
1326
|
app: WalletAppLink;
|
|
@@ -1356,9 +1337,6 @@ type WalletBalances = {
|
|
|
1356
1337
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1357
1338
|
"base-mainnet"?: WalletChainBalance;
|
|
1358
1339
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1359
|
-
"base-sepolia"?: WalletChainBalance;
|
|
1360
|
-
"solana-mainnet"?: WalletChainBalance;
|
|
1361
|
-
"solana-devnet"?: WalletChainBalance;
|
|
1362
1340
|
};
|
|
1363
1341
|
type WalletChainBalance = {
|
|
1364
1342
|
native: string;
|
|
@@ -1368,14 +1346,12 @@ type WalletDelegationStatus = {
|
|
|
1368
1346
|
mode: WalletDelegationMode;
|
|
1369
1347
|
caps: WalletDelegationCaps;
|
|
1370
1348
|
policyId: string | null;
|
|
1371
|
-
slippageBps: DelegationSlippageBps;
|
|
1372
1349
|
};
|
|
1373
1350
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1374
1351
|
type WalletDelegationCaps = {
|
|
1375
1352
|
native: string;
|
|
1376
1353
|
usdc: string;
|
|
1377
1354
|
} | null;
|
|
1378
|
-
type DelegationSlippageBps = number | null;
|
|
1379
1355
|
type WalletLabelUpdateResponse = {
|
|
1380
1356
|
address: string;
|
|
1381
1357
|
label: WalletLabel;
|
|
@@ -2035,18 +2011,6 @@ type NotificationItem = {
|
|
|
2035
2011
|
payload: AppPageRejectedNotificationPayload;
|
|
2036
2012
|
read: boolean;
|
|
2037
2013
|
createdAt: string;
|
|
2038
|
-
} | {
|
|
2039
|
-
id: string;
|
|
2040
|
-
kind: "bip_update_published";
|
|
2041
|
-
payload: BipUpdatePublishedNotificationPayload;
|
|
2042
|
-
read: boolean;
|
|
2043
|
-
createdAt: string;
|
|
2044
|
-
} | {
|
|
2045
|
-
id: string;
|
|
2046
|
-
kind: "bip_now_playable";
|
|
2047
|
-
payload: BipNowPlayableNotificationPayload;
|
|
2048
|
-
read: boolean;
|
|
2049
|
-
createdAt: string;
|
|
2050
2014
|
} | {
|
|
2051
2015
|
id: string;
|
|
2052
2016
|
kind: "app_participant_invite";
|
|
@@ -2085,17 +2049,6 @@ type AppPageRejectedNotificationPayload = {
|
|
|
2085
2049
|
scope: "publish" | "changes" | "bip_publish";
|
|
2086
2050
|
notes: string;
|
|
2087
2051
|
};
|
|
2088
|
-
type BipUpdatePublishedNotificationPayload = {
|
|
2089
|
-
appId: string;
|
|
2090
|
-
appName: string;
|
|
2091
|
-
appSlug: string | null;
|
|
2092
|
-
updateId: string;
|
|
2093
|
-
};
|
|
2094
|
-
type BipNowPlayableNotificationPayload = {
|
|
2095
|
-
appId: string;
|
|
2096
|
-
appName: string;
|
|
2097
|
-
appSlug: string | null;
|
|
2098
|
-
};
|
|
2099
2052
|
type AppParticipantInviteNotificationPayload = {
|
|
2100
2053
|
appId: string;
|
|
2101
2054
|
appName: string;
|
|
@@ -2263,14 +2216,12 @@ type UpdateDeveloperApp = {
|
|
|
2263
2216
|
redirectUris?: Array<string>;
|
|
2264
2217
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2265
2218
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2266
|
-
acceptedNetworks?: AcceptedNetworks;
|
|
2267
2219
|
paymentStatusWebhookUrl?: string | null;
|
|
2268
2220
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2269
2221
|
};
|
|
2270
2222
|
type EmbedOrigin = string;
|
|
2271
2223
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2272
2224
|
type PlatformCurrency = "eth" | "tron";
|
|
2273
|
-
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2274
2225
|
type DeveloperLogoUploadResponse = {
|
|
2275
2226
|
logoUrl: string | null;
|
|
2276
2227
|
};
|
|
@@ -2517,7 +2468,6 @@ type DeveloperAppItem = {
|
|
|
2517
2468
|
redirectUris: Array<string>;
|
|
2518
2469
|
embedOrigins: Array<EmbedOrigin>;
|
|
2519
2470
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2520
|
-
acceptedNetworks: AcceptedNetworks;
|
|
2521
2471
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2522
2472
|
keys: Array<DeveloperAppKeyItem>;
|
|
2523
2473
|
pendingProductionRequestId: string | null;
|
|
@@ -2751,7 +2701,6 @@ type AdminAppPageItem = {
|
|
|
2751
2701
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2752
2702
|
bipFirstPublishedAt: string | null;
|
|
2753
2703
|
bipHiddenAt: string | null;
|
|
2754
|
-
openReportCount: number;
|
|
2755
2704
|
};
|
|
2756
2705
|
type AdminAppPageStatusResponse = {
|
|
2757
2706
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2780,22 +2729,6 @@ type AdminAppPageDiffField = {
|
|
|
2780
2729
|
type AdminAppPageBipStatusResponse = {
|
|
2781
2730
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2782
2731
|
};
|
|
2783
|
-
type AdminAppContentReportListResponse = {
|
|
2784
|
-
reports: Array<AdminAppContentReportItem>;
|
|
2785
|
-
total: number;
|
|
2786
|
-
hasMore: boolean;
|
|
2787
|
-
};
|
|
2788
|
-
type AdminAppContentReportItem = {
|
|
2789
|
-
id: string;
|
|
2790
|
-
category: AppContentReportCategory;
|
|
2791
|
-
details: string | null;
|
|
2792
|
-
status: AppContentReportStatus;
|
|
2793
|
-
acknowledgedAt: string | null;
|
|
2794
|
-
createdAt: string;
|
|
2795
|
-
appId: string;
|
|
2796
|
-
appName: string;
|
|
2797
|
-
appSlug: string | null;
|
|
2798
|
-
};
|
|
2799
2732
|
type PlatformFeesResponse = {
|
|
2800
2733
|
purchaseFeeBps: number;
|
|
2801
2734
|
stakeFeeBps: number;
|
|
@@ -3024,7 +2957,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3024
2957
|
metadata?: PaymentMetadata;
|
|
3025
2958
|
};
|
|
3026
2959
|
type OauthPaymentDistributeResponse = {
|
|
3027
|
-
distributionId
|
|
2960
|
+
distributionId: string;
|
|
3028
2961
|
txHash: string;
|
|
3029
2962
|
blockNumber: string;
|
|
3030
2963
|
potId: string;
|
|
@@ -3217,19 +3150,6 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
3217
3150
|
readonly body: AppealResolveRequest;
|
|
3218
3151
|
}): Promise<AppealResolveSignedResponse>;
|
|
3219
3152
|
//#endregion
|
|
3220
|
-
//#region src/admin/content-reports.d.ts
|
|
3221
|
-
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3222
|
-
readonly bearer: string;
|
|
3223
|
-
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3224
|
-
readonly limit?: number;
|
|
3225
|
-
readonly offset?: number;
|
|
3226
|
-
}): Promise<AdminAppContentReportListResponse>;
|
|
3227
|
-
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3228
|
-
readonly bearer: string;
|
|
3229
|
-
readonly reportId: string;
|
|
3230
|
-
readonly status: "acknowledged" | "dismissed";
|
|
3231
|
-
}): Promise<AppContentReport>;
|
|
3232
|
-
//#endregion
|
|
3233
3153
|
//#region src/admin/developers.d.ts
|
|
3234
3154
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
3235
3155
|
readonly bearer: string;
|
|
@@ -3433,24 +3353,6 @@ declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
|
3433
3353
|
readonly filename: string;
|
|
3434
3354
|
readonly contentType: string;
|
|
3435
3355
|
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3436
|
-
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3437
|
-
readonly bearer?: string;
|
|
3438
|
-
readonly slug: string;
|
|
3439
|
-
}): Promise<BipInterestCountResponse>;
|
|
3440
|
-
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3441
|
-
readonly bearer: string;
|
|
3442
|
-
readonly slug: string;
|
|
3443
|
-
}): Promise<BipEngagementResponse>;
|
|
3444
|
-
declare function registerBipInterest(context: TransportContext, input: {
|
|
3445
|
-
readonly bearer: string;
|
|
3446
|
-
readonly slug: string;
|
|
3447
|
-
readonly interested: boolean;
|
|
3448
|
-
}): Promise<BipEngagementResponse>;
|
|
3449
|
-
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3450
|
-
readonly bearer: string;
|
|
3451
|
-
readonly slug: string;
|
|
3452
|
-
readonly subscribed: boolean;
|
|
3453
|
-
}): Promise<BipEngagementResponse>;
|
|
3454
3356
|
//#endregion
|
|
3455
3357
|
//#region src/catalog/build-in-public.d.ts
|
|
3456
3358
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
@@ -4932,4 +4834,4 @@ declare class TronNodeClient {
|
|
|
4932
4834
|
};
|
|
4933
4835
|
}
|
|
4934
4836
|
//#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,
|
|
4837
|
+
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, 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, 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 };
|