@metatrongg/sdk 0.8.0-dev.43c7d53 → 0.8.0-dev.4ac3e68

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.
@@ -91,7 +91,7 @@ type Username = string;
91
91
  type DisplayName = string | null;
92
92
  type Bio = string | null;
93
93
  type WebsiteUrl = string | null;
94
- type BannerVariant = "yellow" | "green" | "blue" | "white" | "black";
94
+ type BannerVariant = "yellow" | "green" | "blue" | "white" | "black" | "red";
95
95
  type AdminRole = "super-admin" | "admin" | "read-only" | null;
96
96
  type PresenceStatusMode = "auto" | "online" | "offline";
97
97
  type PlatformEnvironment = "development" | "production";
@@ -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;
@@ -378,6 +382,30 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
378
382
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
379
383
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
380
384
  type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
385
+ type PublicBipPage = {
386
+ appId: string;
387
+ slug: AppPageSlug;
388
+ appName: string;
389
+ appLogoUrl: string | null;
390
+ categories: AppPageCategories;
391
+ tagline: AppPageTagline;
392
+ bannerUrl: string | null;
393
+ discordUrl: string | null;
394
+ twitterUrl: string | null;
395
+ redditUrl: string | null;
396
+ telegramUrl: string | null;
397
+ gallery: AppPageGallery;
398
+ chapters: AppPageChapters;
399
+ links: AppPageLinks;
400
+ studio: PublicAppPageStudio;
401
+ platforms: AppPagePlatforms;
402
+ gameType: AppPageGameType;
403
+ ageRating: AppPageAgeRating;
404
+ languages: AppPageLanguages;
405
+ releaseStatus: AppPageReleaseStatus;
406
+ publishedAt: string;
407
+ updatedAt: string;
408
+ };
381
409
  type ReviewListResponse = {
382
410
  aggregate: ReviewAggregate;
383
411
  reviews: Array<Review>;
@@ -385,38 +413,49 @@ type ReviewListResponse = {
385
413
  hasMore: boolean;
386
414
  };
387
415
  type ReviewAggregate = {
388
- average: number | null;
389
416
  count: number;
390
- distribution: ReviewDistribution;
391
- };
392
- type ReviewDistribution = {
393
- 1: number;
394
- 2: number;
395
- 3: number;
396
- 4: number;
397
- 5: number;
417
+ recommendedCount: number;
418
+ recommendedPct: number | null;
419
+ summaryLabel: ReviewSummaryLabel;
398
420
  };
421
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
399
422
  type Review = {
400
423
  id: string;
401
- rating: ReviewRating;
424
+ recommended: ReviewRecommended;
402
425
  body: ReviewBody;
426
+ reactions: ReviewReactionCounts;
427
+ tippedCents: number;
428
+ commentCount: number;
403
429
  author: ReviewAuthor;
430
+ authorStats: ReviewerStats;
404
431
  developerReply: ReviewReply;
405
432
  createdAt: string;
406
433
  updatedAt: string;
407
434
  };
408
- type ReviewRating = number;
435
+ type ReviewRecommended = boolean;
409
436
  type ReviewBody = string;
437
+ type ReviewReactionCounts = {
438
+ helpful: number;
439
+ unhelpful: number;
440
+ funny: number;
441
+ };
410
442
  type ReviewAuthor = {
443
+ userId: string;
444
+ handle: string | null;
411
445
  name: string | null;
412
446
  avatarUrl: string | null;
413
447
  };
448
+ type ReviewerStats = {
449
+ playtimeSecondsThisGame: number;
450
+ gamesPlayed: number;
451
+ reviewsWritten: number;
452
+ };
414
453
  type ReviewReply = {
415
454
  body: ReviewReplyBody;
416
455
  repliedAt: string;
417
456
  } | null;
418
457
  type ReviewReplyBody = string;
419
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
458
+ type ReviewSort = "newest" | "oldest" | "helpful";
420
459
  type MyReviewResponse = {
421
460
  eligible: boolean;
422
461
  eligibleVia: ReviewEligibilityReason;
@@ -426,15 +465,67 @@ type MyReviewResponse = {
426
465
  type ReviewEligibilityReason = "payment" | "reward" | null;
427
466
  type OwnReview = {
428
467
  id: string;
429
- rating: ReviewRating;
468
+ recommended: ReviewRecommended;
430
469
  body: ReviewBody;
431
470
  createdAt: string;
432
471
  updatedAt: string;
433
472
  } | null;
434
473
  type UpsertReviewRequest = {
435
- rating: ReviewRating;
474
+ recommended: ReviewRecommended;
436
475
  body: ReviewBody;
437
476
  };
477
+ type MyReviewReactionsResponse = {
478
+ reactions: Array<MyReviewReaction>;
479
+ };
480
+ type MyReviewReaction = {
481
+ reviewId: string;
482
+ vote: ReviewVote;
483
+ funny: boolean;
484
+ };
485
+ type ReviewVote = "helpful" | "unhelpful" | null;
486
+ type SetReviewReactionResponse = {
487
+ reactions: ReviewReactionCounts;
488
+ vote: ReviewVote;
489
+ funny: boolean;
490
+ };
491
+ type SetReviewReactionRequest = {
492
+ vote: ReviewVote;
493
+ funny: boolean;
494
+ };
495
+ type TipReviewResponse = {
496
+ status: "completed";
497
+ amountCents: number;
498
+ balanceCents: number;
499
+ tippedCents: number;
500
+ };
501
+ type TipReviewRequest = {
502
+ amountCents: number;
503
+ note?: string;
504
+ challengeId?: string;
505
+ signature?: string;
506
+ };
507
+ type ReviewCommentListResponse = {
508
+ comments: Array<ReviewComment>;
509
+ total: number;
510
+ hasMore: boolean;
511
+ };
512
+ type ReviewComment = {
513
+ id: string;
514
+ body: ReviewCommentBody;
515
+ author: ReviewAuthor;
516
+ createdAt: string;
517
+ };
518
+ type ReviewCommentBody = string;
519
+ type CreateReviewCommentResponse = {
520
+ comment: ReviewComment;
521
+ commentCount: number;
522
+ };
523
+ type CreateReviewCommentRequest = {
524
+ body: ReviewCommentBody;
525
+ };
526
+ type DeleteReviewCommentResponse = {
527
+ commentCount: number;
528
+ };
438
529
  type ReviewReplyResponse = {
439
530
  developerReply: ReviewReply;
440
531
  };
@@ -539,8 +630,12 @@ type ActivityRow = ({
539
630
  } & ActivityRowTronPot) | ({
540
631
  kind: "tron_cashout";
541
632
  } & ActivityRowTronCashout) | ({
633
+ kind: "tron_transfer";
634
+ } & ActivityRowTronTransfer) | ({
542
635
  kind: "referral_earning";
543
- } & ActivityRowReferralEarning);
636
+ } & ActivityRowReferralEarning) | ({
637
+ kind: "nft_charge";
638
+ } & ActivityRowNftCharge);
544
639
  type ActivityRowPayment = {
545
640
  kind: "payment";
546
641
  groupId: string | null;
@@ -822,6 +917,20 @@ type ActivityRowTronCashout = {
822
917
  rejectionReason: string | null;
823
918
  settledAt: string | null;
824
919
  };
920
+ type ActivityRowTronTransfer = {
921
+ kind: "tron_transfer";
922
+ groupId: string | null;
923
+ id: string;
924
+ occurredAt: string;
925
+ role: "incoming" | "outgoing";
926
+ amountCents: number;
927
+ usdCents: number;
928
+ status: "settled";
929
+ counterpartyUserId: string | null;
930
+ counterpartyHandle: string | null;
931
+ counterpartyDisplayName: string | null;
932
+ note: string | null;
933
+ };
825
934
  type ActivityRowReferralEarning = {
826
935
  kind: "referral_earning";
827
936
  groupId: string | null;
@@ -838,6 +947,22 @@ type ActivityRowReferralEarning = {
838
947
  logIndex: number;
839
948
  usdCents: number | null;
840
949
  };
950
+ type ActivityRowNftCharge = {
951
+ kind: "nft_charge";
952
+ groupId: string | null;
953
+ id: string;
954
+ occurredAt: string;
955
+ role: "outgoing";
956
+ chargeKind: "registration" | "mint" | "transfer_gas";
957
+ amountCents: number;
958
+ usdCents: number;
959
+ status: "settled";
960
+ collectionAddress: string | null;
961
+ tokenId: string | null;
962
+ counterpartyUserId: string | null;
963
+ counterpartyHandle: string | null;
964
+ counterpartyDisplayName: string | null;
965
+ };
841
966
  type OutstandingResponse = {
842
967
  rows: Array<OutstandingByToken>;
843
968
  };
@@ -887,7 +1012,7 @@ type TronLedgerResponse = {
887
1012
  };
888
1013
  type TronLedgerEntry = {
889
1014
  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";
1015
+ 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
1016
  amountCents: number;
892
1017
  currency: string;
893
1018
  createdAt: string;
@@ -902,6 +1027,45 @@ type TronDepositResponse = {
902
1027
  type TronDepositRequest = {
903
1028
  amountCents: number;
904
1029
  };
1030
+ type TronTransferResponse = {
1031
+ status: "completed";
1032
+ amountCents: number;
1033
+ balanceCents: number;
1034
+ recipient: {
1035
+ userId: string;
1036
+ handle: string | null;
1037
+ displayName: string | null;
1038
+ };
1039
+ };
1040
+ type TronTransferRequest = {
1041
+ recipientUserId: string;
1042
+ amountCents: number;
1043
+ note?: string;
1044
+ challengeId?: string;
1045
+ signature?: string;
1046
+ threadId?: string;
1047
+ };
1048
+ type TronSecuritySetting = {
1049
+ requireSignature: boolean;
1050
+ };
1051
+ type TronTransferChallengeResponse = ({
1052
+ required: false;
1053
+ } & TronTransferChallengeNotRequired) | ({
1054
+ required: true;
1055
+ } & TronTransferChallengeRequired);
1056
+ type TronTransferChallengeNotRequired = {
1057
+ required: false;
1058
+ };
1059
+ type TronTransferChallengeRequired = {
1060
+ required: true;
1061
+ challengeId: string;
1062
+ message: string;
1063
+ expiresAt: string;
1064
+ };
1065
+ type TronTransferChallengeRequest = {
1066
+ recipientUserId: string;
1067
+ amountCents: number;
1068
+ };
905
1069
  type TronConnectOnboardingResponse = {
906
1070
  url: string;
907
1071
  };
@@ -1068,6 +1232,7 @@ type ThreadLastMessagePreview = {
1068
1232
  url: string;
1069
1233
  count: number;
1070
1234
  } | null;
1235
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1071
1236
  sentAt: string;
1072
1237
  } | null;
1073
1238
  type MessageEnvelope = {
@@ -1079,6 +1244,20 @@ type MessageEnvelope = {
1079
1244
  iv: string;
1080
1245
  ct: string;
1081
1246
  } | null;
1247
+ type MessageTransactionTronTransfer = {
1248
+ kind: "tron_transfer";
1249
+ amountCents: number;
1250
+ recipientUserId: string;
1251
+ };
1252
+ type MessageTransactionNftTransfer = {
1253
+ kind: "nft_transfer";
1254
+ recipientUserId: string;
1255
+ collectionAddress: string;
1256
+ tokenId: string;
1257
+ amount: string;
1258
+ itemName: string | null;
1259
+ imageAssetId?: string | null;
1260
+ };
1082
1261
  type GroupThreadSummary = {
1083
1262
  kind: "group";
1084
1263
  id: string;
@@ -1125,6 +1304,7 @@ type MessageItem = {
1125
1304
  id: string;
1126
1305
  threadId: string;
1127
1306
  senderUserId: string;
1307
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1128
1308
  body: string;
1129
1309
  envelope?: MessageEnvelope;
1130
1310
  sentAt: string;
@@ -1336,11 +1516,45 @@ type InventoryHolding = {
1336
1516
  tokenId: string;
1337
1517
  amount: string;
1338
1518
  name: string | null;
1519
+ description: string | null;
1339
1520
  imageAssetId: string | null;
1340
1521
  bannerAssetId: string | null;
1341
1522
  devMetadata: {
1342
1523
  [key: string]: unknown;
1343
1524
  };
1525
+ appId: string | null;
1526
+ appName: string | null;
1527
+ appLogoUrl: string | null;
1528
+ };
1529
+ type InventoryPendingPermitListResponse = {
1530
+ permits: Array<InventoryPendingPermit>;
1531
+ };
1532
+ type InventoryPendingPermit = {
1533
+ id: string;
1534
+ appId: string;
1535
+ itemId: string;
1536
+ amount: string;
1537
+ priceCents: number | null;
1538
+ gasSponsored: boolean;
1539
+ environment: "development" | "production";
1540
+ createdAt: string;
1541
+ tokenId: string;
1542
+ name: string | null;
1543
+ description: string | null;
1544
+ imageAssetId: string | null;
1545
+ chain: string;
1546
+ collectionAddress: string;
1547
+ kind: "erc721" | "erc1155";
1548
+ };
1549
+ type InventoryPermitRedeemResult = {
1550
+ mint: MintRequestResult;
1551
+ charge: {
1552
+ currency: "tron";
1553
+ gasCents: number;
1554
+ priceCents: number;
1555
+ totalCents: number;
1556
+ gasPaidBy: "user" | "developer";
1557
+ };
1344
1558
  };
1345
1559
  type MintRequestResult = {
1346
1560
  mintRequestId: string;
@@ -1356,6 +1570,247 @@ type MintRequestInput = {
1356
1570
  tokenId?: string;
1357
1571
  amount?: string;
1358
1572
  };
1573
+ type InventoryCollectionListResponse = {
1574
+ collections: Array<InventoryCollectionSummary>;
1575
+ };
1576
+ type InventoryCollectionSummary = {
1577
+ id: string;
1578
+ chain: string;
1579
+ collectionAddress: string;
1580
+ kind: "erc721" | "erc1155";
1581
+ name: string | null;
1582
+ environment: "development" | "production";
1583
+ };
1584
+ type InventoryRegistrationQuote = {
1585
+ itemCount: number;
1586
+ baselineUsdCents: number;
1587
+ gasUsdCents: number;
1588
+ tron: {
1589
+ baselineCents: number;
1590
+ gasCents: number;
1591
+ totalCents: number;
1592
+ };
1593
+ eth: {
1594
+ baselineWei: string;
1595
+ gasWei: string;
1596
+ totalWei: string;
1597
+ };
1598
+ };
1599
+ type InventoryItemRegistrationInput = {
1600
+ collectionAddress: string;
1601
+ chain: string;
1602
+ items: Array<InventoryItemRegistrationSpec>;
1603
+ };
1604
+ type InventoryItemRegistrationSpec = {
1605
+ name?: string | null;
1606
+ description?: string | null;
1607
+ devMetadata?: {
1608
+ [key: string]: unknown;
1609
+ };
1610
+ supplyType?: InventorySupplyType;
1611
+ maxSupply?: string | null;
1612
+ active?: boolean;
1613
+ };
1614
+ type InventorySupplyType = "capped" | "flexible" | "unlimited";
1615
+ type InventoryItemRegistrationResult = {
1616
+ items: Array<InventoryItemRecord>;
1617
+ charge: {
1618
+ currency: "tron";
1619
+ amountCents: number;
1620
+ baselineCents: number;
1621
+ gasCents: number;
1622
+ addItemTxHash: string;
1623
+ };
1624
+ };
1625
+ type InventoryItemRecord = {
1626
+ id: string;
1627
+ collectionId: string;
1628
+ collectionAddress: string;
1629
+ chain: string;
1630
+ kind: "erc721" | "erc1155";
1631
+ tokenId: string;
1632
+ name: string | null;
1633
+ description: string | null;
1634
+ imageAssetId: string | null;
1635
+ bannerAssetId: string | null;
1636
+ devMetadata: {
1637
+ [key: string]: unknown;
1638
+ };
1639
+ supplyType: InventorySupplyType | null;
1640
+ maxSupply: string | null;
1641
+ active: boolean;
1642
+ };
1643
+ type InventoryItemListResponse = {
1644
+ items: Array<InventoryItemRecord>;
1645
+ };
1646
+ type InventoryMintPermitRecord = {
1647
+ id: string;
1648
+ appId: string;
1649
+ itemId: string;
1650
+ userId: string;
1651
+ amount: string;
1652
+ priceCents: number | null;
1653
+ gasSponsored: boolean;
1654
+ status: "pending" | "redeemed" | "revoked";
1655
+ createdAt: string;
1656
+ };
1657
+ type InventoryMintPermitCreateInput = {
1658
+ toUserId: string;
1659
+ amount?: string;
1660
+ priceCents?: number | null;
1661
+ gasSponsored?: boolean;
1662
+ };
1663
+ type InventoryItemHoldersResponse = {
1664
+ stats: InventoryItemStats;
1665
+ holders: Array<InventoryItemHolder>;
1666
+ };
1667
+ type InventoryItemStats = {
1668
+ holderCount: number;
1669
+ walletCount: number;
1670
+ totalHeld: string;
1671
+ };
1672
+ type InventoryItemHolder = {
1673
+ walletAddress: string;
1674
+ userId: string | null;
1675
+ amount: string;
1676
+ };
1677
+ type InventoryVaultPermitRecord = {
1678
+ id: string;
1679
+ appId: string;
1680
+ itemId: string;
1681
+ userId: string;
1682
+ direction: "vault_in" | "withdraw";
1683
+ lockKind: "vault" | "burn" | null;
1684
+ amount: string;
1685
+ gasSponsored: boolean;
1686
+ status: "pending" | "redeemed" | "revoked";
1687
+ custodyId: string | null;
1688
+ createdAt: string;
1689
+ };
1690
+ type InventoryVaultPermitCreateInput = {
1691
+ toUserId: string;
1692
+ lockKind: "vault" | "burn";
1693
+ amount?: string;
1694
+ gasSponsored?: boolean;
1695
+ };
1696
+ type InventoryWithdrawPermitCreateInput = {
1697
+ custodyId: string;
1698
+ };
1699
+ type InventoryPendingVaultPermitListResponse = {
1700
+ permits: Array<InventoryPendingVaultPermit>;
1701
+ };
1702
+ type InventoryPendingVaultPermit = {
1703
+ id: string;
1704
+ appId: string;
1705
+ itemId: string;
1706
+ direction: "vault_in" | "withdraw";
1707
+ lockKind: "vault" | "burn" | null;
1708
+ amount: string;
1709
+ gasSponsored: boolean;
1710
+ environment: "development" | "production";
1711
+ custodyId: string | null;
1712
+ createdAt: string;
1713
+ tokenId: string;
1714
+ name: string | null;
1715
+ description: string | null;
1716
+ imageAssetId: string | null;
1717
+ chain: string;
1718
+ collectionAddress: string;
1719
+ kind: "erc721" | "erc1155";
1720
+ };
1721
+ type InventorySignedVaultPermit = {
1722
+ permitId: string;
1723
+ direction: "vault_in" | "withdraw";
1724
+ vault: string;
1725
+ collection: string;
1726
+ user: string;
1727
+ tokenId: string;
1728
+ amount: string;
1729
+ lockKind: "vault" | "burn" | null;
1730
+ destination: string | null;
1731
+ deadline: number;
1732
+ signature: string;
1733
+ };
1734
+ type InventoryRelayedVaultQuoteResponse = {
1735
+ direction: "vault_in" | "withdraw";
1736
+ collection: string;
1737
+ vault: string;
1738
+ chainId: number;
1739
+ user: string;
1740
+ tokenId: string;
1741
+ amount: string;
1742
+ nonce: string | null;
1743
+ deadline: number;
1744
+ feeCents: number;
1745
+ gasWei: string;
1746
+ gasPaidBy: "developer" | "user";
1747
+ requiresUserSignature: boolean;
1748
+ };
1749
+ type InventoryRelayedVaultSubmitResponse = {
1750
+ ok: boolean;
1751
+ txHash: string;
1752
+ chargedCents: number;
1753
+ gasPaidBy: "developer" | "user";
1754
+ };
1755
+ type InventoryRelayedVaultSubmitRequest = {
1756
+ userSignature?: string;
1757
+ deadline?: number;
1758
+ };
1759
+ type InventoryNftTransferQuoteResponse = {
1760
+ collection: string;
1761
+ chainId: number;
1762
+ from: string;
1763
+ to: string;
1764
+ tokenId: string;
1765
+ amount: string;
1766
+ nonce: string;
1767
+ deadline: number;
1768
+ feeCents: number;
1769
+ gasWei: string;
1770
+ selfPayAvailable: boolean;
1771
+ };
1772
+ type InventoryNftTransferQuoteRequest = {
1773
+ toUserId: string;
1774
+ collection: string;
1775
+ tokenId: string;
1776
+ amount?: string;
1777
+ };
1778
+ type InventoryNftTransferResponse = {
1779
+ ok: boolean;
1780
+ txHash: string;
1781
+ chargedCents: number;
1782
+ };
1783
+ type InventoryNftTransferRequest = {
1784
+ toUserId: string;
1785
+ collection: string;
1786
+ tokenId: string;
1787
+ amount?: string;
1788
+ deadline: number;
1789
+ userSignature: string;
1790
+ threadId?: string;
1791
+ };
1792
+ type InventoryVaultCustodyListResponse = {
1793
+ custody: Array<InventoryVaultCustody>;
1794
+ };
1795
+ type InventoryVaultCustody = {
1796
+ id: string;
1797
+ collectionId: string;
1798
+ collectionAddress: string;
1799
+ chain: string;
1800
+ kind: "erc721" | "erc1155";
1801
+ tokenId: string;
1802
+ amount: string;
1803
+ lockKind: "vault" | "burn";
1804
+ vaultAddress: string;
1805
+ createdAt: string;
1806
+ name: string | null;
1807
+ description: string | null;
1808
+ imageAssetId: string | null;
1809
+ };
1810
+ type InventoryVaultForceWithdrawResponse = {
1811
+ ok: boolean;
1812
+ txHash: string;
1813
+ };
1359
1814
  type NotificationListResponse = {
1360
1815
  notifications: Array<NotificationItem>;
1361
1816
  unreadCount: number;
@@ -1414,12 +1869,12 @@ type FriendAcceptedNotificationPayload = {
1414
1869
  type AppPageApprovedNotificationPayload = {
1415
1870
  appId: string;
1416
1871
  appName: string;
1417
- scope: "publish" | "changes";
1872
+ scope: "publish" | "changes" | "bip_publish";
1418
1873
  };
1419
1874
  type AppPageRejectedNotificationPayload = {
1420
1875
  appId: string;
1421
1876
  appName: string;
1422
- scope: "publish" | "changes";
1877
+ scope: "publish" | "changes" | "bip_publish";
1423
1878
  notes: string;
1424
1879
  };
1425
1880
  type AppParticipantInviteNotificationPayload = {
@@ -1451,6 +1906,9 @@ type FriendListItem = {
1451
1906
  onlineStatus: OnlineStatus;
1452
1907
  };
1453
1908
  type OnlineStatus = "online" | "offline";
1909
+ type AppFriendListResponse = {
1910
+ friends: Array<ThreadParticipant>;
1911
+ };
1454
1912
  type FriendRequestDecision = {
1455
1913
  decision: "accept" | "reject";
1456
1914
  };
@@ -1523,7 +1981,7 @@ type ProfileRecentReview = {
1523
1981
  appId: string;
1524
1982
  appName: string;
1525
1983
  appLogoUrl: string | null;
1526
- rating: number;
1984
+ recommended: boolean;
1527
1985
  body: string;
1528
1986
  createdAt: string;
1529
1987
  };
@@ -1580,6 +2038,7 @@ type CreateDeveloperAppChain = {
1580
2038
  };
1581
2039
  type UpdateDeveloperApp = {
1582
2040
  name?: DeveloperAppName;
2041
+ slug?: AppPageSlug | null;
1583
2042
  logoUrl?: string | null;
1584
2043
  testAccess?: "private" | "public";
1585
2044
  redirectUris?: Array<string>;
@@ -1828,6 +2287,7 @@ type DeveloperProductionRequestPayload = {
1828
2287
  type DeveloperAppItem = {
1829
2288
  id: string;
1830
2289
  name: DeveloperAppName;
2290
+ slug: AppPageSlug | null;
1831
2291
  logoUrl: string | null;
1832
2292
  environment: "development" | "production";
1833
2293
  productionApprovedAt: string | null;
@@ -1890,9 +2350,18 @@ type AppPageDraft = {
1890
2350
  hiddenAt: string | null;
1891
2351
  hiddenReasonPublic: string | null;
1892
2352
  pendingReview: boolean;
2353
+ bip: AppPageBipState;
2354
+ };
2355
+ type AppPageBipState = {
2356
+ enabled: boolean;
2357
+ status: "draft" | "pending_review" | "published" | "hidden";
2358
+ firstPublishedAt: string | null;
2359
+ reviewedAt: string | null;
2360
+ reviewNotes: string | null;
2361
+ hiddenAt: string | null;
2362
+ hiddenReasonPublic: string | null;
1893
2363
  };
1894
2364
  type UpdateAppPage = {
1895
- slug?: AppPageSlug | null;
1896
2365
  categories?: AppPageCategories;
1897
2366
  tagline?: AppPageTagline | null;
1898
2367
  bannerUrl?: string | null;
@@ -1915,6 +2384,9 @@ type UpdateAppPage = {
1915
2384
  type AppPageGalleryUploadResponse = {
1916
2385
  url: string;
1917
2386
  };
2387
+ type AppPageBipToggle = {
2388
+ enabled: boolean;
2389
+ };
1918
2390
  type AdminActivePlayersResponse = {
1919
2391
  players: Array<AdminActivePlayer>;
1920
2392
  total: number;
@@ -2053,6 +2525,10 @@ type AdminAppPageItem = {
2053
2525
  hiddenAt: string | null;
2054
2526
  hiddenReasonInternal: string | null;
2055
2527
  pendingChangesSubmittedAt: string | null;
2528
+ bipEnabled: boolean;
2529
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2530
+ bipFirstPublishedAt: string | null;
2531
+ bipHiddenAt: string | null;
2056
2532
  };
2057
2533
  type AdminAppPageStatusResponse = {
2058
2534
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2078,6 +2554,9 @@ type AdminAppPageDiffField = {
2078
2554
  from: string;
2079
2555
  to: string;
2080
2556
  };
2557
+ type AdminAppPageBipStatusResponse = {
2558
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2559
+ };
2081
2560
  type PlatformFeesResponse = {
2082
2561
  purchaseFeeBps: number;
2083
2562
  stakeFeeBps: number;
@@ -2367,7 +2846,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2367
2846
  //#region src/admin/app-pages.d.ts
2368
2847
  declare function listAppPages(context: TransportContext, input: {
2369
2848
  readonly bearer: string;
2370
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
2849
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2371
2850
  }): Promise<AdminAppPageListResponse>;
2372
2851
  declare function getAppPageChanges(context: TransportContext, input: {
2373
2852
  readonly bearer: string;
@@ -2392,6 +2871,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2392
2871
  readonly appId: string;
2393
2872
  readonly body: ReviewAppPage;
2394
2873
  }): Promise<AdminAppPageStatusResponse>;
2874
+ declare function reviewAppPageBip(context: TransportContext, input: {
2875
+ readonly bearer: string;
2876
+ readonly appId: string;
2877
+ readonly body: ReviewAppPage;
2878
+ }): Promise<AdminAppPageBipStatusResponse>;
2879
+ declare function hideAppPageBip(context: TransportContext, input: {
2880
+ readonly bearer: string;
2881
+ readonly appId: string;
2882
+ readonly body: HideAppPage;
2883
+ }): Promise<AdminAppPageBipStatusResponse>;
2884
+ declare function unhideAppPageBip(context: TransportContext, input: {
2885
+ readonly bearer: string;
2886
+ readonly appId: string;
2887
+ }): Promise<AdminAppPageBipStatusResponse>;
2395
2888
  //#endregion
2396
2889
  //#region src/admin/appeals.d.ts
2397
2890
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2438,6 +2931,12 @@ declare function listDevelopers(context: TransportContext, input: {
2438
2931
  readonly bearer: string;
2439
2932
  }): Promise<AdminDeveloperListResponse>;
2440
2933
  //#endregion
2934
+ //#region src/admin/inventory-vault.d.ts
2935
+ declare function forceWithdrawVaultCustody(context: TransportContext, input: {
2936
+ readonly bearer: string;
2937
+ readonly custodyId: string;
2938
+ }): Promise<InventoryVaultForceWithdrawResponse>;
2939
+ //#endregion
2441
2940
  //#region src/admin/payments.d.ts
2442
2941
  declare function getPlatformFees(context: TransportContext, input: {
2443
2942
  readonly bearer: string;
@@ -2556,6 +3055,19 @@ declare function getAppPage(context: TransportContext, input: {
2556
3055
  readonly slug: string;
2557
3056
  }): Promise<PublicAppPage>;
2558
3057
  //#endregion
3058
+ //#region src/catalog/build-in-public.d.ts
3059
+ declare function getBipDirectory(context: TransportContext, input: {
3060
+ readonly bearer?: string;
3061
+ readonly genre?: string;
3062
+ readonly q?: string;
3063
+ readonly before?: string;
3064
+ readonly limit?: number;
3065
+ }): Promise<LibraryListResponse>;
3066
+ declare function getBipPage(context: TransportContext, input: {
3067
+ readonly bearer?: string;
3068
+ readonly slug: string;
3069
+ }): Promise<PublicBipPage>;
3070
+ //#endregion
2559
3071
  //#region src/catalog/content-reports.d.ts
2560
3072
  declare function submitAppContentReport(context: TransportContext, input: {
2561
3073
  readonly appId: string;
@@ -2600,6 +3112,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2600
3112
  readonly slug: string;
2601
3113
  readonly bearer: string;
2602
3114
  }): Promise<MyReviewResponse>;
3115
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
3116
+ readonly slug: string;
3117
+ readonly bearer: string;
3118
+ }): Promise<MyReviewReactionsResponse>;
3119
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
3120
+ readonly slug: string;
3121
+ readonly reviewId: string;
3122
+ readonly bearer: string;
3123
+ readonly reaction: SetReviewReactionRequest;
3124
+ }): Promise<SetReviewReactionResponse>;
3125
+ declare function tipGameReview(context: TransportContext, input: {
3126
+ readonly slug: string;
3127
+ readonly reviewId: string;
3128
+ readonly bearer: string;
3129
+ readonly tip: TipReviewRequest;
3130
+ readonly idempotencyKey?: string;
3131
+ }): Promise<TipReviewResponse>;
3132
+ declare function listGameReviewComments(context: TransportContext, input: {
3133
+ readonly slug: string;
3134
+ readonly reviewId: string;
3135
+ readonly bearer?: string;
3136
+ readonly limit?: number;
3137
+ readonly offset?: number;
3138
+ }): Promise<ReviewCommentListResponse>;
3139
+ declare function commentOnGameReview(context: TransportContext, input: {
3140
+ readonly slug: string;
3141
+ readonly reviewId: string;
3142
+ readonly bearer: string;
3143
+ readonly comment: CreateReviewCommentRequest;
3144
+ }): Promise<CreateReviewCommentResponse>;
3145
+ declare function deleteGameReviewComment(context: TransportContext, input: {
3146
+ readonly slug: string;
3147
+ readonly commentId: string;
3148
+ readonly bearer: string;
3149
+ }): Promise<DeleteReviewCommentResponse>;
2603
3150
  declare function replyToGameReview(context: TransportContext, input: {
2604
3151
  readonly appId: string;
2605
3152
  readonly reviewId: string;
@@ -2822,6 +3369,53 @@ declare function updateDeveloperAppContentReportStatus(context: TransportContext
2822
3369
  readonly status: "acknowledged" | "dismissed";
2823
3370
  }): Promise<AppContentReport>;
2824
3371
  //#endregion
3372
+ //#region src/developer/inventory.d.ts
3373
+ declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
3374
+ readonly bearer: string;
3375
+ readonly appId: string;
3376
+ readonly registration: InventoryItemRegistrationInput;
3377
+ }): Promise<InventoryRegistrationQuote>;
3378
+ declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
3379
+ readonly bearer: string;
3380
+ readonly appId: string;
3381
+ readonly registration: InventoryItemRegistrationInput;
3382
+ }): Promise<InventoryItemRegistrationResult>;
3383
+ declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
3384
+ readonly bearer: string;
3385
+ readonly appId: string;
3386
+ }): Promise<InventoryCollectionListResponse>;
3387
+ declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
3388
+ readonly bearer: string;
3389
+ readonly appId: string;
3390
+ }): Promise<InventoryItemListResponse>;
3391
+ declare function createDeveloperAppMintPermit(context: TransportContext, input: {
3392
+ readonly bearer: string;
3393
+ readonly appId: string;
3394
+ readonly itemId: string;
3395
+ readonly grant: InventoryMintPermitCreateInput;
3396
+ }): Promise<InventoryMintPermitRecord>;
3397
+ declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
3398
+ readonly bearer: string;
3399
+ readonly appId: string;
3400
+ readonly itemId: string;
3401
+ }): Promise<InventoryItemHoldersResponse>;
3402
+ declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
3403
+ readonly bearer: string;
3404
+ readonly appId: string;
3405
+ readonly itemId: string;
3406
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3407
+ readonly filename: string;
3408
+ readonly contentType: string;
3409
+ }): Promise<InventoryItemRecord>;
3410
+ declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
3411
+ readonly bearer: string;
3412
+ readonly appId: string;
3413
+ readonly itemId: string;
3414
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3415
+ readonly filename: string;
3416
+ readonly contentType: string;
3417
+ }): Promise<InventoryItemRecord>;
3418
+ //#endregion
2825
3419
  //#region src/developer/pages.d.ts
2826
3420
  declare function getDeveloperAppPage(context: TransportContext, input: {
2827
3421
  readonly bearer: string;
@@ -2880,6 +3474,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
2880
3474
  readonly bearer: string;
2881
3475
  readonly appId: string;
2882
3476
  }): Promise<AppPageDraft>;
3477
+ declare function setAppPageBip(context: TransportContext, input: {
3478
+ readonly bearer: string;
3479
+ readonly appId: string;
3480
+ readonly body: AppPageBipToggle;
3481
+ }): Promise<AppPageDraft>;
3482
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3483
+ readonly bearer: string;
3484
+ readonly appId: string;
3485
+ }): Promise<AppPageDraft>;
3486
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3487
+ readonly bearer: string;
3488
+ readonly appId: string;
3489
+ }): Promise<AppPageDraft>;
2883
3490
  //#endregion
