@metatrongg/sdk 0.8.0-dev.60b34b5 → 0.8.0-dev.621c099
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 +194 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1217 -82
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +194 -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 +3 -3
package/dist/browser/index.d.ts
CHANGED
|
@@ -366,6 +366,7 @@ type AppPageLink = {
|
|
|
366
366
|
order: number;
|
|
367
367
|
};
|
|
368
368
|
type PublicAppPageStudio = {
|
|
369
|
+
ownerUserId: string | null;
|
|
369
370
|
name: string | null;
|
|
370
371
|
logoUrl: string | null;
|
|
371
372
|
websiteUrl: string | null;
|
|
@@ -385,38 +386,49 @@ type ReviewListResponse = {
|
|
|
385
386
|
hasMore: boolean;
|
|
386
387
|
};
|
|
387
388
|
type ReviewAggregate = {
|
|
388
|
-
average: number | null;
|
|
389
389
|
count: number;
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
1: number;
|
|
394
|
-
2: number;
|
|
395
|
-
3: number;
|
|
396
|
-
4: number;
|
|
397
|
-
5: number;
|
|
390
|
+
recommendedCount: number;
|
|
391
|
+
recommendedPct: number | null;
|
|
392
|
+
summaryLabel: ReviewSummaryLabel;
|
|
398
393
|
};
|
|
394
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
399
395
|
type Review = {
|
|
400
396
|
id: string;
|
|
401
|
-
|
|
397
|
+
recommended: ReviewRecommended;
|
|
402
398
|
body: ReviewBody;
|
|
399
|
+
reactions: ReviewReactionCounts;
|
|
400
|
+
tippedCents: number;
|
|
401
|
+
commentCount: number;
|
|
403
402
|
author: ReviewAuthor;
|
|
403
|
+
authorStats: ReviewerStats;
|
|
404
404
|
developerReply: ReviewReply;
|
|
405
405
|
createdAt: string;
|
|
406
406
|
updatedAt: string;
|
|
407
407
|
};
|
|
408
|
-
type
|
|
408
|
+
type ReviewRecommended = boolean;
|
|
409
409
|
type ReviewBody = string;
|
|
410
|
+
type ReviewReactionCounts = {
|
|
411
|
+
helpful: number;
|
|
412
|
+
unhelpful: number;
|
|
413
|
+
funny: number;
|
|
414
|
+
};
|
|
410
415
|
type ReviewAuthor = {
|
|
416
|
+
userId: string;
|
|
417
|
+
handle: string | null;
|
|
411
418
|
name: string | null;
|
|
412
419
|
avatarUrl: string | null;
|
|
413
420
|
};
|
|
421
|
+
type ReviewerStats = {
|
|
422
|
+
playtimeSecondsThisGame: number;
|
|
423
|
+
gamesPlayed: number;
|
|
424
|
+
reviewsWritten: number;
|
|
425
|
+
};
|
|
414
426
|
type ReviewReply = {
|
|
415
427
|
body: ReviewReplyBody;
|
|
416
428
|
repliedAt: string;
|
|
417
429
|
} | null;
|
|
418
430
|
type ReviewReplyBody = string;
|
|
419
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
431
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
420
432
|
type MyReviewResponse = {
|
|
421
433
|
eligible: boolean;
|
|
422
434
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -426,15 +438,67 @@ type MyReviewResponse = {
|
|
|
426
438
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
427
439
|
type OwnReview = {
|
|
428
440
|
id: string;
|
|
429
|
-
|
|
441
|
+
recommended: ReviewRecommended;
|
|
430
442
|
body: ReviewBody;
|
|
431
443
|
createdAt: string;
|
|
432
444
|
updatedAt: string;
|
|
433
445
|
} | null;
|
|
434
446
|
type UpsertReviewRequest = {
|
|
435
|
-
|
|
447
|
+
recommended: ReviewRecommended;
|
|
436
448
|
body: ReviewBody;
|
|
437
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
|
+
};
|
|
438
502
|
type ReviewReplyResponse = {
|
|
439
503
|
developerReply: ReviewReply;
|
|
440
504
|
};
|
|
@@ -539,6 +603,8 @@ type ActivityRow = ({
|
|
|
539
603
|
} & ActivityRowTronPot) | ({
|
|
540
604
|
kind: "tron_cashout";
|
|
541
605
|
} & ActivityRowTronCashout) | ({
|
|
606
|
+
kind: "tron_transfer";
|
|
607
|
+
} & ActivityRowTronTransfer) | ({
|
|
542
608
|
kind: "referral_earning";
|
|
543
609
|
} & ActivityRowReferralEarning);
|
|
544
610
|
type ActivityRowPayment = {
|
|
@@ -822,6 +888,20 @@ type ActivityRowTronCashout = {
|
|
|
822
888
|
rejectionReason: string | null;
|
|
823
889
|
settledAt: string | null;
|
|
824
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
|
+
};
|
|
825
905
|
type ActivityRowReferralEarning = {
|
|
826
906
|
kind: "referral_earning";
|
|
827
907
|
groupId: string | null;
|
|
@@ -887,7 +967,7 @@ type TronLedgerResponse = {
|
|
|
887
967
|
};
|
|
888
968
|
type TronLedgerEntry = {
|
|
889
969
|
id: string;
|
|
890
|
-
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";
|
|
891
971
|
amountCents: number;
|
|
892
972
|
currency: string;
|
|
893
973
|
createdAt: string;
|
|
@@ -902,6 +982,45 @@ type TronDepositResponse = {
|
|
|
902
982
|
type TronDepositRequest = {
|
|
903
983
|
amountCents: number;
|
|
904
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
|
+
};
|
|
905
1024
|
type TronConnectOnboardingResponse = {
|
|
906
1025
|
url: string;
|
|
907
1026
|
};
|
|
@@ -1068,6 +1187,7 @@ type ThreadLastMessagePreview = {
|
|
|
1068
1187
|
url: string;
|
|
1069
1188
|
count: number;
|
|
1070
1189
|
} | null;
|
|
1190
|
+
transaction?: MessageTransaction;
|
|
1071
1191
|
sentAt: string;
|
|
1072
1192
|
} | null;
|
|
1073
1193
|
type MessageEnvelope = {
|
|
@@ -1079,6 +1199,11 @@ type MessageEnvelope = {
|
|
|
1079
1199
|
iv: string;
|
|
1080
1200
|
ct: string;
|
|
1081
1201
|
} | null;
|
|
1202
|
+
type MessageTransaction = {
|
|
1203
|
+
kind: "tron_transfer";
|
|
1204
|
+
amountCents: number;
|
|
1205
|
+
recipientUserId: string;
|
|
1206
|
+
} | null;
|
|
1082
1207
|
type GroupThreadSummary = {
|
|
1083
1208
|
kind: "group";
|
|
1084
1209
|
id: string;
|
|
@@ -1125,6 +1250,7 @@ type MessageItem = {
|
|
|
1125
1250
|
id: string;
|
|
1126
1251
|
threadId: string;
|
|
1127
1252
|
senderUserId: string;
|
|
1253
|
+
transaction?: MessageTransaction;
|
|
1128
1254
|
body: string;
|
|
1129
1255
|
envelope?: MessageEnvelope;
|
|
1130
1256
|
sentAt: string;
|
|
@@ -1523,7 +1649,7 @@ type ProfileRecentReview = {
|
|
|
1523
1649
|
appId: string;
|
|
1524
1650
|
appName: string;
|
|
1525
1651
|
appLogoUrl: string | null;
|
|
1526
|
-
|
|
1652
|
+
recommended: boolean;
|
|
1527
1653
|
body: string;
|
|
1528
1654
|
createdAt: string;
|
|
1529
1655
|
};
|
|
@@ -2600,6 +2726,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
|
|
|
2600
2726
|
readonly slug: string;
|
|
2601
2727
|
readonly bearer: string;
|
|
2602
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>;
|
|
2603
2764
|
declare function replyToGameReview(context: TransportContext, input: {
|
|
2604
2765
|
readonly appId: string;
|
|
2605
2766
|
readonly reviewId: string;
|
|
@@ -3236,6 +3397,22 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3236
3397
|
readonly bearer: string;
|
|
3237
3398
|
readonly body: TronDepositRequest;
|
|
3238
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>;
|
|
3239
3416
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3240
3417
|
readonly bearer: string;
|
|
3241
3418
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3675,4 +3852,4 @@ type CookieTokenStoreOptions = {
|
|
|
3675
3852
|
};
|
|
3676
3853
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
3677
3854
|
//#endregion
|
|
3678
|
-
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 };
|