@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.
@@ -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,38 +428,49 @@ type ReviewListResponse = {
414
428
  hasMore: boolean;
415
429
  };
416
430
  type ReviewAggregate = {
417
- average: number | null;
418
431
  count: number;
419
- distribution: ReviewDistribution;
420
- };
421
- type ReviewDistribution = {
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
- rating: ReviewRating;
439
+ recommended: ReviewRecommended;
431
440
  body: ReviewBody;
441
+ reactions: ReviewReactionCounts;
442
+ tippedCents: number;
443
+ commentCount: number;
432
444
  author: ReviewAuthor;
445
+ authorStats: ReviewerStats;
433
446
  developerReply: ReviewReply;
434
447
  createdAt: string;
435
448
  updatedAt: string;
436
449
  };
437
- type ReviewRating = number;
450
+ type ReviewRecommended = boolean;
438
451
  type ReviewBody = string;
452
+ type ReviewReactionCounts = {
453
+ helpful: number;
454
+ unhelpful: number;
455
+ funny: number;
456
+ };
439
457
  type ReviewAuthor = {
458
+ userId: string;
459
+ handle: string | null;
440
460
  name: string | null;
441
461
  avatarUrl: string | null;
442
462
  };
463
+ type ReviewerStats = {
464
+ playtimeSecondsThisGame: number;
465
+ gamesPlayed: number;
466
+ reviewsWritten: number;
467
+ };
443
468
  type ReviewReply = {
444
469
  body: ReviewReplyBody;
445
470
  repliedAt: string;
446
471
  } | null;
447
472
  type ReviewReplyBody = string;
