@metatrongg/sdk 0.8.0-dev.a5ae117 → 0.8.0-dev.a70a494
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 +84 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +951 -94
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +84 -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
|
@@ -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,29 +428,26 @@ type ReviewListResponse = {
|
|
|
414
428
|
hasMore: boolean;
|
|
415
429
|
};
|
|
416
430
|
type ReviewAggregate = {
|
|
417
|
-
average: number | null;
|
|
418
431
|
count: number;
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
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
|
-
|
|
439
|
+
recommended: ReviewRecommended;
|
|
431
440
|
body: ReviewBody;
|
|
432
441
|
author: ReviewAuthor;
|
|
433
442
|
developerReply: ReviewReply;
|
|
434
443
|
createdAt: string;
|
|
435
444
|
updatedAt: string;
|
|
436
445
|
};
|
|
437
|
-
type
|
|
446
|
+
type ReviewRecommended = boolean;
|
|
438
447
|
type ReviewBody = string;
|
|
439
448
|
type ReviewAuthor = {
|
|
449
|
+
userId: string;
|
|
450
|
+
handle: string | null;
|
|
440
451
|
name: string | null;
|
|
441
452
|
avatarUrl: string | null;
|
|
442
453
|
};
|
|
@@ -445,7 +456,7 @@ type ReviewReply = {
|
|
|
445
456
|
repliedAt: string;
|
|
446
457
|
} | null;
|
|
447
458
|
type ReviewReplyBody = string;
|
|
448
|
-
type ReviewSort = "newest" | "oldest"
|
|
459
|
+
type ReviewSort = "newest" | "oldest";
|
|
449
460
|
type MyReviewResponse = {
|
|
450
461
|
eligible: boolean;
|
|
451
462
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -455,13 +466,13 @@ type MyReviewResponse = {
|
|
|
455
466
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
456
467
|
type OwnReview = {
|
|
457
468
|
id: string;
|
|
458
|
-
|
|
469
|
+
recommended: ReviewRecommended;
|
|
459
470
|
body: ReviewBody;
|
|
460
471
|
createdAt: string;
|
|
461
472
|
updatedAt: string;
|
|
462
473
|
} | null;
|
|
463
474
|
type UpsertReviewRequest = {
|
|
464
|
-
|
|
475
|
+
recommended: ReviewRecommended;
|
|
465
476
|
body: ReviewBody;
|
|
466
477
|
};
|
|
467
478
|
type ReviewReplyResponse = {
|
|
@@ -568,6 +579,8 @@ type ActivityRow = ({
|
|
|
568
579
|
} & ActivityRowTronPot) | ({
|
|
569
580
|
kind: "tron_cashout";
|
|
570
581
|
} & ActivityRowTronCashout) | ({
|
|
582
|
+
kind: "tron_transfer";
|
|
583
|
+
} & ActivityRowTronTransfer) | ({
|
|
571
584
|
kind: "referral_earning";
|
|
572
585
|
} & ActivityRowReferralEarning);
|
|
573
586
|
type ActivityRowPayment = {
|
|
@@ -815,6 +828,8 @@ type ActivityRowTronPot = {
|
|
|
815
828
|
role: "incoming" | "outgoing";
|
|
816
829
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
817
830
|
amountCents: number;
|
|
831
|
+
usdCents: number;
|
|
832
|
+
status: "settled";
|
|
818
833
|
app: {
|
|
819
834
|
id: string;
|
|
820
835
|
name: string;
|
|
@@ -822,8 +837,16 @@ type ActivityRowTronPot = {
|
|
|
822
837
|
slug: string | null;
|
|
823
838
|
bannerUrl: string | null;
|
|
824
839
|
} | null;
|
|
840
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
825
841
|
metadata?: PaymentMetadata | null;
|
|
826
842
|
};
|
|
843
|
+
type ActivityTronInvolvedUser = {
|
|
844
|
+
userId: string;
|
|
845
|
+
handle: string | null;
|
|
846
|
+
displayName: string | null;
|
|
847
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
848
|
+
amountCents: number;
|
|
849
|
+
};
|
|
827
850
|
type ActivityRowTronCashout = {
|
|
828
851
|
kind: "tron_cashout";
|
|
829
852
|
groupId: string | null;
|
|
@@ -841,6 +864,20 @@ type ActivityRowTronCashout = {
|
|
|
841
864
|
rejectionReason: string | null;
|
|
842
865
|
settledAt: string | null;
|
|
843
866
|
};
|
|
867
|
+
type ActivityRowTronTransfer = {
|
|
868
|
+
kind: "tron_transfer";
|
|
869
|
+
groupId: string | null;
|
|
870
|
+
id: string;
|
|
871
|
+
occurredAt: string;
|
|
872
|
+
role: "incoming" | "outgoing";
|
|
873
|
+
amountCents: number;
|
|
874
|
+
usdCents: number;
|
|
875
|
+
status: "settled";
|
|
876
|
+
counterpartyUserId: string | null;
|
|
877
|
+
counterpartyHandle: string | null;
|
|
878
|
+
counterpartyDisplayName: string | null;
|
|
879
|
+
note: string | null;
|
|
880
|
+
};
|
|
844
881
|
type ActivityRowReferralEarning = {
|
|
845
882
|
kind: "referral_earning";
|
|
846
883
|
groupId: string | null;
|
|
@@ -906,7 +943,7 @@ type TronLedgerResponse = {
|
|
|
906
943
|
};
|
|
907
944
|
type TronLedgerEntry = {
|
|
908
945
|
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";
|
|
946
|
+
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
947
|
amountCents: number;
|
|
911
948
|
currency: string;
|
|
912
949
|
createdAt: string;
|
|
@@ -921,6 +958,21 @@ type TronDepositResponse = {
|
|
|
921
958
|
type TronDepositRequest = {
|
|
922
959
|
amountCents: number;
|
|
923
960
|
};
|
|
961
|
+
type TronTransferResponse = {
|
|
962
|
+
status: "completed";
|
|
963
|
+
amountCents: number;
|
|
964
|
+
balanceCents: number;
|
|
965
|
+
recipient: {
|
|
966
|
+
userId: string;
|
|
967
|
+
handle: string | null;
|
|
968
|
+
displayName: string | null;
|
|
969
|
+
};
|
|
970
|
+
};
|
|
971
|
+
type TronTransferRequest = {
|
|
972
|
+
recipientUserId: string;
|
|
973
|
+
amountCents: number;
|
|
974
|
+
note?: string;
|
|
975
|
+
};
|
|
924
976
|
type TronGameBalanceResponse = {
|
|
925
977
|
balanceCents: number;
|
|
926
978
|
rakeBps: number;
|
|
@@ -1597,7 +1649,7 @@ type ProfileRecentReview = {
|
|
|
1597
1649
|
appId: string;
|
|
1598
1650
|
appName: string;
|
|
1599
1651
|
appLogoUrl: string | null;
|
|
1600
|
-
|
|
1652
|
+
recommended: boolean;
|
|
1601
1653
|
body: string;
|
|
1602
1654
|
createdAt: string;
|
|
1603
1655
|
};
|
|
@@ -1953,6 +2005,11 @@ type AppPageDraft = {
|
|
|
1953
2005
|
gallery: AppPageGallery;
|
|
1954
2006
|
chapters: AppPageChapters;
|
|
1955
2007
|
links: AppPageLinks;
|
|
2008
|
+
platforms: AppPagePlatforms;
|
|
2009
|
+
gameType: AppPageGameType;
|
|
2010
|
+
ageRating: AppPageAgeRating;
|
|
2011
|
+
languages: AppPageLanguages;
|
|
2012
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1956
2013
|
firstPublishedAt: string | null;
|
|
1957
2014
|
reviewedAt: string | null;
|
|
1958
2015
|
reviewNotes: string | null;
|
|
@@ -1975,6 +2032,11 @@ type UpdateAppPage = {
|
|
|
1975
2032
|
gallery?: AppPageGallery;
|
|
1976
2033
|
chapters?: AppPageChapters;
|
|
1977
2034
|
links?: AppPageLinks;
|
|
2035
|
+
platforms?: AppPagePlatforms;
|
|
2036
|
+
gameType?: AppPageGameType;
|
|
2037
|
+
ageRating?: AppPageAgeRating;
|
|
2038
|
+
languages?: AppPageLanguages;
|
|
2039
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1978
2040
|
};
|
|
1979
2041
|
type AppPageGalleryUploadResponse = {
|
|
1980
2042
|
url: string;
|
|
@@ -3486,6 +3548,11 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3486
3548
|
readonly bearer: string;
|
|
3487
3549
|
readonly body: TronDepositRequest;
|
|
3488
3550
|
}): Promise<TronDepositResponse>;
|
|
3551
|
+
declare function createTronTransfer(context: TransportContext, input: {
|
|
3552
|
+
readonly bearer: string;
|
|
3553
|
+
readonly body: TronTransferRequest;
|
|
3554
|
+
readonly idempotencyKey?: string;
|
|
3555
|
+
}): Promise<TronTransferResponse>;
|
|
3489
3556
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3490
3557
|
readonly bearer: string;
|
|
3491
3558
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3919,4 +3986,4 @@ declare class TronNodeClient {
|
|
|
3919
3986
|
};
|
|
3920
3987
|
}
|
|
3921
3988
|
//#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 };
|
|
3989
|
+
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, createTronTransfer, 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 };
|