@metatrongg/sdk 0.8.0-dev.bf445a4 → 0.8.0-dev.c6c5e97

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,7 +248,16 @@ type OauthPaymentIntentContext = {
246
248
  studioXHandle: string | null;
247
249
  };
248
250
  } | null;
251
+ environment: "development" | "production";
252
+ onramp?: {
253
+ kind: "bridge";
254
+ from: PaymentNetwork;
255
+ to: PaymentNetwork;
256
+ } | {
257
+ kind: "insufficient";
258
+ };
249
259
  };
260
+ type PaymentNetwork = "ethereum" | "base" | "solana";
250
261
  type OauthPaymentIntentSignResponse = {
251
262
  chain: string;
252
263
  chainId: number;
@@ -276,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
276
287
  type OauthPaymentIntentCompleteOffline = {
277
288
  method: "offline";
278
289
  };
290
+ type OauthPaymentIntentSolanaPrepareResponse = {
291
+ transaction: string;
292
+ payer: string;
293
+ };
294
+ type OauthPaymentIntentSolanaCompleteRequest = {
295
+ signedTransaction: string;
296
+ };
279
297
  type ListAppPaymentAuthorizationsResponse = {
280
298
  authorizations: Array<AppPaymentAuthorizationItem>;
281
299
  };
@@ -334,9 +352,16 @@ type PublicAppPage = {
334
352
  chapters: AppPageChapters;
335
353
  links: AppPageLinks;
336
354
  studio: PublicAppPageStudio;
355
+ platforms: AppPagePlatforms;
356
+ gameType: AppPageGameType;
357
+ ageRating: AppPageAgeRating;
358
+ languages: AppPageLanguages;
359
+ releaseStatus: AppPageReleaseStatus;
360
+ paymentsMode: AppPagePaymentsMode;
337
361
  oauthScopes: Array<string>;
338
362
  chains: Array<string>;
339
363
  publishedAt: string;
364
+ updatedAt: string;
340
365
  };
341
366
  type AppPageCategories = Array<"adventure" | "battle_royale" | "board" | "cards" | "casino" | "casual" | "fighting" | "idle" | "mmo" | "moba" | "platformer" | "prediction" | "puzzle" | "racing" | "rhythm" | "roguelike" | "rpg" | "rts" | "sandbox" | "shooter" | "simulation" | "sports" | "strategy" | "survival" | "tools" | "tower_defense" | "visual_novel" | "other">;
342
367
  type AppPageTagline = string;
@@ -359,12 +384,132 @@ type AppPageLink = {
359
384
  order: number;
360
385
  };
361
386
  type PublicAppPageStudio = {
387
+ ownerUserId: string | null;
362
388
  name: string | null;
363
389
  logoUrl: string | null;
364
390
  websiteUrl: string | null;
365
391
  xHandle: string | null;
366
392
  githubUrl: string | null;
367
393
  };
394
+ type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
395
+ type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
396
+ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
397
+ type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
398
+ type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
399
+ type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
400
+ type PublicBipPage = {
401
+ appId: string;
402
+ slug: AppPageSlug;
403
+ appName: string;
404
+ appLogoUrl: string | null;
405
+ categories: AppPageCategories;
406
+ tagline: AppPageTagline;
407
+ bannerUrl: string | null;
408
+ discordUrl: string | null;
409
+ twitterUrl: string | null;
410
+ redditUrl: string | null;
411
+ telegramUrl: string | null;
412
+ gallery: AppPageGallery;
413
+ chapters: AppPageChapters;
414
+ links: AppPageLinks;
415
+ studio: PublicAppPageStudio;
416
+ platforms: AppPagePlatforms;
417
+ gameType: AppPageGameType;
418
+ ageRating: AppPageAgeRating;
419
+ languages: AppPageLanguages;
420
+ releaseStatus: AppPageReleaseStatus;
421
+ publishedAt: string;
422
+ updatedAt: string;
423
+ };
424
+ type BipUpdateListResponse = {
425
+ updates: Array<BipUpdate>;
426
+ total: number;
427
+ hasMore: boolean;
428
+ };
429
+ type BipUpdate = {
430
+ id: string;
431
+ appId: string;
432
+ body: BipUpdateBody;
433
+ attachments: BipUpdateAttachments;
434
+ reactions: BipUpdateReactionCounts;
435
+ commentCount: number;
436
+ createdAt: string;
437
+ updatedAt: string;
438
+ };
439
+ type BipUpdateBody = string;
440
+ type BipUpdateAttachments = Array<BipUpdateAttachment>;
441
+ type BipUpdateAttachment = {
442
+ url: string;
443
+ kind: "image" | "video";
444
+ order: number;
445
+ };
446
+ type BipUpdateReactionCounts = {
447
+ up: number;
448
+ down: number;
449
+ };
450
+ type BipUpdateCommentListResponse = {
451
+ comments: Array<BipUpdateComment>;
452
+ total: number;
453
+ hasMore: boolean;
454
+ };
455
+ type BipUpdateComment = {
456
+ id: string;
457
+ body: BipUpdateCommentBody;
458
+ author: ReviewAuthor;
459
+ createdAt: string;
460
+ };
461
+ type BipUpdateCommentBody = string;
462
+ type ReviewAuthor = {
463
+ userId: string;
464
+ handle: string | null;
465
+ name: string | null;
466
+ avatarUrl: string | null;
467
+ };
468
+ type BipInterestCountResponse = {
469
+ interestCount: number;
470
+ };
471
+ type BipEngagementResponse = {
472
+ interested: boolean;
473
+ subscribed: boolean;
474
+ interestCount: number;
475
+ };
476
+ type MyBipUpdateReactionsResponse = {
477
+ reactions: Array<MyBipUpdateReaction>;
478
+ };
479
+ type MyBipUpdateReaction = {
480
+ updateId: string;
481
+ vote: "up" | "down";
482
+ };
483
+ type SetBipUpdateReactionResponse = {
484
+ reactions: BipUpdateReactionCounts;
485
+ vote: BipUpdateVote;
486
+ };
487
+ type BipUpdateVote = "up" | "down" | null;
488
+ type SetBipUpdateReactionRequest = {
489
+ vote: BipUpdateVote;
490
+ };
491
+ type CreateBipUpdateCommentResponse = {
492
+ comment: BipUpdateComment;
493
+ commentCount: number;
494
+ };
495
+ type DeleteBipUpdateCommentResponse = {
496
+ commentCount: number;
497
+ };
498
+ type CreateBipUpdateRequest = {
499
+ body: BipUpdateBody;
500
+ attachments?: BipUpdateAttachments;
501
+ };
502
+ type UpdateBipUpdateRequest = {
503
+ body?: BipUpdateBody;
504
+ attachments?: BipUpdateAttachments;
505
+ };
506
+ type DeleteBipUpdateResponse = {
507
+ deleted: true;
508
+ };
509
+ type BipUpdateMediaUploadResponse = {
510
+ url: string;
511
+ kind: "image" | "video";
512
+ };
368
513
  type ReviewListResponse = {
369
514
  aggregate: ReviewAggregate;
370
515
  reviews: Array<Review>;
@@ -372,38 +517,43 @@ type ReviewListResponse = {
372
517
  hasMore: boolean;
373
518
  };
374
519
  type ReviewAggregate = {
375
- average: number | null;
376
520
  count: number;
377
- distribution: ReviewDistribution;
378
- };
379
- type ReviewDistribution = {
380
- 1: number;
381
- 2: number;
382
- 3: number;
383
- 4: number;
384
- 5: number;
521
+ recommendedCount: number;
522
+ recommendedPct: number | null;
523
+ summaryLabel: ReviewSummaryLabel;
385
524
  };
525
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
386
526
  type Review = {
387
527
  id: string;
388
- rating: ReviewRating;
528
+ recommended: ReviewRecommended;
389
529
  body: ReviewBody;
530
+ reactions: ReviewReactionCounts;
531
+ tippedCents: number;
532
+ commentCount: number;
390
533
  author: ReviewAuthor;
534
+ authorStats: ReviewerStats;
391
535
  developerReply: ReviewReply;
392
536
  createdAt: string;
393
537
  updatedAt: string;
394
538
  };
395
- type ReviewRating = number;
539
+ type ReviewRecommended = boolean;
396
540
  type ReviewBody = string;
397
- type ReviewAuthor = {
398
- name: string | null;
399
- avatarUrl: string | null;
541
+ type ReviewReactionCounts = {
542
+ helpful: number;
543
+ unhelpful: number;
544
+ funny: number;
545
+ };
546
+ type ReviewerStats = {
547
+ playtimeSecondsThisGame: number;
548
+ gamesPlayed: number;
549
+ reviewsWritten: number;
400
550
  };
401
551
  type ReviewReply = {
402
552
  body: ReviewReplyBody;
403
553
  repliedAt: string;
404
554
  } | null;
405
555
  type ReviewReplyBody = string;
406
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
556
+ type ReviewSort = "newest" | "oldest" | "helpful";
407
557
  type MyReviewResponse = {
408
558
  eligible: boolean;
409
559
  eligibleVia: ReviewEligibilityReason;
@@ -413,15 +563,67 @@ type MyReviewResponse = {
413
563
  type ReviewEligibilityReason = "payment" | "reward" | null;
414
564
  type OwnReview = {
415
565
  id: string;
416
- rating: ReviewRating;
566
+ recommended: ReviewRecommended;
417
567
  body: ReviewBody;
418
568
  createdAt: string;
419
569
  updatedAt: string;
420
570
  } | null;
421
571
  type UpsertReviewRequest = {
422
- rating: ReviewRating;
572
+ recommended: ReviewRecommended;
423
573
  body: ReviewBody;
424
574
  };
575
+ type MyReviewReactionsResponse = {
576
+ reactions: Array<MyReviewReaction>;
577
+ };
578
+ type MyReviewReaction = {
579
+ reviewId: string;
580
+ vote: ReviewVote;
581
+ funny: boolean;
582
+ };
583
+ type ReviewVote = "helpful" | "unhelpful" | null;
584
+ type SetReviewReactionResponse = {
585
+ reactions: ReviewReactionCounts;
586
+ vote: ReviewVote;
587
+ funny: boolean;
588
+ };
589
+ type SetReviewReactionRequest = {
590
+ vote: ReviewVote;
591
+ funny: boolean;
592
+ };
593
+ type TipReviewResponse = {
594
+ status: "completed";
595
+ amountCents: number;
596
+ balanceCents: number;
597
+ tippedCents: number;
598
+ };
599
+ type TipReviewRequest = {
600
+ amountCents: number;
601
+ note?: string;
602
+ challengeId?: string;
603
+ signature?: string;
604
+ };
605
+ type ReviewCommentListResponse = {
606
+ comments: Array<ReviewComment>;
607
+ total: number;
608
+ hasMore: boolean;
609
+ };
610
+ type ReviewComment = {
611
+ id: string;
612
+ body: ReviewCommentBody;
613
+ author: ReviewAuthor;
614
+ createdAt: string;
615
+ };
616
+ type ReviewCommentBody = string;
617
+ type CreateReviewCommentResponse = {
618
+ comment: ReviewComment;
619
+ commentCount: number;
620
+ };
621
+ type CreateReviewCommentRequest = {
622
+ body: ReviewCommentBody;
623
+ };
624
+ type DeleteReviewCommentResponse = {
625
+ commentCount: number;
626
+ };
425
627
  type ReviewReplyResponse = {
426
628
  developerReply: ReviewReply;
427
629
  };
@@ -526,8 +728,12 @@ type ActivityRow = ({
526
728
  } & ActivityRowTronPot) | ({
527
729
  kind: "tron_cashout";
528
730
  } & ActivityRowTronCashout) | ({
731
+ kind: "tron_transfer";
732
+ } & ActivityRowTronTransfer) | ({
529
733
  kind: "referral_earning";
530
- } & ActivityRowReferralEarning);
734
+ } & ActivityRowReferralEarning) | ({
735
+ kind: "nft_charge";
736
+ } & ActivityRowNftCharge);
531
737
  type ActivityRowPayment = {
532
738
  kind: "payment";
533
739
  groupId: string | null;
@@ -773,6 +979,8 @@ type ActivityRowTronPot = {
773
979
  role: "incoming" | "outgoing";
774
980
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
775
981
  amountCents: number;
982
+ usdCents: number;
983
+ status: "settled";
776
984
  app: {
777
985
  id: string;
778
986
  name: string;
@@ -780,8 +988,16 @@ type ActivityRowTronPot = {
780
988
  slug: string | null;
781
989
  bannerUrl: string | null;
782
990
  } | null;
991
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
783
992
  metadata?: PaymentMetadata | null;
784
993
  };
994
+ type ActivityTronInvolvedUser = {
995
+ userId: string;
996
+ handle: string | null;
997
+ displayName: string | null;
998
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
999
+ amountCents: number;
1000
+ };
785
1001
  type ActivityRowTronCashout = {
786
1002
  kind: "tron_cashout";
787
1003
  groupId: string | null;
@@ -799,6 +1015,20 @@ type ActivityRowTronCashout = {
799
1015
  rejectionReason: string | null;
800
1016
  settledAt: string | null;
801
1017
  };
1018
+ type ActivityRowTronTransfer = {
1019
+ kind: "tron_transfer";
1020
+ groupId: string | null;
1021
+ id: string;
1022
+ occurredAt: string;
1023
+ role: "incoming" | "outgoing";
1024
+ amountCents: number;
1025
+ usdCents: number;
1026
+ status: "settled";
1027
+ counterpartyUserId: string | null;
1028
+ counterpartyHandle: string | null;
1029
+ counterpartyDisplayName: string | null;
1030
+ note: string | null;
1031
+ };
802
1032
  type ActivityRowReferralEarning = {
803
1033
  kind: "referral_earning";
804
1034
  groupId: string | null;
@@ -815,6 +1045,22 @@ type ActivityRowReferralEarning = {
815
1045
  logIndex: number;
816
1046
  usdCents: number | null;
817
1047
  };
1048
+ type ActivityRowNftCharge = {
1049
+ kind: "nft_charge";
1050
+ groupId: string | null;
1051
+ id: string;
1052
+ occurredAt: string;
1053
+ role: "outgoing";
1054
+ chargeKind: "registration" | "mint" | "transfer_gas";
1055
+ amountCents: number;
1056
+ usdCents: number;
1057
+ status: "settled";
1058
+ collectionAddress: string | null;
1059
+ tokenId: string | null;
1060
+ counterpartyUserId: string | null;
1061
+ counterpartyHandle: string | null;
1062
+ counterpartyDisplayName: string | null;
1063
+ };
818
1064
  type OutstandingResponse = {
819
1065
  rows: Array<OutstandingByToken>;
820
1066
  };
@@ -864,7 +1110,7 @@ type TronLedgerResponse = {
864
1110
  };
865
1111
  type TronLedgerEntry = {
866
1112
  id: string;
867
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
1113
+ 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";
868
1114
  amountCents: number;
869
1115
  currency: string;
870
1116
  createdAt: string;
@@ -879,6 +1125,45 @@ type TronDepositResponse = {
879
1125
  type TronDepositRequest = {
880
1126
  amountCents: number;
881
1127
  };
1128
+ type TronTransferResponse = {
1129
+ status: "completed";
1130
+ amountCents: number;
1131
+ balanceCents: number;
1132
+ recipient: {
1133
+ userId: string;
1134
+ handle: string | null;
1135
+ displayName: string | null;
1136
+ };
1137
+ };
1138
+ type TronTransferRequest = {
1139
+ recipientUserId: string;
1140
+ amountCents: number;
1141
+ note?: string;
1142
+ challengeId?: string;
1143
+ signature?: string;
1144
+ threadId?: string;
1145
+ };
1146
+ type TronSecuritySetting = {
1147
+ requireSignature: boolean;
1148
+ };
1149
+ type TronTransferChallengeResponse = ({
1150
+ required: false;
1151
+ } & TronTransferChallengeNotRequired) | ({
1152
+ required: true;
1153
+ } & TronTransferChallengeRequired);
1154
+ type TronTransferChallengeNotRequired = {
1155
+ required: false;
1156
+ };
1157
+ type TronTransferChallengeRequired = {
1158
+ required: true;
1159
+ challengeId: string;
1160
+ message: string;
1161
+ expiresAt: string;
1162
+ };
1163
+ type TronTransferChallengeRequest = {
1164
+ recipientUserId: string;
1165
+ amountCents: number;
1166
+ };
882
1167
  type TronConnectOnboardingResponse = {
883
1168
  url: string;
884
1169
  };
@@ -935,12 +1220,15 @@ type WalletListResponse = {
935
1220
  wallets: Array<WalletItem>;
936
1221
  };
937
1222
  type WalletChainList = Array<{
938
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1223
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
939
1224
  displayName: string;
940
- chainId: number;
1225
+ family: "evm" | "solana";
1226
+ nativeSymbol: string;
1227
+ chainId?: number;
941
1228
  }>;
942
1229
  type WalletItem = {
943
- address: string;
1230
+ address: string | string;
1231
+ family: "evm" | "solana";
944
1232
  label: WalletLabel;
945
1233
  kind: "personal" | "app";
946
1234
  app: WalletAppLink;
@@ -957,6 +1245,9 @@ type WalletBalances = {
957
1245
  "ethereum-mainnet"?: WalletChainBalance;
958
1246
  "base-mainnet"?: WalletChainBalance;
959
1247
  "ethereum-sepolia"?: WalletChainBalance;
1248
+ "base-sepolia"?: WalletChainBalance;
1249
+ "solana-mainnet"?: WalletChainBalance;
1250
+ "solana-devnet"?: WalletChainBalance;
960
1251
  };
961
1252
  type WalletChainBalance = {
962
1253
  native: string;
@@ -966,12 +1257,14 @@ type WalletDelegationStatus = {
966
1257
  mode: WalletDelegationMode;
967
1258
  caps: WalletDelegationCaps;
968
1259
  policyId: string | null;
1260
+ slippageBps: DelegationSlippageBps;
969
1261
  };
970
1262
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
971
1263
  type WalletDelegationCaps = {
972
1264
  native: string;
973
1265
  usdc: string;
974
1266
  } | null;
1267
+ type DelegationSlippageBps = number | null;
975
1268
  type WalletLabelUpdateResponse = {
976
1269
  address: string;
977
1270
  label: WalletLabel;
@@ -1045,6 +1338,7 @@ type ThreadLastMessagePreview = {
1045
1338
  url: string;
1046
1339
  count: number;
1047
1340
  } | null;
1341
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1048
1342
  sentAt: string;
1049
1343
  } | null;
1050
1344
  type MessageEnvelope = {
@@ -1056,6 +1350,20 @@ type MessageEnvelope = {
1056
1350
  iv: string;
1057
1351
  ct: string;
1058
1352
  } | null;
1353
+ type MessageTransactionTronTransfer = {
1354
+ kind: "tron_transfer";
1355
+ amountCents: number;
1356
+ recipientUserId: string;
1357
+ };
1358
+ type MessageTransactionNftTransfer = {
1359
+ kind: "nft_transfer";
1360
+ recipientUserId: string;
1361
+ collectionAddress: string;
1362
+ tokenId: string;
1363
+ amount: string;
1364
+ itemName: string | null;
1365
+ imageAssetId?: string | null;
1366
+ };
1059
1367
  type GroupThreadSummary = {
1060
1368
  kind: "group";
1061
1369
  id: string;
@@ -1102,6 +1410,7 @@ type MessageItem = {
1102
1410
  id: string;
1103
1411
  threadId: string;
1104
1412
  senderUserId: string;
1413
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1105
1414
  body: string;
1106
1415
  envelope?: MessageEnvelope;
1107
1416
  sentAt: string;
@@ -1313,11 +1622,45 @@ type InventoryHolding = {
1313
1622
  tokenId: string;
1314
1623
  amount: string;
1315
1624
  name: string | null;
1625
+ description: string | null;
1316
1626
  imageAssetId: string | null;
1317
1627
  bannerAssetId: string | null;
1318
1628
  devMetadata: {
1319
1629
  [key: string]: unknown;
1320
1630
  };
1631
+ appId: string | null;
1632
+ appName: string | null;
1633
+ appLogoUrl: string | null;
1634
+ };
1635
+ type InventoryPendingPermitListResponse = {
1636
+ permits: Array<InventoryPendingPermit>;
1637
+ };
1638
+ type InventoryPendingPermit = {
1639
+ id: string;
1640
+ appId: string;
1641
+ itemId: string;
1642
+ amount: string;
1643
+ priceCents: number | null;
1644
+ gasSponsored: boolean;
1645
+ environment: "development" | "production";
1646
+ createdAt: string;
1647
+ tokenId: string;
1648
+ name: string | null;
1649
+ description: string | null;
1650
+ imageAssetId: string | null;
1651
+ chain: string;
1652
+ collectionAddress: string;
1653
+ kind: "erc721" | "erc1155";
1654
+ };
1655
+ type InventoryPermitRedeemResult = {
1656
+ mint: MintRequestResult;
1657
+ charge: {
1658
+ currency: "tron";
1659
+ gasCents: number;
1660
+ priceCents: number;
1661
+ totalCents: number;
1662
+ gasPaidBy: "user" | "developer";
1663
+ };
1321
1664
  };
1322
1665
  type MintRequestResult = {
1323
1666
  mintRequestId: string;
@@ -1333,6 +1676,247 @@ type MintRequestInput = {
1333
1676
  tokenId?: string;
1334
1677
  amount?: string;
1335
1678
  };
1679
+ type InventoryCollectionListResponse = {
1680
+ collections: Array<InventoryCollectionSummary>;
1681
+ };
1682
+ type InventoryCollectionSummary = {
1683
+ id: string;
1684
+ chain: string;
1685
+ collectionAddress: string;
1686
+ kind: "erc721" | "erc1155";
1687
+ name: string | null;
1688
+ environment: "development" | "production";
1689
+ };
1690
+ type InventoryRegistrationQuote = {
1691
+ itemCount: number;
1692
+ baselineUsdCents: number;
1693
+ gasUsdCents: number;
1694
+ tron: {
1695
+ baselineCents: number;
1696
+ gasCents: number;
1697
+ totalCents: number;
1698
+ };
1699
+ eth: {
1700
+ baselineWei: string;
1701
+ gasWei: string;
1702
+ totalWei: string;
1703
+ };
1704
+ };
1705
+ type InventoryItemRegistrationInput = {
1706
+ collectionAddress: string;
1707
+ chain: string;
1708
+ items: Array<InventoryItemRegistrationSpec>;
1709
+ };
1710
+ type InventoryItemRegistrationSpec = {
1711
+ name?: string | null;
1712
+ description?: string | null;
1713
+ devMetadata?: {
1714
+ [key: string]: unknown;
1715
+ };
1716
+ supplyType?: InventorySupplyType;
1717
+ maxSupply?: string | null;
1718
+ active?: boolean;
1719
+ };
1720
+ type InventorySupplyType = "capped" | "flexible" | "unlimited";
1721
+ type InventoryItemRegistrationResult = {
1722
+ items: Array<InventoryItemRecord>;
1723
+ charge: {
1724
+ currency: "tron";
1725
+ amountCents: number;
1726
+ baselineCents: number;
1727
+ gasCents: number;
1728
+ addItemTxHash: string;
1729
+ };
1730
+ };
1731
+ type InventoryItemRecord = {
1732
+ id: string;
1733
+ collectionId: string;
1734
+ collectionAddress: string;
1735
+ chain: string;
1736
+ kind: "erc721" | "erc1155";
1737
+ tokenId: string;
1738
+ name: string | null;
1739
+ description: string | null;
1740
+ imageAssetId: string | null;
1741
+ bannerAssetId: string | null;
1742
+ devMetadata: {
1743
+ [key: string]: unknown;
1744
+ };
1745
+ supplyType: InventorySupplyType | null;
1746
+ maxSupply: string | null;
1747
+ active: boolean;
1748
+ };
1749
+ type InventoryItemListResponse = {
1750
+ items: Array<InventoryItemRecord>;
1751
+ };
1752
+ type InventoryMintPermitRecord = {
1753
+ id: string;
1754
+ appId: string;
1755
+ itemId: string;
1756
+ userId: string;
1757
+ amount: string;
1758
+ priceCents: number | null;
1759
+ gasSponsored: boolean;
1760
+ status: "pending" | "redeemed" | "revoked";
1761
+ createdAt: string;
1762
+ };
1763
+ type InventoryMintPermitCreateInput = {
1764
+ toUserId: string;
1765
+ amount?: string;
1766
+ priceCents?: number | null;
1767
+ gasSponsored?: boolean;
1768
+ };
1769
+ type InventoryItemHoldersResponse = {
1770
+ stats: InventoryItemStats;
1771
+ holders: Array<InventoryItemHolder>;
1772
+ };
1773
+ type InventoryItemStats = {
1774
+ holderCount: number;
1775
+ walletCount: number;
1776
+ totalHeld: string;
1777
+ };
1778
+ type InventoryItemHolder = {
1779
+ walletAddress: string;
1780
+ userId: string | null;
1781
+ amount: string;
1782
+ };
1783
+ type InventoryVaultPermitRecord = {
1784
+ id: string;
1785
+ appId: string;
1786
+ itemId: string;
1787
+ userId: string;
1788
+ direction: "vault_in" | "withdraw";
1789
+ lockKind: "vault" | "burn" | null;
1790
+ amount: string;
1791
+ gasSponsored: boolean;
1792
+ status: "pending" | "redeemed" | "revoked";
1793
+ custodyId: string | null;
1794
+ createdAt: string;
1795
+ };
1796
+ type InventoryVaultPermitCreateInput = {
1797
+ toUserId: string;
1798
+ lockKind: "vault" | "burn";
1799
+ amount?: string;
1800
+ gasSponsored?: boolean;
1801
+ };
1802
+ type InventoryWithdrawPermitCreateInput = {
1803
+ custodyId: string;
1804
+ };
1805
+ type InventoryPendingVaultPermitListResponse = {
1806
+ permits: Array<InventoryPendingVaultPermit>;
1807
+ };
1808
+ type InventoryPendingVaultPermit = {
1809
+ id: string;
1810
+ appId: string;
1811
+ itemId: string;
1812
+ direction: "vault_in" | "withdraw";
1813
+ lockKind: "vault" | "burn" | null;
1814
+ amount: string;
1815
+ gasSponsored: boolean;
1816
+ environment: "development" | "production";
1817
+ custodyId: string | null;
1818
+ createdAt: string;
1819
+ tokenId: string;
1820
+ name: string | null;
1821
+ description: string | null;
1822
+ imageAssetId: string | null;
1823
+ chain: string;
1824
+ collectionAddress: string;
1825
+ kind: "erc721" | "erc1155";
1826
+ };
1827
+ type InventorySignedVaultPermit = {
1828
+ permitId: string;
1829
+ direction: "vault_in" | "withdraw";
1830
+ vault: string;
1831
+ collection: string;
1832
+ user: string;
1833
+ tokenId: string;
1834
+ amount: string;
1835
+ lockKind: "vault" | "burn" | null;
1836
+ destination: string | null;
1837
+ deadline: number;
1838
+ signature: string;
1839
+ };
1840
+ type InventoryRelayedVaultQuoteResponse = {
1841
+ direction: "vault_in" | "withdraw";
1842
+ collection: string;
1843
+ vault: string;
1844
+ chainId: number;
1845
+ user: string;
1846
+ tokenId: string;
1847
+ amount: string;
1848
+ nonce: string | null;
1849
+ deadline: number;
1850
+ feeCents: number;
1851
+ gasWei: string;
1852
+ gasPaidBy: "developer" | "user";
1853
+ requiresUserSignature: boolean;
1854
+ };
1855
+ type InventoryRelayedVaultSubmitResponse = {
1856
+ ok: boolean;
1857
+ txHash: string;
1858
+ chargedCents: number;
1859
+ gasPaidBy: "developer" | "user";
1860
+ };
1861
+ type InventoryRelayedVaultSubmitRequest = {
1862
+ userSignature?: string;
1863
+ deadline?: number;
1864
+ };
1865
+ type InventoryNftTransferQuoteResponse = {
1866
+ collection: string;
1867
+ chainId: number;
1868
+ from: string;
1869
+ to: string;
1870
+ tokenId: string;
1871
+ amount: string;
1872
+ nonce: string;
1873
+ deadline: number;
1874
+ feeCents: number;
1875
+ gasWei: string;
1876
+ selfPayAvailable: boolean;
1877
+ };
1878
+ type InventoryNftTransferQuoteRequest = {
1879
+ toUserId: string;
1880
+ collection: string;
1881
+ tokenId: string;
1882
+ amount?: string;
1883
+ };
1884
+ type InventoryNftTransferResponse = {
1885
+ ok: boolean;
1886
+ txHash: string;
1887
+ chargedCents: number;
1888
+ };
1889
+ type InventoryNftTransferRequest = {
1890
+ toUserId: string;
1891
+ collection: string;
1892
+ tokenId: string;
1893
+ amount?: string;
1894
+ deadline: number;
1895
+ userSignature: string;
1896
+ threadId?: string;
1897
+ };
1898
+ type InventoryVaultCustodyListResponse = {
1899
+ custody: Array<InventoryVaultCustody>;
1900
+ };
1901
+ type InventoryVaultCustody = {
1902
+ id: string;
1903
+ collectionId: string;
1904
+ collectionAddress: string;
1905
+ chain: string;
1906
+ kind: "erc721" | "erc1155";
1907
+ tokenId: string;
1908
+ amount: string;
1909
+ lockKind: "vault" | "burn";
1910
+ vaultAddress: string;
1911
+ createdAt: string;
1912
+ name: string | null;
1913
+ description: string | null;
1914
+ imageAssetId: string | null;
1915
+ };
1916
+ type InventoryVaultForceWithdrawResponse = {
1917
+ ok: boolean;
1918
+ txHash: string;
1919
+ };
1336
1920
  type NotificationListResponse = {
1337
1921
  notifications: Array<NotificationItem>;
1338
1922
  unreadCount: number;
@@ -1361,6 +1945,18 @@ type NotificationItem = {
1361
1945
  payload: AppPageRejectedNotificationPayload;
1362
1946
  read: boolean;
1363
1947
  createdAt: string;
1948
+ } | {
1949
+ id: string;
1950
+ kind: "bip_update_published";
1951
+ payload: BipUpdatePublishedNotificationPayload;
1952
+ read: boolean;
1953
+ createdAt: string;
1954
+ } | {
1955
+ id: string;
1956
+ kind: "bip_now_playable";
1957
+ payload: BipNowPlayableNotificationPayload;
1958
+ read: boolean;
1959
+ createdAt: string;
1364
1960
  } | {
1365
1961
  id: string;
1366
1962
  kind: "app_participant_invite";
@@ -1391,14 +1987,25 @@ type FriendAcceptedNotificationPayload = {
1391
1987
  type AppPageApprovedNotificationPayload = {
1392
1988
  appId: string;
1393
1989
  appName: string;
1394
- scope: "publish" | "changes";
1990
+ scope: "publish" | "changes" | "bip_publish";
1395
1991
  };
1396
1992
  type AppPageRejectedNotificationPayload = {
1397
1993
  appId: string;
1398
1994
  appName: string;
1399
- scope: "publish" | "changes";
1995
+ scope: "publish" | "changes" | "bip_publish";
1400
1996
  notes: string;
1401
1997
  };
1998
+ type BipUpdatePublishedNotificationPayload = {
1999
+ appId: string;
2000
+ appName: string;
2001
+ appSlug: string | null;
2002
+ updateId: string;
2003
+ };
2004
+ type BipNowPlayableNotificationPayload = {
2005
+ appId: string;
2006
+ appName: string;
2007
+ appSlug: string | null;
2008
+ };
1402
2009
  type AppParticipantInviteNotificationPayload = {
1403
2010
  appId: string;
1404
2011
  appName: string;
@@ -1428,6 +2035,9 @@ type FriendListItem = {
1428
2035
  onlineStatus: OnlineStatus;
1429
2036
  };
1430
2037
  type OnlineStatus = "online" | "offline";
2038
+ type AppFriendListResponse = {
2039
+ friends: Array<ThreadParticipant>;
2040
+ };
1431
2041
  type FriendRequestDecision = {
1432
2042
  decision: "accept" | "reject";
1433
2043
  };
@@ -1500,7 +2110,7 @@ type ProfileRecentReview = {
1500
2110
  appId: string;
1501
2111
  appName: string;
1502
2112
  appLogoUrl: string | null;
1503
- rating: number;
2113
+ recommended: boolean;
1504
2114
  body: string;
1505
2115
  createdAt: string;
1506
2116
  };
@@ -1557,17 +2167,20 @@ type CreateDeveloperAppChain = {
1557
2167
  };
1558
2168
  type UpdateDeveloperApp = {
1559
2169
  name?: DeveloperAppName;
2170
+ slug?: AppPageSlug | null;
1560
2171
  logoUrl?: string | null;
1561
2172
  testAccess?: "private" | "public";
1562
2173
  redirectUris?: Array<string>;
1563
2174
  embedOrigins?: Array<EmbedOrigin>;
1564
2175
  acceptedCurrencies?: AcceptedCurrencies;
2176
+ acceptedNetworks?: AcceptedNetworks;
1565
2177
  paymentStatusWebhookUrl?: string | null;
1566
2178
  paymentStatusWebhookUrlTest?: string | null;
1567
2179
  };
1568
2180
  type EmbedOrigin = string;
1569
2181
  type AcceptedCurrencies = Array<PlatformCurrency>;
1570
2182
  type PlatformCurrency = "eth" | "tron";
2183
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
1571
2184
  type DeveloperLogoUploadResponse = {
1572
2185
  logoUrl: string | null;
1573
2186
  };
@@ -1805,6 +2418,7 @@ type DeveloperProductionRequestPayload = {
1805
2418
  type DeveloperAppItem = {
1806
2419
  id: string;
1807
2420
  name: DeveloperAppName;
2421
+ slug: AppPageSlug | null;
1808
2422
  logoUrl: string | null;
1809
2423
  environment: "development" | "production";
1810
2424
  productionApprovedAt: string | null;
@@ -1813,6 +2427,7 @@ type DeveloperAppItem = {
1813
2427
  redirectUris: Array<string>;
1814
2428
  embedOrigins: Array<EmbedOrigin>;
1815
2429
  acceptedCurrencies: AcceptedCurrencies;
2430
+ acceptedNetworks: AcceptedNetworks;
1816
2431
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
1817
2432
  keys: Array<DeveloperAppKeyItem>;
1818
2433
  pendingProductionRequestId: string | null;
@@ -1856,15 +2471,29 @@ type AppPageDraft = {
1856
2471
  gallery: AppPageGallery;
1857
2472
  chapters: AppPageChapters;
1858
2473
  links: AppPageLinks;
2474
+ platforms: AppPagePlatforms;
2475
+ gameType: AppPageGameType;
2476
+ ageRating: AppPageAgeRating;
2477
+ languages: AppPageLanguages;
2478
+ releaseStatus: AppPageReleaseStatus;
1859
2479
  firstPublishedAt: string | null;
1860
2480
  reviewedAt: string | null;
1861
2481
  reviewNotes: string | null;
1862
2482
  hiddenAt: string | null;
1863
2483
  hiddenReasonPublic: string | null;
1864
2484
  pendingReview: boolean;
2485
+ bip: AppPageBipState;
2486
+ };
2487
+ type AppPageBipState = {
2488
+ enabled: boolean;
2489
+ status: "draft" | "pending_review" | "published" | "hidden";
2490
+ firstPublishedAt: string | null;
2491
+ reviewedAt: string | null;
2492
+ reviewNotes: string | null;
2493
+ hiddenAt: string | null;
2494
+ hiddenReasonPublic: string | null;
1865
2495
  };
1866
2496
  type UpdateAppPage = {
1867
- slug?: AppPageSlug | null;
1868
2497
  categories?: AppPageCategories;
1869
2498
  tagline?: AppPageTagline | null;
1870
2499
  bannerUrl?: string | null;
@@ -1878,10 +2507,18 @@ type UpdateAppPage = {
1878
2507
  gallery?: AppPageGallery;
1879
2508
  chapters?: AppPageChapters;
1880
2509
  links?: AppPageLinks;
2510
+ platforms?: AppPagePlatforms;
2511
+ gameType?: AppPageGameType;
2512
+ ageRating?: AppPageAgeRating;
2513
+ languages?: AppPageLanguages;
2514
+ releaseStatus?: AppPageReleaseStatus;
1881
2515
  };
1882
2516
  type AppPageGalleryUploadResponse = {
1883
2517
  url: string;
1884
2518
  };
2519
+ type AppPageBipToggle = {
2520
+ enabled: boolean;
2521
+ };
1885
2522
  type AdminActivePlayersResponse = {
1886
2523
  players: Array<AdminActivePlayer>;
1887
2524
  total: number;
@@ -2020,6 +2657,11 @@ type AdminAppPageItem = {
2020
2657
  hiddenAt: string | null;
2021
2658
  hiddenReasonInternal: string | null;
2022
2659
  pendingChangesSubmittedAt: string | null;
2660
+ bipEnabled: boolean;
2661
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2662
+ bipFirstPublishedAt: string | null;
2663
+ bipHiddenAt: string | null;
2664
+ openReportCount: number;
2023
2665
  };
2024
2666
  type AdminAppPageStatusResponse = {
2025
2667
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2045,6 +2687,25 @@ type AdminAppPageDiffField = {
2045
2687
  from: string;
2046
2688
  to: string;
2047
2689
  };
2690
+ type AdminAppPageBipStatusResponse = {
2691
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2692
+ };
2693
+ type AdminAppContentReportListResponse = {
2694
+ reports: Array<AdminAppContentReportItem>;
2695
+ total: number;
2696
+ hasMore: boolean;
2697
+ };
2698
+ type AdminAppContentReportItem = {
2699
+ id: string;
2700
+ category: AppContentReportCategory;
2701
+ details: string | null;
2702
+ status: AppContentReportStatus;
2703
+ acknowledgedAt: string | null;
2704
+ createdAt: string;
2705
+ appId: string;
2706
+ appName: string;
2707
+ appSlug: string | null;
2708
+ };
2048
2709
  type PlatformFeesResponse = {
2049
2710
  purchaseFeeBps: number;
2050
2711
  stakeFeeBps: number;
@@ -2225,6 +2886,13 @@ type AppealResolveRequest = {
2225
2886
  decision: "refund" | "dismiss";
2226
2887
  notes?: string;
2227
2888
  };
2889
+ type PaymentRatesResponse = {
2890
+ asOf: string;
2891
+ ethUsd: number | null;
2892
+ solUsd: number | null;
2893
+ solLamportsPerCent: number | null;
2894
+ tronUsdPerToken: number;
2895
+ };
2228
2896
  type AppealFileResponse = {
2229
2897
  appealId: string;
2230
2898
  paymentId: string;
@@ -2334,7 +3002,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2334
3002
  //#region src/admin/app-pages.d.ts
2335
3003
  declare function listAppPages(context: TransportContext, input: {
2336
3004
  readonly bearer: string;
2337
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3005
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2338
3006
  }): Promise<AdminAppPageListResponse>;
2339
3007
  declare function getAppPageChanges(context: TransportContext, input: {
2340
3008
  readonly bearer: string;
@@ -2359,6 +3027,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2359
3027
  readonly appId: string;
2360
3028
  readonly body: ReviewAppPage;
2361
3029
  }): Promise<AdminAppPageStatusResponse>;
3030
+ declare function reviewAppPageBip(context: TransportContext, input: {
3031
+ readonly bearer: string;
3032
+ readonly appId: string;
3033
+ readonly body: ReviewAppPage;
3034
+ }): Promise<AdminAppPageBipStatusResponse>;
3035
+ declare function hideAppPageBip(context: TransportContext, input: {
3036
+ readonly bearer: string;
3037
+ readonly appId: string;
3038
+ readonly body: HideAppPage;
3039
+ }): Promise<AdminAppPageBipStatusResponse>;
3040
+ declare function unhideAppPageBip(context: TransportContext, input: {
3041
+ readonly bearer: string;
3042
+ readonly appId: string;
3043
+ }): Promise<AdminAppPageBipStatusResponse>;
2362
3044
  //#endregion
2363
3045
  //#region src/admin/appeals.d.ts
2364
3046
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2390,6 +3072,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2390
3072
  readonly body: AppealResolveRequest;
2391
3073
  }): Promise<AppealResolveSignedResponse>;
2392
3074
  //#endregion
3075
+ //#region src/admin/content-reports.d.ts
3076
+ declare function listAdminContentReports(context: TransportContext, input: {
3077
+ readonly bearer: string;
3078
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3079
+ readonly limit?: number;
3080
+ readonly offset?: number;
3081
+ }): Promise<AdminAppContentReportListResponse>;
3082
+ declare function triageAdminContentReport(context: TransportContext, input: {
3083
+ readonly bearer: string;
3084
+ readonly reportId: string;
3085
+ readonly status: "acknowledged" | "dismissed";
3086
+ }): Promise<AppContentReport>;
3087
+ //#endregion
2393
3088
  //#region src/admin/developers.d.ts
2394
3089
  declare function listDeveloperRequests(context: TransportContext, input: {
2395
3090
  readonly bearer: string;
@@ -2405,6 +3100,12 @@ declare function listDevelopers(context: TransportContext, input: {
2405
3100
  readonly bearer: string;
2406
3101
  }): Promise<AdminDeveloperListResponse>;
2407
3102
  //#endregion
3103
+ //#region src/admin/inventory-vault.d.ts
3104
+ declare function forceWithdrawVaultCustody(context: TransportContext, input: {
3105
+ readonly bearer: string;
3106
+ readonly custodyId: string;
3107
+ }): Promise<InventoryVaultForceWithdrawResponse>;
3108
+ //#endregion
2408
3109
  //#region src/admin/payments.d.ts
2409
3110
  declare function getPlatformFees(context: TransportContext, input: {
2410
3111
  readonly bearer: string;
@@ -2523,6 +3224,102 @@ declare function getAppPage(context: TransportContext, input: {
2523
3224
  readonly slug: string;
2524
3225
  }): Promise<PublicAppPage>;
2525
3226
  //#endregion
3227
+ //#region src/catalog/bip-updates.d.ts
3228
+ declare function listBipUpdates(context: TransportContext, input: {
3229
+ readonly bearer?: string;
3230
+ readonly slug: string;
3231
+ readonly limit?: number;
3232
+ readonly offset?: number;
3233
+ }): Promise<BipUpdateListResponse>;
3234
+ declare function listBipUpdateComments(context: TransportContext, input: {
3235
+ readonly bearer?: string;
3236
+ readonly slug: string;
3237
+ readonly updateId: string;
3238
+ readonly limit?: number;
3239
+ readonly offset?: number;
3240
+ }): Promise<BipUpdateCommentListResponse>;
3241
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3242
+ readonly bearer: string;
3243
+ readonly slug: string;
3244
+ }): Promise<MyBipUpdateReactionsResponse>;
3245
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3246
+ readonly bearer: string;
3247
+ readonly slug: string;
3248
+ readonly updateId: string;
3249
+ readonly body: SetBipUpdateReactionRequest;
3250
+ }): Promise<SetBipUpdateReactionResponse>;
3251
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3252
+ readonly bearer: string;
3253
+ readonly slug: string;
3254
+ readonly updateId: string;
3255
+ readonly body: string;
3256
+ }): Promise<CreateBipUpdateCommentResponse>;
3257
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3258
+ readonly bearer: string;
3259
+ readonly slug: string;
3260
+ readonly commentId: string;
3261
+ }): Promise<DeleteBipUpdateCommentResponse>;
3262
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3263
+ readonly bearer: string;
3264
+ readonly appId: string;
3265
+ readonly limit?: number;
3266
+ readonly offset?: number;
3267
+ }): Promise<BipUpdateListResponse>;
3268
+ declare function createBipUpdate(context: TransportContext, input: {
3269
+ readonly bearer: string;
3270
+ readonly appId: string;
3271
+ readonly body: CreateBipUpdateRequest;
3272
+ }): Promise<BipUpdate>;
3273
+ declare function updateBipUpdate(context: TransportContext, input: {
3274
+ readonly bearer: string;
3275
+ readonly appId: string;
3276
+ readonly updateId: string;
3277
+ readonly body: UpdateBipUpdateRequest;
3278
+ }): Promise<BipUpdate>;
3279
+ declare function deleteBipUpdate(context: TransportContext, input: {
3280
+ readonly bearer: string;
3281
+ readonly appId: string;
3282
+ readonly updateId: string;
3283
+ }): Promise<DeleteBipUpdateResponse>;
3284
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3285
+ readonly bearer: string;
3286
+ readonly appId: string;
3287
+ readonly file: Blob;
3288
+ readonly filename: string;
3289
+ readonly contentType: string;
3290
+ }): Promise<BipUpdateMediaUploadResponse>;
3291
+ declare function getBipInterestCount(context: TransportContext, input: {
3292
+ readonly bearer?: string;
3293
+ readonly slug: string;
3294
+ }): Promise<BipInterestCountResponse>;
3295
+ declare function getMyBipEngagement(context: TransportContext, input: {
3296
+ readonly bearer: string;
3297
+ readonly slug: string;
3298
+ }): Promise<BipEngagementResponse>;
3299
+ declare function registerBipInterest(context: TransportContext, input: {
3300
+ readonly bearer: string;
3301
+ readonly slug: string;
3302
+ readonly interested: boolean;
3303
+ }): Promise<BipEngagementResponse>;
3304
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3305
+ readonly bearer: string;
3306
+ readonly slug: string;
3307
+ readonly subscribed: boolean;
3308
+ }): Promise<BipEngagementResponse>;
3309
+ //#endregion
3310
+ //#region src/catalog/build-in-public.d.ts
3311
+ declare function getBipDirectory(context: TransportContext, input: {
3312
+ readonly bearer?: string;
3313
+ readonly genre?: string;
3314
+ readonly q?: string;
3315
+ readonly before?: string;
3316
+ readonly limit?: number;
3317
+ }): Promise<LibraryListResponse>;
3318
+ declare function getBipPage(context: TransportContext, input: {
3319
+ readonly bearer?: string;
3320
+ readonly slug: string;
3321
+ }): Promise<PublicBipPage>;
3322
+ //#endregion
2526
3323
  //#region src/catalog/content-reports.d.ts
2527
3324
  declare function submitAppContentReport(context: TransportContext, input: {
2528
3325
  readonly appId: string;
@@ -2567,6 +3364,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2567
3364
  readonly slug: string;
2568
3365
  readonly bearer: string;
2569
3366
  }): Promise<MyReviewResponse>;
3367
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
3368
+ readonly slug: string;
3369
+ readonly bearer: string;
3370
+ }): Promise<MyReviewReactionsResponse>;
3371
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
3372
+ readonly slug: string;
3373
+ readonly reviewId: string;
3374
+ readonly bearer: string;
3375
+ readonly reaction: SetReviewReactionRequest;
3376
+ }): Promise<SetReviewReactionResponse>;
3377
+ declare function tipGameReview(context: TransportContext, input: {
3378
+ readonly slug: string;
3379
+ readonly reviewId: string;
3380
+ readonly bearer: string;
3381
+ readonly tip: TipReviewRequest;
3382
+ readonly idempotencyKey?: string;
3383
+ }): Promise<TipReviewResponse>;
3384
+ declare function listGameReviewComments(context: TransportContext, input: {
3385
+ readonly slug: string;
3386
+ readonly reviewId: string;
3387
+ readonly bearer?: string;
3388
+ readonly limit?: number;
3389
+ readonly offset?: number;
3390
+ }): Promise<ReviewCommentListResponse>;
3391
+ declare function commentOnGameReview(context: TransportContext, input: {
3392
+ readonly slug: string;
3393
+ readonly reviewId: string;
3394
+ readonly bearer: string;
3395
+ readonly comment: CreateReviewCommentRequest;
3396
+ }): Promise<CreateReviewCommentResponse>;
3397
+ declare function deleteGameReviewComment(context: TransportContext, input: {
3398
+ readonly slug: string;
3399
+ readonly commentId: string;
3400
+ readonly bearer: string;
3401
+ }): Promise<DeleteReviewCommentResponse>;
2570
3402
  declare function replyToGameReview(context: TransportContext, input: {
2571
3403
  readonly appId: string;
2572
3404
  readonly reviewId: string;
@@ -2652,6 +3484,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
2652
3484
  readonly before?: string;
2653
3485
  }): Promise<PaymentHistoryResponse>;
2654
3486
  //#endregion
3487
+ //#region src/dashboard/rates.d.ts
3488
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3489
+ //#endregion
2655
3490
  //#region src/developer/api-keys.d.ts
2656
3491
  declare function createDeveloperApiKey(context: TransportContext, input: {
2657
3492
  readonly bearer: string;
@@ -2789,6 +3624,53 @@ declare function updateDeveloperAppContentReportStatus(context: TransportContext
2789
3624
  readonly status: "acknowledged" | "dismissed";
2790
3625
  }): Promise<AppContentReport>;
2791
3626
  //#endregion
3627
+ //#region src/developer/inventory.d.ts
3628
+ declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
3629
+ readonly bearer: string;
3630
+ readonly appId: string;
3631
+ readonly registration: InventoryItemRegistrationInput;
3632
+ }): Promise<InventoryRegistrationQuote>;
3633
+ declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
3634
+ readonly bearer: string;
3635
+ readonly appId: string;
3636
+ readonly registration: InventoryItemRegistrationInput;
3637
+ }): Promise<InventoryItemRegistrationResult>;
3638
+ declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
3639
+ readonly bearer: string;
3640
+ readonly appId: string;
3641
+ }): Promise<InventoryCollectionListResponse>;
3642
+ declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
3643
+ readonly bearer: string;
3644
+ readonly appId: string;
3645
+ }): Promise<InventoryItemListResponse>;
3646
+ declare function createDeveloperAppMintPermit(context: TransportContext, input: {
3647
+ readonly bearer: string;
3648
+ readonly appId: string;
3649
+ readonly itemId: string;
3650
+ readonly grant: InventoryMintPermitCreateInput;
3651
+ }): Promise<InventoryMintPermitRecord>;
3652
+ declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
3653
+ readonly bearer: string;
3654
+ readonly appId: string;
3655
+ readonly itemId: string;
3656
+ }): Promise<InventoryItemHoldersResponse>;
3657
+ declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
3658
+ readonly bearer: string;
3659
+ readonly appId: string;
3660
+ readonly itemId: string;
3661
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3662
+ readonly filename: string;
3663
+ readonly contentType: string;
3664
+ }): Promise<InventoryItemRecord>;
3665
+ declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
3666
+ readonly bearer: string;
3667
+ readonly appId: string;
3668
+ readonly itemId: string;
3669
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3670
+ readonly filename: string;
3671
+ readonly contentType: string;
3672
+ }): Promise<InventoryItemRecord>;
3673
+ //#endregion
2792
3674
  //#region src/developer/pages.d.ts
