@metatrongg/sdk 0.8.0-dev.1ef20e5 → 0.8.0-dev.2fc7340

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.
@@ -106,7 +106,7 @@ type OauthAuthorizationServerMetadata = {
106
106
  grant_types_supported: Array<"authorization_code" | "refresh_token" | "client_credentials">;
107
107
  code_challenge_methods_supported: Array<"S256">;
108
108
  token_endpoint_auth_methods_supported: Array<"client_secret_basic" | "client_secret_post" | "none">;
109
- scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "developer:read" | "developer:apps" | "developer:pages">;
109
+ scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "social:read" | "developer:read" | "developer:apps" | "developer:pages">;
110
110
  };
111
111
  type OauthScopeString = string;
112
112
  type OauthState = string;
@@ -127,7 +127,9 @@ type OauthErrorResponse = {
127
127
  type OauthUserInfoResponse = {
128
128
  sub: string;
129
129
  name: string | null;
130
+ preferred_username: string | null;
130
131
  picture: string | null;
132
+ wallet_address: string | null;
131
133
  };
132
134
  type OauthPaymentChargeResponse = ({
133
135
  status: "completed";
@@ -246,6 +248,7 @@ type OauthPaymentIntentContext = {
246
248
  studioXHandle: string | null;
247
249
  };
248
250
  } | null;
251
+ environment: "development" | "production";
249
252
  };
250
253
  type OauthPaymentIntentSignResponse = {
251
254
  chain: string;
@@ -366,6 +369,7 @@ type AppPageLink = {
366
369
  order: number;
367
370
  };
368
371
  type PublicAppPageStudio = {
372
+ ownerUserId: string | null;
369
373
  name: string | null;
370
374
  logoUrl: string | null;
371
375
  websiteUrl: string | null;
@@ -385,38 +389,49 @@ type ReviewListResponse = {
385
389
  hasMore: boolean;
386
390
  };
387
391
  type ReviewAggregate = {
388
- average: number | null;
389
392
  count: number;
390
- distribution: ReviewDistribution;
391
- };
392
- type ReviewDistribution = {
393
- 1: number;
394
- 2: number;
395
- 3: number;
396
- 4: number;
397
- 5: number;
393
+ recommendedCount: number;
394
+ recommendedPct: number | null;
395
+ summaryLabel: ReviewSummaryLabel;
398
396
  };
397
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
399
398
  type Review = {
400
399
  id: string;
401
- rating: ReviewRating;
400
+ recommended: ReviewRecommended;
402
401
  body: ReviewBody;
402
+ reactions: ReviewReactionCounts;
403
+ tippedCents: number;
404
+ commentCount: number;
403
405
  author: ReviewAuthor;
406
+ authorStats: ReviewerStats;
404
407
  developerReply: ReviewReply;
405
408
  createdAt: string;
406
409
  updatedAt: string;
407
410
  };
408
- type ReviewRating = number;
411
+ type ReviewRecommended = boolean;
409
412
  type ReviewBody = string;
413
+ type ReviewReactionCounts = {
414
+ helpful: number;
415
+ unhelpful: number;
416
+ funny: number;
417
+ };
410
418
  type ReviewAuthor = {
419
+ userId: string;
420
+ handle: string | null;
411
421
  name: string | null;
412
422
  avatarUrl: string | null;
413
423
  };
424
+ type ReviewerStats = {
425
+ playtimeSecondsThisGame: number;
426
+ gamesPlayed: number;
427
+ reviewsWritten: number;
428
+ };
414
429
  type ReviewReply = {
415
430
  body: ReviewReplyBody;
416
431
  repliedAt: string;
417
432
  } | null;
418
433
  type ReviewReplyBody = string;
419
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
434
+ type ReviewSort = "newest" | "oldest" | "helpful";
420
435
  type MyReviewResponse = {
421
436
  eligible: boolean;
422
437
  eligibleVia: ReviewEligibilityReason;
@@ -426,15 +441,67 @@ type MyReviewResponse = {
426
441
  type ReviewEligibilityReason = "payment" | "reward" | null;
427
442
  type OwnReview = {
428
443
  id: string;
429
- rating: ReviewRating;
444
+ recommended: ReviewRecommended;
430
445
  body: ReviewBody;
431
446
  createdAt: string;
432
447
  updatedAt: string;
433
448
  } | null;
434
449
  type UpsertReviewRequest = {
435
- rating: ReviewRating;
450
+ recommended: ReviewRecommended;
436
451
  body: ReviewBody;
437
452
  };
453
+ type MyReviewReactionsResponse = {
454
+ reactions: Array<MyReviewReaction>;
455
+ };
456
+ type MyReviewReaction = {
457
+ reviewId: string;
458
+ vote: ReviewVote;
459
+ funny: boolean;
460
+ };
461
+ type ReviewVote = "helpful" | "unhelpful" | null;
462
+ type SetReviewReactionResponse = {
463
+ reactions: ReviewReactionCounts;
464
+ vote: ReviewVote;
465
+ funny: boolean;
466
+ };
467
+ type SetReviewReactionRequest = {
468
+ vote: ReviewVote;
469
+ funny: boolean;
470
+ };
471
+ type TipReviewResponse = {
472
+ status: "completed";
473
+ amountCents: number;
474
+ balanceCents: number;
475
+ tippedCents: number;
476
+ };
477
+ type TipReviewRequest = {
478
+ amountCents: number;
479
+ note?: string;
480
+ challengeId?: string;
481
+ signature?: string;
482
+ };
483
+ type ReviewCommentListResponse = {
484
+ comments: Array<ReviewComment>;
485
+ total: number;
486
+ hasMore: boolean;
487
+ };
488
+ type ReviewComment = {
489
+ id: string;
490
+ body: ReviewCommentBody;
491
+ author: ReviewAuthor;
492
+ createdAt: string;
493
+ };
494
+ type ReviewCommentBody = string;
495
+ type CreateReviewCommentResponse = {
496
+ comment: ReviewComment;
497
+ commentCount: number;
498
+ };
499
+ type CreateReviewCommentRequest = {
500
+ body: ReviewCommentBody;
501
+ };
502
+ type DeleteReviewCommentResponse = {
503
+ commentCount: number;
504
+ };
438
505
  type ReviewReplyResponse = {
439
506
  developerReply: ReviewReply;
440
507
  };
@@ -539,8 +606,12 @@ type ActivityRow = ({
539
606
  } & ActivityRowTronPot) | ({
540
607
  kind: "tron_cashout";
541
608
  } & ActivityRowTronCashout) | ({
609
+ kind: "tron_transfer";
610
+ } & ActivityRowTronTransfer) | ({
542
611
  kind: "referral_earning";
543
- } & ActivityRowReferralEarning);
612
+ } & ActivityRowReferralEarning) | ({
613
+ kind: "nft_charge";
614
+ } & ActivityRowNftCharge);
544
615
  type ActivityRowPayment = {
545
616
  kind: "payment";
546
617
  groupId: string | null;
@@ -822,6 +893,20 @@ type ActivityRowTronCashout = {
822
893
  rejectionReason: string | null;
823
894
  settledAt: string | null;
824
895
  };
896
+ type ActivityRowTronTransfer = {
897
+ kind: "tron_transfer";
898
+ groupId: string | null;
899
+ id: string;
900
+ occurredAt: string;
901
+ role: "incoming" | "outgoing";
902
+ amountCents: number;
903
+ usdCents: number;
904
+ status: "settled";
905
+ counterpartyUserId: string | null;
906
+ counterpartyHandle: string | null;
907
+ counterpartyDisplayName: string | null;
908
+ note: string | null;
909
+ };
825
910
  type ActivityRowReferralEarning = {
826
911
  kind: "referral_earning";
827
912
  groupId: string | null;
@@ -838,6 +923,22 @@ type ActivityRowReferralEarning = {
838
923
  logIndex: number;
839
924
  usdCents: number | null;
840
925
  };
926
+ type ActivityRowNftCharge = {
927
+ kind: "nft_charge";
928
+ groupId: string | null;
929
+ id: string;
930
+ occurredAt: string;
931
+ role: "outgoing";
932
+ chargeKind: "registration" | "mint" | "transfer_gas";
933
+ amountCents: number;
934
+ usdCents: number;
935
+ status: "settled";
936
+ collectionAddress: string | null;
937
+ tokenId: string | null;
938
+ counterpartyUserId: string | null;
939
+ counterpartyHandle: string | null;
940
+ counterpartyDisplayName: string | null;
941
+ };
841
942
  type OutstandingResponse = {
842
943
  rows: Array<OutstandingByToken>;
843
944
  };
@@ -887,7 +988,7 @@ type TronLedgerResponse = {
887
988
  };
888
989
  type TronLedgerEntry = {
889
990
  id: string;
890
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
991
+ kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning" | "peer_transfer" | "nft_registration" | "nft_mint" | "nft_gas";
891
992
  amountCents: number;
892
993
  currency: string;
893
994
  createdAt: string;
@@ -902,6 +1003,45 @@ type TronDepositResponse = {
902
1003
  type TronDepositRequest = {
903
1004
  amountCents: number;
904
1005
  };
1006
+ type TronTransferResponse = {
1007
+ status: "completed";
1008
+ amountCents: number;
1009
+ balanceCents: number;
1010
+ recipient: {
1011
+ userId: string;
1012
+ handle: string | null;
1013
+ displayName: string | null;
1014
+ };
1015
+ };
1016
+ type TronTransferRequest = {
1017
+ recipientUserId: string;
1018
+ amountCents: number;
1019
+ note?: string;
1020
+ challengeId?: string;
1021
+ signature?: string;
1022
+ threadId?: string;
1023
+ };
1024
+ type TronSecuritySetting = {
1025
+ requireSignature: boolean;
1026
+ };
1027
+ type TronTransferChallengeResponse = ({
1028
+ required: false;
1029
+ } & TronTransferChallengeNotRequired) | ({
1030
+ required: true;
1031
+ } & TronTransferChallengeRequired);
1032
+ type TronTransferChallengeNotRequired = {
1033
+ required: false;
1034
+ };
1035
+ type TronTransferChallengeRequired = {
1036
+ required: true;
1037
+ challengeId: string;
1038
+ message: string;
1039
+ expiresAt: string;
1040
+ };
1041
+ type TronTransferChallengeRequest = {
1042
+ recipientUserId: string;
1043
+ amountCents: number;
1044
+ };
905
1045
  type TronConnectOnboardingResponse = {
906
1046
  url: string;
907
1047
  };
@@ -1068,6 +1208,7 @@ type ThreadLastMessagePreview = {
1068
1208
  url: string;
1069
1209
  count: number;
1070
1210
  } | null;
1211
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1071
1212
  sentAt: string;
1072
1213
  } | null;
1073
1214
  type MessageEnvelope = {
@@ -1079,6 +1220,20 @@ type MessageEnvelope = {
1079
1220
  iv: string;
1080
1221
  ct: string;
1081
1222
  } | null;
1223
+ type MessageTransactionTronTransfer = {
1224
+ kind: "tron_transfer";
1225
+ amountCents: number;
1226
+ recipientUserId: string;
1227
+ };
1228
+ type MessageTransactionNftTransfer = {
1229
+ kind: "nft_transfer";
1230
+ recipientUserId: string;
1231
+ collectionAddress: string;
1232
+ tokenId: string;
1233
+ amount: string;
1234
+ itemName: string | null;
1235
+ imageAssetId?: string | null;
1236
+ };
1082
1237
  type GroupThreadSummary = {
1083
1238
  kind: "group";
1084
1239
  id: string;
@@ -1125,6 +1280,7 @@ type MessageItem = {
1125
1280
  id: string;
1126
1281
  threadId: string;
1127
1282
  senderUserId: string;
1283
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1128
1284
  body: string;
1129
1285
  envelope?: MessageEnvelope;
1130
1286
  sentAt: string;
@@ -1336,11 +1492,45 @@ type InventoryHolding = {
1336
1492
  tokenId: string;
1337
1493
  amount: string;
1338
1494
  name: string | null;
1495
+ description: string | null;
1339
1496
  imageAssetId: string | null;
1340
1497
  bannerAssetId: string | null;
1341
1498
  devMetadata: {
1342
1499
  [key: string]: unknown;
1343
1500
  };
1501
+ appId: string | null;
1502
+ appName: string | null;
1503
+ appLogoUrl: string | null;
1504
+ };
1505
+ type InventoryPendingPermitListResponse = {
1506
+ permits: Array<InventoryPendingPermit>;
1507
+ };
1508
+ type InventoryPendingPermit = {
1509
+ id: string;
1510
+ appId: string;
1511
+ itemId: string;
1512
+ amount: string;
1513
+ priceCents: number | null;
1514
+ gasSponsored: boolean;
1515
+ environment: "development" | "production";
1516
+ createdAt: string;
1517
+ tokenId: string;
1518
+ name: string | null;
1519
+ description: string | null;
1520
+ imageAssetId: string | null;
1521
+ chain: string;
1522
+ collectionAddress: string;
1523
+ kind: "erc721" | "erc1155";
1524
+ };
1525
+ type InventoryPermitRedeemResult = {
1526
+ mint: MintRequestResult;
1527
+ charge: {
1528
+ currency: "tron";
1529
+ gasCents: number;
1530
+ priceCents: number;
1531
+ totalCents: number;
1532
+ gasPaidBy: "user" | "developer";
1533
+ };
1344
1534
  };
1345
1535
  type MintRequestResult = {
1346
1536
  mintRequestId: string;
@@ -1356,6 +1546,247 @@ type MintRequestInput = {
1356
1546
  tokenId?: string;
1357
1547
  amount?: string;
1358
1548
  };
1549
+ type InventoryCollectionListResponse = {
1550
+ collections: Array<InventoryCollectionSummary>;
1551
+ };
1552
+ type InventoryCollectionSummary = {
1553
+ id: string;
1554
+ chain: string;
1555
+ collectionAddress: string;
1556
+ kind: "erc721" | "erc1155";
1557
+ name: string | null;
1558
+ environment: "development" | "production";
1559
+ };
1560
+ type InventoryRegistrationQuote = {
1561
+ itemCount: number;
1562
+ baselineUsdCents: number;
1563
+ gasUsdCents: number;
1564
+ tron: {
1565
+ baselineCents: number;
1566
+ gasCents: number;
1567
+ totalCents: number;
1568
+ };
1569
+ eth: {
1570
+ baselineWei: string;
1571
+ gasWei: string;
1572
+ totalWei: string;
1573
+ };
1574
+ };
1575
+ type InventoryItemRegistrationInput = {
1576
+ collectionAddress: string;
1577
+ chain: string;
1578
+ items: Array<InventoryItemRegistrationSpec>;
1579
+ };
1580
+ type InventoryItemRegistrationSpec = {
1581
+ name?: string | null;
1582
+ description?: string | null;
1583
+ devMetadata?: {
1584
+ [key: string]: unknown;
1585
+ };
1586
+ supplyType?: InventorySupplyType;
1587
+ maxSupply?: string | null;
1588
+ active?: boolean;
1589
+ };
1590
+ type InventorySupplyType = "capped" | "flexible" | "unlimited";
1591
+ type InventoryItemRegistrationResult = {
1592
+ items: Array<InventoryItemRecord>;
1593
+ charge: {
1594
+ currency: "tron";
1595
+ amountCents: number;
1596
+ baselineCents: number;
1597
+ gasCents: number;
1598
+ addItemTxHash: string;
1599
+ };
1600
+ };
1601
+ type InventoryItemRecord = {
1602
+ id: string;
1603
+ collectionId: string;
1604
+ collectionAddress: string;
1605
+ chain: string;
1606
+ kind: "erc721" | "erc1155";
1607
+ tokenId: string;
1608
+ name: string | null;
1609
+ description: string | null;
1610
+ imageAssetId: string | null;
1611
+ bannerAssetId: string | null;
1612
+ devMetadata: {
1613
+ [key: string]: unknown;
1614
+ };
1615
+ supplyType: InventorySupplyType | null;
1616
+ maxSupply: string | null;
1617
+ active: boolean;
1618
+ };
1619
+ type InventoryItemListResponse = {
1620
+ items: Array<InventoryItemRecord>;
1621
+ };
1622
+ type InventoryMintPermitRecord = {
1623
+ id: string;
1624
+ appId: string;
1625
+ itemId: string;
1626
+ userId: string;
1627
+ amount: string;
1628
+ priceCents: number | null;
1629
+ gasSponsored: boolean;
1630
+ status: "pending" | "redeemed" | "revoked";
1631
+ createdAt: string;
1632
+ };
1633
+ type InventoryMintPermitCreateInput = {
1634
+ toUserId: string;
1635
+ amount?: string;
1636
+ priceCents?: number | null;
1637
+ gasSponsored?: boolean;
1638
+ };
1639
+ type InventoryItemHoldersResponse = {
1640
+ stats: InventoryItemStats;
1641
+ holders: Array<InventoryItemHolder>;
1642
+ };
1643
+ type InventoryItemStats = {
1644
+ holderCount: number;
1645
+ walletCount: number;
1646
+ totalHeld: string;
1647
+ };
1648
+ type InventoryItemHolder = {
1649
+ walletAddress: string;
1650
+ userId: string | null;
1651
+ amount: string;
1652
+ };
1653
+ type InventoryVaultPermitRecord = {
1654
+ id: string;
1655
+ appId: string;
1656
+ itemId: string;
1657
+ userId: string;
1658
+ direction: "vault_in" | "withdraw";
1659
+ lockKind: "vault" | "burn" | null;
1660
+ amount: string;
1661
+ gasSponsored: boolean;
1662
+ status: "pending" | "redeemed" | "revoked";
1663
+ custodyId: string | null;
1664
+ createdAt: string;
1665
+ };
1666
+ type InventoryVaultPermitCreateInput = {
1667
+ toUserId: string;
1668
+ lockKind: "vault" | "burn";
1669
+ amount?: string;
1670
+ gasSponsored?: boolean;
1671
+ };
1672
+ type InventoryWithdrawPermitCreateInput = {
1673
+ custodyId: string;
1674
+ };
1675
+ type InventoryPendingVaultPermitListResponse = {
1676
+ permits: Array<InventoryPendingVaultPermit>;
1677
+ };
1678
+ type InventoryPendingVaultPermit = {
1679
+ id: string;
1680
+ appId: string;
1681
+ itemId: string;
1682
+ direction: "vault_in" | "withdraw";
1683
+ lockKind: "vault" | "burn" | null;
1684
+ amount: string;
1685
+ gasSponsored: boolean;
1686
+ environment: "development" | "production";
1687
+ custodyId: string | null;
1688
+ createdAt: string;
1689
+ tokenId: string;
1690
+ name: string | null;
1691
+ description: string | null;
1692
+ imageAssetId: string | null;
1693
+ chain: string;
1694
+ collectionAddress: string;
1695
+ kind: "erc721" | "erc1155";
1696
+ };
1697
+ type InventorySignedVaultPermit = {
1698
+ permitId: string;
1699
+ direction: "vault_in" | "withdraw";
1700
+ vault: string;
1701
+ collection: string;
1702
+ user: string;
1703
+ tokenId: string;
1704
+ amount: string;
1705
+ lockKind: "vault" | "burn" | null;
1706
+ destination: string | null;
1707
+ deadline: number;
1708
+ signature: string;
1709
+ };
1710
+ type InventoryRelayedVaultQuoteResponse = {
1711
+ direction: "vault_in" | "withdraw";
1712
+ collection: string;
1713
+ vault: string;
1714
+ chainId: number;
1715
+ user: string;
1716
+ tokenId: string;
1717
+ amount: string;
1718
+ nonce: string | null;
1719
+ deadline: number;
1720
+ feeCents: number;
1721
+ gasWei: string;
1722
+ gasPaidBy: "developer" | "user";
1723
+ requiresUserSignature: boolean;
1724
+ };
1725
+ type InventoryRelayedVaultSubmitResponse = {
1726
+ ok: boolean;
1727
+ txHash: string;
1728
+ chargedCents: number;
1729
+ gasPaidBy: "developer" | "user";
1730
+ };
1731
+ type InventoryRelayedVaultSubmitRequest = {
1732
+ userSignature?: string;
1733
+ deadline?: number;
1734
+ };
1735
+ type InventoryNftTransferQuoteResponse = {
1736
+ collection: string;
1737
+ chainId: number;
1738
+ from: string;
1739
+ to: string;
1740
+ tokenId: string;
1741
+ amount: string;
1742
+ nonce: string;
1743
+ deadline: number;
1744
+ feeCents: number;
1745
+ gasWei: string;
1746
+ selfPayAvailable: boolean;
1747
+ };
1748
+ type InventoryNftTransferQuoteRequest = {
1749
+ toUserId: string;
1750
+ collection: string;
1751
+ tokenId: string;
1752
+ amount?: string;
1753
+ };
1754
+ type InventoryNftTransferResponse = {
1755
+ ok: boolean;
1756
+ txHash: string;
1757
+ chargedCents: number;
1758
+ };
1759
+ type InventoryNftTransferRequest = {
1760
+ toUserId: string;
1761
+ collection: string;
1762
+ tokenId: string;
1763
+ amount?: string;
1764
+ deadline: number;
1765
+ userSignature: string;
1766
+ threadId?: string;
1767
+ };
1768
+ type InventoryVaultCustodyListResponse = {
1769
+ custody: Array<InventoryVaultCustody>;
1770
+ };
1771
+ type InventoryVaultCustody = {
1772
+ id: string;
1773
+ collectionId: string;
1774
+ collectionAddress: string;
1775
+ chain: string;
1776
+ kind: "erc721" | "erc1155";
1777
+ tokenId: string;
1778
+ amount: string;
1779
+ lockKind: "vault" | "burn";
1780
+ vaultAddress: string;
1781
+ createdAt: string;
1782
+ name: string | null;
1783
+ description: string | null;
1784
+ imageAssetId: string | null;
1785
+ };
1786
+ type InventoryVaultForceWithdrawResponse = {
1787
+ ok: boolean;
1788
+ txHash: string;
1789
+ };
1359
1790
  type NotificationListResponse = {
1360
1791
  notifications: Array<NotificationItem>;
1361
1792
  unreadCount: number;
@@ -1451,6 +1882,9 @@ type FriendListItem = {
1451
1882
  onlineStatus: OnlineStatus;
1452
1883
  };
1453
1884
  type OnlineStatus = "online" | "offline";
1885
+ type AppFriendListResponse = {
1886
+ friends: Array<ThreadParticipant>;
1887
+ };
1454
1888
  type FriendRequestDecision = {
1455
1889
  decision: "accept" | "reject";
1456
1890
  };
@@ -1523,7 +1957,7 @@ type ProfileRecentReview = {
1523
1957
  appId: string;
1524
1958
  appName: string;
1525
1959
  appLogoUrl: string | null;
1526
- rating: number;
1960
+ recommended: boolean;
1527
1961
  body: string;
1528
1962
  createdAt: string;
1529
1963
  };
@@ -1580,6 +2014,7 @@ type CreateDeveloperAppChain = {
1580
2014
  };
1581
2015
  type UpdateDeveloperApp = {
1582
2016
  name?: DeveloperAppName;
2017
+ slug?: AppPageSlug | null;
1583
2018
  logoUrl?: string | null;
1584
2019
  testAccess?: "private" | "public";
1585
2020
  redirectUris?: Array<string>;
@@ -1828,6 +2263,7 @@ type DeveloperProductionRequestPayload = {
1828
2263
  type DeveloperAppItem = {
1829
2264
  id: string;
1830
2265
  name: DeveloperAppName;
2266
+ slug: AppPageSlug | null;
1831
2267
  logoUrl: string | null;
1832
2268
  environment: "development" | "production";
1833
2269
  productionApprovedAt: string | null;
@@ -1892,7 +2328,6 @@ type AppPageDraft = {
1892
2328
  pendingReview: boolean;
1893
2329
  };
1894
2330
  type UpdateAppPage = {
1895
- slug?: AppPageSlug | null;
1896
2331
  categories?: AppPageCategories;
1897
2332
  tagline?: AppPageTagline | null;
1898
2333
  bannerUrl?: string | null;
@@ -2438,6 +2873,12 @@ declare function listDevelopers(context: TransportContext, input: {
2438
2873
  readonly bearer: string;
2439
2874
  }): Promise<AdminDeveloperListResponse>;
2440
2875
  //#endregion
2876
+ //#region src/admin/inventory-vault.d.ts
2877
+ declare function forceWithdrawVaultCustody(context: TransportContext, input: {
2878
+ readonly bearer: string;
2879
+ readonly custodyId: string;
2880
+ }): Promise<InventoryVaultForceWithdrawResponse>;
2881
+ //#endregion
2441
2882
  //#region src/admin/payments.d.ts
2442
2883
  declare function getPlatformFees(context: TransportContext, input: {
2443
2884
  readonly bearer: string;
@@ -2600,6 +3041,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2600
3041
  readonly slug: string;
2601
3042
  readonly bearer: string;
2602
3043
  }): Promise<MyReviewResponse>;
3044
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
3045
+ readonly slug: string;
3046
+ readonly bearer: string;
3047
+ }): Promise<MyReviewReactionsResponse>;
3048
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
3049
+ readonly slug: string;
3050
+ readonly reviewId: string;
3051
+ readonly bearer: string;
3052
+ readonly reaction: SetReviewReactionRequest;
3053
+ }): Promise<SetReviewReactionResponse>;
3054
+ declare function tipGameReview(context: TransportContext, input: {
3055
+ readonly slug: string;
3056
+ readonly reviewId: string;
3057
+ readonly bearer: string;
3058
+ readonly tip: TipReviewRequest;
3059
+ readonly idempotencyKey?: string;
3060
+ }): Promise<TipReviewResponse>;
3061
+ declare function listGameReviewComments(context: TransportContext, input: {
3062
+ readonly slug: string;
3063
+ readonly reviewId: string;
3064
+ readonly bearer?: string;
3065
+ readonly limit?: number;
3066
+ readonly offset?: number;
3067
+ }): Promise<ReviewCommentListResponse>;
3068
+ declare function commentOnGameReview(context: TransportContext, input: {
3069
+ readonly slug: string;
3070
+ readonly reviewId: string;
3071
+ readonly bearer: string;
3072
+ readonly comment: CreateReviewCommentRequest;
3073
+ }): Promise<CreateReviewCommentResponse>;
3074
+ declare function deleteGameReviewComment(context: TransportContext, input: {
3075
+ readonly slug: string;
3076
+ readonly commentId: string;
3077
+ readonly bearer: string;
3078
+ }): Promise<DeleteReviewCommentResponse>;
2603
3079
  declare function replyToGameReview(context: TransportContext, input: {
2604
3080
  readonly appId: string;
2605
3081
  readonly reviewId: string;
@@ -2822,6 +3298,53 @@ declare function updateDeveloperAppContentReportStatus(context: TransportContext
2822
3298
  readonly status: "acknowledged" | "dismissed";
2823
3299
  }): Promise<AppContentReport>;
2824
3300
  //#endregion
3301
+ //#region src/developer/inventory.d.ts
3302
+ declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
3303
+ readonly bearer: string;
3304
+ readonly appId: string;
3305
+ readonly registration: InventoryItemRegistrationInput;
3306
+ }): Promise<InventoryRegistrationQuote>;
3307
+ declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
3308
+ readonly bearer: string;
3309
+ readonly appId: string;
3310
+ readonly registration: InventoryItemRegistrationInput;
3311
+ }): Promise<InventoryItemRegistrationResult>;
3312
+ declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
3313
+ readonly bearer: string;
3314
+ readonly appId: string;
3315
+ }): Promise<InventoryCollectionListResponse>;
3316
+ declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
3317
+ readonly bearer: string;
3318
+ readonly appId: string;
3319
+ }): Promise<InventoryItemListResponse>;
3320
+ declare function createDeveloperAppMintPermit(context: TransportContext, input: {
3321
+ readonly bearer: string;
3322
+ readonly appId: string;
3323
+ readonly itemId: string;
3324
+ readonly grant: InventoryMintPermitCreateInput;
3325
+ }): Promise<InventoryMintPermitRecord>;
3326
+ declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
3327
+ readonly bearer: string;
3328
+ readonly appId: string;
3329
+ readonly itemId: string;
3330
+ }): Promise<InventoryItemHoldersResponse>;
3331
+ declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
3332
+ readonly bearer: string;
3333
+ readonly appId: string;
3334
+ readonly itemId: string;
3335
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3336
+ readonly filename: string;
3337
+ readonly contentType: string;
3338
+ }): Promise<InventoryItemRecord>;
3339
+ declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
3340
+ readonly bearer: string;
3341
+ readonly appId: string;
3342
+ readonly itemId: string;
3343
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3344
+ readonly filename: string;
3345
+ readonly contentType: string;
3346
+ }): Promise<InventoryItemRecord>;
3347
+ //#endregion
2825
3348
  //#region src/developer/pages.d.ts
