@metatrongg/sdk 0.8.0-dev.4ac3e68 → 0.8.0-dev.4fc3172
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 +226 -7
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1685 -299
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +226 -7
- 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
|
@@ -406,6 +406,95 @@ type PublicBipPage = {
|
|
|
406
406
|
publishedAt: string;
|
|
407
407
|
updatedAt: string;
|
|
408
408
|
};
|
|
409
|
+
type BipUpdateListResponse = {
|
|
410
|
+
updates: Array<BipUpdate>;
|
|
411
|
+
total: number;
|
|
412
|
+
hasMore: boolean;
|
|
413
|
+
};
|
|
414
|
+
type BipUpdate = {
|
|
415
|
+
id: string;
|
|
416
|
+
appId: string;
|
|
417
|
+
body: BipUpdateBody;
|
|
418
|
+
attachments: BipUpdateAttachments;
|
|
419
|
+
reactions: BipUpdateReactionCounts;
|
|
420
|
+
commentCount: number;
|
|
421
|
+
createdAt: string;
|
|
422
|
+
updatedAt: string;
|
|
423
|
+
};
|
|
424
|
+
type BipUpdateBody = string;
|
|
425
|
+
type BipUpdateAttachments = Array<BipUpdateAttachment>;
|
|
426
|
+
type BipUpdateAttachment = {
|
|
427
|
+
url: string;
|
|
428
|
+
kind: "image" | "video";
|
|
429
|
+
order: number;
|
|
430
|
+
};
|
|
431
|
+
type BipUpdateReactionCounts = {
|
|
432
|
+
up: number;
|
|
433
|
+
down: number;
|
|
434
|
+
};
|
|
435
|
+
type BipUpdateCommentListResponse = {
|
|
436
|
+
comments: Array<BipUpdateComment>;
|
|
437
|
+
total: number;
|
|
438
|
+
hasMore: boolean;
|
|
439
|
+
};
|
|
440
|
+
type BipUpdateComment = {
|
|
441
|
+
id: string;
|
|
442
|
+
body: BipUpdateCommentBody;
|
|
443
|
+
author: ReviewAuthor;
|
|
444
|
+
createdAt: string;
|
|
445
|
+
};
|
|
446
|
+
type BipUpdateCommentBody = string;
|
|
447
|
+
type ReviewAuthor = {
|
|
448
|
+
userId: string;
|
|
449
|
+
handle: string | null;
|
|
450
|
+
name: string | null;
|
|
451
|
+
avatarUrl: string | null;
|
|
452
|
+
};
|
|
453
|
+
type BipInterestCountResponse = {
|
|
454
|
+
interestCount: number;
|
|
455
|
+
};
|
|
456
|
+
type BipEngagementResponse = {
|
|
457
|
+
interested: boolean;
|
|
458
|
+
subscribed: boolean;
|
|
459
|
+
interestCount: number;
|
|
460
|
+
};
|
|
461
|
+
type MyBipUpdateReactionsResponse = {
|
|
462
|
+
reactions: Array<MyBipUpdateReaction>;
|
|
463
|
+
};
|
|
464
|
+
type MyBipUpdateReaction = {
|
|
465
|
+
updateId: string;
|
|
466
|
+
vote: "up" | "down";
|
|
467
|
+
};
|
|
468
|
+
type SetBipUpdateReactionResponse = {
|
|
469
|
+
reactions: BipUpdateReactionCounts;
|
|
470
|
+
vote: BipUpdateVote;
|
|
471
|
+
};
|
|
472
|
+
type BipUpdateVote = "up" | "down" | null;
|
|
473
|
+
type SetBipUpdateReactionRequest = {
|
|
474
|
+
vote: BipUpdateVote;
|
|
475
|
+
};
|
|
476
|
+
type CreateBipUpdateCommentResponse = {
|
|
477
|
+
comment: BipUpdateComment;
|
|
478
|
+
commentCount: number;
|
|
479
|
+
};
|
|
480
|
+
type DeleteBipUpdateCommentResponse = {
|
|
481
|
+
commentCount: number;
|
|
482
|
+
};
|
|
483
|
+
type CreateBipUpdateRequest = {
|
|
484
|
+
body: BipUpdateBody;
|
|
485
|
+
attachments?: BipUpdateAttachments;
|
|
486
|
+
};
|
|
487
|
+
type UpdateBipUpdateRequest = {
|
|
488
|
+
body?: BipUpdateBody;
|
|
489
|
+
attachments?: BipUpdateAttachments;
|
|
490
|
+
};
|
|
491
|
+
type DeleteBipUpdateResponse = {
|
|
492
|
+
deleted: true;
|
|
493
|
+
};
|
|
494
|
+
type BipUpdateMediaUploadResponse = {
|
|
495
|
+
url: string;
|
|
496
|
+
kind: "image" | "video";
|
|
497
|
+
};
|
|
409
498
|
type ReviewListResponse = {
|
|
410
499
|
aggregate: ReviewAggregate;
|
|
411
500
|
reviews: Array<Review>;
|
|
@@ -439,12 +528,6 @@ type ReviewReactionCounts = {
|
|
|
439
528
|
unhelpful: number;
|
|
440
529
|
funny: number;
|
|
441
530
|
};
|
|
442
|
-
type ReviewAuthor = {
|
|
443
|
-
userId: string;
|
|
444
|
-
handle: string | null;
|
|
445
|
-
name: string | null;
|
|
446
|
-
avatarUrl: string | null;
|
|
447
|
-
};
|
|
448
531
|
type ReviewerStats = {
|
|
449
532
|
playtimeSecondsThisGame: number;
|
|
450
533
|
gamesPlayed: number;
|
|
@@ -1839,6 +1922,18 @@ type NotificationItem = {
|
|
|
1839
1922
|
payload: AppPageRejectedNotificationPayload;
|
|
1840
1923
|
read: boolean;
|
|
1841
1924
|
createdAt: string;
|
|
1925
|
+
} | {
|
|
1926
|
+
id: string;
|
|
1927
|
+
kind: "bip_update_published";
|
|
1928
|
+
payload: BipUpdatePublishedNotificationPayload;
|
|
1929
|
+
read: boolean;
|
|
1930
|
+
createdAt: string;
|
|
1931
|
+
} | {
|
|
1932
|
+
id: string;
|
|
1933
|
+
kind: "bip_now_playable";
|
|
1934
|
+
payload: BipNowPlayableNotificationPayload;
|
|
1935
|
+
read: boolean;
|
|
1936
|
+
createdAt: string;
|
|
1842
1937
|
} | {
|
|
1843
1938
|
id: string;
|
|
1844
1939
|
kind: "app_participant_invite";
|
|
@@ -1877,6 +1972,17 @@ type AppPageRejectedNotificationPayload = {
|
|
|
1877
1972
|
scope: "publish" | "changes" | "bip_publish";
|
|
1878
1973
|
notes: string;
|
|
1879
1974
|
};
|
|
1975
|
+
type BipUpdatePublishedNotificationPayload = {
|
|
1976
|
+
appId: string;
|
|
1977
|
+
appName: string;
|
|
1978
|
+
appSlug: string | null;
|
|
1979
|
+
updateId: string;
|
|
1980
|
+
};
|
|
1981
|
+
type BipNowPlayableNotificationPayload = {
|
|
1982
|
+
appId: string;
|
|
1983
|
+
appName: string;
|
|
1984
|
+
appSlug: string | null;
|
|
1985
|
+
};
|
|
1880
1986
|
type AppParticipantInviteNotificationPayload = {
|
|
1881
1987
|
appId: string;
|
|
1882
1988
|
appName: string;
|
|
@@ -2529,6 +2635,7 @@ type AdminAppPageItem = {
|
|
|
2529
2635
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2530
2636
|
bipFirstPublishedAt: string | null;
|
|
2531
2637
|
bipHiddenAt: string | null;
|
|
2638
|
+
openReportCount: number;
|
|
2532
2639
|
};
|
|
2533
2640
|
type AdminAppPageStatusResponse = {
|
|
2534
2641
|
status: "draft" | "pending_review" | "published" | "hidden";
|
|
@@ -2557,6 +2664,22 @@ type AdminAppPageDiffField = {
|
|
|
2557
2664
|
type AdminAppPageBipStatusResponse = {
|
|
2558
2665
|
bipStatus: "draft" | "pending_review" | "published" | "hidden";
|
|
2559
2666
|
};
|
|
2667
|
+
type AdminAppContentReportListResponse = {
|
|
2668
|
+
reports: Array<AdminAppContentReportItem>;
|
|
2669
|
+
total: number;
|
|
2670
|
+
hasMore: boolean;
|
|
2671
|
+
};
|
|
2672
|
+
type AdminAppContentReportItem = {
|
|
2673
|
+
id: string;
|
|
2674
|
+
category: AppContentReportCategory;
|
|
2675
|
+
details: string | null;
|
|
2676
|
+
status: AppContentReportStatus;
|
|
2677
|
+
acknowledgedAt: string | null;
|
|
2678
|
+
createdAt: string;
|
|
2679
|
+
appId: string;
|
|
2680
|
+
appName: string;
|
|
2681
|
+
appSlug: string | null;
|
|
2682
|
+
};
|
|
2560
2683
|
type PlatformFeesResponse = {
|
|
2561
2684
|
purchaseFeeBps: number;
|
|
2562
2685
|
stakeFeeBps: number;
|
|
@@ -2916,6 +3039,19 @@ declare function resolveAppeal(context: TransportContext, input: {
|
|
|
2916
3039
|
readonly body: AppealResolveRequest;
|
|
2917
3040
|
}): Promise<AppealResolveSignedResponse>;
|
|
2918
3041
|
//#endregion
|
|
3042
|
+
//#region src/admin/content-reports.d.ts
|
|
3043
|
+
declare function listAdminContentReports(context: TransportContext, input: {
|
|
3044
|
+
readonly bearer: string;
|
|
3045
|
+
readonly status?: "open" | "acknowledged" | "dismissed" | "all";
|
|
3046
|
+
readonly limit?: number;
|
|
3047
|
+
readonly offset?: number;
|
|
3048
|
+
}): Promise<AdminAppContentReportListResponse>;
|
|
3049
|
+
declare function triageAdminContentReport(context: TransportContext, input: {
|
|
3050
|
+
readonly bearer: string;
|
|
3051
|
+
readonly reportId: string;
|
|
3052
|
+
readonly status: "acknowledged" | "dismissed";
|
|
3053
|
+
}): Promise<AppContentReport>;
|
|
3054
|
+
//#endregion
|
|
2919
3055
|
//#region src/admin/developers.d.ts
|
|
2920
3056
|
declare function listDeveloperRequests(context: TransportContext, input: {
|
|
2921
3057
|
readonly bearer: string;
|
|
@@ -3055,6 +3191,89 @@ declare function getAppPage(context: TransportContext, input: {
|
|
|
3055
3191
|
readonly slug: string;
|
|
3056
3192
|
}): Promise<PublicAppPage>;
|
|
3057
3193
|
//#endregion
|
|
3194
|
+
//#region src/catalog/bip-updates.d.ts
|
|
3195
|
+
declare function listBipUpdates(context: TransportContext, input: {
|
|
3196
|
+
readonly bearer?: string;
|
|
3197
|
+
readonly slug: string;
|
|
3198
|
+
readonly limit?: number;
|
|
3199
|
+
readonly offset?: number;
|
|
3200
|
+
}): Promise<BipUpdateListResponse>;
|
|
3201
|
+
declare function listBipUpdateComments(context: TransportContext, input: {
|
|
3202
|
+
readonly bearer?: string;
|
|
3203
|
+
readonly slug: string;
|
|
3204
|
+
readonly updateId: string;
|
|
3205
|
+
readonly limit?: number;
|
|
3206
|
+
readonly offset?: number;
|
|
3207
|
+
}): Promise<BipUpdateCommentListResponse>;
|
|
3208
|
+
declare function getMyBipUpdateReactions(context: TransportContext, input: {
|
|
3209
|
+
readonly bearer: string;
|
|
3210
|
+
readonly slug: string;
|
|
3211
|
+
}): Promise<MyBipUpdateReactionsResponse>;
|
|
3212
|
+
declare function setBipUpdateReaction(context: TransportContext, input: {
|
|
3213
|
+
readonly bearer: string;
|
|
3214
|
+
readonly slug: string;
|
|
3215
|
+
readonly updateId: string;
|
|
3216
|
+
readonly body: SetBipUpdateReactionRequest;
|
|
3217
|
+
}): Promise<SetBipUpdateReactionResponse>;
|
|
3218
|
+
declare function commentOnBipUpdate(context: TransportContext, input: {
|
|
3219
|
+
readonly bearer: string;
|
|
3220
|
+
readonly slug: string;
|
|
3221
|
+
readonly updateId: string;
|
|
3222
|
+
readonly body: string;
|
|
3223
|
+
}): Promise<CreateBipUpdateCommentResponse>;
|
|
3224
|
+
declare function deleteBipUpdateComment(context: TransportContext, input: {
|
|
3225
|
+
readonly bearer: string;
|
|
3226
|
+
readonly slug: string;
|
|
3227
|
+
readonly commentId: string;
|
|
3228
|
+
}): Promise<DeleteBipUpdateCommentResponse>;
|
|
3229
|
+
declare function listDeveloperBipUpdates(context: TransportContext, input: {
|
|
3230
|
+
readonly bearer: string;
|
|
3231
|
+
readonly appId: string;
|
|
3232
|
+
readonly limit?: number;
|
|
3233
|
+
readonly offset?: number;
|
|
3234
|
+
}): Promise<BipUpdateListResponse>;
|
|
3235
|
+
declare function createBipUpdate(context: TransportContext, input: {
|
|
3236
|
+
readonly bearer: string;
|
|
3237
|
+
readonly appId: string;
|
|
3238
|
+
readonly body: CreateBipUpdateRequest;
|
|
3239
|
+
}): Promise<BipUpdate>;
|
|
3240
|
+
declare function updateBipUpdate(context: TransportContext, input: {
|
|
3241
|
+
readonly bearer: string;
|
|
3242
|
+
readonly appId: string;
|
|
3243
|
+
readonly updateId: string;
|
|
3244
|
+
readonly body: UpdateBipUpdateRequest;
|
|
3245
|
+
}): Promise<BipUpdate>;
|
|
3246
|
+
declare function deleteBipUpdate(context: TransportContext, input: {
|
|
3247
|
+
readonly bearer: string;
|
|
3248
|
+
readonly appId: string;
|
|
3249
|
+
readonly updateId: string;
|
|
3250
|
+
}): Promise<DeleteBipUpdateResponse>;
|
|
3251
|
+
declare function uploadBipUpdateMedia(context: TransportContext, input: {
|
|
3252
|
+
readonly bearer: string;
|
|
3253
|
+
readonly appId: string;
|
|
3254
|
+
readonly file: Blob;
|
|
3255
|
+
readonly filename: string;
|
|
3256
|
+
readonly contentType: string;
|
|
3257
|
+
}): Promise<BipUpdateMediaUploadResponse>;
|
|
3258
|
+
declare function getBipInterestCount(context: TransportContext, input: {
|
|
3259
|
+
readonly bearer?: string;
|
|
3260
|
+
readonly slug: string;
|
|
3261
|
+
}): Promise<BipInterestCountResponse>;
|
|
3262
|
+
declare function getMyBipEngagement(context: TransportContext, input: {
|
|
3263
|
+
readonly bearer: string;
|
|
3264
|
+
readonly slug: string;
|
|
3265
|
+
}): Promise<BipEngagementResponse>;
|
|
3266
|
+
declare function registerBipInterest(context: TransportContext, input: {
|
|
3267
|
+
readonly bearer: string;
|
|
3268
|
+
readonly slug: string;
|
|
3269
|
+
readonly interested: boolean;
|
|
3270
|
+
}): Promise<BipEngagementResponse>;
|
|
3271
|
+
declare function subscribeBipUpdates(context: TransportContext, input: {
|
|
3272
|
+
readonly bearer: string;
|
|
3273
|
+
readonly slug: string;
|
|
3274
|
+
readonly subscribed: boolean;
|
|
3275
|
+
}): Promise<BipEngagementResponse>;
|
|
3276
|
+
//#endregion
|
|
3058
3277
|
//#region src/catalog/build-in-public.d.ts
|
|
3059
3278
|
declare function getBipDirectory(context: TransportContext, input: {
|
|
3060
3279
|
readonly bearer?: string;
|
|
@@ -4362,4 +4581,4 @@ type CookieTokenStoreOptions = {
|
|
|
4362
4581
|
};
|
|
4363
4582
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
4364
4583
|
//#endregion
|
|
4365
|
-
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, commentOnGameReview, completePaymentIntent, consolidateDeveloperAppWallet, 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, 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, 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, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, 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, 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, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|
|
4584
|
+
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, 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, 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, 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 };
|