2793
3675
  declare function getDeveloperAppPage(context: TransportContext, input: {
2794
3676
  readonly bearer: string;
@@ -2847,6 +3729,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
2847
3729
  readonly bearer: string;
2848
3730
  readonly appId: string;
2849
3731
  }): Promise<AppPageDraft>;
3732
+ declare function setAppPageBip(context: TransportContext, input: {
3733
+ readonly bearer: string;
3734
+ readonly appId: string;
3735
+ readonly body: AppPageBipToggle;
3736
+ }): Promise<AppPageDraft>;
3737
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3738
+ readonly bearer: string;
3739
+ readonly appId: string;
3740
+ }): Promise<AppPageDraft>;
3741
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3742
+ readonly bearer: string;
3743
+ readonly appId: string;
3744
+ }): Promise<AppPageDraft>;
2850
3745
  //#endregion
2851
3746
  //#region src/developer/participants.d.ts
2852
3747
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -2913,6 +3808,20 @@ declare function uploadMultipart(context: TransportContext, input: {
2913
3808
  readonly contentType: string;
2914
3809
  }): Promise<unknown>;
2915
3810
  //#endregion
3811
+ //#region src/developer/vault.d.ts
3812
+ declare function createDeveloperVaultPermit(context: TransportContext, input: {
3813
+ readonly bearer: string;
3814
+ readonly appId: string;
3815
+ readonly itemId: string;
3816
+ readonly grant: InventoryVaultPermitCreateInput;
3817
+ }): Promise<InventoryVaultPermitRecord>;
3818
+ declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
3819
+ readonly bearer: string;
3820
+ readonly appId: string;
3821
+ readonly itemId: string;
3822
+ readonly grant: InventoryWithdrawPermitCreateInput;
3823
+ }): Promise<InventoryVaultPermitRecord>;
3824
+ //#endregion
2916
3825
  //#region src/inventory/list.d.ts
