@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/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;
|
|
@@ -329,13 +321,6 @@ type OauthPaymentIntentCompleteSigned = {
|
|
|
329
321
|
type OauthPaymentIntentCompleteOffline = {
|
|
330
322
|
method: "offline";
|
|
331
323
|
};
|
|
332
|
-
type OauthPaymentIntentSolanaPrepareResponse = {
|
|
333
|
-
transaction: string;
|
|
334
|
-
payer: string;
|
|
335
|
-
};
|
|
336
|
-
type OauthPaymentIntentSolanaCompleteRequest = {
|
|
337
|
-
signedTransaction: string;
|
|
338
|
-
};
|
|
339
324
|
type ListAppPaymentAuthorizationsResponse = {
|
|
340
325
|
authorizations: Array<AppPaymentAuthorizationItem>;
|
|
341
326
|
};
|
|
@@ -507,14 +492,6 @@ type ReviewAuthor = {
|
|
|
507
492
|
name: string | null;
|
|
508
493
|
avatarUrl: string | null;
|
|
509
494
|
};
|
|
510
|
-
type BipInterestCountResponse = {
|
|
511
|
-
interestCount: number;
|
|
512
|
-
};
|
|
513
|
-
type BipEngagementResponse = {
|
|
514
|
-
interested: boolean;
|
|
515
|
-
subscribed: boolean;
|
|
516
|
-
interestCount: number;
|
|
517
|
-
};
|
|
518
495
|
type MyBipUpdateReactionsResponse = {
|
|
519
496
|
reactions: Array<MyBipUpdateReaction>;
|
|
520
497
|
};
|
|
@@ -1338,15 +1315,12 @@ type WalletListResponse = {
|
|
|
1338
1315
|
wallets: Array<WalletItem>;
|
|
1339
1316
|
};
|
|
1340
1317
|
type WalletChainList = Array<{
|
|
1341
|
-
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia"
|
|
1318
|
+
id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
|
|
1342
1319
|
displayName: string;
|
|
1343
|
-
|
|
1344
|
-
nativeSymbol: string;
|
|
1345
|
-
chainId?: number;
|
|
1320
|
+
chainId: number;
|
|
1346
1321
|
}>;
|
|
1347
1322
|
type WalletItem = {
|
|
1348
|
-
address: string
|
|
1349
|
-
family: "evm" | "solana";
|
|
1323
|
+
address: string;
|
|
1350
1324
|
label: WalletLabel;
|
|
1351
1325
|
kind: "personal" | "app";
|
|
1352
1326
|
app: WalletAppLink;
|
|
@@ -1363,9 +1337,6 @@ type WalletBalances = {
|
|
|
1363
1337
|
"ethereum-mainnet"?: WalletChainBalance;
|
|
1364
1338
|
"base-mainnet"?: WalletChainBalance;
|
|
1365
1339
|
"ethereum-sepolia"?: WalletChainBalance;
|
|
1366
|
-
"base-sepolia"?: WalletChainBalance;
|
|
1367
|
-
"solana-mainnet"?: WalletChainBalance;
|
|
1368
|
-
"solana-devnet"?: WalletChainBalance;
|
|
1369
1340
|
};
|
|
1370
1341
|
type WalletChainBalance = {
|
|
1371
1342
|
native: string;
|
|
@@ -1375,14 +1346,12 @@ type WalletDelegationStatus = {
|
|
|
1375
1346
|
mode: WalletDelegationMode;
|
|
1376
1347
|
caps: WalletDelegationCaps;
|
|
1377
1348
|
policyId: string | null;
|
|
1378
|
-
slippageBps: DelegationSlippageBps;
|
|
1379
1349
|
};
|
|
1380
1350
|
type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
|
|
1381
1351
|
type WalletDelegationCaps = {
|
|
1382
1352
|
native: string;
|
|
1383
1353
|
usdc: string;
|
|
1384
1354
|
} | null;
|
|
1385
|
-
type DelegationSlippageBps = number | null;
|
|
1386
1355
|
type WalletLabelUpdateResponse = {
|
|
1387
1356
|
address: string;
|
|
1388
1357
|
label: WalletLabel;
|
|
@@ -2042,18 +2011,6 @@ type NotificationItem = {
|
|
|
2042
2011
|
payload: AppPageRejectedNotificationPayload;
|
|
2043
2012
|
read: boolean;
|
|
2044
2013
|
createdAt: string;
|
|
2045
|
-
} | {
|
|
2046
|
-
id: string;
|
|
2047
|
-
kind: "bip_update_published";
|
|
2048
|
-
payload: BipUpdatePublishedNotificationPayload;
|
|
2049
|
-
read: boolean;
|
|
2050
|
-
createdAt: string;
|
|
2051
|
-
} | {
|
|
2052
|
-
id: string;
|
|
2053
|
-
kind: "bip_now_playable";
|
|
2054
|
-
payload: BipNowPlayableNotificationPayload;
|
|
2055
|
-
read: boolean;
|
|
2056
|
-
createdAt: string;
|
|
2057
2014
|
} | {
|
|
2058
2015
|
id: string;
|
|
2059
2016
|
kind: "app_participant_invite";
|
|
@@ -2092,17 +2049,6 @@ type AppPageRejectedNotificationPayload = {
|
|
|
2092
2049
|
scope: "publish" | "changes" | "bip_publish";
|
|
2093
2050
|
notes: string;
|
|
2094
2051
|
};
|
|
2095
|
-
type BipUpdatePublishedNotificationPayload = {
|
|
2096
|
-
appId: string;
|
|
2097
|
-
appName: string;
|
|
2098
|
-
appSlug: string | null;
|
|
2099
|
-
updateId: string;
|
|
2100
|
-
};
|
|
2101
|
-
type BipNowPlayableNotificationPayload = {
|
|
2102
|
-
appId: string;
|
|
2103
|
-
appName: string;
|
|
2104
|
-
appSlug: string | null;
|
|
2105
|
-
};
|
|
2106
2052
|
type AppParticipantInviteNotificationPayload = {
|
|
2107
2053
|
appId: string;
|
|
2108
2054
|
appName: string;
|
|
@@ -2270,14 +2216,12 @@ type UpdateDeveloperApp = {
|
|
|
2270
2216
|
redirectUris?: Array<string>;
|
|
2271
2217
|
embedOrigins?: Array<EmbedOrigin>;
|
|
2272
2218
|
acceptedCurrencies?: AcceptedCurrencies;
|
|
2273
|
-
acceptedNetworks?: AcceptedNetworks;
|
|
2274
2219
|
paymentStatusWebhookUrl?: string | null;
|
|
2275
2220
|
paymentStatusWebhookUrlTest?: string | null;
|
|
2276
2221
|
};
|
|
2277
2222
|
type EmbedOrigin = string;
|
|
2278
2223
|
type AcceptedCurrencies = Array<PlatformCurrency>;
|
|
2279
2224
|
type PlatformCurrency = "eth" | "tron";
|
|
2280
|
-
type AcceptedNetworks = Array<PaymentNetwork> | null;
|
|
2281
2225
|
type DeveloperLogoUploadResponse = {
|
|
2282
2226
|
logoUrl: string | null;
|
|
2283
2227
|
};
|
|
@@ -2524,7 +2468,6 @@ type DeveloperAppItem = {
|
|
|
2524
2468
|
redirectUris: Array<string>;
|
|
2525
2469
|
embedOrigins: Array<EmbedOrigin>;
|
|
2526
2470
|
acceptedCurrencies: AcceptedCurrencies;
|
|
2527
|
-
acceptedNetworks: AcceptedNetworks;
|
|
2528
2471
|
payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
|
|
2529
2472
|
keys: Array<DeveloperAppKeyItem>;
|
|
2530
2473
|
pendingProductionRequestId: string | null;
|
|
@@ -2758,7 +2701,6 @@ type AdminAppPageItem = {
|
|
|
2758
2701
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2759
2702
|
bipFirstPublishedAt: string | null;
|
|
2760
2703
|
bipHiddenAt: string | null;
|
|
2761
|
-
openReportCount: number;
|
|
2762
2704
|
};
|
|
2763
2705
|
type AdminAppPageStatusResponse = {
|
|
2764
2706
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2787,22 +2729,6 @@ type AdminAppPageDiffField = {
|
|
|
2787
2729
|
type AdminAppPageBipStatusResponse = {
|
|
2788
2730
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2789
2731
|
};
|
|
2790
|
-
type AdminAppContentReportListResponse = {
|
|
2791
|
-
reports: Array<AdminAppContentReportItem>;
|
|
2792
|
-
total: number;
|
|
2793
|
-
hasMore: boolean;
|
|
2794
|
-
};
|
|
2795
|
-
type AdminAppContentReportItem = {
|
|
2796
|
-
id: string;
|
|
2797
|
-
category: AppContentReportCategory;
|
|
2798
|
-
details: string | null;
|
|
2799
|
-
status: AppContentReportStatus;
|
|
2800
|
-
acknowledgedAt: string | null;
|
|
2801
|
-
createdAt: string;
|
|
2802
|
-
appId: string;
|
|
2803
|
-
appName: string;
|
|
2804
|
-
appSlug: string | null;
|
|
2805
|
-
};
|
|
2806
2732
|
type PlatformFeesResponse = {
|
|
2807
2733
|
purchaseFeeBps: number;
|
|
2808
2734
|
stakeFeeBps: number;
|
|
@@ -2983,13 +2909,6 @@ type AppealResolveRequest = {
|
|
|
2983
2909
|
decision: "refund" | "dismiss";
|
|
2984
2910
|
notes?: string;
|
|
2985
2911
|
};
|
|
2986
|
-
type PaymentRatesResponse = {
|
|
2987
|
-
asOf: string;
|
|
2988
|
-
ethUsd: number | null;
|
|
2989
|
-
solUsd: number | null;
|
|
2990
|
-
solLamportsPerCent: number | null;
|
|
2991
|
-
tronUsdPerToken: number;
|
|
2992
|
-
};
|
|
2993
2912
|
type AppealFileResponse = {
|
|
2994
2913
|
appealId: string;
|
|
2995
2914
|
paymentId: string;
|
|
@@ -3038,7 +2957,7 @@ type OauthPaymentPayoutRequest = {
|
|
|
3038
2957
|
metadata?: PaymentMetadata;
|
|
3039
2958
|
};
|
|
3040
2959
|
type OauthPaymentDistributeResponse = {
|
|
3041
|
-
distributionId
|
|
2960
|
+
distributionId: string;
|
|
3042
2961
|
txHash: string;
|
|
3043
2962
|
blockNumber: string;
|
|
3044
2963
|
potId: string;
|
|
@@ -3231,19 +3150,6 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
3231
3150
|
readonly body: AppealResolveRequest;
|
|
3232
3151
|
}): Promise<AppealResolveSignedResponse>;
|
|
3233
3152
|
//#endregion
|
|
3234
|
-
//#region src/admin/content-reports.d.ts
|
|
3235
|
-
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3236
|
-
readonly bearer: string;
|
|
3237
|
-
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3238
|
-
readonly limit?: number;
|
|
3239
|
-
readonly offset?: number;
|
|
3240
|
-
}): Promise<AdminAppContentReportListResponse>;
|
|
3241
|
-
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3242
|
-
readonly bearer: string;
|
|
3243
|
-
readonly reportId: string;
|
|
3244
|
-
readonly status: "acknowledged" | "dismissed";
|
|
3245
|
-
}): Promise<AppContentReport>;
|
|
3246
|
-
//#endregion
|
|
3247
3153
|
//#region src/admin/developers.d.ts
|
|
3248
3154
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
3249
3155
|
readonly bearer: string;
|
|
@@ -3447,24 +3353,6 @@ declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
|
3447
3353
|
readonly filename: string;
|
|
3448
3354
|
readonly contentType: string;
|
|
3449
3355
|
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3450
|
-
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3451
|
-
readonly bearer?: string;
|
|
3452
|
-
readonly slug: string;
|
|
3453
|
-
}): Promise<BipInterestCountResponse>;
|
|
3454
|
-
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3455
|
-
readonly bearer: string;
|
|
3456
|
-
readonly slug: string;
|
|
3457
|
-
}): Promise<BipEngagementResponse>;
|
|
3458
|
-
declare function registerBipInterest(context: TransportContext, input: {
|
|
3459
|
-
readonly bearer: string;
|
|
3460
|
-
readonly slug: string;
|
|
3461
|
-
readonly interested: boolean;
|
|
3462
|
-
}): Promise<BipEngagementResponse>;
|
|
3463
|
-
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3464
|
-
readonly bearer: string;
|
|
3465
|
-
readonly slug: string;
|
|
3466
|
-
readonly subscribed: boolean;
|
|
3467
|
-
}): Promise<BipEngagementResponse>;
|
|
3468
3356
|
//#endregion
|
|
3469
3357
|
//#region src/catalog/build-in-public.d.ts
|
|
3470
3358
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
@@ -3649,9 +3537,6 @@ declare function getPaymentHistory(context: TransportContext, input: {
|
|
|
3649
3537
|
readonly before?: string;
|
|
3650
3538
|
}): Promise<PaymentHistoryResponse>;
|
|
3651
3539
|
//#endregion
|
|
3652
|
-
//#region src/dashboard/rates.d.ts
|
|
3653
|
-
declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
|
|
3654
|
-
//#endregion
|
|
3655
3540
|
//#region src/developer/api-keys.d.ts
|
|
3656
3541
|
declare function createDeveloperApiKey(context: TransportContext, input: {
|
|
3657
3542
|
readonly bearer: string;
|
|
@@ -4439,15 +4324,6 @@ declare function denyPaymentIntent(context: TransportContext, input: {
|
|
|
4439
4324
|
readonly bearer: string;
|
|
4440
4325
|
readonly intentId: string;
|
|
4441
4326
|
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4442
|
-
declare function preparePaymentIntentSolana(context: TransportContext, input: {
|
|
4443
|
-
readonly bearer: string;
|
|
4444
|
-
readonly intentId: string;
|
|
4445
|
-
}): Promise<OauthPaymentIntentSolanaPrepareResponse>;
|
|
4446
|
-
declare function completePaymentIntentSolana(context: TransportContext, input: {
|
|
4447
|
-
readonly bearer: string;
|
|
4448
|
-
readonly intentId: string;
|
|
4449
|
-
readonly body: OauthPaymentIntentSolanaCompleteRequest;
|
|
4450
|
-
}): Promise<OauthPaymentIntentResolveResponse>;
|
|
4451
4327
|
//#endregion
|
|
4452
4328
|
//#region src/payments/limits.d.ts
|
|
4453
4329
|
declare function getPaymentLimits(context: TransportContext, input: {
|
|
@@ -4958,4 +4834,4 @@ declare class TronNodeClient {
|
|
|
4958
4834
|
};
|
|
4959
4835
|
}
|
|
4960
4836
|
//#endregion
|
|
4961
|
-
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,
|
|
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 };
|