@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/node/index.d.ts
CHANGED
|
@@ -408,6 +408,7 @@ type AppPageLink = {
|
|
|
408
408
|
order: number;
|
|
409
409
|
};
|
|
410
410
|
type PublicAppPageStudio = {
|
|
411
|
+
ownerUserId: string | null;
|
|
411
412
|
name: string | null;
|
|
412
413
|
logoUrl: string | null;
|
|
413
414
|
websiteUrl: string | null;
|
|
@@ -427,38 +428,49 @@ type ReviewListResponse = {
|
|
|
427
428
|
hasMore: boolean;
|
|
428
429
|
};
|
|
429
430
|
type ReviewAggregate = {
|
|
430
|
-
average: number | null;
|
|
431
431
|
count: number;
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
1: number;
|
|
436
|
-
2: number;
|
|
437
|
-
3: number;
|
|
438
|
-
4: number;
|
|
439
|
-
5: number;
|
|
432
|
+
recommendedCount: number;
|
|
433
|
+
recommendedPct: number | null;
|
|
434
|
+
summaryLabel: ReviewSummaryLabel;
|
|
440
435
|
};
|
|
436
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
441
437
|
type Review = {
|
|
442
438
|
id: string;
|
|
443
|
-
|
|
439
|
+
recommended: ReviewRecommended;
|
|
444
440
|
body: ReviewBody;
|
|
441
|
+
reactions: ReviewReactionCounts;
|
|
442
|
+
tippedCents: number;
|
|
443
|
+
commentCount: number;
|
|
445
444
|
author: ReviewAuthor;
|
|
445
|
+
authorStats: ReviewerStats;
|
|
446
446
|
developerReply: ReviewReply;
|
|
447
447
|
createdAt: string;
|
|
448
448
|
updatedAt: string;
|
|
449
449
|
};
|
|
450
|
-
type
|
|
450
|
+
type ReviewRecommended = boolean;
|
|
451
451
|
type ReviewBody = string;
|
|
452
|
+
type ReviewReactionCounts = {
|
|
453
|
+
helpful: number;
|
|
454
|
+
unhelpful: number;
|
|
455
|
+
funny: number;
|
|
456
|
+
};
|
|
452
457
|
type ReviewAuthor = {
|
|
458
|
+
userId: string;
|
|
459
|
+
handle: string | null;
|
|
453
460
|
name: string | null;
|
|
454
461
|
avatarUrl: string | null;
|
|
455
462
|
};
|
|
463
|
+
type ReviewerStats = {
|
|
464
|
+
playtimeSecondsThisGame: number;
|
|
465
|
+
gamesPlayed: number;
|
|
466
|
+
reviewsWritten: number;
|
|
467
|
+
};
|
|
456
468
|
type ReviewReply = {
|
|
457
469
|
body: ReviewReplyBody;
|
|
458
470
|
repliedAt: string;
|
|
459
471
|
} | null;
|
|
460
472
|
type ReviewReplyBody = string;
|
|
461
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
473
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
462
474
|
type MyReviewResponse = {
|
|
463
475
|
eligible: boolean;
|
|
464
476
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -468,15 +480,67 @@ type MyReviewResponse = {
|
|
|
468
480
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
469
481
|
type OwnReview = {
|
|
470
482
|
id: string;
|
|
471
|
-
|
|
483
|
+
recommended: ReviewRecommended;
|
|
472
484
|
body: ReviewBody;
|
|
473
485
|
createdAt: string;
|
|
474
486
|
updatedAt: string;
|
|
475
487
|
} | null;
|
|
476
488
|
type UpsertReviewRequest = {
|
|
477
|
-
|
|
489
|
+
recommended: ReviewRecommended;
|
|
478
490
|
body: ReviewBody;
|
|
479
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
|
+
};
|
|
480
544
|
type ReviewReplyResponse = {
|
|
481
545
|
developerReply: ReviewReply;
|
|
482
546
|
};
|
|
@@ -581,6 +645,8 @@ type ActivityRow = ({
|
|
|
581
645
|
} & ActivityRowTronPot) | ({
|
|
582
646
|
kind: "tron_cashout";
|
|
583
647
|
} & ActivityRowTronCashout) | ({
|
|
648
|
+
kind: "tron_transfer";
|
|
649
|
+
} & ActivityRowTronTransfer) | ({
|
|
584
650
|
kind: "referral_earning";
|
|
585
651
|
} & ActivityRowReferralEarning);
|
|
586
652
|
type ActivityRowPayment = {
|
|
@@ -864,6 +930,20 @@ type ActivityRowTronCashout = {
|
|
|
864
930
|
rejectionReason: string | null;
|
|
865
931
|
settledAt: string | null;
|
|
866
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
|
+
};
|
|
867
947
|
type ActivityRowReferralEarning = {
|
|
868
948
|
kind: "referral_earning";
|
|
869
949
|
groupId: string | null;
|
|
@@ -929,7 +1009,7 @@ type TronLedgerResponse = {
|
|
|
929
1009
|
};
|
|
930
1010
|
type TronLedgerEntry = {
|
|
931
1011
|
id: string;
|
|
932
|
-
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";
|
|
933
1013
|
amountCents: number;
|
|
934
1014
|
currency: string;
|
|
935
1015
|
createdAt: string;
|
|
@@ -944,6 +1024,45 @@ type TronDepositResponse = {
|
|
|
944
1024
|
type TronDepositRequest = {
|
|
945
1025
|
amountCents: number;
|
|
946
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
|
+
};
|
|
947
1066
|
type TronGameBalanceResponse = {
|
|
948
1067
|
balanceCents: number;
|
|
949
1068
|
rakeBps: number;
|
|
@@ -1186,6 +1305,7 @@ type ThreadLastMessagePreview = {
|
|
|
1186
1305
|
url: string;
|
|
1187
1306
|
count: number;
|
|
1188
1307
|
} | null;
|
|
1308
|
+
transaction?: MessageTransaction;
|
|
1189
1309
|
sentAt: string;
|
|
1190
1310
|
} | null;
|
|
1191
1311
|
type MessageEnvelope = {
|
|
@@ -1197,6 +1317,11 @@ type MessageEnvelope = {
|
|
|
1197
1317
|
iv: string;
|
|
1198
1318
|
ct: string;
|
|
1199
1319
|
} | null;
|
|
1320
|
+
type MessageTransaction = {
|
|
1321
|
+
kind: "tron_transfer";
|
|
1322
|
+
amountCents: number;
|
|
1323
|
+
recipientUserId: string;
|
|
1324
|
+
} | null;
|
|
1200
1325
|
type GroupThreadSummary = {
|
|
1201
1326
|
kind: "group";
|
|
1202
1327
|
id: string;
|
|
@@ -1243,6 +1368,7 @@ type MessageItem = {
|
|
|
1243
1368
|
id: string;
|
|
1244
1369
|
threadId: string;
|
|
1245
1370
|
senderUserId: string;
|
|
1371
|
+
transaction?: MessageTransaction;
|
|
1246
1372
|
body: string;
|
|
1247
1373
|
envelope?: MessageEnvelope;
|
|
1248
1374
|
sentAt: string;
|
|
@@ -1620,7 +1746,7 @@ type ProfileRecentReview = {
|
|
|
1620
1746
|
appId: string;
|
|
1621
1747
|
appName: string;
|
|
1622
1748
|
appLogoUrl: string | null;
|
|
1623
|
-
|
|
1749
|
+
recommended: boolean;
|
|
1624
1750
|
body: string;
|
|
1625
1751
|
createdAt: string;
|
|
1626
1752
|
};
|
|
@@ -2759,6 +2885,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
|
|
|
2759
2885
|
readonly slug: string;
|
|
2760
2886
|
readonly bearer: string;
|
|
2761
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>;
|
|
2762
2923
|
declare function replyToGameReview(context: TransportContext, input: {
|
|
2763
2924
|
readonly appId: string;
|
|
2764
2925
|
readonly reviewId: string;
|
|
@@ -3519,6 +3680,22 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3519
3680
|
readonly bearer: string;
|
|
3520
3681
|
readonly body: TronDepositRequest;
|
|
3521
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>;
|
|
3522
3699
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3523
3700
|
readonly bearer: string;
|
|
3524
3701
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3952,4 +4129,4 @@ declare class TronNodeClient {
|
|
|
3952
4129
|
};
|
|
3953
4130
|
}
|
|
3954
4131
|
//#endregion
|
|
3955
|
-
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 };
|