2917
3826
  declare function listInventory(context: TransportContext, input: {
2918
3827
  readonly bearer: string;
@@ -2921,12 +3830,55 @@ declare function listInventoryForApp(context: TransportContext, input: {
2921
3830
  readonly bearer: string;
2922
3831
  }): Promise<InventoryListResponse>;
2923
3832
  //#endregion
3833
+ //#region src/inventory/nft-transfer.d.ts
3834
+ declare function quoteNftTransfer(context: TransportContext, input: {
3835
+ readonly bearer: string;
3836
+ readonly body: InventoryNftTransferQuoteRequest;
3837
+ }): Promise<InventoryNftTransferQuoteResponse>;
3838
+ declare function executeNftTransfer(context: TransportContext, input: {
3839
+ readonly bearer: string;
3840
+ readonly body: InventoryNftTransferRequest;
3841
+ }): Promise<InventoryNftTransferResponse>;
3842
+ //#endregion
3843
+ //#region src/inventory/permits.d.ts
3844
+ declare function listInventoryMintPermits(context: TransportContext, input: {
3845
+ readonly bearer: string;
3846
+ }): Promise<InventoryPendingPermitListResponse>;
3847
+ declare function redeemInventoryMintPermit(context: TransportContext, input: {
3848
+ readonly bearer: string;
3849
+ readonly permitId: string;
3850
+ }): Promise<InventoryPermitRedeemResult>;
3851
+ //#endregion
2924
3852
  //#region src/inventory/request-mint.d.ts
2925
3853
  declare function requestMint(context: TransportContext, input: {
2926
3854
  readonly appBearer: string;
2927
3855
  readonly body: MintRequestInput;
2928
3856
  }): Promise<MintRequestResult>;
2929
3857
  //#endregion
3858
+ //#region src/inventory/vault.d.ts
3859
+ declare function listInventoryVaultPermits(context: TransportContext, input: {
3860
+ readonly bearer: string;
3861
+ }): Promise<InventoryPendingVaultPermitListResponse>;
3862
+ declare function signInventoryVaultPermit(context: TransportContext, input: {
3863
+ readonly bearer: string;
3864
+ readonly permitId: string;
3865
+ }): Promise<InventorySignedVaultPermit>;
3866
+ declare function quoteRelayedVaultPermit(context: TransportContext, input: {
3867
+ readonly bearer: string;
3868
+ readonly permitId: string;
3869
+ }): Promise<InventoryRelayedVaultQuoteResponse>;
3870
+ declare function submitRelayedVaultPermit(context: TransportContext, input: {
3871
+ readonly bearer: string;
3872
+ readonly permitId: string;
3873
+ readonly body: InventoryRelayedVaultSubmitRequest;
3874
+ }): Promise<InventoryRelayedVaultSubmitResponse>;
3875
+ declare function listInventoryVaulted(context: TransportContext, input: {
3876
+ readonly bearer: string;
3877
+ }): Promise<InventoryVaultCustodyListResponse>;
3878
+ declare function listOauthInventoryVaulted(context: TransportContext, input: {
3879
+ readonly bearer: string;
3880
+ }): Promise<InventoryVaultCustodyListResponse>;
3881
+ //#endregion
2930
3882
  //#region src/messaging/dm-key-backup.d.ts
2931
3883
  declare function getDmKeyBackupStatus(context: TransportContext, input: {
2932
3884
  readonly bearer: string;
@@ -3161,6 +4113,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3161
4113
  readonly bearer: string;
3162
4114
  readonly intentId: string;
3163
4115
  }): Promise<OauthPaymentIntentResolveResponse>;
4116
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4117
+ readonly bearer: string;
4118
+ readonly intentId: string;
4119
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4120
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4121
+ readonly bearer: string;
4122
+ readonly intentId: string;
4123
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4124
+ }): Promise<OauthPaymentIntentResolveResponse>;
3164
4125
  //#endregion
