@metatrongg/sdk 0.8.0-dev.6ac4e78 → 0.8.0-dev.731f2ff

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.
@@ -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,38 +386,49 @@ type ReviewListResponse = {
372
386
  hasMore: boolean;
373
387
  };
374
388
  type ReviewAggregate = {
375
- average: number | null;
376
389
  count: number;
377
- distribution: ReviewDistribution;
378
- };
379
- type ReviewDistribution = {
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
- rating: ReviewRating;
397
+ recommended: ReviewRecommended;
389
398
  body: ReviewBody;
399
+ reactions: ReviewReactionCounts;
400
+ tippedCents: number;
401
+ commentCount: number;
390
402
  author: ReviewAuthor;
403
+ authorStats: ReviewerStats;
391
404
  developerReply: ReviewReply;
392
405
  createdAt: string;
393
406
  updatedAt: string;
394
407
  };
395
- type ReviewRating = number;
408
+ type ReviewRecommended = boolean;
396
409
  type ReviewBody = string;
410
+ type ReviewReactionCounts = {
411
+ helpful: number;
412
+ unhelpful: number;
413
+ funny: number;
414
+ };
397
415
  type ReviewAuthor = {
416
+ userId: string;
417
+ handle: string | null;
398
418
  name: string | null;
399
419
  avatarUrl: string | null;
400
420
  };
421
+ type ReviewerStats = {
422
+ playtimeSecondsThisGame: number;
423
+ gamesPlayed: number;
424
+ reviewsWritten: number;
425
+ };
401
426
  type ReviewReply = {
402
427
  body: ReviewReplyBody;
403
428
  repliedAt: string;
404
429
  } | null;
405
430
  type ReviewReplyBody = string;