448
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
473
+ type ReviewSort = "newest" | "oldest" | "helpful";
449
474
  type MyReviewResponse = {
450
475
  eligible: boolean;
451
476
  eligibleVia: ReviewEligibilityReason;
@@ -455,15 +480,67 @@ type MyReviewResponse = {
455
480
  type ReviewEligibilityReason = "payment" | "reward" | null;
456
481
  type OwnReview = {
457
482
  id: string;
458
- rating: ReviewRating;
483
+ recommended: ReviewRecommended;
459
484
  body: ReviewBody;
460
485
  createdAt: string;
461
486
  updatedAt: string;
462
487
  } | null;
463
488
  type UpsertReviewRequest = {
464
- rating: ReviewRating;
489
+ recommended: ReviewRecommended;
465
490
  body: ReviewBody;
466
491
  };
492
+ type MyReviewReactionsResponse = {
493
+ reactions: Array<MyReviewReaction>;
494
+ };
495
+ type MyReviewReaction = {
496
+ reviewId: string;
497
+ vote: ReviewVote;
498
+ funny: boolean;
499
+ };
500
+ type ReviewVote = "helpful" | "unhelpful" | null;
501
+ type SetReviewReactionResponse = {
502
+ reactions: ReviewReactionCounts;
503
+ vote: ReviewVote;
504
+ funny: boolean;
505
+ };
506
+ type SetReviewReactionRequest = {
507
+ vote: ReviewVote;
508
+ funny: boolean;
509
+ };
510
+ type TipReviewResponse = {
511
+ status: "completed";
512
+ amountCents: number;
513
+ balanceCents: number;
514
+ tippedCents: number;
515
+ };
516
+ type TipReviewRequest = {
517
+ amountCents: number;
518
+ note?: string;
519
+ challengeId?: string;
520
+ signature?: string;
521
+ };
522
+ type ReviewCommentListResponse = {
523
+ comments: Array<ReviewComment>;
524
+ total: number;
525
+ hasMore: boolean;
526
+ };
527
+ type ReviewComment = {
528
+ id: string;
529
+ body: ReviewCommentBody;
530
+ author: ReviewAuthor;
531
+ createdAt: string;
532
+ };
533
+ type ReviewCommentBody = string;
534
+ type CreateReviewCommentResponse = {
535
+ comment: ReviewComment;
536
+ commentCount: number;
537
+ };
538
+ type CreateReviewCommentRequest = {
539
+ body: ReviewCommentBody;
540
+ };
541
+ type DeleteReviewCommentResponse = {
542
+ commentCount: number;
543
+ };
467
544
  type ReviewReplyResponse = {
468
545
  developerReply: ReviewReply;
469
546
  };
@@ -568,6 +645,8 @@ type ActivityRow = ({
568
645
  } & ActivityRowTronPot) | ({
569
646
  kind: "tron_cashout";
570
647
  } & ActivityRowTronCashout) | ({
648
+ kind: "tron_transfer";
649
+ } & ActivityRowTronTransfer) | ({
571
650
  kind: "referral_earning";
572
651
  } & ActivityRowReferralEarning);
573
652
  type ActivityRowPayment = {
@@ -815,6 +894,8 @@ type ActivityRowTronPot = {
815
894
  role: "incoming" | "outgoing";
816
895
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
817
896
  amountCents: number;
897
+ usdCents: number;
898
+ status: "settled";
818
899
  app: {
819
900
  id: string;
820
901
  name: string;
@@ -822,8 +903,16 @@ type ActivityRowTronPot = {
822
903
  slug: string | null;
823
904
  bannerUrl: string | null;
824
905
  } | null;
906
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
825
907
  metadata?: PaymentMetadata | null;
826
908
  };
909
+ type ActivityTronInvolvedUser = {
910
+ userId: string;
911
+ handle: string | null;
912
+ displayName: string | null;
913
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
914
+ amountCents: number;
915
+ };
827
916
  type ActivityRowTronCashout = {
828
917
  kind: "tron_cashout";
829
918
  groupId: string | null;
@@ -841,6 +930,20 @@ type ActivityRowTronCashout = {
841
930
  rejectionReason: string | null;
842
931
  settledAt: string | null;
843
932
  };
933
+ type ActivityRowTronTransfer = {
934
+ kind: "tron_transfer";
935
+ groupId: string | null;
936
+ id: string;
937
+ occurredAt: string;
938
+ role: "incoming" | "outgoing";
939
+ amountCents: number;
940
+ usdCents: number;
941
+ status: "settled";
942
+ counterpartyUserId: string | null;
943
+ counterpartyHandle: string | null;
944
+ counterpartyDisplayName: string | null;
945
+ note: string | null;
946
+ };
844
947
  type ActivityRowReferralEarning = {
845
948
  kind: "referral_earning";
846
949
  groupId: string | null;
@@ -906,7 +1009,7 @@ type TronLedgerResponse = {
906
1009
  };
907
1010
  type TronLedgerEntry = {
908
1011
  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";
1012
+ 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
1013
  amountCents: number;
911
1014
  currency: string;
912
1015
  createdAt: string;
@@ -921,6 +1024,45 @@ type TronDepositResponse = {
921
1024
  type TronDepositRequest = {
922
1025
  amountCents: number;
923
1026
  };
1027
+ type TronTransferResponse = {
1028
+ status: "completed";
1029
+ amountCents: number;
1030
+ balanceCents: number;
1031
+ recipient: {
1032
+ userId: string;
1033
+ handle: string | null;
1034
+ displayName: string | null;
1035
+ };
1036
+ };
1037
+ type TronTransferRequest = {
1038
+ recipientUserId: string;
1039
+ amountCents: number;
1040
+ note?: string;
1041
+ challengeId?: string;
1042
+ signature?: string;
1043
+ threadId?: string;
1044
+ };
1045
+ type TronSecuritySetting = {
1046
+ requireSignature: boolean;
1047
+ };
1048
+ type TronTransferChallengeResponse = ({
1049
+ required: false;
1050
+ } & TronTransferChallengeNotRequired) | ({
1051
+ required: true;
1052
+ } & TronTransferChallengeRequired);
1053
+ type TronTransferChallengeNotRequired = {
1054
+ required: false;
1055
+ };
1056
+ type TronTransferChallengeRequired = {
1057
+ required: true;
1058
+ challengeId: string;
1059
+ message: string;
1060
+ expiresAt: string;
1061
+ };
1062
+ type TronTransferChallengeRequest = {
1063
+ recipientUserId: string;
1064
+ amountCents: number;
1065
+ };
924
1066
  type TronGameBalanceResponse = {
925
1067
  balanceCents: number;
926
1068
  rakeBps: number;
@@ -1163,6 +1305,7 @@ type ThreadLastMessagePreview = {
1163
1305
  url: string;
1164
1306
  count: number;
1165
1307
  } | null;
1308
+ transaction?: MessageTransaction;
1166
1309
  sentAt: string;
1167
1310
  } | null;
1168
1311
  type MessageEnvelope = {
@@ -1174,6 +1317,11 @@ type MessageEnvelope = {
1174
1317
  iv: string;
1175
1318
  ct: string;
1176
1319
  } | null;
1320
+ type MessageTransaction = {
1321
+ kind: "tron_transfer";
1322
+ amountCents: number;
1323
+ recipientUserId: string;
1324
+ } | null;
1177
1325
  type GroupThreadSummary = {
1178
1326
  kind: "group";
1179
1327
  id: string;
@@ -1220,6 +1368,7 @@ type MessageItem = {
1220
1368
  id: string;
1221
1369
  threadId: string;
1222
1370
  senderUserId: string;
1371
+ transaction?: MessageTransaction;
1223
1372
  body: string;
1224
1373
  envelope?: MessageEnvelope;
1225
1374
  sentAt: string;
@@ -1597,7 +1746,7 @@ type ProfileRecentReview = {
1597
1746
  appId: string;
1598
1747
  appName: string;
1599
1748
  appLogoUrl: string | null;
1600
- rating: number;
1749
+ recommended: boolean;
1601
1750
  body: string;
1602
1751
  createdAt: string;
1603
1752
  };
@@ -1953,6 +2102,11 @@ type AppPageDraft = {
1953
2102
  gallery: AppPageGallery;
1954
2103
  chapters: AppPageChapters;
1955
2104
  links: AppPageLinks;
2105
+ platforms: AppPagePlatforms;
2106
+ gameType: AppPageGameType;
2107
+ ageRating: AppPageAgeRating;
2108
+ languages: AppPageLanguages;
2109
+ releaseStatus: AppPageReleaseStatus;
1956
2110
  firstPublishedAt: string | null;
1957
2111
  reviewedAt: string | null;
1958
2112
  reviewNotes: string | null;
@@ -1975,6 +2129,11 @@ type UpdateAppPage = {
1975
2129
  gallery?: AppPageGallery;
1976
2130
  chapters?: AppPageChapters;
1977
2131
  links?: AppPageLinks;
2132
+ platforms?: AppPagePlatforms;
2133
+ gameType?: AppPageGameType;
2134
+ ageRating?: AppPageAgeRating;
2135
+ languages?: AppPageLanguages;
2136
+ releaseStatus?: AppPageReleaseStatus;
1978
2137
  };
1979
2138
  type AppPageGalleryUploadResponse = {
1980
2139
  url: string;
@@ -2726,6 +2885,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2726
2885
  readonly slug: string;
2727
2886
  readonly bearer: string;
2728
2887
  }): Promise<MyReviewResponse>;
2888
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
2889
+ readonly slug: string;
2890
+ readonly bearer: string;
2891
+ }): Promise<MyReviewReactionsResponse>;
2892
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
2893
+ readonly slug: string;
2894
+ readonly reviewId: string;
2895
+ readonly bearer: string;
2896
+ readonly reaction: SetReviewReactionRequest;
2897
+ }): Promise<SetReviewReactionResponse>;
2898
+ declare function tipGameReview(context: TransportContext, input: {
2899
+ readonly slug: string;
2900
+ readonly reviewId: string;
2901
+ readonly bearer: string;
2902
+ readonly tip: TipReviewRequest;
2903
+ readonly idempotencyKey?: string;
2904
+ }): Promise<TipReviewResponse>;
2905
+ declare function listGameReviewComments(context: TransportContext, input: {
2906
+ readonly slug: string;
2907
+ readonly reviewId: string;
2908
+ readonly bearer?: string;
2909
+ readonly limit?: number;
2910
+ readonly offset?: number;
2911
+ }): Promise<ReviewCommentListResponse>;
2912
+ declare function commentOnGameReview(context: TransportContext, input: {
2913
+ readonly slug: string;
2914
+ readonly reviewId: string;
2915
+ readonly bearer: string;
2916
+ readonly comment: CreateReviewCommentRequest;
2917
+ }): Promise<CreateReviewCommentResponse>;
2918
+ declare function deleteGameReviewComment(context: TransportContext, input: {
2919
+ readonly slug: string;
2920
+ readonly commentId: string;
2921
+ readonly bearer: string;
2922
+ }): Promise<DeleteReviewCommentResponse>;
2729
2923
  declare function replyToGameReview(context: TransportContext, input: {
2730
2924
  readonly appId: string;
2731
2925
  readonly reviewId: string;
@@ -3486,6 +3680,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3486
3680
  readonly bearer: string;
3487
3681
  readonly body: TronDepositRequest;
3488
3682
  }): Promise<TronDepositResponse>;
3683
+ declare function createTronTransfer(context: TransportContext, input: {
3684
+ readonly bearer: string;
3685
+ readonly body: TronTransferRequest;
3686
+ readonly idempotencyKey?: string;
3687
+ }): Promise<TronTransferResponse>;
3688
+ declare function getTronSecurity(context: TransportContext, input: {
3689
+ readonly bearer: string;
3690
+ }): Promise<TronSecuritySetting>;
3691
+ declare function setTronSecurity(context: TransportContext, input: {
3692
+ readonly bearer: string;
3693
+ readonly setting: TronSecuritySetting;
3694
+ }): Promise<TronSecuritySetting>;
3695
+ declare function createTronTransferChallenge(context: TransportContext, input: {
3696
+ readonly bearer: string;
3697
+ readonly body: TronTransferChallengeRequest;
3698
+ }): Promise<TronTransferChallengeResponse>;
3489
3699
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3490
3700
  readonly bearer: string;
3491
3701
  }): Promise<TronConnectOnboardingResponse>;
@@ -3919,4 +4129,4 @@ declare class TronNodeClient {
3919
4129
  };
3920
4130
  }
3921
4131
  //#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 };
4132
+ 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, commentOnGameReview, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, 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, 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, getTronSecurity, heartbeatPlaySession, 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, 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, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, startOauthPaymentEventsSubscriber, 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 };