@metatrongg/sdk 0.8.0-dev.cb4b3eb → 0.8.0-dev.d0f6848
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 +118 -17
- package/dist/browser/index.js +1 -1
- package/dist/contracts/index.d.ts +1147 -94
- package/dist/contracts/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/node/index.d.ts +118 -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 +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -334,9 +334,16 @@ type PublicAppPage = {
|
|
|
334
334
|
chapters: AppPageChapters;
|
|
335
335
|
links: AppPageLinks;
|
|
336
336
|
studio: PublicAppPageStudio;
|
|
337
|
+
platforms: AppPagePlatforms;
|
|
338
|
+
gameType: AppPageGameType;
|
|
339
|
+
ageRating: AppPageAgeRating;
|
|
340
|
+
languages: AppPageLanguages;
|
|
341
|
+
releaseStatus: AppPageReleaseStatus;
|
|
342
|
+
paymentsMode: AppPagePaymentsMode;
|
|
337
343
|
oauthScopes: Array<string>;
|
|
338
344
|
chains: Array<string>;
|
|
339
345
|
publishedAt: string;
|
|
346
|
+
updatedAt: string;
|
|
340
347
|
};
|
|
341
348
|
type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
|
|
342
349
|
type AppPageTagline = string;
|
|
@@ -359,12 +366,19 @@ type AppPageLink = {
|
|
|
359
366
|
order: number;
|
|
360
367
|
};
|
|
361
368
|
type PublicAppPageStudio = {
|
|
369
|
+
ownerUserId: string | null;
|
|
362
370
|
name: string | null;
|
|
363
371
|
logoUrl: string | null;
|
|
364
372
|
websiteUrl: string | null;
|
|
365
373
|
xHandle: string | null;
|
|
366
374
|
githubUrl: string | null;
|
|
367
375
|
};
|
|
376
|
+
type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
|
|
377
|
+
type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
|
|
378
|
+
type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
|
|
379
|
+
type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
|
|
380
|
+
type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
|
|
381
|
+
type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
|
|
368
382
|
type ReviewListResponse = {
|
|
369
383
|
aggregate: ReviewAggregate;
|
|
370
384
|
reviews: Array<Review>;
|
|
@@ -372,29 +386,32 @@ type ReviewListResponse = {
|
|
|
372
386
|
hasMore: boolean;
|
|
373
387
|
};
|
|
374
388
|
type ReviewAggregate = {
|
|
375
|
-
average: number | null;
|
|
376
389
|
count: number;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
1: number;
|
|
381
|
-
2: number;
|
|
382
|
-
3: number;
|
|
383
|
-
4: number;
|
|
384
|
-
5: number;
|
|
390
|
+
recommendedCount: number;
|
|
391
|
+
recommendedPct: number | null;
|
|
392
|
+
summaryLabel: ReviewSummaryLabel;
|
|
385
393
|
};
|
|
394
|
+
type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
|
|
386
395
|
type Review = {
|
|
387
396
|
id: string;
|
|
388
|
-
|
|
397
|
+
recommended: ReviewRecommended;
|
|
389
398
|
body: ReviewBody;
|
|
399
|
+
reactions: ReviewReactionCounts;
|
|
390
400
|
author: ReviewAuthor;
|
|
391
401
|
developerReply: ReviewReply;
|
|
392
402
|
createdAt: string;
|
|
393
403
|
updatedAt: string;
|
|
394
404
|
};
|
|
395
|
-
type
|
|
405
|
+
type ReviewRecommended = boolean;
|
|
396
406
|
type ReviewBody = string;
|
|
407
|
+
type ReviewReactionCounts = {
|
|
408
|
+
helpful: number;
|
|
409
|
+
unhelpful: number;
|
|
410
|
+
funny: number;
|
|
411
|
+
};
|
|
397
412
|
type ReviewAuthor = {
|
|
413
|
+
userId: string;
|
|
414
|
+
handle: string | null;
|
|
398
415
|
name: string | null;
|
|
399
416
|
avatarUrl: string | null;
|
|
400
417
|
};
|
|
@@ -403,7 +420,7 @@ type ReviewReply = {
|
|
|
403
420
|
repliedAt: string;
|
|
404
421
|
} | null;
|
|
405
422
|
type ReviewReplyBody = string;
|
|
406
|
-
type ReviewSort = "newest" | "oldest" | "
|
|
423
|
+
type ReviewSort = "newest" | "oldest" | "helpful";
|
|
407
424
|
type MyReviewResponse = {
|
|
408
425
|
eligible: boolean;
|
|
409
426
|
eligibleVia: ReviewEligibilityReason;
|
|
@@ -413,15 +430,33 @@ type MyReviewResponse = {
|
|
|
413
430
|
type ReviewEligibilityReason = "payment" | "reward" | null;
|
|
414
431
|
type OwnReview = {
|
|
415
432
|
id: string;
|
|
416
|
-
|
|
433
|
+
recommended: ReviewRecommended;
|
|
417
434
|
body: ReviewBody;
|
|
418
435
|
createdAt: string;
|
|
419
436
|
updatedAt: string;
|
|
420
437
|
} | null;
|
|
421
438
|
type UpsertReviewRequest = {
|
|
422
|
-
|
|
439
|
+
recommended: ReviewRecommended;
|
|
423
440
|
body: ReviewBody;
|
|
424
441
|
};
|
|
442
|
+
type MyReviewReactionsResponse = {
|
|
443
|
+
reactions: Array<MyReviewReaction>;
|
|
444
|
+
};
|
|
445
|
+
type MyReviewReaction = {
|
|
446
|
+
reviewId: string;
|
|
447
|
+
vote: ReviewVote;
|
|
448
|
+
funny: boolean;
|
|
449
|
+
};
|
|
450
|
+
type ReviewVote = "helpful" | "unhelpful" | null;
|
|
451
|
+
type SetReviewReactionResponse = {
|
|
452
|
+
reactions: ReviewReactionCounts;
|
|
453
|
+
vote: ReviewVote;
|
|
454
|
+
funny: boolean;
|
|
455
|
+
};
|
|
456
|
+
type SetReviewReactionRequest = {
|
|
457
|
+
vote: ReviewVote;
|
|
458
|
+
funny: boolean;
|
|
459
|
+
};
|
|
425
460
|
type ReviewReplyResponse = {
|
|
426
461
|
developerReply: ReviewReply;
|
|
427
462
|
};
|
|
@@ -526,6 +561,8 @@ type ActivityRow = ({
|
|
|
526
561
|
} & ActivityRowTronPot) | ({
|
|
527
562
|
kind: "tron_cashout";
|
|
528
563
|
} & ActivityRowTronCashout) | ({
|
|
564
|
+
kind: "tron_transfer";
|
|
565
|
+
} & ActivityRowTronTransfer) | ({
|
|
529
566
|
kind: "referral_earning";
|
|
530
567
|
} & ActivityRowReferralEarning);
|
|
531
568
|
type ActivityRowPayment = {
|
|
@@ -773,6 +810,8 @@ type ActivityRowTronPot = {
|
|
|
773
810
|
role: "incoming" | "outgoing";
|
|
774
811
|
leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
775
812
|
amountCents: number;
|
|
813
|
+
usdCents: number;
|
|
814
|
+
status: "settled";
|
|
776
815
|
app: {
|
|
777
816
|
id: string;
|
|
778
817
|
name: string;
|
|
@@ -780,8 +819,16 @@ type ActivityRowTronPot = {
|
|
|
780
819
|
slug: string | null;
|
|
781
820
|
bannerUrl: string | null;
|
|
782
821
|
} | null;
|
|
822
|
+
involvedUsers?: Array<ActivityTronInvolvedUser> | null;
|
|
783
823
|
metadata?: PaymentMetadata | null;
|
|
784
824
|
};
|
|
825
|
+
type ActivityTronInvolvedUser = {
|
|
826
|
+
userId: string;
|
|
827
|
+
handle: string | null;
|
|
828
|
+
displayName: string | null;
|
|
829
|
+
role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
|
|
830
|
+
amountCents: number;
|
|
831
|
+
};
|
|
785
832
|
type ActivityRowTronCashout = {
|
|
786
833
|
kind: "tron_cashout";
|
|
787
834
|
groupId: string | null;
|
|
@@ -799,6 +846,20 @@ type ActivityRowTronCashout = {
|
|
|
799
846
|
rejectionReason: string | null;
|
|
800
847
|
settledAt: string | null;
|
|
801
848
|
};
|
|
849
|
+
type ActivityRowTronTransfer = {
|
|
850
|
+
kind: "tron_transfer";
|
|
851
|
+
groupId: string | null;
|
|
852
|
+
id: string;
|
|
853
|
+
occurredAt: string;
|
|
854
|
+
role: "incoming" | "outgoing";
|
|
855
|
+
amountCents: number;
|
|
856
|
+
usdCents: number;
|
|
857
|
+
status: "settled";
|
|
858
|
+
counterpartyUserId: string | null;
|
|
859
|
+
counterpartyHandle: string | null;
|
|
860
|
+
counterpartyDisplayName: string | null;
|
|
861
|
+
note: string | null;
|
|
862
|
+
};
|
|
802
863
|
type ActivityRowReferralEarning = {
|
|
803
864
|
kind: "referral_earning";
|
|
804
865
|
groupId: string | null;
|
|
@@ -864,7 +925,7 @@ type TronLedgerResponse = {
|
|
|
864
925
|
};
|
|
865
926
|
type TronLedgerEntry = {
|
|
866
927
|
id: string;
|
|
867
|
-
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
|
|
928
|
+
kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
|
|
868
929
|
amountCents: number;
|
|
869
930
|
currency: string;
|
|
870
931
|
createdAt: string;
|
|
@@ -879,6 +940,21 @@ type TronDepositResponse = {
|
|
|
879
940
|
type TronDepositRequest = {
|
|
880
941
|
amountCents: number;
|
|
881
942
|
};
|
|
943
|
+
type TronTransferResponse = {
|
|
944
|
+
status: "completed";
|
|
945
|
+
amountCents: number;
|
|
946
|
+
balanceCents: number;
|
|
947
|
+
recipient: {
|
|
948
|
+
userId: string;
|
|
949
|
+
handle: string | null;
|
|
950
|
+
displayName: string | null;
|
|
951
|
+
};
|
|
952
|
+
};
|
|
953
|
+
type TronTransferRequest = {
|
|
954
|
+
recipientUserId: string;
|
|
955
|
+
amountCents: number;
|
|
956
|
+
note?: string;
|
|
957
|
+
};
|
|
882
958
|
type TronConnectOnboardingResponse = {
|
|
883
959
|
url: string;
|
|
884
960
|
};
|
|
@@ -1500,7 +1576,7 @@ type ProfileRecentReview = {
|
|
|
1500
1576
|
appId: string;
|
|
1501
1577
|
appName: string;
|
|
1502
1578
|
appLogoUrl: string | null;
|
|
1503
|
-
|
|
1579
|
+
recommended: boolean;
|
|
1504
1580
|
body: string;
|
|
1505
1581
|
createdAt: string;
|
|
1506
1582
|
};
|
|
@@ -1856,6 +1932,11 @@ type AppPageDraft = {
|
|
|
1856
1932
|
gallery: AppPageGallery;
|
|
1857
1933
|
chapters: AppPageChapters;
|
|
1858
1934
|
links: AppPageLinks;
|
|
1935
|
+
platforms: AppPagePlatforms;
|
|
1936
|
+
gameType: AppPageGameType;
|
|
1937
|
+
ageRating: AppPageAgeRating;
|
|
1938
|
+
languages: AppPageLanguages;
|
|
1939
|
+
releaseStatus: AppPageReleaseStatus;
|
|
1859
1940
|
firstPublishedAt: string | null;
|
|
1860
1941
|
reviewedAt: string | null;
|
|
1861
1942
|
reviewNotes: string | null;
|
|
@@ -1878,6 +1959,11 @@ type UpdateAppPage = {
|
|
|
1878
1959
|
gallery?: AppPageGallery;
|
|
1879
1960
|
chapters?: AppPageChapters;
|
|
1880
1961
|
links?: AppPageLinks;
|
|
1962
|
+
platforms?: AppPagePlatforms;
|
|
1963
|
+
gameType?: AppPageGameType;
|
|
1964
|
+
ageRating?: AppPageAgeRating;
|
|
1965
|
+
languages?: AppPageLanguages;
|
|
1966
|
+
releaseStatus?: AppPageReleaseStatus;
|
|
1881
1967
|
};
|
|
1882
1968
|
type AppPageGalleryUploadResponse = {
|
|
1883
1969
|
url: string;
|
|
@@ -2567,6 +2653,16 @@ declare function deleteMyGameReview(context: TransportContext, input: {
|
|
|
2567
2653
|
readonly slug: string;
|
|
2568
2654
|
readonly bearer: string;
|
|
2569
2655
|
}): Promise<MyReviewResponse>;
|
|
2656
|
+
declare function getMyGameReviewReactions(context: TransportContext, input: {
|
|
2657
|
+
readonly slug: string;
|
|
2658
|
+
readonly bearer: string;
|
|
2659
|
+
}): Promise<MyReviewReactionsResponse>;
|
|
2660
|
+
declare function setMyGameReviewReaction(context: TransportContext, input: {
|
|
2661
|
+
readonly slug: string;
|
|
2662
|
+
readonly reviewId: string;
|
|
2663
|
+
readonly bearer: string;
|
|
2664
|
+
readonly reaction: SetReviewReactionRequest;
|
|
2665
|
+
}): Promise<SetReviewReactionResponse>;
|
|
2570
2666
|
declare function replyToGameReview(context: TransportContext, input: {
|
|
2571
2667
|
readonly appId: string;
|
|
2572
2668
|
readonly reviewId: string;
|
|
@@ -3203,6 +3299,11 @@ declare function createTronDeposit(context: TransportContext, input: {
|
|
|
3203
3299
|
readonly bearer: string;
|
|
3204
3300
|
readonly body: TronDepositRequest;
|
|
3205
3301
|
}): Promise<TronDepositResponse>;
|
|
3302
|
+
declare function createTronTransfer(context: TransportContext, input: {
|
|
3303
|
+
readonly bearer: string;
|
|
3304
|
+
readonly body: TronTransferRequest;
|
|
3305
|
+
readonly idempotencyKey?: string;
|
|
3306
|
+
}): Promise<TronTransferResponse>;
|
|
3206
3307
|
declare function createTronConnectOnboarding(context: TransportContext, input: {
|
|
3207
3308
|
readonly bearer: string;
|
|
3208
3309
|
}): Promise<TronConnectOnboardingResponse>;
|
|
@@ -3642,4 +3743,4 @@ type CookieTokenStoreOptions = {
|
|
|
3642
3743
|
};
|
|
3643
3744
|
declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
|
|
3644
3745
|
//#endregion
|
|
3645
|
-
export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, completePaymentIntent, consolidateDeveloperAppWallet, createConsoleLogger, createCookieTokenStore, createDelegation, createDeveloperApiKey, createDeveloperApp, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, editMessage, exchangeAuthorizationCode, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, toTokenSet, unfollowUser, unhideAppPage, unlockDmKeyBackup, unpinThread, unpublishAppPage, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
|
|
3746
|
+
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, createTronTransfer, 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, getMyGameReviewReactions, 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, setMyGameReviewReaction, 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 };
|