406
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
431
+ type ReviewSort = "newest" | "oldest" | "helpful";
407
432
  type MyReviewResponse = {
408
433
  eligible: boolean;
409
434
  eligibleVia: ReviewEligibilityReason;
@@ -413,15 +438,67 @@ type MyReviewResponse = {
413
438
  type ReviewEligibilityReason = "payment" | "reward" | null;
414
439
  type OwnReview = {
415
440
  id: string;
416
- rating: ReviewRating;
441
+ recommended: ReviewRecommended;
417
442
  body: ReviewBody;
418
443
  createdAt: string;
419
444
  updatedAt: string;
420
445
  } | null;
421
446
  type UpsertReviewRequest = {
422
- rating: ReviewRating;
447
+ recommended: ReviewRecommended;
423
448
  body: ReviewBody;
424
449
  };
450
+ type MyReviewReactionsResponse = {
451
+ reactions: Array<MyReviewReaction>;
452
+ };
453
+ type MyReviewReaction = {
454
+ reviewId: string;
455
+ vote: ReviewVote;
456
+ funny: boolean;
457
+ };
458
+ type ReviewVote = "helpful" | "unhelpful" | null;
459
+ type SetReviewReactionResponse = {
460
+ reactions: ReviewReactionCounts;
461
+ vote: ReviewVote;
462
+ funny: boolean;
463
+ };
464
+ type SetReviewReactionRequest = {
465
+ vote: ReviewVote;
466
+ funny: boolean;
467
+ };
468
+ type TipReviewResponse = {
469
+ status: "completed";
470
+ amountCents: number;
471
+ balanceCents: number;
472
+ tippedCents: number;
473
+ };
474
+ type TipReviewRequest = {
475
+ amountCents: number;
476
+ note?: string;
477
+ challengeId?: string;
478
+ signature?: string;
479
+ };
480
+ type ReviewCommentListResponse = {
481
+ comments: Array<ReviewComment>;
482
+ total: number;
483
+ hasMore: boolean;
484
+ };
485
+ type ReviewComment = {
486
+ id: string;
487
+ body: ReviewCommentBody;
488
+ author: ReviewAuthor;
489
+ createdAt: string;
490
+ };
491
+ type ReviewCommentBody = string;
492
+ type CreateReviewCommentResponse = {
493
+ comment: ReviewComment;
494
+ commentCount: number;
495
+ };
496
+ type CreateReviewCommentRequest = {
497
+ body: ReviewCommentBody;
498
+ };
499
+ type DeleteReviewCommentResponse = {
500
+ commentCount: number;
501
+ };
425
502
  type ReviewReplyResponse = {
426
503
  developerReply: ReviewReply;
427
504
  };
@@ -526,6 +603,8 @@ type ActivityRow = ({
526
603
  } & ActivityRowTronPot) | ({
527
604
  kind: "tron_cashout";
528
605
  } & ActivityRowTronCashout) | ({
606
+ kind: "tron_transfer";
607
+ } & ActivityRowTronTransfer) | ({
529
608
  kind: "referral_earning";
530
609
  } & ActivityRowReferralEarning);
531
610
  type ActivityRowPayment = {
@@ -773,6 +852,8 @@ type ActivityRowTronPot = {
773
852
  role: "incoming" | "outgoing";
774
853
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
775
854
  amountCents: number;
855
+ usdCents: number;
856
+ status: "settled";
776
857
  app: {
777
858
  id: string;
778
859
  name: string;
@@ -780,8 +861,16 @@ type ActivityRowTronPot = {
780
861
  slug: string | null;
781
862
  bannerUrl: string | null;
782
863
  } | null;
864
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
783
865
  metadata?: PaymentMetadata | null;
784
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
+ };
785
874
  type ActivityRowTronCashout = {
786
875
  kind: "tron_cashout";
787
876
  groupId: string | null;
@@ -799,6 +888,20 @@ type ActivityRowTronCashout = {
799
888
  rejectionReason: string | null;
800
889
  settledAt: string | null;
801
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
+ };
802
905
  type ActivityRowReferralEarning = {
803
906
  kind: "referral_earning";
804
907
  groupId: string | null;
@@ -864,7 +967,7 @@ type TronLedgerResponse = {
864
967
  };
865
968
  type TronLedgerEntry = {
866
969
  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";
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";
868
971
  amountCents: number;
869
972
  currency: string;
870
973
  createdAt: string;
@@ -879,6 +982,45 @@ type TronDepositResponse = {
879
982
  type TronDepositRequest = {
880
983
  amountCents: number;
881
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
+ challengeId?: string;
1000
+ signature?: string;
1001
+ threadId?: string;
1002
+ };
1003
+ type TronSecuritySetting = {
1004
+ requireSignature: boolean;
1005
+ };
1006
+ type TronTransferChallengeResponse = ({
1007
+ required: false;
1008
+ } & TronTransferChallengeNotRequired) | ({
1009
+ required: true;
1010
+ } & TronTransferChallengeRequired);
1011
+ type TronTransferChallengeNotRequired = {
1012
+ required: false;
1013
+ };
1014
+ type TronTransferChallengeRequired = {
1015
+ required: true;
1016
+ challengeId: string;
1017
+ message: string;
1018
+ expiresAt: string;
1019
+ };
1020
+ type TronTransferChallengeRequest = {
1021
+ recipientUserId: string;
1022
+ amountCents: number;
1023
+ };
882
1024
  type TronConnectOnboardingResponse = {
883
1025
  url: string;
884
1026
  };
@@ -1045,6 +1187,7 @@ type ThreadLastMessagePreview = {
1045
1187
  url: string;
1046
1188
  count: number;
1047
1189
  } | null;
1190
+ transaction?: MessageTransaction;
1048
1191
  sentAt: string;
1049
1192
  } | null;
1050
1193
  type MessageEnvelope = {
@@ -1056,6 +1199,11 @@ type MessageEnvelope = {
1056
1199
  iv: string;
1057
1200
  ct: string;
1058
1201
  } | null;
1202
+ type MessageTransaction = {
1203
+ kind: "tron_transfer";
1204
+ amountCents: number;
1205
+ recipientUserId: string;
1206
+ } | null;
1059
1207
  type GroupThreadSummary = {
1060
1208
  kind: "group";
1061
1209
  id: string;
@@ -1102,6 +1250,7 @@ type MessageItem = {
1102
1250
  id: string;
1103
1251
  threadId: string;
1104
1252
  senderUserId: string;
1253
+ transaction?: MessageTransaction;
1105
1254
  body: string;
1106
1255
  envelope?: MessageEnvelope;
1107
1256
  sentAt: string;
@@ -1500,7 +1649,7 @@ type ProfileRecentReview = {
1500
1649
  appId: string;
1501
1650
  appName: string;
1502
1651
  appLogoUrl: string | null;
1503
- rating: number;
1652
+ recommended: boolean;
1504
1653
  body: string;
1505
1654
  createdAt: string;
1506
1655
  };
@@ -1856,6 +2005,11 @@ type AppPageDraft = {
1856
2005
  gallery: AppPageGallery;
1857
2006
  chapters: AppPageChapters;
1858
2007
  links: AppPageLinks;
2008
+ platforms: AppPagePlatforms;
2009
+ gameType: AppPageGameType;
2010
+ ageRating: AppPageAgeRating;
2011
+ languages: AppPageLanguages;
2012
+ releaseStatus: AppPageReleaseStatus;
1859
2013
  firstPublishedAt: string | null;
1860
2014
  reviewedAt: string | null;
1861
2015
  reviewNotes: string | null;
@@ -1878,6 +2032,11 @@ type UpdateAppPage = {
1878
2032
  gallery?: AppPageGallery;
1879
2033
  chapters?: AppPageChapters;
1880
2034
  links?: AppPageLinks;
2035
+ platforms?: AppPagePlatforms;
2036
+ gameType?: AppPageGameType;
2037
+ ageRating?: AppPageAgeRating;
2038
+ languages?: AppPageLanguages;
2039
+ releaseStatus?: AppPageReleaseStatus;
1881
2040
  };
1882
2041
  type AppPageGalleryUploadResponse = {
1883
2042
  url: string;
@@ -2567,6 +2726,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2567
2726
  readonly slug: string;
2568
2727
  readonly bearer: string;
2569
2728
  }): Promise<MyReviewResponse>;
2729
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
2730
+ readonly slug: string;
2731
+ readonly bearer: string;
2732
+ }): Promise<MyReviewReactionsResponse>;
2733
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
2734
+ readonly slug: string;
2735
+ readonly reviewId: string;
2736
+ readonly bearer: string;
2737
+ readonly reaction: SetReviewReactionRequest;
2738
+ }): Promise<SetReviewReactionResponse>;
2739
+ declare function tipGameReview(context: TransportContext, input: {
2740
+ readonly slug: string;
2741
+ readonly reviewId: string;
2742
+ readonly bearer: string;
2743
+ readonly tip: TipReviewRequest;
2744
+ readonly idempotencyKey?: string;
2745
+ }): Promise<TipReviewResponse>;
2746
+ declare function listGameReviewComments(context: TransportContext, input: {
2747
+ readonly slug: string;
2748
+ readonly reviewId: string;
2749
+ readonly bearer?: string;
2750
+ readonly limit?: number;
2751
+ readonly offset?: number;
2752
+ }): Promise<ReviewCommentListResponse>;
2753
+ declare function commentOnGameReview(context: TransportContext, input: {
2754
+ readonly slug: string;
2755
+ readonly reviewId: string;
2756
+ readonly bearer: string;
2757
+ readonly comment: CreateReviewCommentRequest;
2758
+ }): Promise<CreateReviewCommentResponse>;
2759
+ declare function deleteGameReviewComment(context: TransportContext, input: {
2760
+ readonly slug: string;
2761
+ readonly commentId: string;
2762
+ readonly bearer: string;
2763
+ }): Promise<DeleteReviewCommentResponse>;
2570
2764
  declare function replyToGameReview(context: TransportContext, input: {
2571
2765
  readonly appId: string;
2572
2766
  readonly reviewId: string;
@@ -3203,6 +3397,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3203
3397
  readonly bearer: string;
3204
3398
  readonly body: TronDepositRequest;
3205
3399
  }): Promise<TronDepositResponse>;
3400
+ declare function createTronTransfer(context: TransportContext, input: {
3401
+ readonly bearer: string;
3402
+ readonly body: TronTransferRequest;
3403
+ readonly idempotencyKey?: string;
3404
+ }): Promise<TronTransferResponse>;
3405
+ declare function getTronSecurity(context: TransportContext, input: {
3406
+ readonly bearer: string;
3407
+ }): Promise<TronSecuritySetting>;
3408
+ declare function setTronSecurity(context: TransportContext, input: {
3409
+ readonly bearer: string;
3410
+ readonly setting: TronSecuritySetting;
3411
+ }): Promise<TronSecuritySetting>;
3412
+ declare function createTronTransferChallenge(context: TransportContext, input: {
3413
+ readonly bearer: string;
3414
+ readonly body: TronTransferChallengeRequest;
3415
+ }): Promise<TronTransferChallengeResponse>;
3206
3416
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3207
3417
  readonly bearer: string;
3208
3418
  }): Promise<TronConnectOnboardingResponse>;
@@ -3642,4 +3852,4 @@ type CookieTokenStoreOptions = {
3642
3852
  };
3643
3853
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3644
3854
  //#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 };
3855
+ 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, 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, 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, getTronSecurity, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviewComments, 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, setTronSecurity, 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 };