@metatrongg/sdk 0.8.0-dev.cb4b3eb → 0.8.0-dev.d1c3c23

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,29 +428,33 @@ 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;
432
443
  author: ReviewAuthor;
433
444
  developerReply: ReviewReply;
434
445
  createdAt: string;
435
446
  updatedAt: string;
436
447
  };
437
- type ReviewRating = number;
448
+ type ReviewRecommended = boolean;
438
449
  type ReviewBody = string;
450
+ type ReviewReactionCounts = {
451
+ helpful: number;
452
+ unhelpful: number;
453
+ funny: number;
454
+ };
439
455
  type ReviewAuthor = {
456
+ userId: string;
457
+ handle: string | null;
440
458
  name: string | null;
441
459
  avatarUrl: string | null;
442
460
  };
@@ -445,7 +463,7 @@ type ReviewReply = {
445
463
  repliedAt: string;
446
464
  } | null;
447
465
  type ReviewReplyBody = string;
448
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
466
+ type ReviewSort = "newest" | "oldest" | "helpful";
449
467
  type MyReviewResponse = {
450
468
  eligible: boolean;
451
469
  eligibleVia: ReviewEligibilityReason;
@@ -455,15 +473,43 @@ type MyReviewResponse = {
455
473
  type ReviewEligibilityReason = "payment" | "reward" | null;
456
474
  type OwnReview = {
457
475
  id: string;
458
- rating: ReviewRating;
476
+ recommended: ReviewRecommended;
459
477
  body: ReviewBody;
460
478
  createdAt: string;
461
479
  updatedAt: string;
462
480
  } | null;
463
481
  type UpsertReviewRequest = {
464
- rating: ReviewRating;
482
+ recommended: ReviewRecommended;
465
483
  body: ReviewBody;
466
484
  };
485
+ type MyReviewReactionsResponse = {
486
+ reactions: Array<MyReviewReaction>;
487
+ };
488
+ type MyReviewReaction = {
489
+ reviewId: string;
490
+ vote: ReviewVote;
491
+ funny: boolean;
492
+ };
493
+ type ReviewVote = "helpful" | "unhelpful" | null;
494
+ type SetReviewReactionResponse = {
495
+ reactions: ReviewReactionCounts;
496
+ vote: ReviewVote;
497
+ funny: boolean;
498
+ };
499
+ type SetReviewReactionRequest = {
500
+ vote: ReviewVote;
501
+ funny: boolean;
502
+ };
503
+ type TipReviewResponse = {
504
+ status: "completed";
505
+ amountCents: number;
506
+ balanceCents: number;
507
+ tippedCents: number;
508
+ };
509
+ type TipReviewRequest = {
510
+ amountCents: number;
511
+ note?: string;
512
+ };
467
513
  type ReviewReplyResponse = {
468
514
  developerReply: ReviewReply;
469
515
  };
@@ -568,6 +614,8 @@ type ActivityRow = ({
568
614
  } & ActivityRowTronPot) | ({
569
615
  kind: "tron_cashout";
570
616
  } & ActivityRowTronCashout) | ({
617
+ kind: "tron_transfer";
618
+ } & ActivityRowTronTransfer) | ({
571
619
  kind: "referral_earning";
572
620
  } & ActivityRowReferralEarning);
573
621
  type ActivityRowPayment = {
@@ -815,6 +863,8 @@ type ActivityRowTronPot = {
815
863
  role: "incoming" | "outgoing";
816
864
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
817
865
  amountCents: number;
866
+ usdCents: number;
867
+ status: "settled";
818
868
  app: {
819
869
  id: string;
820
870
  name: string;
@@ -822,8 +872,16 @@ type ActivityRowTronPot = {
822
872
  slug: string | null;
823
873
  bannerUrl: string | null;
824
874
  } | null;
875
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
825
876
  metadata?: PaymentMetadata | null;
826
877
  };
878
+ type ActivityTronInvolvedUser = {
879
+ userId: string;
880
+ handle: string | null;
881
+ displayName: string | null;
882
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
883
+ amountCents: number;
884
+ };
827
885
  type ActivityRowTronCashout = {
828
886
  kind: "tron_cashout";
829
887
  groupId: string | null;
@@ -841,6 +899,20 @@ type ActivityRowTronCashout = {
841
899
  rejectionReason: string | null;
842
900
  settledAt: string | null;
843
901
  };
902
+ type ActivityRowTronTransfer = {
903
+ kind: "tron_transfer";
904
+ groupId: string | null;
905
+ id: string;
906
+ occurredAt: string;
907
+ role: "incoming" | "outgoing";
908
+ amountCents: number;
909
+ usdCents: number;
910
+ status: "settled";
911
+ counterpartyUserId: string | null;
912
+ counterpartyHandle: string | null;
913
+ counterpartyDisplayName: string | null;
914
+ note: string | null;
915
+ };
844
916
  type ActivityRowReferralEarning = {
845
917
  kind: "referral_earning";
846
918
  groupId: string | null;
@@ -906,7 +978,7 @@ type TronLedgerResponse = {
906
978
  };
907
979
  type TronLedgerEntry = {
908
980
  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";
981
+ 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
982
  amountCents: number;
911
983
  currency: string;
912
984
  createdAt: string;
@@ -921,6 +993,21 @@ type TronDepositResponse = {
921
993
  type TronDepositRequest = {
922
994
  amountCents: number;
923
995
  };
996
+ type TronTransferResponse = {
997
+ status: "completed";
998
+ amountCents: number;
999
+ balanceCents: number;
1000
+ recipient: {
1001
+ userId: string;
1002
+ handle: string | null;
1003
+ displayName: string | null;
1004
+ };
1005
+ };
1006
+ type TronTransferRequest = {
1007
+ recipientUserId: string;
1008
+ amountCents: number;
1009
+ note?: string;
1010
+ };
924
1011
  type TronGameBalanceResponse = {
925
1012
  balanceCents: number;
926
1013
  rakeBps: number;
@@ -1597,7 +1684,7 @@ type ProfileRecentReview = {
1597
1684
  appId: string;
1598
1685
  appName: string;
1599
1686
  appLogoUrl: string | null;
1600
- rating: number;
1687
+ recommended: boolean;
1601
1688
  body: string;
1602
1689
  createdAt: string;
1603
1690
  };
@@ -1953,6 +2040,11 @@ type AppPageDraft = {
1953
2040
  gallery: AppPageGallery;
1954
2041
  chapters: AppPageChapters;
1955
2042
  links: AppPageLinks;
2043
+ platforms: AppPagePlatforms;
2044
+ gameType: AppPageGameType;
2045
+ ageRating: AppPageAgeRating;
2046
+ languages: AppPageLanguages;
2047
+ releaseStatus: AppPageReleaseStatus;
1956
2048
  firstPublishedAt: string | null;
1957
2049
  reviewedAt: string | null;
1958
2050
  reviewNotes: string | null;
@@ -1975,6 +2067,11 @@ type UpdateAppPage = {
1975
2067
  gallery?: AppPageGallery;
1976
2068
  chapters?: AppPageChapters;
1977
2069
  links?: AppPageLinks;
2070
+ platforms?: AppPagePlatforms;
2071
+ gameType?: AppPageGameType;
2072
+ ageRating?: AppPageAgeRating;
2073
+ languages?: AppPageLanguages;
2074
+ releaseStatus?: AppPageReleaseStatus;
1978
2075
  };
1979
2076
  type AppPageGalleryUploadResponse = {
1980
2077
  url: string;
@@ -2726,6 +2823,23 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2726
2823
  readonly slug: string;
2727
2824
  readonly bearer: string;
2728
2825
  }): Promise<MyReviewResponse>;
2826
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
2827
+ readonly slug: string;
2828
+ readonly bearer: string;
2829
+ }): Promise<MyReviewReactionsResponse>;
2830
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
2831
+ readonly slug: string;
2832
+ readonly reviewId: string;
2833
+ readonly bearer: string;
2834
+ readonly reaction: SetReviewReactionRequest;
2835
+ }): Promise<SetReviewReactionResponse>;
2836
+ declare function tipGameReview(context: TransportContext, input: {
2837
+ readonly slug: string;
2838
+ readonly reviewId: string;
2839
+ readonly bearer: string;
2840
+ readonly tip: TipReviewRequest;
2841
+ readonly idempotencyKey?: string;
2842
+ }): Promise<TipReviewResponse>;
2729
2843
  declare function replyToGameReview(context: TransportContext, input: {
2730
2844
  readonly appId: string;
2731
2845
  readonly reviewId: string;
@@ -3486,6 +3600,11 @@ declare function createTronDeposit(context: TransportContext, input: {
3486
3600
  readonly bearer: string;
3487
3601
  readonly body: TronDepositRequest;
3488
3602
  }): Promise<TronDepositResponse>;
3603
+ declare function createTronTransfer(context: TransportContext, input: {
3604
+ readonly bearer: string;
3605
+ readonly body: TronTransferRequest;
3606
+ readonly idempotencyKey?: string;
3607
+ }): Promise<TronTransferResponse>;
3489
3608
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3490
3609
  readonly bearer: string;
3491
3610
  }): Promise<TronConnectOnboardingResponse>;
@@ -3919,4 +4038,4 @@ declare class TronNodeClient {
3919
4038
  };
3920
4039
  }
3921
4040
  //#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 };
4041
+ 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, 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, 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 };