@metatrongg/sdk 0.8.0-dev.cb4b3eb → 0.8.0-dev.d1c3c23
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 +136 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1232 -94
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +136 -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/browser/index.d.ts
CHANGED
|
@@ -334,9 +334,16 @@ type PublicAppPage = {
|
|
|
334
334
|
chapters: AppPageChapters;
|
|
335
335
|
links: AppPageLinks;
|
|
336
336
|
studio: PublicAppPageStudio;
|
|
337
|
+
platforms: AppPagePlatforms;
|
|
338
|
+
gameType: AppPageGameType;
|
|
339
|
+
ageRating: AppPageAgeRating;
|
|
340
|
+
languages: AppPageLanguages;
|
|
341
|
+
releaseStatus: AppPageReleaseStatus;
|
|
342
|
+
paymentsMode: AppPagePaymentsMode;
|
|
337
343
|
oauthScopes: Array<string>;
|
|
338
344
|
chains: Array<string>;
|
|
339
345
|
publishedAt: string;
|
|
346
|
+
updatedAt: string;
|
|
340
347
|
};
|
|
341
348
|
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">;
|
|
342
349
|
type AppPageTagline = string;
|
|
@@ -359,12 +366,19 @@ type AppPageLink = {
|
|
|
359
366
|
order: number;
|
|
360
367
|
};
|
|
361
368
|
type PublicAppPageStudio = {
|
|
369
|
+
ownerUserId: string | null;
|
|
362
370
|
name: string | null;
|
|
363
371
|
logoUrl: string | null;
|
|
364
372
|
websiteUrl: string | null;
|
|
365
373
|
xHandle: string | null;
|
|
366
374
|
githubUrl: string | null;
|
|
367
375
|
};
|
|
376
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
377
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
378
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
379
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
380
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
381
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
368
382
|
type ReviewListResponse = {
|
|
369
383
|
aggregate: ReviewAggregate;
|
|
370
384
|
reviews: Array<Review>;
|
|
@@ -372,29 +386,33 @@ type ReviewListResponse = {
|
|
|
372
386
|
hasMore: boolean;
|
|
373
387
|
};
|
|
374
388
|
type ReviewAggregate = {
|
|
375
|
-
average: number | null;
|
|
376
389
|
count: number;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
1: number;
|
|
381
|
-
2: number;
|
|
382
|
-
3: number;
|
|
383
|
-
4: number;
|
|
384
|
-
5: number;
|
|
390
|
+
recommendedCount: number;
|
|
391
|
+
recommendedPct: number | null;
|
|
392
|
+
summaryLabel: ReviewSummaryLabel;
|
|
385
393
|
};
|
|
394
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
386
395
|
type Review = {
|
|
387
396
|
id: string;
|
|
388
|
-
|
|
397
|
+
recommended: ReviewRecommended;
|
|
389
398
|
body: ReviewBody;
|
|
399
|
+
reactions: ReviewReactionCounts;
|
|
400
|
+
tippedCents: number;
|
|
390
401
|
author: ReviewAuthor;
|
|
391
402
|
developerReply: ReviewReply;
|
|
392
403
|
createdAt: string;
|
|
393
404
|
updatedAt: string;
|
|
394
405
|
};
|
|
395
|
-
type
|
|
406
|
+
type ReviewRecommended = boolean;
|
|
396
407
|
type ReviewBody = string;
|
|
408
|
+
type ReviewReactionCounts = {
|
|
409
|
+
helpful: number;
|
|
410
|
+
unhelpful: number;
|
|
411
|
+
funny: number;
|
|
412
|
+
};
|
|
397
413
|
type ReviewAuthor = {
|
|
414
|
+
userId: string;
|
|
415
|
+
handle: string | null;
|
|
398
416
|
name: string | null;
|
|
399
417
|
avatarUrl: string | null;
|
|
400
418
|
};
|
|
@@ -403,7 +421,7 @@ type ReviewReply = {
|
|
|
403
421
|
repliedAt: string;
|
|
404
422
|
} | null;
|
|
405
423
|
type ReviewReplyBody = string;
|
|
406
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
424
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
407
425
|
type MyReviewResponse = {
|
|
408
426
|
eligible: boolean;
|
|
409
427
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -413,15 +431,43 @@ type MyReviewResponse = {
|
|
|
413
431
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
414
432
|
type OwnReview = {
|
|
415
433
|
id: string;
|
|
416
|
-
|
|
434
|
+
recommended: ReviewRecommended;
|
|
417
435
|
body: ReviewBody;
|
|
418
436
|
createdAt: string;
|
|
419
437
|
updatedAt: string;
|
|
420
438
|
} | null;
|
|
421
439
|
type UpsertReviewRequest = {
|
|
422
|
-
|
|
440
|
+
recommended: ReviewRecommended;
|
|
423
441
|
body: ReviewBody;
|
|
424
442
|
};
|
|
443
|
+
type MyReviewReactionsResponse = {
|
|
444
|
+
reactions: Array<MyReviewReaction>;
|
|
445
|
+
};
|
|
446
|
+
type MyReviewReaction = {
|
|
447
|
+
reviewId: string;
|
|
448
|
+
vote: ReviewVote;
|
|
449
|
+
funny: boolean;
|
|
450
|
+
};
|
|
451
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
452
|
+
type SetReviewReactionResponse = {
|
|
453
|
+
reactions: ReviewReactionCounts;
|
|
454
|
+
vote: ReviewVote;
|
|
455
|
+
funny: boolean;
|
|
456
|
+
};
|
|
457
|
+
type SetReviewReactionRequest = {
|
|
458
|
+
vote: ReviewVote;
|
|
459
|
+
funny: boolean;
|
|
460
|
+
};
|
|
461
|
+
type TipReviewResponse = {
|
|
462
|
+
status: "completed";
|
|
463
|
+
amountCents: number;
|
|
464
|
+
balanceCents: number;
|
|
465
|
+
tippedCents: number;
|
|
466
|
+
};
|
|
467
|
+
type TipReviewRequest = {
|
|
468
|
+
amountCents: number;
|
|
469
|
+
note?: string;
|
|
470
|
+
};
|
|
425
471
|
type ReviewReplyResponse = {
|
|
426
472
|
developerReply: ReviewReply;
|
|
427
473
|
};
|
|
@@ -526,6 +572,8 @@ type ActivityRow = ({
|
|
|
526
572
|
} & ActivityRowTronPot) | ({
|
|
527
573
|
kind: "tron_cashout";
|
|
528
574
|
} & ActivityRowTronCashout) | ({
|
|
575
|
+
kind: "tron_transfer";
|
|
576
|
+
} & ActivityRowTronTransfer) | ({
|
|
529
577
|
kind: "referral_earning";
|
|
530
578
|
} & ActivityRowReferralEarning);
|
|
531
579
|
type ActivityRowPayment = {
|
|
@@ -773,6 +821,8 @@ type ActivityRowTronPot = {
|
|
|
773
821
|
role: "incoming" | "outgoing";
|
|
774
822
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
775
823
|
amountCents: number;
|
|
824
|
+
usdCents: number;
|
|
825
|
+
status: "settled";
|
|
776
826
|
app: {
|
|
777
827
|
id: string;
|
|
778
828
|
name: string;
|
|
@@ -780,8 +830,16 @@ type ActivityRowTronPot = {
|
|
|
780
830
|
slug: string | null;
|
|
781
831
|
bannerUrl: string | null;
|
|
782
832
|
} | null;
|
|
833
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
783
834
|
metadata?: PaymentMetadata | null;
|
|
784
835
|
};
|
|
836
|
+
type ActivityTronInvolvedUser = {
|
|
837
|
+
userId: string;
|
|
838
|
+
handle: string | null;
|
|
839
|
+
displayName: string | null;
|
|
840
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
841
|
+
amountCents: number;
|
|
842
|
+
};
|
|
785
843
|
type ActivityRowTronCashout = {
|
|
786
844
|
kind: "tron_cashout";
|
|
787
845
|
groupId: string | null;
|
|
@@ -799,6 +857,20 @@ type ActivityRowTronCashout = {
|
|
|
799
857
|
rejectionReason: string | null;
|
|
800
858
|
settledAt: string | null;
|
|
801
859
|
};
|
|
860
|
+
type ActivityRowTronTransfer = {
|
|
861
|
+
kind: "tron_transfer";
|
|
862
|
+
groupId: string | null;
|
|
863
|
+
id: string;
|
|
864
|
+
occurredAt: string;
|
|
865
|
+
role: "incoming" | "outgoing";
|
|
866
|
+
amountCents: number;
|
|
867
|
+
usdCents: number;
|
|
868
|
+
status: "settled";
|
|
869
|
+
counterpartyUserId: string | null;
|
|
870
|
+
counterpartyHandle: string | null;
|
|
871
|
+
counterpartyDisplayName: string | null;
|
|
872
|
+
note: string | null;
|
|
873
|
+
};
|
|
802
874
|
type ActivityRowReferralEarning = {
|
|
803
875
|
kind: "referral_earning";
|
|
804
876
|
groupId: string | null;
|
|
@@ -864,7 +936,7 @@ type TronLedgerResponse = {
|
|
|
864
936
|
};
|
|
865
937
|
type TronLedgerEntry = {
|
|
866
938
|
id: string;
|
|
867
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
939
|
+
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
|
|
868
940
|
amountCents: number;
|
|
869
941
|
currency: string;
|
|
870
942
|
createdAt: string;
|
|
@@ -879,6 +951,21 @@ type TronDepositResponse = {
|
|
|
879
951
|
type TronDepositRequest = {
|
|
880
952
|
amountCents: number;
|
|
881
953
|
};
|
|
954
|
+
type TronTransferResponse = {
|
|
955
|
+
status: "completed";
|
|
956
|
+
amountCents: number;
|
|
957
|
+
balanceCents: number;
|
|
958
|
+
recipient: {
|
|
959
|
+
userId: string;
|
|
960
|
+
handle: string | null;
|
|
961
|
+
displayName: string | null;
|
|
962
|
+
};
|
|
963
|
+
};
|
|
964
|
+
type TronTransferRequest = {
|
|
965
|
+
recipientUserId: string;
|
|
966
|
+
amountCents: number;
|
|
967
|
+
note?: string;
|
|
968
|
+
};
|
|
882
969
|
type TronConnectOnboardingResponse = {
|
|
883
970
|
url: string;
|
|
884
971
|
};
|
|
@@ -1500,7 +1587,7 @@ type ProfileRecentReview = {
|
|
|
1500
1587
|
appId: string;
|
|
1501
1588
|
appName: string;
|
|
1502
1589
|
appLogoUrl: string | null;
|
|
1503
|
-
|
|
1590
|
+
recommended: boolean;
|
|
1504
1591
|
body: string;
|
|
1505
1592
|
createdAt: string;
|
|
1506
1593
|
};
|
|
@@ -1856,6 +1943,11 @@ type AppPageDraft = {
|
|
|
1856
1943
|
gallery: AppPageGallery;
|
|
1857
1944
|
chapters: AppPageChapters;
|
|
1858
1945
|
links: AppPageLinks;
|
|
1946
|
+
platforms: AppPagePlatforms;
|
|
1947
|
+
gameType: AppPageGameType;
|
|
1948
|
+
ageRating: AppPageAgeRating;
|
|
1949
|
+
languages: AppPageLanguages;
|
|
1950
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1859
1951
|
firstPublishedAt: string | null;
|
|
1860
1952
|
reviewedAt: string | null;
|
|
1861
1953
|
reviewNotes: string | null;
|
|
@@ -1878,6 +1970,11 @@ type UpdateAppPage = {
|
|
|
1878
1970
|
gallery?: AppPageGallery;
|
|
1879
1971
|
chapters?: AppPageChapters;
|
|
1880
1972
|
links?: AppPageLinks;
|
|
1973
|
+
platforms?: AppPagePlatforms;
|
|
1974
|
+
gameType?: AppPageGameType;
|
|
1975
|
+
ageRating?: AppPageAgeRating;
|
|
1976
|
+
languages?: AppPageLanguages;
|
|
1977
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1881
1978
|
};
|
|
1882
1979
|
type AppPageGalleryUploadResponse = {
|
|
1883
1980
|
url: string;
|
|
@@ -2567,6 +2664,23 @@ declare function deleteMyGameReview(context: TransportContext, input: {
|
|
|
2567
2664
|
readonly slug: string;
|
|
2568
2665
|
readonly bearer: string;
|
|
2569
2666
|
}): Promise<MyReviewResponse>;
|
|
2667
|
+
declare function getMyGameReviewReactions(context: TransportContext, input: {
|
|
2668
|
+
readonly slug: string;
|
|
2669
|
+
readonly bearer: string;
|
|
2670
|
+
}): Promise<MyReviewReactionsResponse>;
|
|
2671
|
+
declare function setMyGameReviewReaction(context: TransportContext, input: {
|
|
2672
|
+
readonly slug: string;
|
|
2673
|
+
readonly reviewId: string;
|
|
2674
|
+
readonly bearer: string;
|
|
2675
|
+
readonly reaction: SetReviewReactionRequest;
|
|
2676
|
+
}): Promise<SetReviewReactionResponse>;
|
|
2677
|
+
declare function tipGameReview(context: TransportContext, input: {
|
|
2678
|
+
readonly slug: string;
|
|
2679
|
+
readonly reviewId: string;
|
|
2680
|
+
readonly bearer: string;
|
|
2681
|
+
readonly tip: TipReviewRequest;
|
|
2682
|
+
readonly idempotencyKey?: string;
|
|
2683
|
+
}): Promise<TipReviewResponse>;
|
|
2570
2684
|
declare function replyToGameReview(context: TransportContext, input: {
|
|
2571
2685
|
readonly appId: string;
|
|
2572
2686
|
readonly reviewId: string;
|
|
@@ -3203,6 +3317,11 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3203
3317
|
readonly bearer: string;
|
|
3204
3318
|
readonly body: TronDepositRequest;
|
|
3205
3319
|
}): Promise<TronDepositResponse>;
|
|
3320
|
+
declare function createTronTransfer(context: TransportContext, input: {
|
|
3321
|
+
readonly bearer: string;
|
|
3322
|
+
readonly body: TronTransferRequest;
|
|
3323
|
+
readonly idempotencyKey?: string;
|
|
3324
|
+
}): Promise<TronTransferResponse>;
|
|
3206
3325
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3207
3326
|
readonly bearer: string;
|
|
3208
3327
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3642,4 +3761,4 @@ type CookieTokenStoreOptions = {
|
|
|
3642
3761
|
};
|
|
3643
3762
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
3644
3763
|
//#endregion
|
|
3645
|
-
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, completePaymentIntent, consolidateDeveloperAppWallet, createConsoleLogger, createCookieTokenStore, 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, editMessage, 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, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, 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, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, 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 };
|
|
3764
|
+
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, completePaymentIntent, consolidateDeveloperAppWallet, createConsoleLogger, createCookieTokenStore, 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, editMessage, 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, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, 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, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, tipGameReview, 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 };
|