2884
3491
  //#region src/developer/participants.d.ts
2885
3492
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -2946,6 +3553,20 @@ declare function uploadMultipart(context: TransportContext, input: {
2946
3553
  readonly contentType: string;
2947
3554
  }): Promise<unknown>;
2948
3555
  //#endregion
3556
+ //#region src/developer/vault.d.ts
3557
+ declare function createDeveloperVaultPermit(context: TransportContext, input: {
3558
+ readonly bearer: string;
3559
+ readonly appId: string;
3560
+ readonly itemId: string;
3561
+ readonly grant: InventoryVaultPermitCreateInput;
3562
+ }): Promise<InventoryVaultPermitRecord>;
3563
+ declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
3564
+ readonly bearer: string;
3565
+ readonly appId: string;
3566
+ readonly itemId: string;
3567
+ readonly grant: InventoryWithdrawPermitCreateInput;
3568
+ }): Promise<InventoryVaultPermitRecord>;
3569
+ //#endregion
2949
3570
  //#region src/inventory/list.d.ts
2950
3571
  declare function listInventory(context: TransportContext, input: {
2951
3572
  readonly bearer: string;
@@ -2954,12 +3575,55 @@ declare function listInventoryForApp(context: TransportContext, input: {
2954
3575
  readonly bearer: string;
2955
3576
  }): Promise<InventoryListResponse>;
2956
3577
  //#endregion
3578
+ //#region src/inventory/nft-transfer.d.ts
3579
+ declare function quoteNftTransfer(context: TransportContext, input: {
3580
+ readonly bearer: string;
3581
+ readonly body: InventoryNftTransferQuoteRequest;
3582
+ }): Promise<InventoryNftTransferQuoteResponse>;
3583
+ declare function executeNftTransfer(context: TransportContext, input: {
3584
+ readonly bearer: string;
3585
+ readonly body: InventoryNftTransferRequest;
3586
+ }): Promise<InventoryNftTransferResponse>;
3587
+ //#endregion
3588
+ //#region src/inventory/permits.d.ts
3589
+ declare function listInventoryMintPermits(context: TransportContext, input: {
3590
+ readonly bearer: string;
3591
+ }): Promise<InventoryPendingPermitListResponse>;
3592
+ declare function redeemInventoryMintPermit(context: TransportContext, input: {
3593
+ readonly bearer: string;
3594
+ readonly permitId: string;
3595
+ }): Promise<InventoryPermitRedeemResult>;
3596
+ //#endregion
2957
3597
  //#region src/inventory/request-mint.d.ts
2958
3598
  declare function requestMint(context: TransportContext, input: {
2959
3599
  readonly appBearer: string;
2960
3600
  readonly body: MintRequestInput;
2961
3601
  }): Promise<MintRequestResult>;
2962
3602
  //#endregion
3603
+ //#region src/inventory/vault.d.ts
3604
+ declare function listInventoryVaultPermits(context: TransportContext, input: {
3605
+ readonly bearer: string;
3606
+ }): Promise<InventoryPendingVaultPermitListResponse>;
3607
+ declare function signInventoryVaultPermit(context: TransportContext, input: {
3608
+ readonly bearer: string;
3609
+ readonly permitId: string;
3610
+ }): Promise<InventorySignedVaultPermit>;
3611
+ declare function quoteRelayedVaultPermit(context: TransportContext, input: {
3612
+ readonly bearer: string;
3613
+ readonly permitId: string;
3614
+ }): Promise<InventoryRelayedVaultQuoteResponse>;
3615
+ declare function submitRelayedVaultPermit(context: TransportContext, input: {
3616
+ readonly bearer: string;
3617
+ readonly permitId: string;
3618
+ readonly body: InventoryRelayedVaultSubmitRequest;
3619
+ }): Promise<InventoryRelayedVaultSubmitResponse>;
3620
+ declare function listInventoryVaulted(context: TransportContext, input: {
3621
+ readonly bearer: string;
3622
+ }): Promise<InventoryVaultCustodyListResponse>;
3623
+ declare function listOauthInventoryVaulted(context: TransportContext, input: {
3624
+ readonly bearer: string;
3625
+ }): Promise<InventoryVaultCustodyListResponse>;
3626
+ //#endregion
2963
3627
  //#region src/messaging/dm-key-backup.d.ts
2964
3628
  declare function getDmKeyBackupStatus(context: TransportContext, input: {
2965
3629
  readonly bearer: string;
@@ -3236,6 +3900,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3236
3900
  readonly bearer: string;
3237
3901
  readonly body: TronDepositRequest;
3238
3902
  }): Promise<TronDepositResponse>;
3903
+ declare function createTronTransfer(context: TransportContext, input: {
3904
+ readonly bearer: string;
3905
+ readonly body: TronTransferRequest;
3906
+ readonly idempotencyKey?: string;
3907
+ }): Promise<TronTransferResponse>;
3908
+ declare function getTronSecurity(context: TransportContext, input: {
3909
+ readonly bearer: string;
3910
+ }): Promise<TronSecuritySetting>;
3911
+ declare function setTronSecurity(context: TransportContext, input: {
3912
+ readonly bearer: string;
3913
+ readonly setting: TronSecuritySetting;
3914
+ }): Promise<TronSecuritySetting>;
3915
+ declare function createTronTransferChallenge(context: TransportContext, input: {
3916
+ readonly bearer: string;
3917
+ readonly body: TronTransferChallengeRequest;
3918
+ }): Promise<TronTransferChallengeResponse>;
3239
3919
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3240
3920
  readonly bearer: string;
3241
3921
  }): Promise<TronConnectOnboardingResponse>;
