@metatrongg/sdk 0.8.0-dev.cb4b3eb → 0.8.0-dev.d0f6848
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 +118 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1147 -94
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +118 -17
- 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 +1 -1
package/dist/node/index.d.ts
CHANGED
|
@@ -376,9 +376,16 @@ type PublicAppPage = {
|
|
|
376
376
|
chapters: AppPageChapters;
|
|
377
377
|
links: AppPageLinks;
|
|
378
378
|
studio: PublicAppPageStudio;
|
|
379
|
+
platforms: AppPagePlatforms;
|
|
380
|
+
gameType: AppPageGameType;
|
|
381
|
+
ageRating: AppPageAgeRating;
|
|
382
|
+
languages: AppPageLanguages;
|
|
383
|
+
releaseStatus: AppPageReleaseStatus;
|
|
384
|
+
paymentsMode: AppPagePaymentsMode;
|
|
379
385
|
oauthScopes: Array<string>;
|
|
380
386
|
chains: Array<string>;
|
|
381
387
|
publishedAt: string;
|
|
388
|
+
updatedAt: string;
|
|
382
389
|
};
|
|
383
390
|
type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
|
|
384
391
|
type AppPageTagline = string;
|
|
@@ -401,12 +408,19 @@ type AppPageLink = {
|
|
|
401
408
|
order: number;
|
|
402
409
|
};
|
|
403
410
|
type PublicAppPageStudio = {
|
|
411
|
+
ownerUserId: string | null;
|
|
404
412
|
name: string | null;
|
|
405
413
|
logoUrl: string | null;
|
|
406
414
|
websiteUrl: string | null;
|
|
407
415
|
xHandle: string | null;
|
|
408
416
|
githubUrl: string | null;
|
|
409
417
|
};
|
|
418
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
419
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
420
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
421
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
422
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
423
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
410
424
|
type ReviewListResponse = {
|
|
411
425
|
aggregate: ReviewAggregate;
|
|
412
426
|
reviews: Array<Review>;
|
|
@@ -414,29 +428,32 @@ type ReviewListResponse = {
|
|
|
414
428
|
hasMore: boolean;
|
|
415
429
|
};
|
|
416
430
|
type ReviewAggregate = {
|
|
417
|
-
average: number | null;
|
|
418
431
|
count: number;
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
1: number;
|
|
423
|
-
2: number;
|
|
424
|
-
3: number;
|
|
425
|
-
4: number;
|
|
426
|
-
5: number;
|
|
432
|
+
recommendedCount: number;
|
|
433
|
+
recommendedPct: number | null;
|
|
434
|
+
summaryLabel: ReviewSummaryLabel;
|
|
427
435
|
};
|
|
436
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
428
437
|
type Review = {
|
|
429
438
|
id: string;
|
|
430
|
-
|
|
439
|
+
recommended: ReviewRecommended;
|
|
431
440
|
body: ReviewBody;
|
|
441
|
+
reactions: ReviewReactionCounts;
|
|
432
442
|
author: ReviewAuthor;
|
|
433
443
|
developerReply: ReviewReply;
|
|
434
444
|
createdAt: string;
|
|
435
445
|
updatedAt: string;
|
|
436
446
|
};
|
|
437
|
-
type
|
|
447
|
+
type ReviewRecommended = boolean;
|
|
438
448
|
type ReviewBody = string;
|
|
449
|
+
type ReviewReactionCounts = {
|
|
450
|
+
helpful: number;
|
|
451
|
+
unhelpful: number;
|
|
452
|
+
funny: number;
|
|
453
|
+
};
|
|
439
454
|
type ReviewAuthor = {
|
|
455
|
+
userId: string;
|
|
456
|
+
handle: string | null;
|
|
440
457
|
name: string | null;
|
|
441
458
|
avatarUrl: string | null;
|
|
442
459
|
};
|
|
@@ -445,7 +462,7 @@ type ReviewReply = {
|
|
|
445
462
|
repliedAt: string;
|
|
446
463
|
} | null;
|
|
447
464
|
type ReviewReplyBody = string;
|
|
448
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
465
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
449
466
|
type MyReviewResponse = {
|
|
450
467
|
eligible: boolean;
|
|
451
468
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -455,15 +472,33 @@ type MyReviewResponse = {
|
|
|
455
472
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
456
473
|
type OwnReview = {
|
|
457
474
|
id: string;
|
|
458
|
-
|
|
475
|
+
recommended: ReviewRecommended;
|
|
459
476
|
body: ReviewBody;
|
|
460
477
|
createdAt: string;
|
|
461
478
|
updatedAt: string;
|
|
462
479
|
} | null;
|
|
463
480
|
type UpsertReviewRequest = {
|
|
464
|
-
|
|
481
|
+
recommended: ReviewRecommended;
|
|
465
482
|
body: ReviewBody;
|
|
466
483
|
};
|
|
484
|
+
type MyReviewReactionsResponse = {
|
|
485
|
+
reactions: Array<MyReviewReaction>;
|
|
486
|
+
};
|
|
487
|
+
type MyReviewReaction = {
|
|
488
|
+
reviewId: string;
|
|
489
|
+
vote: ReviewVote;
|
|
490
|
+
funny: boolean;
|
|
491
|
+
};
|
|
492
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
493
|
+
type SetReviewReactionResponse = {
|
|
494
|
+
reactions: ReviewReactionCounts;
|
|
495
|
+
vote: ReviewVote;
|
|
496
|
+
funny: boolean;
|
|
497
|
+
};
|
|
498
|
+
type SetReviewReactionRequest = {
|
|
499
|
+
vote: ReviewVote;
|
|
500
|
+
funny: boolean;
|
|
501
|
+
};
|
|
467
502
|
type ReviewReplyResponse = {
|
|
468
503
|
developerReply: ReviewReply;
|
|
469
504
|
};
|
|
@@ -568,6 +603,8 @@ type ActivityRow = ({
|
|
|
568
603
|
} & ActivityRowTronPot) | ({
|
|
569
604
|
kind: "tron_cashout";
|
|
570
605
|
} & ActivityRowTronCashout) | ({
|
|
606
|
+
kind: "tron_transfer";
|
|
607
|
+
} & ActivityRowTronTransfer) | ({
|
|
571
608
|
kind: "referral_earning";
|
|
572
609
|
} & ActivityRowReferralEarning);
|
|
573
610
|
type ActivityRowPayment = {
|
|
@@ -815,6 +852,8 @@ type ActivityRowTronPot = {
|
|
|
815
852
|
role: "incoming" | "outgoing";
|
|
816
853
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
817
854
|
amountCents: number;
|
|
855
|
+
usdCents: number;
|
|
856
|
+
status: "settled";
|
|
818
857
|
app: {
|
|
819
858
|
id: string;
|
|
820
859
|
name: string;
|
|
@@ -822,8 +861,16 @@ type ActivityRowTronPot = {
|
|
|
822
861
|
slug: string | null;
|
|
823
862
|
bannerUrl: string | null;
|
|
824
863
|
} | null;
|
|
864
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
825
865
|
metadata?: PaymentMetadata | null;
|
|
826
866
|
};
|
|
867
|
+
type ActivityTronInvolvedUser = {
|
|
868
|
+
userId: string;
|
|
869
|
+
handle: string | null;
|
|
870
|
+
displayName: string | null;
|
|
871
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
872
|
+
amountCents: number;
|
|
873
|
+
};
|
|
827
874
|
type ActivityRowTronCashout = {
|
|
828
875
|
kind: "tron_cashout";
|
|
829
876
|
groupId: string | null;
|
|
@@ -841,6 +888,20 @@ type ActivityRowTronCashout = {
|
|
|
841
888
|
rejectionReason: string | null;
|
|
842
889
|
settledAt: string | null;
|
|
843
890
|
};
|
|
891
|
+
type ActivityRowTronTransfer = {
|
|
892
|
+
kind: "tron_transfer";
|
|
893
|
+
groupId: string | null;
|
|
894
|
+
id: string;
|
|
895
|
+
occurredAt: string;
|
|
896
|
+
role: "incoming" | "outgoing";
|
|
897
|
+
amountCents: number;
|
|
898
|
+
usdCents: number;
|
|
899
|
+
status: "settled";
|
|
900
|
+
counterpartyUserId: string | null;
|
|
901
|
+
counterpartyHandle: string | null;
|
|
902
|
+
counterpartyDisplayName: string | null;
|
|
903
|
+
note: string | null;
|
|
904
|
+
};
|
|
844
905
|
type ActivityRowReferralEarning = {
|
|
845
906
|
kind: "referral_earning";
|
|
846
907
|
groupId: string | null;
|
|
@@ -906,7 +967,7 @@ type TronLedgerResponse = {
|
|
|
906
967
|
};
|
|
907
968
|
type TronLedgerEntry = {
|
|
908
969
|
id: string;
|
|
909
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
970
|
+
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
|
|
910
971
|
amountCents: number;
|
|
911
972
|
currency: string;
|
|
912
973
|
createdAt: string;
|
|
@@ -921,6 +982,21 @@ type TronDepositResponse = {
|
|
|
921
982
|
type TronDepositRequest = {
|
|
922
983
|
amountCents: number;
|
|
923
984
|
};
|
|
985
|
+
type TronTransferResponse = {
|
|
986
|
+
status: "completed";
|
|
987
|
+
amountCents: number;
|
|
988
|
+
balanceCents: number;
|
|
989
|
+
recipient: {
|
|
990
|
+
userId: string;
|
|
991
|
+
handle: string | null;
|
|
992
|
+
displayName: string | null;
|
|
993
|
+
};
|
|
994
|
+
};
|
|
995
|
+
type TronTransferRequest = {
|
|
996
|
+
recipientUserId: string;
|
|
997
|
+
amountCents: number;
|
|
998
|
+
note?: string;
|
|
999
|
+
};
|
|
924
1000
|
type TronGameBalanceResponse = {
|
|
925
1001
|
balanceCents: number;
|
|
926
1002
|
rakeBps: number;
|
|
@@ -1597,7 +1673,7 @@ type ProfileRecentReview = {
|
|
|
1597
1673
|
appId: string;
|
|
1598
1674
|
appName: string;
|
|
1599
1675
|
appLogoUrl: string | null;
|
|
1600
|
-
|
|
1676
|
+
recommended: boolean;
|
|
1601
1677
|
body: string;
|
|
1602
1678
|
createdAt: string;
|
|
1603
1679
|
};
|
|
@@ -1953,6 +2029,11 @@ type AppPageDraft = {
|
|
|
1953
2029
|
gallery: AppPageGallery;
|
|
1954
2030
|
chapters: AppPageChapters;
|
|
1955
2031
|
links: AppPageLinks;
|
|
2032
|
+
platforms: AppPagePlatforms;
|
|
2033
|
+
gameType: AppPageGameType;
|
|
2034
|
+
ageRating: AppPageAgeRating;
|
|
2035
|
+
languages: AppPageLanguages;
|
|
2036
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1956
2037
|
firstPublishedAt: string | null;
|
|
1957
2038
|
reviewedAt: string | null;
|
|
1958
2039
|
reviewNotes: string | null;
|
|
@@ -1975,6 +2056,11 @@ type UpdateAppPage = {
|
|
|
1975
2056
|
gallery?: AppPageGallery;
|
|
1976
2057
|
chapters?: AppPageChapters;
|
|
1977
2058
|
links?: AppPageLinks;
|
|
2059
|
+
platforms?: AppPagePlatforms;
|
|
2060
|
+
gameType?: AppPageGameType;
|
|
2061
|
+
ageRating?: AppPageAgeRating;
|
|
2062
|
+
languages?: AppPageLanguages;
|
|
2063
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1978
2064
|
};
|
|
1979
2065
|
type AppPageGalleryUploadResponse = {
|
|
1980
2066
|
url: string;
|
|
@@ -2726,6 +2812,16 @@ declare function deleteMyGameReview(context: TransportContext, input: {
|
|
|
2726
2812
|
readonly slug: string;
|
|
2727
2813
|
readonly bearer: string;
|
|
2728
2814
|
}): Promise<MyReviewResponse>;
|
|
2815
|
+
declare function getMyGameReviewReactions(context: TransportContext, input: {
|
|
2816
|
+
readonly slug: string;
|
|
2817
|
+
readonly bearer: string;
|
|
2818
|
+
}): Promise<MyReviewReactionsResponse>;
|
|
2819
|
+
declare function setMyGameReviewReaction(context: TransportContext, input: {
|
|
2820
|
+
readonly slug: string;
|
|
2821
|
+
readonly reviewId: string;
|
|
2822
|
+
readonly bearer: string;
|
|
2823
|
+
readonly reaction: SetReviewReactionRequest;
|
|
2824
|
+
}): Promise<SetReviewReactionResponse>;
|
|
2729
2825
|
declare function replyToGameReview(context: TransportContext, input: {
|
|
2730
2826
|
readonly appId: string;
|
|
2731
2827
|
readonly reviewId: string;
|
|
@@ -3486,6 +3582,11 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3486
3582
|
readonly bearer: string;
|
|
3487
3583
|
readonly body: TronDepositRequest;
|
|
3488
3584
|
}): Promise<TronDepositResponse>;
|
|
3585
|
+
declare function createTronTransfer(context: TransportContext, input: {
|
|
3586
|
+
readonly bearer: string;
|
|
3587
|
+
readonly body: TronTransferRequest;
|
|
3588
|
+
readonly idempotencyKey?: string;
|
|
3589
|
+
}): Promise<TronTransferResponse>;
|
|
3489
3590
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3490
3591
|
readonly bearer: string;
|
|
3491
3592
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3919,4 +4020,4 @@ declare class TronNodeClient {
|
|
|
3919
4020
|
};
|
|
3920
4021
|
}
|
|
3921
4022
|
//#endregion
|
|
3922
|
-
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, 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, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, heartbeatPlaySession, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, toTokenSet, unfollowUser, unhideAppPage, unlockDmKeyBackup, unpinThread, unpublishAppPage, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|
|
4023
|
+
export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, 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, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, createDelegation, createDeveloperApiKey, createDeveloperApp, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, distributePot, distributeTronPot, editMessage, endPlaySession, exchangeAuthorizationCode, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, heartbeatPlaySession, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, toTokenSet, unfollowUser, unhideAppPage, unlockDmKeyBackup, unpinThread, unpublishAppPage, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|