3165
4126
  //#region src/payments/limits.d.ts
3166
4127
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -3203,6 +4164,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3203
4164
  readonly bearer: string;
3204
4165
  readonly body: TronDepositRequest;
3205
4166
  }): Promise<TronDepositResponse>;
4167
+ declare function createTronTransfer(context: TransportContext, input: {
4168
+ readonly bearer: string;
4169
+ readonly body: TronTransferRequest;
4170
+ readonly idempotencyKey?: string;
4171
+ }): Promise<TronTransferResponse>;
4172
+ declare function getTronSecurity(context: TransportContext, input: {
4173
+ readonly bearer: string;
4174
+ }): Promise<TronSecuritySetting>;
4175
+ declare function setTronSecurity(context: TransportContext, input: {
4176
+ readonly bearer: string;
4177
+ readonly setting: TronSecuritySetting;
4178
+ }): Promise<TronSecuritySetting>;
4179
+ declare function createTronTransferChallenge(context: TransportContext, input: {
4180
+ readonly bearer: string;
4181
+ readonly body: TronTransferChallengeRequest;
4182
+ }): Promise<TronTransferChallengeResponse>;
3206
4183
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3207
4184
  readonly bearer: string;
3208
4185
  }): Promise<TronConnectOnboardingResponse>;