2826
3349
  declare function getDeveloperAppPage(context: TransportContext, input: {
2827
3350
  readonly bearer: string;
@@ -2946,6 +3469,20 @@ declare function uploadMultipart(context: TransportContext, input: {
2946
3469
  readonly contentType: string;
2947
3470
  }): Promise<unknown>;
2948
3471
  //#endregion
3472
+ //#region src/developer/vault.d.ts
3473
+ declare function createDeveloperVaultPermit(context: TransportContext, input: {
3474
+ readonly bearer: string;
3475
+ readonly appId: string;
3476
+ readonly itemId: string;
3477
+ readonly grant: InventoryVaultPermitCreateInput;
3478
+ }): Promise<InventoryVaultPermitRecord>;
3479
+ declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
3480
+ readonly bearer: string;
3481
+ readonly appId: string;
3482
+ readonly itemId: string;
3483
+ readonly grant: InventoryWithdrawPermitCreateInput;
3484
+ }): Promise<InventoryVaultPermitRecord>;
3485
+ //#endregion
2949
3486
  //#region src/inventory/list.d.ts
2950
3487
  declare function listInventory(context: TransportContext, input: {
2951
3488
  readonly bearer: string;
@@ -2954,12 +3491,55 @@ declare function listInventoryForApp(context: TransportContext, input: {
2954
3491
  readonly bearer: string;
2955
3492
  }): Promise<InventoryListResponse>;
2956
3493
  //#endregion
3494
+ //#region src/inventory/nft-transfer.d.ts
3495
+ declare function quoteNftTransfer(context: TransportContext, input: {
3496
+ readonly bearer: string;
3497
+ readonly body: InventoryNftTransferQuoteRequest;
3498
+ }): Promise<InventoryNftTransferQuoteResponse>;
3499
+ declare function executeNftTransfer(context: TransportContext, input: {
3500
+ readonly bearer: string;
3501
+ readonly body: InventoryNftTransferRequest;
3502
+ }): Promise<InventoryNftTransferResponse>;
3503
+ //#endregion
3504
+ //#region src/inventory/permits.d.ts
3505
+ declare function listInventoryMintPermits(context: TransportContext, input: {
3506
+ readonly bearer: string;
3507
+ }): Promise<InventoryPendingPermitListResponse>;
3508
+ declare function redeemInventoryMintPermit(context: TransportContext, input: {
3509
+ readonly bearer: string;
3510
+ readonly permitId: string;
3511
+ }): Promise<InventoryPermitRedeemResult>;
3512
+ //#endregion
2957
3513
  //#region src/inventory/request-mint.d.ts
2958
3514
  declare function requestMint(context: TransportContext, input: {
2959
3515
  readonly appBearer: string;
2960
3516
  readonly body: MintRequestInput;
2961
3517
  }): Promise<MintRequestResult>;
2962
3518
  //#endregion
3519
+ //#region src/inventory/vault.d.ts
3520
+ declare function listInventoryVaultPermits(context: TransportContext, input: {
3521
+ readonly bearer: string;
3522
+ }): Promise<InventoryPendingVaultPermitListResponse>;
3523
+ declare function signInventoryVaultPermit(context: TransportContext, input: {
3524
+ readonly bearer: string;
3525
+ readonly permitId: string;
3526
+ }): Promise<InventorySignedVaultPermit>;
3527
+ declare function quoteRelayedVaultPermit(context: TransportContext, input: {
3528
+ readonly bearer: string;
3529
+ readonly permitId: string;
3530
+ }): Promise<InventoryRelayedVaultQuoteResponse>;
3531
+ declare function submitRelayedVaultPermit(context: TransportContext, input: {
3532
+ readonly bearer: string;
3533
+ readonly permitId: string;
3534
+ readonly body: InventoryRelayedVaultSubmitRequest;
3535
+ }): Promise<InventoryRelayedVaultSubmitResponse>;
3536
+ declare function listInventoryVaulted(context: TransportContext, input: {
3537
+ readonly bearer: string;
3538
+ }): Promise<InventoryVaultCustodyListResponse>;
3539
+ declare function listOauthInventoryVaulted(context: TransportContext, input: {
3540
+ readonly bearer: string;
3541
+ }): Promise<InventoryVaultCustodyListResponse>;
3542
+ //#endregion
2963
3543
  //#region src/messaging/dm-key-backup.d.ts
2964
3544
  declare function getDmKeyBackupStatus(context: TransportContext, input: {
2965
3545
  readonly bearer: string;
@@ -3236,6 +3816,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3236
3816
  readonly bearer: string;
3237
3817
  readonly body: TronDepositRequest;
3238
3818
  }): Promise<TronDepositResponse>;
3819
+ declare function createTronTransfer(context: TransportContext, input: {
3820
+ readonly bearer: string;
3821
+ readonly body: TronTransferRequest;
3822
+ readonly idempotencyKey?: string;
3823
+ }): Promise<TronTransferResponse>;
3824
+ declare function getTronSecurity(context: TransportContext, input: {
3825
+ readonly bearer: string;
3826
+ }): Promise<TronSecuritySetting>;
3827
+ declare function setTronSecurity(context: TransportContext, input: {
3828
+ readonly bearer: string;
3829
+ readonly setting: TronSecuritySetting;
3830
+ }): Promise<TronSecuritySetting>;
3831
+ declare function createTronTransferChallenge(context: TransportContext, input: {
3832
+ readonly bearer: string;
3833
+ readonly body: TronTransferChallengeRequest;
3834
+ }): Promise<TronTransferChallengeResponse>;
3239
3835
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3240
3836
  readonly bearer: string;
3241
3837
  }): Promise<TronConnectOnboardingResponse>;
