@metatrongg/sdk 0.8.0-dev.39ac646 → 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 -128
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +16 -843
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +5 -129
- 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,15 +249,7 @@ 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
|
-
};
|
|
259
252
|
};
|
|
260
|
-
type PaymentNetwork = "ethereum" | "base" | "solana";
|
|
261
253
|
type OauthPaymentIntentSignResponse = {
|
|
262
254
|
chain: string;
|
|
263
255
|
chainId: number;
|
|
@@ -287,13 +279,6 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
287
279
|
type OauthPaymentIntentCompleteOffline = {
|
|
288
280
|
method: "offline";
|
|
289
281
|
};
|
|
290
|
-
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
291
|
-
transaction: string;
|
|
292
|
-
payer: string;
|
|
293
|
-
};
|
|
294
|
-
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
295
|
-
signedTransaction: string;
|
|
296
|
-
};
|
|
297
282
|
type ListAppPaymentAuthorizationsResponse = {
|
|
298
283
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
299
284
|
};
|
|
@@ -465,14 +450,6 @@ type ReviewAuthor = {
|
|
|
465
450
|
name: string | null;
|
|
466
451
|
avatarUrl: string | null;
|
|
467
452
|
};
|
|
468
|
-
type BipInterestCountResponse = {
|
|
469
|
-
interestCount: number;
|
|
470
|
-
};
|
|
471
|
-
type BipEngagementResponse = {
|
|
472
|
-
interested: boolean;
|
|
473
|
-
subscribed: boolean;
|
|
474
|
-
interestCount: number;
|
|
475
|
-
};
|
|
476
453
|
type MyBipUpdateReactionsResponse = {
|
|
477
454
|
reactions: Array<MyBipUpdateReaction>;
|
|
478
455
|
};
|
|
@@ -1220,15 +1197,12 @@ type WalletListResponse = {
|
|
|
1220
1197
|
wallets: Array<WalletItem>;
|
|
1221
1198
|
};
|
|
1222
1199
|
type WalletChainList = Array<{
|
|
1223
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia"
|
|
1200
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1224
1201
|
displayName: string;
|
|
1225
|
-
|
|
1226
|
-
nativeSymbol: string;
|
|
1227
|
-
chainId?: number;
|
|
1202
|
+
chainId: number;
|
|
1228
1203
|
}>;
|
|
1229
1204
|
type WalletItem = {
|
|
1230
|
-
address: string
|
|
1231
|
-
family: "evm" | "solana";
|
|
1205
|
+
address: string;
|
|
1232
1206
|
label: WalletLabel;
|
|
1233
1207
|
kind: "personal" | "app";
|
|
1234
1208
|
app: WalletAppLink;
|
|
@@ -1245,9 +1219,6 @@ type WalletBalances = {
|
|
|
1245
1219
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1246
1220
|
"base-mainnet"?: WalletChainBalance;
|
|
1247
1221
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1248
|
-
"base-sepolia"?: WalletChainBalance;
|
|
1249
|
-
"solana-mainnet"?: WalletChainBalance;
|
|
1250
|
-
"solana-devnet"?: WalletChainBalance;
|
|
1251
1222
|
};
|
|
1252
1223
|
type WalletChainBalance = {
|
|
1253
1224
|
native: string;
|
|
@@ -1257,14 +1228,12 @@ type WalletDelegationStatus = {
|
|
|
1257
1228
|
mode: WalletDelegationMode;
|
|
1258
1229
|
caps: WalletDelegationCaps;
|
|
1259
1230
|
policyId: string | null;
|
|
1260
|
-
slippageBps: DelegationSlippageBps;
|
|
1261
1231
|
};
|
|
1262
1232
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1263
1233
|
type WalletDelegationCaps = {
|
|
1264
1234
|
native: string;
|
|
1265
1235
|
usdc: string;
|
|
1266
1236
|
} | null;
|
|
1267
|
-
type DelegationSlippageBps = number | null;
|
|
1268
1237
|
type WalletLabelUpdateResponse = {
|
|
1269
1238
|
address: string;
|
|
1270
1239
|
label: WalletLabel;
|
|
@@ -1945,18 +1914,6 @@ type NotificationItem = {
|
|
|
1945
1914
|
payload: AppPageRejectedNotificationPayload;
|
|
1946
1915
|
read: boolean;
|
|
1947
1916
|
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;
|
|
1960
1917
|
} | {
|
|
1961
1918
|
id: string;
|
|
1962
1919
|
kind: "app_participant_invite";
|
|
@@ -1995,17 +1952,6 @@ type AppPageRejectedNotificationPayload = {
|
|
|
1995
1952
|
scope: "publish" | "changes" | "bip_publish";
|
|
1996
1953
|
notes: string;
|
|
1997
1954
|
};
|
|
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
|
-
};
|
|
2009
1955
|
type AppParticipantInviteNotificationPayload = {
|
|
2010
1956
|
appId: string;
|
|
2011
1957
|
appName: string;
|
|
@@ -2173,14 +2119,12 @@ type UpdateDeveloperApp = {
|
|
|
2173
2119
|
redirectUris?: Array<string>;
|
|
2174
2120
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2175
2121
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2176
|
-
acceptedNetworks?: AcceptedNetworks;
|
|
2177
2122
|
paymentStatusWebhookUrl?: string | null;
|
|
2178
2123
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2179
2124
|
};
|
|
2180
2125
|
type EmbedOrigin = string;
|
|
2181
2126
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2182
2127
|
type PlatformCurrency = "eth" | "tron";
|
|
2183
|
-
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2184
2128
|
type DeveloperLogoUploadResponse = {
|
|
2185
2129
|
logoUrl: string | null;
|
|
2186
2130
|
};
|
|
@@ -2427,7 +2371,6 @@ type DeveloperAppItem = {
|
|
|
2427
2371
|
redirectUris: Array<string>;
|
|
2428
2372
|
embedOrigins: Array<EmbedOrigin>;
|
|
2429
2373
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2430
|
-
acceptedNetworks: AcceptedNetworks;
|
|
2431
2374
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2432
2375
|
keys: Array<DeveloperAppKeyItem>;
|
|
2433
2376
|
pendingProductionRequestId: string | null;
|
|
@@ -2661,7 +2604,6 @@ type AdminAppPageItem = {
|
|
|
2661
2604
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2662
2605
|
bipFirstPublishedAt: string | null;
|
|
2663
2606
|
bipHiddenAt: string | null;
|
|
2664
|
-
openReportCount: number;
|
|
2665
2607
|
};
|
|
2666
2608
|
type AdminAppPageStatusResponse = {
|
|
2667
2609
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2690,22 +2632,6 @@ type AdminAppPageDiffField = {
|
|
|
2690
2632
|
type AdminAppPageBipStatusResponse = {
|
|
2691
2633
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2692
2634
|
};
|
|
2693
|
-
type AdminAppContentReportListResponse = {
|
|
2694
|
-
reports: Array<AdminAppContentReportItem>;
|
|
2695
|
-
total: number;
|
|
2696
|
-
hasMore: boolean;
|
|
2697
|
-
};
|
|
2698
|
-
type AdminAppContentReportItem = {
|
|
2699
|
-
id: string;
|
|
2700
|
-
category: AppContentReportCategory;
|
|
2701
|
-
details: string | null;
|
|
2702
|
-
status: AppContentReportStatus;
|
|
2703
|
-
acknowledgedAt: string | null;
|
|
2704
|
-
createdAt: string;
|
|
2705
|
-
appId: string;
|
|
2706
|
-
appName: string;
|
|
2707
|
-
appSlug: string | null;
|
|
2708
|
-
};
|
|
2709
2635
|
type PlatformFeesResponse = {
|
|
2710
2636
|
purchaseFeeBps: number;
|
|
2711
2637
|
stakeFeeBps: number;
|
|
@@ -2886,13 +2812,6 @@ type AppealResolveRequest = {
|
|
|
2886
2812
|
decision: "refund" | "dismiss";
|
|
2887
2813
|
notes?: string;
|
|
2888
2814
|
};
|
|
2889
|
-
type PaymentRatesResponse = {
|
|
2890
|
-
asOf: string;
|
|
2891
|
-
ethUsd: number | null;
|
|
2892
|
-
solUsd: number | null;
|
|
2893
|
-
solLamportsPerCent: number | null;
|
|
2894
|
-
tronUsdPerToken: number;
|
|
2895
|
-
};
|
|
2896
2815
|
type AppealFileResponse = {
|
|
2897
2816
|
appealId: string;
|
|
2898
2817
|
paymentId: string;
|
|
@@ -3072,19 +2991,6 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
3072
2991
|
readonly body: AppealResolveRequest;
|
|
3073
2992
|
}): Promise<AppealResolveSignedResponse>;
|
|
3074
2993
|
//#endregion
|
|
3075
|
-
//#region src/admin/content-reports.d.ts
|
|
3076
|
-
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3077
|
-
readonly bearer: string;
|
|
3078
|
-
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3079
|
-
readonly limit?: number;
|
|
3080
|
-
readonly offset?: number;
|
|
3081
|
-
}): Promise<AdminAppContentReportListResponse>;
|
|
3082
|
-
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3083
|
-
readonly bearer: string;
|
|
3084
|
-
readonly reportId: string;
|
|
3085
|
-
readonly status: "acknowledged" | "dismissed";
|
|
3086
|
-
}): Promise<AppContentReport>;
|
|
3087
|
-
//#endregion
|
|
3088
2994
|
//#region src/admin/developers.d.ts
|
|
3089
2995
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
3090
2996
|
readonly bearer: string;
|
|
@@ -3288,24 +3194,6 @@ declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
|
3288
3194
|
readonly filename: string;
|
|
3289
3195
|
readonly contentType: string;
|
|
3290
3196
|
}): 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>;
|
|
3309
3197
|
//#endregion
|
|
3310
3198
|
//#region src/catalog/build-in-public.d.ts
|
|
3311
3199
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
@@ -3484,9 +3372,6 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3484
3372
|
readonly before?: string;
|
|
3485
3373
|
}): Promise<PaymentHistoryResponse>;
|
|
3486
3374
|
//#endregion
|
|
3487
|
-
//#region src/dashboard/rates.d.ts
|
|
3488
|
-
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3489
|
-
//#endregion
|
|
3490
3375
|
//#region src/developer/api-keys.d.ts
|
|
3491
3376
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3492
3377
|
readonly bearer: string;
|
|
@@ -4113,15 +3998,6 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4113
3998
|
readonly bearer: string;
|
|
4114
3999
|
readonly intentId: string;
|
|
4115
4000
|
}): 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>;
|
|
4125
4001
|
//#endregion
|
|
4126
4002
|
//#region src/payments/limits.d.ts
|
|
4127
4003
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4626,4 +4502,4 @@ type CookieTokenStoreOptions = {
|
|
|
4626
4502
|
};
|
|
4627
4503
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
4628
4504
|
//#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,
|
|
4505
|
+
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, 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, 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 };
|