@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.
@@ -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,38 +386,49 @@ type ReviewListResponse = {
372
386
  hasMore: boolean;
373
387
  };
374
388
  type ReviewAggregate = {
375
- average: number | null;
376
389
  count: number;
377
- distribution: ReviewDistribution;
378
- };
379
- type ReviewDistribution = {
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
- rating: ReviewRating;
397
+ recommended: ReviewRecommended;
389
398
  body: ReviewBody;
399
+ reactions: ReviewReactionCounts;
400
+ tippedCents: number;
401
+ commentCount: number;
390
402
  author: ReviewAuthor;
403
+ authorStats: ReviewerStats;
391
404
  developerReply: ReviewReply;
392
405
  createdAt: string;
393
406
  updatedAt: string;
394
407
  };
395
- type ReviewRating = number;
408
+ type ReviewRecommended = boolean;
396
409
  type ReviewBody = string;
410
+ type ReviewReactionCounts = {
411
+ helpful: number;
412
+ unhelpful: number;
413
+ funny: number;
414
+ };
397
415
  type ReviewAuthor = {
416
+ userId: string;
417
+ handle: string | null;
398
418
  name: string | null;
399
419
  avatarUrl: string | null;
400
420
  };
421
+ type ReviewerStats = {
422
+ playtimeSecondsThisGame: number;
423
+ gamesPlayed: number;
424
+ reviewsWritten: number;
425
+ };
401
426
  type ReviewReply = {
402
427
  body: ReviewReplyBody;
403
428
  repliedAt: string;
404
429
  } | null;
405
430
  type ReviewReplyBody = string;
406
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
431
+ type ReviewSort = "newest" | "oldest" | "helpful";
407
432
  type MyReviewResponse = {
408
433
  eligible: boolean;
409
434
  eligibleVia: ReviewEligibilityReason;
@@ -413,15 +438,65 @@ type MyReviewResponse = {
413
438
  type ReviewEligibilityReason = "payment" | "reward" | null;
414
439
  type OwnReview = {
415
440
  id: string;
416
- rating: ReviewRating;
441
+ recommended: ReviewRecommended;
417
442
  body: ReviewBody;
418
443
  createdAt: string;
419
444
  updatedAt: string;
420
445
  } | null;
421
446
  type UpsertReviewRequest = {
422
- rating: ReviewRating;
447
+ recommended: ReviewRecommended;
423
448
  body: ReviewBody;
424
449
  };
450
+ type MyReviewReactionsResponse = {
451
+ reactions: Array<MyReviewReaction>;
452
+ };
453
+ type MyReviewReaction = {
454
+ reviewId: string;
455
+ vote: ReviewVote;
456
+ funny: boolean;
457
+ };
458
+ type ReviewVote = "helpful" | "unhelpful" | null;
459
+ type SetReviewReactionResponse = {
460
+ reactions: ReviewReactionCounts;
461
+ vote: ReviewVote;
462
+ funny: boolean;
463
+ };
464
+ type SetReviewReactionRequest = {
465
+ vote: ReviewVote;
466
+ funny: boolean;
467
+ };
468
+ type TipReviewResponse = {
469
+ status: "completed";
470
+ amountCents: number;
471
+ balanceCents: number;
472
+ tippedCents: number;
473
+ };
474
+ type TipReviewRequest = {
475
+ amountCents: number;
476
+ note?: string;
477
+ };
478
+ type ReviewCommentListResponse = {
479
+ comments: Array<ReviewComment>;
480
+ total: number;
481
+ hasMore: boolean;
482
+ };
483
+ type ReviewComment = {
484
+ id: string;
485
+ body: ReviewCommentBody;
486
+ author: ReviewAuthor;
487
+ createdAt: string;
488
+ };
489
+ type ReviewCommentBody = string;
490
+ type CreateReviewCommentResponse = {
491
+ comment: ReviewComment;
492
+ commentCount: number;
493
+ };
494
+ type CreateReviewCommentRequest = {
495
+ body: ReviewCommentBody;
496
+ };
497
+ type DeleteReviewCommentResponse = {
498
+ commentCount: number;
499
+ };
425
500
  type ReviewReplyResponse = {
426
501
  developerReply: ReviewReply;
427
502
  };
@@ -526,6 +601,8 @@ type ActivityRow = ({
526
601
  } & ActivityRowTronPot) | ({
527
602
  kind: "tron_cashout";
528
603
  } & ActivityRowTronCashout) | ({
604
+ kind: "tron_transfer";
605
+ } & ActivityRowTronTransfer) | ({
529
606
  kind: "referral_earning";
530
607
  } & ActivityRowReferralEarning);
531
608
  type ActivityRowPayment = {
@@ -809,6 +886,20 @@ type ActivityRowTronCashout = {
809
886
  rejectionReason: string | null;
810
887
  settledAt: string | null;
811
888
  };
889
+ type ActivityRowTronTransfer = {
890
+ kind: "tron_transfer";
891
+ groupId: string | null;
892
+ id: string;
893
+ occurredAt: string;
894
+ role: "incoming" | "outgoing";
895
+ amountCents: number;
896
+ usdCents: number;
897
+ status: "settled";
898
+ counterpartyUserId: string | null;
899
+ counterpartyHandle: string | null;
900
+ counterpartyDisplayName: string | null;
901
+ note: string | null;
902
+ };
812
903
  type ActivityRowReferralEarning = {
813
904
  kind: "referral_earning";
814
905
  groupId: string | null;
@@ -874,7 +965,7 @@ type TronLedgerResponse = {
874
965
  };
875
966
  type TronLedgerEntry = {
876
967
  id: string;
877
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
968
+ kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer";
878
969
  amountCents: number;
879
970
  currency: string;
880
971
  createdAt: string;
@@ -889,6 +980,21 @@ type TronDepositResponse = {
889
980
  type TronDepositRequest = {
890
981
  amountCents: number;
891
982
  };
983
+ type TronTransferResponse = {
984
+ status: "completed";
985
+ amountCents: number;
986
+ balanceCents: number;
987
+ recipient: {
988
+ userId: string;
989
+ handle: string | null;
990
+ displayName: string | null;
991
+ };
992
+ };
993
+ type TronTransferRequest = {
994
+ recipientUserId: string;
995
+ amountCents: number;
996
+ note?: string;
997
+ };
892
998
  type TronConnectOnboardingResponse = {
893
999
  url: string;
894
1000
  };
@@ -1510,7 +1616,7 @@ type ProfileRecentReview = {
1510
1616
  appId: string;
1511
1617
  appName: string;
1512
1618
  appLogoUrl: string | null;
1513
- rating: number;
1619
+ recommended: boolean;
1514
1620
  body: string;
1515
1621
  createdAt: string;
1516
1622
  };
@@ -1866,6 +1972,11 @@ type AppPageDraft = {
1866
1972
  gallery: AppPageGallery;
1867
1973
  chapters: AppPageChapters;
1868
1974
  links: AppPageLinks;
1975
+ platforms: AppPagePlatforms;
1976
+ gameType: AppPageGameType;
1977
+ ageRating: AppPageAgeRating;
1978
+ languages: AppPageLanguages;
1979
+ releaseStatus: AppPageReleaseStatus;
1869
1980
  firstPublishedAt: string | null;
1870
1981
  reviewedAt: string | null;
1871
1982
  reviewNotes: string | null;
@@ -1888,6 +1999,11 @@ type UpdateAppPage = {
1888
1999
  gallery?: AppPageGallery;
1889
2000
  chapters?: AppPageChapters;
1890
2001
  links?: AppPageLinks;
2002
+ platforms?: AppPagePlatforms;
2003
+ gameType?: AppPageGameType;
2004
+ ageRating?: AppPageAgeRating;
2005
+ languages?: AppPageLanguages;
2006
+ releaseStatus?: AppPageReleaseStatus;
1891
2007
  };
1892
2008
  type AppPageGalleryUploadResponse = {
1893
2009
  url: string;
@@ -2577,6 +2693,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2577
2693
  readonly slug: string;
2578
2694
  readonly bearer: string;
2579
2695
  }): Promise<MyReviewResponse>;
2696
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
2697
+ readonly slug: string;
2698
+ readonly bearer: string;
2699
+ }): Promise<MyReviewReactionsResponse>;
2700
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
2701
+ readonly slug: string;
2702
+ readonly reviewId: string;
2703
+ readonly bearer: string;
2704
+ readonly reaction: SetReviewReactionRequest;
2705
+ }): Promise<SetReviewReactionResponse>;
2706
+ declare function tipGameReview(context: TransportContext, input: {
2707
+ readonly slug: string;
2708
+ readonly reviewId: string;
2709
+ readonly bearer: string;
2710
+ readonly tip: TipReviewRequest;
2711
+ readonly idempotencyKey?: string;
2712
+ }): Promise<TipReviewResponse>;
2713
+ declare function listGameReviewComments(context: TransportContext, input: {
2714
+ readonly slug: string;
2715
+ readonly reviewId: string;
2716
+ readonly bearer?: string;
2717
+ readonly limit?: number;
2718
+ readonly offset?: number;
2719
+ }): Promise<ReviewCommentListResponse>;
2720
+ declare function commentOnGameReview(context: TransportContext, input: {
2721
+ readonly slug: string;
2722
+ readonly reviewId: string;
2723
+ readonly bearer: string;
2724
+ readonly comment: CreateReviewCommentRequest;
2725
+ }): Promise<CreateReviewCommentResponse>;
2726
+ declare function deleteGameReviewComment(context: TransportContext, input: {
2727
+ readonly slug: string;
2728
+ readonly commentId: string;
2729
+ readonly bearer: string;
2730
+ }): Promise<DeleteReviewCommentResponse>;
2580
2731
  declare function replyToGameReview(context: TransportContext, input: {
2581
2732
  readonly appId: string;
2582
2733
  readonly reviewId: string;
@@ -3213,6 +3364,11 @@ declare function createTronDeposit(context: TransportContext, input: {
3213
3364
  readonly bearer: string;
3214
3365
  readonly body: TronDepositRequest;
3215
3366
  }): Promise<TronDepositResponse>;
3367
+ declare function createTronTransfer(context: TransportContext, input: {
3368
+ readonly bearer: string;
3369
+ readonly body: TronTransferRequest;
3370
+ readonly idempotencyKey?: string;
3371
+ }): Promise<TronTransferResponse>;
3216
3372
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3217
3373
  readonly bearer: string;
3218
3374
  }): Promise<TronConnectOnboardingResponse>;
@@ -3652,4 +3808,4 @@ type CookieTokenStoreOptions = {
3652
3808
  };
3653
3809
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3654
3810
  //#endregion
3655
- 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 };
3811
+ 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, commentOnGameReview, 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, deleteGameReviewComment, 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, listGameReviewComments, 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, 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 };