@@ -3372,6 +3968,10 @@ declare function sendFriendRequest(context: TransportContext, input: {
3372
3968
  readonly bearer: string;
3373
3969
  readonly userId: string;
3374
3970
  }): Promise<void>;
3971
+ declare function removeFriend(context: TransportContext, input: {
3972
+ readonly bearer: string;
3973
+ readonly userId: string;
3974
+ }): Promise<void>;
3375
3975
  declare function decideFriendRequest(context: TransportContext, input: {
3376
3976
  readonly bearer: string;
3377
3977
  readonly requestId: string;
@@ -3384,6 +3984,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3384
3984
  declare function listFriends(context: TransportContext, input: {
3385
3985
  readonly bearer: string;
3386
3986
  }): Promise<FriendListResponse>;
3987
+ declare function listFriendsForApp(context: TransportContext, input: {
3988
+ readonly bearer: string;
3989
+ }): Promise<AppFriendListResponse>;
3387
3990
  //#endregion
3388
3991
  //#region src/reads/socials.d.ts
3389
3992
  declare function listSocials(context: TransportContext, input: {
@@ -3675,4 +4278,4 @@ type CookieTokenStoreOptions = {
3675
4278
  };
3676
4279
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3677
4280
  //#endregion
3678
- 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 };
4281
+ 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, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, editMessage, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, 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, getTronSecurity, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, 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, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };