@metatrongg/sdk 0.8.0-dev.e892968 → 0.8.0-dev.f0f6902

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -376,9 +376,16 @@ type PublicAppPage = {
376
376
  chapters: AppPageChapters;
377
377
  links: AppPageLinks;
378
378
  studio: PublicAppPageStudio;
379
+ platforms: AppPagePlatforms;
380
+ gameType: AppPageGameType;
381
+ ageRating: AppPageAgeRating;
382
+ languages: AppPageLanguages;
383
+ releaseStatus: AppPageReleaseStatus;
384
+ paymentsMode: AppPagePaymentsMode;
379
385
  oauthScopes: Array<string>;
380
386
  chains: Array<string>;
381
387
  publishedAt: string;
388
+ updatedAt: string;
382
389
  };
383
390
  type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
384
391
  type AppPageTagline = string;
@@ -401,12 +408,19 @@ type AppPageLink = {
401
408
  order: number;
402
409
  };
403
410
  type PublicAppPageStudio = {
411
+ ownerUserId: string | null;
404
412
  name: string | null;
405
413
  logoUrl: string | null;
406
414
  websiteUrl: string | null;
407
415
  xHandle: string | null;
408
416
  githubUrl: string | null;
409
417
  };
418
+ type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
419
+ type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
420
+ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
421
+ type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
422
+ type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
423
+ type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
410
424
  type ReviewListResponse = {
411
425
  aggregate: ReviewAggregate;
412
426
  reviews: Array<Review>;
@@ -414,38 +428,49 @@ type ReviewListResponse = {
414
428
  hasMore: boolean;
415
429
  };
416
430
  type ReviewAggregate = {
417
- average: number | null;
418
431
  count: number;
419
- distribution: ReviewDistribution;
420
- };
421
- type ReviewDistribution = {
422
- 1: number;
423
- 2: number;
424
- 3: number;
425
- 4: number;
426
- 5: number;
432
+ recommendedCount: number;
433
+ recommendedPct: number | null;
434
+ summaryLabel: ReviewSummaryLabel;
427
435
  };
436
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
428
437
  type Review = {
429
438
  id: string;
430
- rating: ReviewRating;
439
+ recommended: ReviewRecommended;
431
440
  body: ReviewBody;
441
+ reactions: ReviewReactionCounts;
442
+ tippedCents: number;
443
+ commentCount: number;
432
444
  author: ReviewAuthor;
445
+ authorStats: ReviewerStats;
433
446
  developerReply: ReviewReply;
434
447
  createdAt: string;
435
448
  updatedAt: string;
436
449
  };
437
- type ReviewRating = number;
450
+ type ReviewRecommended = boolean;
438
451
  type ReviewBody = string;
452
+ type ReviewReactionCounts = {
453
+ helpful: number;
454
+ unhelpful: number;
455
+ funny: number;
456
+ };
439
457
  type ReviewAuthor = {
458
+ userId: string;
459
+ handle: string | null;
440
460
  name: string | null;
441
461
  avatarUrl: string | null;
442
462
  };
463
+ type ReviewerStats = {
464
+ playtimeSecondsThisGame: number;
465
+ gamesPlayed: number;
466
+ reviewsWritten: number;
467
+ };
443
468
  type ReviewReply = {
444
469
  body: ReviewReplyBody;
445
470
  repliedAt: string;
446
471
  } | null;
447
472
  type ReviewReplyBody = string;
448
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
473
+ type ReviewSort = "newest" | "oldest" | "helpful";
449
474
  type MyReviewResponse = {
450
475
  eligible: boolean;
451
476
  eligibleVia: ReviewEligibilityReason;
@@ -455,15 +480,65 @@ type MyReviewResponse = {
455
480
  type ReviewEligibilityReason = "payment" | "reward" | null;
456
481
  type OwnReview = {
457
482
  id: string;
458
- rating: ReviewRating;
483
+ recommended: ReviewRecommended;
459
484
  body: ReviewBody;
460
485
  createdAt: string;
461
486
  updatedAt: string;
462
487
  } | null;
463
488
  type UpsertReviewRequest = {
464
- rating: ReviewRating;
489
+ recommended: ReviewRecommended;
465
490
  body: ReviewBody;
466
491
  };
492
+ type MyReviewReactionsResponse = {
493
+ reactions: Array<MyReviewReaction>;
494
+ };
495
+ type MyReviewReaction = {
496
+ reviewId: string;
497
+ vote: ReviewVote;
498
+ funny: boolean;
499
+ };
500
+ type ReviewVote = "helpful" | "unhelpful" | null;
501
+ type SetReviewReactionResponse = {
502
+ reactions: ReviewReactionCounts;
503
+ vote: ReviewVote;
504
+ funny: boolean;
505
+ };
506
+ type SetReviewReactionRequest = {
507
+ vote: ReviewVote;
508
+ funny: boolean;
509
+ };
510
+ type TipReviewResponse = {
511
+ status: "completed";
512
+ amountCents: number;
513
+ balanceCents: number;
514
+ tippedCents: number;
515
+ };
516
+ type TipReviewRequest = {
517
+ amountCents: number;
518
+ note?: string;
519
+ };
520
+ type ReviewCommentListResponse = {
521
+ comments: Array<ReviewComment>;
522
+ total: number;
523
+ hasMore: boolean;
524
+ };
525
+ type ReviewComment = {
526
+ id: string;
527
+ body: ReviewCommentBody;
528
+ author: ReviewAuthor;
529
+ createdAt: string;
530
+ };
531
+ type ReviewCommentBody = string;
532
+ type CreateReviewCommentResponse = {
533
+ comment: ReviewComment;
534
+ commentCount: number;
535
+ };
536
+ type CreateReviewCommentRequest = {
537
+ body: ReviewCommentBody;
538
+ };
539
+ type DeleteReviewCommentResponse = {
540
+ commentCount: number;
541
+ };
467
542
  type ReviewReplyResponse = {
468
543
  developerReply: ReviewReply;
469
544
  };
@@ -568,6 +643,8 @@ type ActivityRow = ({
568
643
  } & ActivityRowTronPot) | ({
569
644
  kind: "tron_cashout";
570
645
  } & ActivityRowTronCashout) | ({
646
+ kind: "tron_transfer";
647
+ } & ActivityRowTronTransfer) | ({
571
648
  kind: "referral_earning";
572
649
  } & ActivityRowReferralEarning);
573
650
  type ActivityRowPayment = {
@@ -851,6 +928,20 @@ type ActivityRowTronCashout = {
851
928
  rejectionReason: string | null;
852
929
  settledAt: string | null;
853
930
  };
931
+ type ActivityRowTronTransfer = {
932
+ kind: "tron_transfer";
933
+ groupId: string | null;
934
+ id: string;
935
+ occurredAt: string;
936
+ role: "incoming" | "outgoing";
937
+ amountCents: number;
938
+ usdCents: number;
939
+ status: "settled";
940
+ counterpartyUserId: string | null;
941
+ counterpartyHandle: string | null;
942
+ counterpartyDisplayName: string | null;
943
+ note: string | null;
944
+ };
854
945
  type ActivityRowReferralEarning = {
855
946
  kind: "referral_earning";
856
947
  groupId: string | null;
@@ -916,7 +1007,7 @@ type TronLedgerResponse = {
916
1007
  };
917
1008
  type TronLedgerEntry = {
918
1009
  id: string;
919
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
1010
+ kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
920
1011
  amountCents: number;
921
1012
  currency: string;
922
1013
  createdAt: string;
@@ -931,6 +1022,21 @@ type TronDepositResponse = {
931
1022
  type TronDepositRequest = {
932
1023
  amountCents: number;
933
1024
  };
1025
+ type TronTransferResponse = {
1026
+ status: "completed";
1027
+ amountCents: number;
1028
+ balanceCents: number;
1029
+ recipient: {
1030
+ userId: string;
1031
+ handle: string | null;
1032
+ displayName: string | null;
1033
+ };
1034
+ };
1035
+ type TronTransferRequest = {
1036
+ recipientUserId: string;
1037
+ amountCents: number;
1038
+ note?: string;
1039
+ };
934
1040
  type TronGameBalanceResponse = {
935
1041
  balanceCents: number;
936
1042
  rakeBps: number;
@@ -1607,7 +1713,7 @@ type ProfileRecentReview = {
1607
1713
  appId: string;
1608
1714
  appName: string;
1609
1715
  appLogoUrl: string | null;
1610
- rating: number;
1716
+ recommended: boolean;
1611
1717
  body: string;
1612
1718
  createdAt: string;
1613
1719
  };
@@ -1963,6 +2069,11 @@ type AppPageDraft = {
1963
2069
  gallery: AppPageGallery;
1964
2070
  chapters: AppPageChapters;
1965
2071
  links: AppPageLinks;
2072
+ platforms: AppPagePlatforms;
2073
+ gameType: AppPageGameType;
2074
+ ageRating: AppPageAgeRating;
2075
+ languages: AppPageLanguages;
2076
+ releaseStatus: AppPageReleaseStatus;
1966
2077
  firstPublishedAt: string | null;
1967
2078
  reviewedAt: string | null;
1968
2079
  reviewNotes: string | null;
@@ -1985,6 +2096,11 @@ type UpdateAppPage = {
1985
2096
  gallery?: AppPageGallery;
1986
2097
  chapters?: AppPageChapters;
1987
2098
  links?: AppPageLinks;
2099
+ platforms?: AppPagePlatforms;
2100
+ gameType?: AppPageGameType;
2101
+ ageRating?: AppPageAgeRating;
2102
+ languages?: AppPageLanguages;
2103
+ releaseStatus?: AppPageReleaseStatus;
1988
2104
  };
1989
2105
  type AppPageGalleryUploadResponse = {
1990
2106
  url: string;
@@ -2736,6 +2852,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2736
2852
  readonly slug: string;
2737
2853
  readonly bearer: string;
2738
2854
  }): Promise<MyReviewResponse>;
2855
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
2856
+ readonly slug: string;
2857
+ readonly bearer: string;
2858
+ }): Promise<MyReviewReactionsResponse>;
2859
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
2860
+ readonly slug: string;
2861
+ readonly reviewId: string;
2862
+ readonly bearer: string;
2863
+ readonly reaction: SetReviewReactionRequest;
2864
+ }): Promise<SetReviewReactionResponse>;
2865
+ declare function tipGameReview(context: TransportContext, input: {
2866
+ readonly slug: string;
2867
+ readonly reviewId: string;
2868
+ readonly bearer: string;
2869
+ readonly tip: TipReviewRequest;
2870
+ readonly idempotencyKey?: string;
2871
+ }): Promise<TipReviewResponse>;
2872
+ declare function listGameReviewComments(context: TransportContext, input: {
2873
+ readonly slug: string;
2874
+ readonly reviewId: string;
2875
+ readonly bearer?: string;
2876
+ readonly limit?: number;
2877
+ readonly offset?: number;
2878
+ }): Promise<ReviewCommentListResponse>;
2879
+ declare function commentOnGameReview(context: TransportContext, input: {
2880
+ readonly slug: string;
2881
+ readonly reviewId: string;
2882
+ readonly bearer: string;
2883
+ readonly comment: CreateReviewCommentRequest;
2884
+ }): Promise<CreateReviewCommentResponse>;
2885
+ declare function deleteGameReviewComment(context: TransportContext, input: {
2886
+ readonly slug: string;
2887
+ readonly commentId: string;
2888
+ readonly bearer: string;
2889
+ }): Promise<DeleteReviewCommentResponse>;
2739
2890
  declare function replyToGameReview(context: TransportContext, input: {
2740
2891
  readonly appId: string;
2741
2892
  readonly reviewId: string;
@@ -3496,6 +3647,11 @@ declare function createTronDeposit(context: TransportContext, input: {
3496
3647
  readonly bearer: string;
3497
3648
  readonly body: TronDepositRequest;
3498
3649
  }): Promise<TronDepositResponse>;
3650
+ declare function createTronTransfer(context: TransportContext, input: {
3651
+ readonly bearer: string;
3652
+ readonly body: TronTransferRequest;
3653
+ readonly idempotencyKey?: string;
3654
+ }): Promise<TronTransferResponse>;
3499
3655
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3500
3656
  readonly bearer: string;
3501
3657
  }): Promise<TronConnectOnboardingResponse>;
@@ -3929,4 +4085,4 @@ declare class TronNodeClient {
3929
4085
  };
3930
4086
  }
3931
4087
  //#endregion
3932
- 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 };
4088
+ 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, 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, 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, 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 };