@@ -3372,6 +4052,10 @@ declare function sendFriendRequest(context: TransportContext, input: {
3372
4052
  readonly bearer: string;
3373
4053
  readonly userId: string;
3374
4054
  }): Promise<void>;
4055
+ declare function removeFriend(context: TransportContext, input: {
4056
+ readonly bearer: string;
4057
+ readonly userId: string;
4058
+ }): Promise<void>;
3375
4059
  declare function decideFriendRequest(context: TransportContext, input: {
3376
4060
  readonly bearer: string;
3377
4061
  readonly requestId: string;
@@ -3384,6 +4068,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3384
4068
  declare function listFriends(context: TransportContext, input: {
3385
4069
  readonly bearer: string;
3386
4070
  }): Promise<FriendListResponse>;
4071
+ declare function listFriendsForApp(context: TransportContext, input: {
4072
+ readonly bearer: string;
4073
+ }): Promise<AppFriendListResponse>;
3387
4074
  //#endregion
3388
4075
  //#region src/reads/socials.d.ts
3389
4076
  declare function listSocials(context: TransportContext, input: {
@@ -3675,4 +4362,4 @@ type CookieTokenStoreOptions = {
3675
4362
  };
3676
4363
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3677
4364
  //#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 };
4365
+ 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, getBipDirectory, getBipPage, 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, hideAppPageBip, 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, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setAppPageBip, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, tipGameReview, toTokenSet, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, 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 };