@@ -3339,6 +4316,10 @@ declare function sendFriendRequest(context: TransportContext, input: {
3339
4316
  readonly bearer: string;
3340
4317
  readonly userId: string;
3341
4318
  }): Promise<void>;
4319
+ declare function removeFriend(context: TransportContext, input: {
4320
+ readonly bearer: string;
4321
+ readonly userId: string;
4322
+ }): Promise<void>;
3342
4323
  declare function decideFriendRequest(context: TransportContext, input: {
3343
4324
  readonly bearer: string;
3344
4325
  readonly requestId: string;
@@ -3351,6 +4332,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3351
4332
  declare function listFriends(context: TransportContext, input: {
3352
4333
  readonly bearer: string;
3353
4334
  }): Promise<FriendListResponse>;
4335
+ declare function listFriendsForApp(context: TransportContext, input: {
4336
+ readonly bearer: string;
4337
+ }): Promise<AppFriendListResponse>;
3354
4338
  //#endregion
3355
4339
  //#region src/reads/socials.d.ts
3356
4340
  declare function listSocials(context: TransportContext, input: {
@@ -3642,4 +4626,4 @@ type CookieTokenStoreOptions = {
3642
4626
  };
3643
4627
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3644
4628
  //#endregion
3645
- 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 };
4629
+ 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, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, consolidateDeveloperAppWallet, createBipUpdate, 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, deleteBipUpdate, deleteBipUpdateComment, 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, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, 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, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, 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, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };