@metatrongg/sdk 0.8.0-dev.17481b6 → 0.8.0-dev.1975260

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,17 @@ 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>;
363
+ devlog: boolean;
339
364
  publishedAt: string;
365
+ updatedAt: string;
340
366
  };
341
367
  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
368
  type AppPageTagline = string;
@@ -359,12 +385,134 @@ type AppPageLink = {
359
385
  order: number;
360
386
  };
361
387
  type PublicAppPageStudio = {
388
+ ownerUserId: string | null;
362
389
  name: string | null;
363
390
  logoUrl: string | null;
364
391
  websiteUrl: string | null;
365
392
  xHandle: string | null;
366
393
  githubUrl: string | null;
367
394
  };
395
+ type AppPagePlatforms = Array<"web" | "ios" | "android" | "pc" | "playstation" | "xbox" | "switch">;
396
+ type AppPageGameType = "single_player" | "multiplayer" | "both" | null;
397
+ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
398
+ type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
399
+ type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
400
+ type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
401
+ type PublicBipPage = {
402
+ appId: string;
403
+ slug: AppPageSlug;
404
+ appName: string;
405
+ appLogoUrl: string | null;
406
+ categories: AppPageCategories;
407
+ tagline: AppPageTagline;
408
+ bannerUrl: string | null;
409
+ discordUrl: string | null;
410
+ twitterUrl: string | null;
411
+ redditUrl: string | null;
412
+ telegramUrl: string | null;
413
+ gallery: AppPageGallery;
414
+ chapters: AppPageChapters;
415
+ links: AppPageLinks;
416
+ studio: PublicAppPageStudio;
417
+ platforms: AppPagePlatforms;
418
+ gameType: AppPageGameType;
419
+ ageRating: AppPageAgeRating;
420
+ languages: AppPageLanguages;
421
+ releaseStatus: AppPageReleaseStatus;
422
+ publishedAt: string;
423
+ updatedAt: string;
424
+ };
425
+ type BipUpdateListResponse = {
426
+ updates: Array<BipUpdate>;
427
+ total: number;
428
+ hasMore: boolean;
429
+ pinned: BipUpdate | null;
430
+ };
431
+ type BipUpdate = {
432
+ id: string;
433
+ appId: string;
434
+ body: BipUpdateBody;
435
+ attachments: BipUpdateAttachments;
436
+ reactions: BipUpdateReactionCounts;
437
+ commentCount: number;
438
+ createdAt: string;
439
+ updatedAt: string;
440
+ pinnedAt: string | null;
441
+ };
442
+ type BipUpdateBody = string;
443
+ type BipUpdateAttachments = Array<BipUpdateAttachment>;
444
+ type BipUpdateAttachment = {
445
+ url: string;
446
+ kind: "image" | "video";
447
+ order: number;
448
+ };
449
+ type BipUpdateReactionCounts = {
450
+ up: number;
451
+ down: number;
452
+ };
453
+ type BipUpdateCommentListResponse = {
454
+ comments: Array<BipUpdateComment>;
455
+ total: number;
456
+ hasMore: boolean;
457
+ };
458
+ type BipUpdateComment = {
459
+ id: string;
460
+ body: BipUpdateCommentBody;
461
+ author: ReviewAuthor;
462
+ createdAt: string;
463
+ };
464
+ type BipUpdateCommentBody = string;
465
+ type ReviewAuthor = {
466
+ userId: string;
467
+ handle: string | null;
468
+ name: string | null;
469
+ avatarUrl: string | null;
470
+ };
471
+ type BipInterestCountResponse = {
472
+ interestCount: number;
473
+ };
474
+ type BipEngagementResponse = {
475
+ interested: boolean;
476
+ subscribed: boolean;
477
+ interestCount: number;
478
+ };
479
+ type MyBipUpdateReactionsResponse = {
480
+ reactions: Array<MyBipUpdateReaction>;
481
+ };
482
+ type MyBipUpdateReaction = {
483
+ updateId: string;
484
+ vote: "up" | "down";
485
+ };
486
+ type SetBipUpdateReactionResponse = {
487
+ reactions: BipUpdateReactionCounts;
488
+ vote: BipUpdateVote;
489
+ };
490
+ type BipUpdateVote = "up" | "down" | null;
491
+ type SetBipUpdateReactionRequest = {
492
+ vote: BipUpdateVote;
493
+ };
494
+ type CreateBipUpdateCommentResponse = {
495
+ comment: BipUpdateComment;
496
+ commentCount: number;
497
+ };
498
+ type DeleteBipUpdateCommentResponse = {
499
+ commentCount: number;
500
+ };
501
+ type CreateBipUpdateRequest = {
502
+ body: BipUpdateBody;
503
+ attachments?: BipUpdateAttachments;
504
+ };
505
+ type UpdateBipUpdateRequest = {
506
+ body?: BipUpdateBody;
507
+ attachments?: BipUpdateAttachments;
508
+ };
509
+ type DeleteBipUpdateResponse = {
510
+ deleted: true;
511
+ };
512
+ type BipUpdateMediaUploadResponse = {
513
+ url: string;
514
+ kind: "image" | "video";
515
+ };
368
516
  type ReviewListResponse = {
369
517
  aggregate: ReviewAggregate;
370
518
  reviews: Array<Review>;
@@ -372,38 +520,43 @@ type ReviewListResponse = {
372
520
  hasMore: boolean;
373
521
  };
374
522
  type ReviewAggregate = {
375
- average: number | null;
376
523
  count: number;
377
- distribution: ReviewDistribution;
378
- };
379
- type ReviewDistribution = {
380
- 1: number;
381
- 2: number;
382
- 3: number;
383
- 4: number;
384
- 5: number;
524
+ recommendedCount: number;
525
+ recommendedPct: number | null;
526
+ summaryLabel: ReviewSummaryLabel;
385
527
  };
528
+ type ReviewSummaryLabel = "overwhelmingly_positive" | "very_positive" | "positive" | "mostly_positive" | "mixed" | "mostly_negative" | "negative" | "overwhelmingly_negative" | null;
386
529
  type Review = {
387
530
  id: string;
388
- rating: ReviewRating;
531
+ recommended: ReviewRecommended;
389
532
  body: ReviewBody;
533
+ reactions: ReviewReactionCounts;
534
+ tippedCents: number;
535
+ commentCount: number;
390
536
  author: ReviewAuthor;
537
+ authorStats: ReviewerStats;
391
538
  developerReply: ReviewReply;
392
539
  createdAt: string;
393
540
  updatedAt: string;
394
541
  };
395
- type ReviewRating = number;
542
+ type ReviewRecommended = boolean;
396
543
  type ReviewBody = string;
397
- type ReviewAuthor = {
398
- name: string | null;
399
- avatarUrl: string | null;
544
+ type ReviewReactionCounts = {
545
+ helpful: number;
546
+ unhelpful: number;
547
+ funny: number;
548
+ };
549
+ type ReviewerStats = {
550
+ playtimeSecondsThisGame: number;
551
+ gamesPlayed: number;
552
+ reviewsWritten: number;
400
553
  };
401
554
  type ReviewReply = {
402
555
  body: ReviewReplyBody;
403
556
  repliedAt: string;
404
557
  } | null;
405
558
  type ReviewReplyBody = string;
406
- type ReviewSort = "newest" | "oldest" | "highest" | "lowest";
559
+ type ReviewSort = "newest" | "oldest" | "helpful";
407
560
  type MyReviewResponse = {
408
561
  eligible: boolean;
409
562
  eligibleVia: ReviewEligibilityReason;
@@ -413,15 +566,67 @@ type MyReviewResponse = {
413
566
  type ReviewEligibilityReason = "payment" | "reward" | null;
414
567
  type OwnReview = {
415
568
  id: string;
416
- rating: ReviewRating;
569
+ recommended: ReviewRecommended;
417
570
  body: ReviewBody;
418
571
  createdAt: string;
419
572
  updatedAt: string;
420
573
  } | null;
421
574
  type UpsertReviewRequest = {
422
- rating: ReviewRating;
575
+ recommended: ReviewRecommended;
423
576
  body: ReviewBody;
424
577
  };
578
+ type MyReviewReactionsResponse = {
579
+ reactions: Array<MyReviewReaction>;
580
+ };
581
+ type MyReviewReaction = {
582
+ reviewId: string;
583
+ vote: ReviewVote;
584
+ funny: boolean;
585
+ };
586
+ type ReviewVote = "helpful" | "unhelpful" | null;
587
+ type SetReviewReactionResponse = {
588
+ reactions: ReviewReactionCounts;
589
+ vote: ReviewVote;
590
+ funny: boolean;
591
+ };
592
+ type SetReviewReactionRequest = {
593
+ vote: ReviewVote;
594
+ funny: boolean;
595
+ };
596
+ type TipReviewResponse = {
597
+ status: "completed";
598
+ amountCents: number;
599
+ balanceCents: number;
600
+ tippedCents: number;
601
+ };
602
+ type TipReviewRequest = {
603
+ amountCents: number;
604
+ note?: string;
605
+ challengeId?: string;
606
+ signature?: string;
607
+ };
608
+ type ReviewCommentListResponse = {
609
+ comments: Array<ReviewComment>;
610
+ total: number;
611
+ hasMore: boolean;
612
+ };
613
+ type ReviewComment = {
614
+ id: string;
615
+ body: ReviewCommentBody;
616
+ author: ReviewAuthor;
617
+ createdAt: string;
618
+ };
619
+ type ReviewCommentBody = string;
620
+ type CreateReviewCommentResponse = {
621
+ comment: ReviewComment;
622
+ commentCount: number;
623
+ };
624
+ type CreateReviewCommentRequest = {
625
+ body: ReviewCommentBody;
626
+ };
627
+ type DeleteReviewCommentResponse = {
628
+ commentCount: number;
629
+ };
425
630
  type ReviewReplyResponse = {
426
631
  developerReply: ReviewReply;
427
632
  };
@@ -526,8 +731,16 @@ type ActivityRow = ({
526
731
  } & ActivityRowTronPot) | ({
527
732
  kind: "tron_cashout";
528
733
  } & ActivityRowTronCashout) | ({
734
+ kind: "tron_transfer";
735
+ } & ActivityRowTronTransfer) | ({
529
736
  kind: "referral_earning";
530
- } & ActivityRowReferralEarning);
737
+ } & ActivityRowReferralEarning) | ({
738
+ kind: "nft_charge";
739
+ } & ActivityRowNftCharge) | ({
740
+ kind: "solana_stake";
741
+ } & ActivityRowSolanaStake) | ({
742
+ kind: "solana_pot_leg";
743
+ } & ActivityRowSolanaPotLeg);
531
744
  type ActivityRowPayment = {
532
745
  kind: "payment";
533
746
  groupId: string | null;
@@ -809,6 +1022,20 @@ type ActivityRowTronCashout = {
809
1022
  rejectionReason: string | null;
810
1023
  settledAt: string | null;
811
1024
  };
1025
+ type ActivityRowTronTransfer = {
1026
+ kind: "tron_transfer";
1027
+ groupId: string | null;
1028
+ id: string;
1029
+ occurredAt: string;
1030
+ role: "incoming" | "outgoing";
1031
+ amountCents: number;
1032
+ usdCents: number;
1033
+ status: "settled";
1034
+ counterpartyUserId: string | null;
1035
+ counterpartyHandle: string | null;
1036
+ counterpartyDisplayName: string | null;
1037
+ note: string | null;
1038
+ };
812
1039
  type ActivityRowReferralEarning = {
813
1040
  kind: "referral_earning";
814
1041
  groupId: string | null;
@@ -825,6 +1052,72 @@ type ActivityRowReferralEarning = {
825
1052
  logIndex: number;
826
1053
  usdCents: number | null;
827
1054
  };
1055
+ type ActivityRowNftCharge = {
1056
+ kind: "nft_charge";
1057
+ groupId: string | null;
1058
+ id: string;
1059
+ occurredAt: string;
1060
+ role: "outgoing";
1061
+ chargeKind: "registration" | "mint" | "transfer_gas";
1062
+ amountCents: number;
1063
+ usdCents: number;
1064
+ status: "settled";
1065
+ collectionAddress: string | null;
1066
+ tokenId: string | null;
1067
+ counterpartyUserId: string | null;
1068
+ counterpartyHandle: string | null;
1069
+ counterpartyDisplayName: string | null;
1070
+ };
1071
+ type ActivityRowSolanaStake = {
1072
+ kind: "solana_stake";
1073
+ groupId: string | null;
1074
+ id: string;
1075
+ chain: string;
1076
+ occurredAt: string;
1077
+ role: "outgoing" | "incoming";
1078
+ amount: string;
1079
+ token: string;
1080
+ potId: string | null;
1081
+ usdCents: number;
1082
+ status: "completed";
1083
+ txHash: string | null;
1084
+ app: {
1085
+ id: string;
1086
+ name: string;
1087
+ logoUrl: string | null;
1088
+ slug: string | null;
1089
+ bannerUrl: string | null;
1090
+ } | null;
1091
+ stakerUserId?: string | null;
1092
+ stakerHandle?: string | null;
1093
+ stakerDisplayName?: string | null;
1094
+ metadata?: PaymentMetadata | null;
1095
+ };
1096
+ type ActivityRowSolanaPotLeg = {
1097
+ kind: "solana_pot_leg";
1098
+ groupId: string | null;
1099
+ id: string;
1100
+ chain: string;
1101
+ occurredAt: string;
1102
+ role: "outgoing" | "incoming";
1103
+ beneficiary: string;
1104
+ potId: string | null;
1105
+ amount: string;
1106
+ token: string;
1107
+ usdCents: number | null;
1108
+ status: "settled";
1109
+ app: {
1110
+ id: string;
1111
+ name: string;
1112
+ logoUrl: string | null;
1113
+ slug: string | null;
1114
+ bannerUrl: string | null;
1115
+ } | null;
1116
+ txHash: string | null;
1117
+ recipientUserId?: string | null;
1118
+ recipientHandle?: string | null;
1119
+ recipientDisplayName?: string | null;
1120
+ };
828
1121
  type OutstandingResponse = {
829
1122
  rows: Array<OutstandingByToken>;
830
1123
  };
@@ -874,7 +1167,7 @@ type TronLedgerResponse = {
874
1167
  };
875
1168
  type TronLedgerEntry = {
876
1169
  id: string;
877
- kind: "deposit" | "pot_stake" | "pot_payout" | "dev_earning" | "cashout_hold" | "cashout_release" | "dispute_freeze" | "dispute_unfreeze" | "hosted_billing" | "store_purchase" | "referral_earning";
1170
+ 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";
878
1171
  amountCents: number;
879
1172
  currency: string;
880
1173
  createdAt: string;
@@ -889,6 +1182,45 @@ type TronDepositResponse = {
889
1182
  type TronDepositRequest = {
890
1183
  amountCents: number;
891
1184
  };
1185
+ type TronTransferResponse = {
1186
+ status: "completed";
1187
+ amountCents: number;
1188
+ balanceCents: number;
1189
+ recipient: {
1190
+ userId: string;
1191
+ handle: string | null;
1192
+ displayName: string | null;
1193
+ };
1194
+ };
1195
+ type TronTransferRequest = {
1196
+ recipientUserId: string;
1197
+ amountCents: number;
1198
+ note?: string;
1199
+ challengeId?: string;
1200
+ signature?: string;
1201
+ threadId?: string;
1202
+ };
1203
+ type TronSecuritySetting = {
1204
+ requireSignature: boolean;
1205
+ };
1206
+ type TronTransferChallengeResponse = ({
1207
+ required: false;
1208
+ } & TronTransferChallengeNotRequired) | ({
1209
+ required: true;
1210
+ } & TronTransferChallengeRequired);
1211
+ type TronTransferChallengeNotRequired = {
1212
+ required: false;
1213
+ };
1214
+ type TronTransferChallengeRequired = {
1215
+ required: true;
1216
+ challengeId: string;
1217
+ message: string;
1218
+ expiresAt: string;
1219
+ };
1220
+ type TronTransferChallengeRequest = {
1221
+ recipientUserId: string;
1222
+ amountCents: number;
1223
+ };
892
1224
  type TronConnectOnboardingResponse = {
893
1225
  url: string;
894
1226
  };
@@ -945,12 +1277,15 @@ type WalletListResponse = {
945
1277
  wallets: Array<WalletItem>;
946
1278
  };
947
1279
  type WalletChainList = Array<{
948
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1280
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
949
1281
  displayName: string;
950
- chainId: number;
1282
+ family: "evm" | "solana";
1283
+ nativeSymbol: string;
1284
+ chainId?: number;
951
1285
  }>;
952
1286
  type WalletItem = {
953
- address: string;
1287
+ address: string | string;
1288
+ family: "evm" | "solana";
954
1289
  label: WalletLabel;
955
1290
  kind: "personal" | "app";
956
1291
  app: WalletAppLink;
@@ -967,6 +1302,9 @@ type WalletBalances = {
967
1302
  "ethereum-mainnet"?: WalletChainBalance;
968
1303
  "base-mainnet"?: WalletChainBalance;
969
1304
  "ethereum-sepolia"?: WalletChainBalance;
1305
+ "base-sepolia"?: WalletChainBalance;
1306
+ "solana-mainnet"?: WalletChainBalance;
1307
+ "solana-devnet"?: WalletChainBalance;
970
1308
  };
971
1309
  type WalletChainBalance = {
972
1310
  native: string;
@@ -976,12 +1314,14 @@ type WalletDelegationStatus = {
976
1314
  mode: WalletDelegationMode;
977
1315
  caps: WalletDelegationCaps;
978
1316
  policyId: string | null;
1317
+ slippageBps: DelegationSlippageBps;
979
1318
  };
980
1319
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
981
1320
  type WalletDelegationCaps = {
982
1321
  native: string;
983
1322
  usdc: string;
984
1323
  } | null;
1324
+ type DelegationSlippageBps = number | null;
985
1325
  type WalletLabelUpdateResponse = {
986
1326
  address: string;
987
1327
  label: WalletLabel;
@@ -1055,6 +1395,7 @@ type ThreadLastMessagePreview = {
1055
1395
  url: string;
1056
1396
  count: number;
1057
1397
  } | null;
1398
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1058
1399
  sentAt: string;
1059
1400
  } | null;
1060
1401
  type MessageEnvelope = {
@@ -1066,6 +1407,20 @@ type MessageEnvelope = {
1066
1407
  iv: string;
1067
1408
  ct: string;
1068
1409
  } | null;
1410
+ type MessageTransactionTronTransfer = {
1411
+ kind: "tron_transfer";
1412
+ amountCents: number;
1413
+ recipientUserId: string;
1414
+ };
1415
+ type MessageTransactionNftTransfer = {
1416
+ kind: "nft_transfer";
1417
+ recipientUserId: string;
1418
+ collectionAddress: string;
1419
+ tokenId: string;
1420
+ amount: string;
1421
+ itemName: string | null;
1422
+ imageAssetId?: string | null;
1423
+ };
1069
1424
  type GroupThreadSummary = {
1070
1425
  kind: "group";
1071
1426
  id: string;
@@ -1112,6 +1467,7 @@ type MessageItem = {
1112
1467
  id: string;
1113
1468
  threadId: string;
1114
1469
  senderUserId: string;
1470
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1115
1471
  body: string;
1116
1472
  envelope?: MessageEnvelope;
1117
1473
  sentAt: string;
@@ -1323,11 +1679,45 @@ type InventoryHolding = {
1323
1679
  tokenId: string;
1324
1680
  amount: string;
1325
1681
  name: string | null;
1682
+ description: string | null;
1326
1683
  imageAssetId: string | null;
1327
1684
  bannerAssetId: string | null;
1328
1685
  devMetadata: {
1329
1686
  [key: string]: unknown;
1330
1687
  };
1688
+ appId: string | null;
1689
+ appName: string | null;
1690
+ appLogoUrl: string | null;
1691
+ };
1692
+ type InventoryPendingPermitListResponse = {
1693
+ permits: Array<InventoryPendingPermit>;
1694
+ };
1695
+ type InventoryPendingPermit = {
1696
+ id: string;
1697
+ appId: string;
1698
+ itemId: string;
1699
+ amount: string;
1700
+ priceCents: number | null;
1701
+ gasSponsored: boolean;
1702
+ environment: "development" | "production";
1703
+ createdAt: string;
1704
+ tokenId: string;
1705
+ name: string | null;
1706
+ description: string | null;
1707
+ imageAssetId: string | null;
1708
+ chain: string;
1709
+ collectionAddress: string;
1710
+ kind: "erc721" | "erc1155";
1711
+ };
1712
+ type InventoryPermitRedeemResult = {
1713
+ mint: MintRequestResult;
1714
+ charge: {
1715
+ currency: "tron";
1716
+ gasCents: number;
1717
+ priceCents: number;
1718
+ totalCents: number;
1719
+ gasPaidBy: "user" | "developer";
1720
+ };
1331
1721
  };
1332
1722
  type MintRequestResult = {
1333
1723
  mintRequestId: string;
@@ -1343,6 +1733,247 @@ type MintRequestInput = {
1343
1733
  tokenId?: string;
1344
1734
  amount?: string;
1345
1735
  };
1736
+ type InventoryCollectionListResponse = {
1737
+ collections: Array<InventoryCollectionSummary>;
1738
+ };
1739
+ type InventoryCollectionSummary = {
1740
+ id: string;
1741
+ chain: string;
1742
+ collectionAddress: string;
1743
+ kind: "erc721" | "erc1155";
1744
+ name: string | null;
1745
+ environment: "development" | "production";
1746
+ };
1747
+ type InventoryRegistrationQuote = {
1748
+ itemCount: number;
1749
+ baselineUsdCents: number;
1750
+ gasUsdCents: number;
1751
+ tron: {
1752
+ baselineCents: number;
1753
+ gasCents: number;
1754
+ totalCents: number;
1755
+ };
1756
+ eth: {
1757
+ baselineWei: string;
1758
+ gasWei: string;
1759
+ totalWei: string;
1760
+ };
1761
+ };
1762
+ type InventoryItemRegistrationInput = {
1763
+ collectionAddress: string;
1764
+ chain: string;
1765
+ items: Array<InventoryItemRegistrationSpec>;
1766
+ };
1767
+ type InventoryItemRegistrationSpec = {
1768
+ name?: string | null;
1769
+ description?: string | null;
1770
+ devMetadata?: {
1771
+ [key: string]: unknown;
1772
+ };
1773
+ supplyType?: InventorySupplyType;
1774
+ maxSupply?: string | null;
1775
+ active?: boolean;
1776
+ };
1777
+ type InventorySupplyType = "capped" | "flexible" | "unlimited";
1778
+ type InventoryItemRegistrationResult = {
1779
+ items: Array<InventoryItemRecord>;
1780
+ charge: {
1781
+ currency: "tron";
1782
+ amountCents: number;
1783
+ baselineCents: number;
1784
+ gasCents: number;
1785
+ addItemTxHash: string;
1786
+ };
1787
+ };
1788
+ type InventoryItemRecord = {
1789
+ id: string;
1790
+ collectionId: string;
1791
+ collectionAddress: string;
1792
+ chain: string;
1793
+ kind: "erc721" | "erc1155";
1794
+ tokenId: string;
1795
+ name: string | null;
1796
+ description: string | null;
1797
+ imageAssetId: string | null;
1798
+ bannerAssetId: string | null;
1799
+ devMetadata: {
1800
+ [key: string]: unknown;
1801
+ };
1802
+ supplyType: InventorySupplyType | null;
1803
+ maxSupply: string | null;
1804
+ active: boolean;
1805
+ };
1806
+ type InventoryItemListResponse = {
1807
+ items: Array<InventoryItemRecord>;
1808
+ };
1809
+ type InventoryMintPermitRecord = {
1810
+ id: string;
1811
+ appId: string;
1812
+ itemId: string;
1813
+ userId: string;
1814
+ amount: string;
1815
+ priceCents: number | null;
1816
+ gasSponsored: boolean;
1817
+ status: "pending" | "redeemed" | "revoked";
1818
+ createdAt: string;
1819
+ };
1820
+ type InventoryMintPermitCreateInput = {
1821
+ toUserId: string;
1822
+ amount?: string;
1823
+ priceCents?: number | null;
1824
+ gasSponsored?: boolean;
1825
+ };
1826
+ type InventoryItemHoldersResponse = {
1827
+ stats: InventoryItemStats;
1828
+ holders: Array<InventoryItemHolder>;
1829
+ };
1830
+ type InventoryItemStats = {
1831
+ holderCount: number;
1832
+ walletCount: number;
1833
+ totalHeld: string;
1834
+ };
1835
+ type InventoryItemHolder = {
1836
+ walletAddress: string;
1837
+ userId: string | null;
1838
+ amount: string;
1839
+ };
1840
+ type InventoryVaultPermitRecord = {
1841
+ id: string;
1842
+ appId: string;
1843
+ itemId: string;
1844
+ userId: string;
1845
+ direction: "vault_in" | "withdraw";
1846
+ lockKind: "vault" | "burn" | null;
1847
+ amount: string;
1848
+ gasSponsored: boolean;
1849
+ status: "pending" | "redeemed" | "revoked";
1850
+ custodyId: string | null;
1851
+ createdAt: string;
1852
+ };
1853
+ type InventoryVaultPermitCreateInput = {
1854
+ toUserId: string;
1855
+ lockKind: "vault" | "burn";
1856
+ amount?: string;
1857
+ gasSponsored?: boolean;
1858
+ };
1859
+ type InventoryWithdrawPermitCreateInput = {
1860
+ custodyId: string;
1861
+ };
1862
+ type InventoryPendingVaultPermitListResponse = {
1863
+ permits: Array<InventoryPendingVaultPermit>;
1864
+ };
1865
+ type InventoryPendingVaultPermit = {
1866
+ id: string;
1867
+ appId: string;
1868
+ itemId: string;
1869
+ direction: "vault_in" | "withdraw";
1870
+ lockKind: "vault" | "burn" | null;
1871
+ amount: string;
1872
+ gasSponsored: boolean;
1873
+ environment: "development" | "production";
1874
+ custodyId: string | null;
1875
+ createdAt: string;
1876
+ tokenId: string;
1877
+ name: string | null;
1878
+ description: string | null;
1879
+ imageAssetId: string | null;
1880
+ chain: string;
1881
+ collectionAddress: string;
1882
+ kind: "erc721" | "erc1155";
1883
+ };
1884
+ type InventorySignedVaultPermit = {
1885
+ permitId: string;
1886
+ direction: "vault_in" | "withdraw";
1887
+ vault: string;
1888
+ collection: string;
1889
+ user: string;
1890
+ tokenId: string;
1891
+ amount: string;
1892
+ lockKind: "vault" | "burn" | null;
1893
+ destination: string | null;
1894
+ deadline: number;
1895
+ signature: string;
1896
+ };
1897
+ type InventoryRelayedVaultQuoteResponse = {
1898
+ direction: "vault_in" | "withdraw";
1899
+ collection: string;
1900
+ vault: string;
1901
+ chainId: number;
1902
+ user: string;
1903
+ tokenId: string;
1904
+ amount: string;
1905
+ nonce: string | null;
1906
+ deadline: number;
1907
+ feeCents: number;
1908
+ gasWei: string;
1909
+ gasPaidBy: "developer" | "user";
1910
+ requiresUserSignature: boolean;
1911
+ };
1912
+ type InventoryRelayedVaultSubmitResponse = {
1913
+ ok: boolean;
1914
+ txHash: string;
1915
+ chargedCents: number;
1916
+ gasPaidBy: "developer" | "user";
1917
+ };
1918
+ type InventoryRelayedVaultSubmitRequest = {
1919
+ userSignature?: string;
1920
+ deadline?: number;
1921
+ };
1922
+ type InventoryNftTransferQuoteResponse = {
1923
+ collection: string;
1924
+ chainId: number;
1925
+ from: string;
1926
+ to: string;
1927
+ tokenId: string;
1928
+ amount: string;
1929
+ nonce: string;
1930
+ deadline: number;
1931
+ feeCents: number;
1932
+ gasWei: string;
1933
+ selfPayAvailable: boolean;
1934
+ };
1935
+ type InventoryNftTransferQuoteRequest = {
1936
+ toUserId: string;
1937
+ collection: string;
1938
+ tokenId: string;
1939
+ amount?: string;
1940
+ };
1941
+ type InventoryNftTransferResponse = {
1942
+ ok: boolean;
1943
+ txHash: string;
1944
+ chargedCents: number;
1945
+ };
1946
+ type InventoryNftTransferRequest = {
1947
+ toUserId: string;
1948
+ collection: string;
1949
+ tokenId: string;
1950
+ amount?: string;
1951
+ deadline: number;
1952
+ userSignature: string;
1953
+ threadId?: string;
1954
+ };
1955
+ type InventoryVaultCustodyListResponse = {
1956
+ custody: Array<InventoryVaultCustody>;
1957
+ };
1958
+ type InventoryVaultCustody = {
1959
+ id: string;
1960
+ collectionId: string;
1961
+ collectionAddress: string;
1962
+ chain: string;
1963
+ kind: "erc721" | "erc1155";
1964
+ tokenId: string;
1965
+ amount: string;
1966
+ lockKind: "vault" | "burn";
1967
+ vaultAddress: string;
1968
+ createdAt: string;
1969
+ name: string | null;
1970
+ description: string | null;
1971
+ imageAssetId: string | null;
1972
+ };
1973
+ type InventoryVaultForceWithdrawResponse = {
1974
+ ok: boolean;
1975
+ txHash: string;
1976
+ };
1346
1977
  type NotificationListResponse = {
1347
1978
  notifications: Array<NotificationItem>;
1348
1979
  unreadCount: number;
@@ -1371,6 +2002,18 @@ type NotificationItem = {
1371
2002
  payload: AppPageRejectedNotificationPayload;
1372
2003
  read: boolean;
1373
2004
  createdAt: string;
2005
+ } | {
2006
+ id: string;
2007
+ kind: "bip_update_published";
2008
+ payload: BipUpdatePublishedNotificationPayload;
2009
+ read: boolean;
2010
+ createdAt: string;
2011
+ } | {
2012
+ id: string;
2013
+ kind: "bip_now_playable";
2014
+ payload: BipNowPlayableNotificationPayload;
2015
+ read: boolean;
2016
+ createdAt: string;
1374
2017
  } | {
1375
2018
  id: string;
1376
2019
  kind: "app_participant_invite";
@@ -1401,14 +2044,25 @@ type FriendAcceptedNotificationPayload = {
1401
2044
  type AppPageApprovedNotificationPayload = {
1402
2045
  appId: string;
1403
2046
  appName: string;
1404
- scope: "publish" | "changes";
2047
+ scope: "publish" | "changes" | "bip_publish";
1405
2048
  };
1406
2049
  type AppPageRejectedNotificationPayload = {
1407
2050
  appId: string;
1408
2051
  appName: string;
1409
- scope: "publish" | "changes";
2052
+ scope: "publish" | "changes" | "bip_publish";
1410
2053
  notes: string;
1411
2054
  };
2055
+ type BipUpdatePublishedNotificationPayload = {
2056
+ appId: string;
2057
+ appName: string;
2058
+ appSlug: string | null;
2059
+ updateId: string;
2060
+ };
2061
+ type BipNowPlayableNotificationPayload = {
2062
+ appId: string;
2063
+ appName: string;
2064
+ appSlug: string | null;
2065
+ };
1412
2066
  type AppParticipantInviteNotificationPayload = {
1413
2067
  appId: string;
1414
2068
  appName: string;
@@ -1438,6 +2092,9 @@ type FriendListItem = {
1438
2092
  onlineStatus: OnlineStatus;
1439
2093
  };
1440
2094
  type OnlineStatus = "online" | "offline";
2095
+ type AppFriendListResponse = {
2096
+ friends: Array<ThreadParticipant>;
2097
+ };
1441
2098
  type FriendRequestDecision = {
1442
2099
  decision: "accept" | "reject";
1443
2100
  };
@@ -1510,7 +2167,7 @@ type ProfileRecentReview = {
1510
2167
  appId: string;
1511
2168
  appName: string;
1512
2169
  appLogoUrl: string | null;
1513
- rating: number;
2170
+ recommended: boolean;
1514
2171
  body: string;
1515
2172
  createdAt: string;
1516
2173
  };
@@ -1567,17 +2224,20 @@ type CreateDeveloperAppChain = {
1567
2224
  };
1568
2225
  type UpdateDeveloperApp = {
1569
2226
  name?: DeveloperAppName;
2227
+ slug?: AppPageSlug | null;
1570
2228
  logoUrl?: string | null;
1571
2229
  testAccess?: "private" | "public";
1572
2230
  redirectUris?: Array<string>;
1573
2231
  embedOrigins?: Array<EmbedOrigin>;
1574
2232
  acceptedCurrencies?: AcceptedCurrencies;
2233
+ acceptedNetworks?: AcceptedNetworks;
1575
2234
  paymentStatusWebhookUrl?: string | null;
1576
2235
  paymentStatusWebhookUrlTest?: string | null;
1577
2236
  };
1578
2237
  type EmbedOrigin = string;
1579
2238
  type AcceptedCurrencies = Array<PlatformCurrency>;
1580
2239
  type PlatformCurrency = "eth" | "tron";
2240
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
1581
2241
  type DeveloperLogoUploadResponse = {
1582
2242
  logoUrl: string | null;
1583
2243
  };
@@ -1640,7 +2300,7 @@ type DeveloperAppWalletsResponse = {
1640
2300
  };
1641
2301
  type DeveloperAppWalletItem = {
1642
2302
  chain: string;
1643
- address: string;
2303
+ address: string | string;
1644
2304
  custody: "server" | null;
1645
2305
  walletId: string | null;
1646
2306
  autoSweepEnabled: boolean;
@@ -1661,7 +2321,7 @@ type DeveloperAppProvisionWalletResponse = {
1661
2321
  chain: string;
1662
2322
  custody: "server";
1663
2323
  walletId: string;
1664
- address: string;
2324
+ address: string | string;
1665
2325
  };
1666
2326
  type DeveloperAppWithdrawResponse = {
1667
2327
  appId: string;
@@ -1815,6 +2475,7 @@ type DeveloperProductionRequestPayload = {
1815
2475
  type DeveloperAppItem = {
1816
2476
  id: string;
1817
2477
  name: DeveloperAppName;
2478
+ slug: AppPageSlug | null;
1818
2479
  logoUrl: string | null;
1819
2480
  environment: "development" | "production";
1820
2481
  productionApprovedAt: string | null;
@@ -1823,6 +2484,7 @@ type DeveloperAppItem = {
1823
2484
  redirectUris: Array<string>;
1824
2485
  embedOrigins: Array<EmbedOrigin>;
1825
2486
  acceptedCurrencies: AcceptedCurrencies;
2487
+ acceptedNetworks: AcceptedNetworks;
1826
2488
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
1827
2489
  keys: Array<DeveloperAppKeyItem>;
1828
2490
  pendingProductionRequestId: string | null;
@@ -1866,15 +2528,29 @@ type AppPageDraft = {
1866
2528
  gallery: AppPageGallery;
1867
2529
  chapters: AppPageChapters;
1868
2530
  links: AppPageLinks;
2531
+ platforms: AppPagePlatforms;
2532
+ gameType: AppPageGameType;
2533
+ ageRating: AppPageAgeRating;
2534
+ languages: AppPageLanguages;
2535
+ releaseStatus: AppPageReleaseStatus;
1869
2536
  firstPublishedAt: string | null;
1870
2537
  reviewedAt: string | null;
1871
2538
  reviewNotes: string | null;
1872
2539
  hiddenAt: string | null;
1873
2540
  hiddenReasonPublic: string | null;
1874
2541
  pendingReview: boolean;
2542
+ bip: AppPageBipState;
2543
+ };
2544
+ type AppPageBipState = {
2545
+ enabled: boolean;
2546
+ status: "draft" | "pending_review" | "published" | "hidden";
2547
+ firstPublishedAt: string | null;
2548
+ reviewedAt: string | null;
2549
+ reviewNotes: string | null;
2550
+ hiddenAt: string | null;
2551
+ hiddenReasonPublic: string | null;
1875
2552
  };
1876
2553
  type UpdateAppPage = {
1877
- slug?: AppPageSlug | null;
1878
2554
  categories?: AppPageCategories;
1879
2555
  tagline?: AppPageTagline | null;
1880
2556
  bannerUrl?: string | null;
@@ -1888,10 +2564,18 @@ type UpdateAppPage = {
1888
2564
  gallery?: AppPageGallery;
1889
2565
  chapters?: AppPageChapters;
1890
2566
  links?: AppPageLinks;
2567
+ platforms?: AppPagePlatforms;
2568
+ gameType?: AppPageGameType;
2569
+ ageRating?: AppPageAgeRating;
2570
+ languages?: AppPageLanguages;
2571
+ releaseStatus?: AppPageReleaseStatus;
1891
2572
  };
1892
2573
  type AppPageGalleryUploadResponse = {
1893
2574
  url: string;
1894
2575
  };
2576
+ type AppPageBipToggle = {
2577
+ enabled: boolean;
2578
+ };
1895
2579
  type AdminActivePlayersResponse = {
1896
2580
  players: Array<AdminActivePlayer>;
1897
2581
  total: number;
@@ -2030,6 +2714,11 @@ type AdminAppPageItem = {
2030
2714
  hiddenAt: string | null;
2031
2715
  hiddenReasonInternal: string | null;
2032
2716
  pendingChangesSubmittedAt: string | null;
2717
+ bipEnabled: boolean;
2718
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2719
+ bipFirstPublishedAt: string | null;
2720
+ bipHiddenAt: string | null;
2721
+ openReportCount: number;
2033
2722
  };
2034
2723
  type AdminAppPageStatusResponse = {
2035
2724
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2055,6 +2744,25 @@ type AdminAppPageDiffField = {
2055
2744
  from: string;
2056
2745
  to: string;
2057
2746
  };
2747
+ type AdminAppPageBipStatusResponse = {
2748
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2749
+ };
2750
+ type AdminAppContentReportListResponse = {
2751
+ reports: Array<AdminAppContentReportItem>;
2752
+ total: number;
2753
+ hasMore: boolean;
2754
+ };
2755
+ type AdminAppContentReportItem = {
2756
+ id: string;
2757
+ category: AppContentReportCategory;
2758
+ details: string | null;
2759
+ status: AppContentReportStatus;
2760
+ acknowledgedAt: string | null;
2761
+ createdAt: string;
2762
+ appId: string;
2763
+ appName: string;
2764
+ appSlug: string | null;
2765
+ };
2058
2766
  type PlatformFeesResponse = {
2059
2767
  purchaseFeeBps: number;
2060
2768
  stakeFeeBps: number;
@@ -2235,6 +2943,13 @@ type AppealResolveRequest = {
2235
2943
  decision: "refund" | "dismiss";
2236
2944
  notes?: string;
2237
2945
  };
2946
+ type PaymentRatesResponse = {
2947
+ asOf: string;
2948
+ ethUsd: number | null;
2949
+ solUsd: number | null;
2950
+ solLamportsPerCent: number | null;
2951
+ tronUsdPerToken: number;
2952
+ };
2238
2953
  type AppealFileResponse = {
2239
2954
  appealId: string;
2240
2955
  paymentId: string;
@@ -2344,7 +3059,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2344
3059
  //#region src/admin/app-pages.d.ts
2345
3060
  declare function listAppPages(context: TransportContext, input: {
2346
3061
  readonly bearer: string;
2347
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3062
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2348
3063
  }): Promise<AdminAppPageListResponse>;
2349
3064
  declare function getAppPageChanges(context: TransportContext, input: {
2350
3065
  readonly bearer: string;
@@ -2369,6 +3084,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2369
3084
  readonly appId: string;
2370
3085
  readonly body: ReviewAppPage;
2371
3086
  }): Promise<AdminAppPageStatusResponse>;
3087
+ declare function reviewAppPageBip(context: TransportContext, input: {
3088
+ readonly bearer: string;
3089
+ readonly appId: string;
3090
+ readonly body: ReviewAppPage;
3091
+ }): Promise<AdminAppPageBipStatusResponse>;
3092
+ declare function hideAppPageBip(context: TransportContext, input: {
3093
+ readonly bearer: string;
3094
+ readonly appId: string;
3095
+ readonly body: HideAppPage;
3096
+ }): Promise<AdminAppPageBipStatusResponse>;
3097
+ declare function unhideAppPageBip(context: TransportContext, input: {
3098
+ readonly bearer: string;
3099
+ readonly appId: string;
3100
+ }): Promise<AdminAppPageBipStatusResponse>;
2372
3101
  //#endregion
2373
3102
  //#region src/admin/appeals.d.ts
2374
3103
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2400,6 +3129,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2400
3129
  readonly body: AppealResolveRequest;
2401
3130
  }): Promise<AppealResolveSignedResponse>;
2402
3131
  //#endregion
3132
+ //#region src/admin/content-reports.d.ts
3133
+ declare function listAdminContentReports(context: TransportContext, input: {
3134
+ readonly bearer: string;
3135
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3136
+ readonly limit?: number;
3137
+ readonly offset?: number;
3138
+ }): Promise<AdminAppContentReportListResponse>;
3139
+ declare function triageAdminContentReport(context: TransportContext, input: {
3140
+ readonly bearer: string;
3141
+ readonly reportId: string;
3142
+ readonly status: "acknowledged" | "dismissed";
3143
+ }): Promise<AppContentReport>;
3144
+ //#endregion
2403
3145
  //#region src/admin/developers.d.ts
2404
3146
  declare function listDeveloperRequests(context: TransportContext, input: {
2405
3147
  readonly bearer: string;
@@ -2415,6 +3157,12 @@ declare function listDevelopers(context: TransportContext, input: {
2415
3157
  readonly bearer: string;
2416
3158
  }): Promise<AdminDeveloperListResponse>;
2417
3159
  //#endregion
3160
+ //#region src/admin/inventory-vault.d.ts
3161
+ declare function forceWithdrawVaultCustody(context: TransportContext, input: {
3162
+ readonly bearer: string;
3163
+ readonly custodyId: string;
3164
+ }): Promise<InventoryVaultForceWithdrawResponse>;
3165
+ //#endregion
2418
3166
  //#region src/admin/payments.d.ts
2419
3167
  declare function getPlatformFees(context: TransportContext, input: {
2420
3168
  readonly bearer: string;
@@ -2533,6 +3281,113 @@ declare function getAppPage(context: TransportContext, input: {
2533
3281
  readonly slug: string;
2534
3282
  }): Promise<PublicAppPage>;
2535
3283
  //#endregion
3284
+ //#region src/catalog/bip-updates.d.ts
3285
+ declare function listBipUpdates(context: TransportContext, input: {
3286
+ readonly bearer?: string;
3287
+ readonly slug: string;
3288
+ readonly limit?: number;
3289
+ readonly offset?: number;
3290
+ }): Promise<BipUpdateListResponse>;
3291
+ declare function listBipUpdateComments(context: TransportContext, input: {
3292
+ readonly bearer?: string;
3293
+ readonly slug: string;
3294
+ readonly updateId: string;
3295
+ readonly limit?: number;
3296
+ readonly offset?: number;
3297
+ }): Promise<BipUpdateCommentListResponse>;
3298
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3299
+ readonly bearer: string;
3300
+ readonly slug: string;
3301
+ }): Promise<MyBipUpdateReactionsResponse>;
3302
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3303
+ readonly bearer: string;
3304
+ readonly slug: string;
3305
+ readonly updateId: string;
3306
+ readonly body: SetBipUpdateReactionRequest;
3307
+ }): Promise<SetBipUpdateReactionResponse>;
3308
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3309
+ readonly bearer: string;
3310
+ readonly slug: string;
3311
+ readonly updateId: string;
3312
+ readonly body: string;
3313
+ }): Promise<CreateBipUpdateCommentResponse>;
3314
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3315
+ readonly bearer: string;
3316
+ readonly slug: string;
3317
+ readonly commentId: string;
3318
+ }): Promise<DeleteBipUpdateCommentResponse>;
3319
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3320
+ readonly bearer: string;
3321
+ readonly appId: string;
3322
+ readonly limit?: number;
3323
+ readonly offset?: number;
3324
+ }): Promise<BipUpdateListResponse>;
3325
+ declare function createBipUpdate(context: TransportContext, input: {
3326
+ readonly bearer: string;
3327
+ readonly appId: string;
3328
+ readonly body: CreateBipUpdateRequest;
3329
+ }): Promise<BipUpdate>;
3330
+ declare function updateBipUpdate(context: TransportContext, input: {
3331
+ readonly bearer: string;
3332
+ readonly appId: string;
3333
+ readonly updateId: string;
3334
+ readonly body: UpdateBipUpdateRequest;
3335
+ }): Promise<BipUpdate>;
3336
+ declare function deleteBipUpdate(context: TransportContext, input: {
3337
+ readonly bearer: string;
3338
+ readonly appId: string;
3339
+ readonly updateId: string;
3340
+ }): Promise<DeleteBipUpdateResponse>;
3341
+ declare function pinBipUpdate(context: TransportContext, input: {
3342
+ readonly bearer: string;
3343
+ readonly appId: string;
3344
+ readonly updateId: string;
3345
+ }): Promise<BipUpdate>;
3346
+ declare function unpinBipUpdate(context: TransportContext, input: {
3347
+ readonly bearer: string;
3348
+ readonly appId: string;
3349
+ readonly updateId: string;
3350
+ }): Promise<BipUpdate>;
3351
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3352
+ readonly bearer: string;
3353
+ readonly appId: string;
3354
+ readonly file: Blob;
3355
+ readonly filename: string;
3356
+ readonly contentType: string;
3357
+ }): Promise<BipUpdateMediaUploadResponse>;
3358
+ declare function getBipInterestCount(context: TransportContext, input: {
3359
+ readonly bearer?: string;
3360
+ readonly slug: string;
3361
+ }): Promise<BipInterestCountResponse>;
3362
+ declare function getMyBipEngagement(context: TransportContext, input: {
3363
+ readonly bearer: string;
3364
+ readonly slug: string;
3365
+ }): Promise<BipEngagementResponse>;
3366
+ declare function registerBipInterest(context: TransportContext, input: {
3367
+ readonly bearer: string;
3368
+ readonly slug: string;
3369
+ readonly interested: boolean;
3370
+ }): Promise<BipEngagementResponse>;
3371
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3372
+ readonly bearer: string;
3373
+ readonly slug: string;
3374
+ readonly subscribed: boolean;
3375
+ }): Promise<BipEngagementResponse>;
3376
+ //#endregion
3377
+ //#region src/catalog/build-in-public.d.ts
3378
+ declare function getBipDirectory(context: TransportContext, input: {
3379
+ readonly bearer?: string;
3380
+ readonly genre?: string;
3381
+ readonly q?: string;
3382
+ readonly sort?: "newest" | "top";
3383
+ readonly before?: string;
3384
+ readonly limit?: number;
3385
+ }): Promise<LibraryListResponse>;
3386
+ declare function getBipPage(context: TransportContext, input: {
3387
+ readonly bearer?: string;
3388
+ readonly slug: string;
3389
+ }): Promise<PublicBipPage>;
3390
+ //#endregion
2536
3391
  //#region src/catalog/content-reports.d.ts
2537
3392
  declare function submitAppContentReport(context: TransportContext, input: {
2538
3393
  readonly appId: string;
@@ -2545,6 +3400,7 @@ declare function getLibrary(context: TransportContext, input: {
2545
3400
  readonly bearer?: string;
2546
3401
  readonly genre?: string;
2547
3402
  readonly q?: string;
3403
+ readonly sort?: "newest" | "top";
2548
3404
  readonly before?: string;
2549
3405
  readonly limit?: number;
2550
3406
  }): Promise<LibraryListResponse>;
@@ -2577,6 +3433,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2577
3433
  readonly slug: string;
2578
3434
  readonly bearer: string;
2579
3435
  }): Promise<MyReviewResponse>;
3436
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
3437
+ readonly slug: string;
3438
+ readonly bearer: string;
3439
+ }): Promise<MyReviewReactionsResponse>;
3440
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
3441
+ readonly slug: string;
3442
+ readonly reviewId: string;
3443
+ readonly bearer: string;
3444
+ readonly reaction: SetReviewReactionRequest;
3445
+ }): Promise<SetReviewReactionResponse>;
3446
+ declare function tipGameReview(context: TransportContext, input: {
3447
+ readonly slug: string;
3448
+ readonly reviewId: string;
3449
+ readonly bearer: string;
3450
+ readonly tip: TipReviewRequest;
3451
+ readonly idempotencyKey?: string;
3452
+ }): Promise<TipReviewResponse>;
3453
+ declare function listGameReviewComments(context: TransportContext, input: {
3454
+ readonly slug: string;
3455
+ readonly reviewId: string;
3456
+ readonly bearer?: string;
3457
+ readonly limit?: number;
3458
+ readonly offset?: number;
3459
+ }): Promise<ReviewCommentListResponse>;
3460
+ declare function commentOnGameReview(context: TransportContext, input: {
3461
+ readonly slug: string;
3462
+ readonly reviewId: string;
3463
+ readonly bearer: string;
3464
+ readonly comment: CreateReviewCommentRequest;
3465
+ }): Promise<CreateReviewCommentResponse>;
3466
+ declare function deleteGameReviewComment(context: TransportContext, input: {
3467
+ readonly slug: string;
3468
+ readonly commentId: string;
3469
+ readonly bearer: string;
3470
+ }): Promise<DeleteReviewCommentResponse>;
2580
3471
  declare function replyToGameReview(context: TransportContext, input: {
2581
3472
  readonly appId: string;
2582
3473
  readonly reviewId: string;
@@ -2662,6 +3553,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
2662
3553
  readonly before?: string;
2663
3554
  }): Promise<PaymentHistoryResponse>;
2664
3555
  //#endregion
3556
+ //#region src/dashboard/rates.d.ts
3557
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3558
+ //#endregion
2665
3559
  //#region src/developer/api-keys.d.ts
2666
3560
  declare function createDeveloperApiKey(context: TransportContext, input: {
2667
3561
  readonly bearer: string;
@@ -2799,6 +3693,53 @@ declare function updateDeveloperAppContentReportStatus(context: TransportContext
2799
3693
  readonly status: "acknowledged" | "dismissed";
2800
3694
  }): Promise<AppContentReport>;
2801
3695
  //#endregion
3696
+ //#region src/developer/inventory.d.ts
3697
+ declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
3698
+ readonly bearer: string;
3699
+ readonly appId: string;
3700
+ readonly registration: InventoryItemRegistrationInput;
3701
+ }): Promise<InventoryRegistrationQuote>;
3702
+ declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
3703
+ readonly bearer: string;
3704
+ readonly appId: string;
3705
+ readonly registration: InventoryItemRegistrationInput;
3706
+ }): Promise<InventoryItemRegistrationResult>;
3707
+ declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
3708
+ readonly bearer: string;
3709
+ readonly appId: string;
3710
+ }): Promise<InventoryCollectionListResponse>;
3711
+ declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
3712
+ readonly bearer: string;
3713
+ readonly appId: string;
3714
+ }): Promise<InventoryItemListResponse>;
3715
+ declare function createDeveloperAppMintPermit(context: TransportContext, input: {
3716
+ readonly bearer: string;
3717
+ readonly appId: string;
3718
+ readonly itemId: string;
3719
+ readonly grant: InventoryMintPermitCreateInput;
3720
+ }): Promise<InventoryMintPermitRecord>;
3721
+ declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
3722
+ readonly bearer: string;
3723
+ readonly appId: string;
3724
+ readonly itemId: string;
3725
+ }): Promise<InventoryItemHoldersResponse>;
3726
+ declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
3727
+ readonly bearer: string;
3728
+ readonly appId: string;
3729
+ readonly itemId: string;
3730
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3731
+ readonly filename: string;
3732
+ readonly contentType: string;
3733
+ }): Promise<InventoryItemRecord>;
3734
+ declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
3735
+ readonly bearer: string;
3736
+ readonly appId: string;
3737
+ readonly itemId: string;
3738
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3739
+ readonly filename: string;
3740
+ readonly contentType: string;
3741
+ }): Promise<InventoryItemRecord>;
3742
+ //#endregion
2802
3743
  //#region src/developer/pages.d.ts
2803
3744
  declare function getDeveloperAppPage(context: TransportContext, input: {
2804
3745
  readonly bearer: string;
@@ -2857,6 +3798,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
2857
3798
  readonly bearer: string;
2858
3799
  readonly appId: string;
2859
3800
  }): Promise<AppPageDraft>;
3801
+ declare function setAppPageBip(context: TransportContext, input: {
3802
+ readonly bearer: string;
3803
+ readonly appId: string;
3804
+ readonly body: AppPageBipToggle;
3805
+ }): Promise<AppPageDraft>;
3806
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3807
+ readonly bearer: string;
3808
+ readonly appId: string;
3809
+ }): Promise<AppPageDraft>;
3810
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3811
+ readonly bearer: string;
3812
+ readonly appId: string;
3813
+ }): Promise<AppPageDraft>;
2860
3814
  //#endregion
2861
3815
  //#region src/developer/participants.d.ts
2862
3816
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -2923,6 +3877,20 @@ declare function uploadMultipart(context: TransportContext, input: {
2923
3877
  readonly contentType: string;
2924
3878
  }): Promise<unknown>;
2925
3879
  //#endregion
3880
+ //#region src/developer/vault.d.ts
3881
+ declare function createDeveloperVaultPermit(context: TransportContext, input: {
3882
+ readonly bearer: string;
3883
+ readonly appId: string;
3884
+ readonly itemId: string;
3885
+ readonly grant: InventoryVaultPermitCreateInput;
3886
+ }): Promise<InventoryVaultPermitRecord>;
3887
+ declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
3888
+ readonly bearer: string;
3889
+ readonly appId: string;
3890
+ readonly itemId: string;
3891
+ readonly grant: InventoryWithdrawPermitCreateInput;
3892
+ }): Promise<InventoryVaultPermitRecord>;
3893
+ //#endregion
2926
3894
  //#region src/inventory/list.d.ts
2927
3895
  declare function listInventory(context: TransportContext, input: {
2928
3896
  readonly bearer: string;
@@ -2931,12 +3899,55 @@ declare function listInventoryForApp(context: TransportContext, input: {
2931
3899
  readonly bearer: string;
2932
3900
  }): Promise<InventoryListResponse>;
2933
3901
  //#endregion
3902
+ //#region src/inventory/nft-transfer.d.ts
3903
+ declare function quoteNftTransfer(context: TransportContext, input: {
3904
+ readonly bearer: string;
3905
+ readonly body: InventoryNftTransferQuoteRequest;
3906
+ }): Promise<InventoryNftTransferQuoteResponse>;
3907
+ declare function executeNftTransfer(context: TransportContext, input: {
3908
+ readonly bearer: string;
3909
+ readonly body: InventoryNftTransferRequest;
3910
+ }): Promise<InventoryNftTransferResponse>;
3911
+ //#endregion
3912
+ //#region src/inventory/permits.d.ts
3913
+ declare function listInventoryMintPermits(context: TransportContext, input: {
3914
+ readonly bearer: string;
3915
+ }): Promise<InventoryPendingPermitListResponse>;
3916
+ declare function redeemInventoryMintPermit(context: TransportContext, input: {
3917
+ readonly bearer: string;
3918
+ readonly permitId: string;
3919
+ }): Promise<InventoryPermitRedeemResult>;
3920
+ //#endregion
2934
3921
  //#region src/inventory/request-mint.d.ts
2935
3922
  declare function requestMint(context: TransportContext, input: {
2936
3923
  readonly appBearer: string;
2937
3924
  readonly body: MintRequestInput;
2938
3925
  }): Promise<MintRequestResult>;
2939
3926
  //#endregion
3927
+ //#region src/inventory/vault.d.ts
3928
+ declare function listInventoryVaultPermits(context: TransportContext, input: {
3929
+ readonly bearer: string;
3930
+ }): Promise<InventoryPendingVaultPermitListResponse>;
3931
+ declare function signInventoryVaultPermit(context: TransportContext, input: {
3932
+ readonly bearer: string;
3933
+ readonly permitId: string;
3934
+ }): Promise<InventorySignedVaultPermit>;
3935
+ declare function quoteRelayedVaultPermit(context: TransportContext, input: {
3936
+ readonly bearer: string;
3937
+ readonly permitId: string;
3938
+ }): Promise<InventoryRelayedVaultQuoteResponse>;
3939
+ declare function submitRelayedVaultPermit(context: TransportContext, input: {
3940
+ readonly bearer: string;
3941
+ readonly permitId: string;
3942
+ readonly body: InventoryRelayedVaultSubmitRequest;
3943
+ }): Promise<InventoryRelayedVaultSubmitResponse>;
3944
+ declare function listInventoryVaulted(context: TransportContext, input: {
3945
+ readonly bearer: string;
3946
+ }): Promise<InventoryVaultCustodyListResponse>;
3947
+ declare function listOauthInventoryVaulted(context: TransportContext, input: {
3948
+ readonly bearer: string;
3949
+ }): Promise<InventoryVaultCustodyListResponse>;
3950
+ //#endregion
2940
3951
  //#region src/messaging/dm-key-backup.d.ts
2941
3952
  declare function getDmKeyBackupStatus(context: TransportContext, input: {
2942
3953
  readonly bearer: string;
@@ -3171,6 +4182,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3171
4182
  readonly bearer: string;
3172
4183
  readonly intentId: string;
3173
4184
  }): Promise<OauthPaymentIntentResolveResponse>;
4185
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4186
+ readonly bearer: string;
4187
+ readonly intentId: string;
4188
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4189
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4190
+ readonly bearer: string;
4191
+ readonly intentId: string;
4192
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4193
+ }): Promise<OauthPaymentIntentResolveResponse>;
3174
4194
  //#endregion
3175
4195
  //#region src/payments/limits.d.ts
3176
4196
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -3213,6 +4233,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3213
4233
  readonly bearer: string;
3214
4234
  readonly body: TronDepositRequest;
3215
4235
  }): Promise<TronDepositResponse>;
4236
+ declare function createTronTransfer(context: TransportContext, input: {
4237
+ readonly bearer: string;
4238
+ readonly body: TronTransferRequest;
4239
+ readonly idempotencyKey?: string;
4240
+ }): Promise<TronTransferResponse>;
4241
+ declare function getTronSecurity(context: TransportContext, input: {
4242
+ readonly bearer: string;
4243
+ }): Promise<TronSecuritySetting>;
4244
+ declare function setTronSecurity(context: TransportContext, input: {
4245
+ readonly bearer: string;
4246
+ readonly setting: TronSecuritySetting;
4247
+ }): Promise<TronSecuritySetting>;
4248
+ declare function createTronTransferChallenge(context: TransportContext, input: {
4249
+ readonly bearer: string;
4250
+ readonly body: TronTransferChallengeRequest;
4251
+ }): Promise<TronTransferChallengeResponse>;
3216
4252
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3217
4253
  readonly bearer: string;
3218
4254
  }): Promise<TronConnectOnboardingResponse>;
@@ -3349,6 +4385,10 @@ declare function sendFriendRequest(context: TransportContext, input: {
3349
4385
  readonly bearer: string;
3350
4386
  readonly userId: string;
3351
4387
  }): Promise<void>;
4388
+ declare function removeFriend(context: TransportContext, input: {
4389
+ readonly bearer: string;
4390
+ readonly userId: string;
4391
+ }): Promise<void>;
3352
4392
  declare function decideFriendRequest(context: TransportContext, input: {
3353
4393
  readonly bearer: string;
3354
4394
  readonly requestId: string;
@@ -3361,6 +4401,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3361
4401
  declare function listFriends(context: TransportContext, input: {
3362
4402
  readonly bearer: string;
3363
4403
  }): Promise<FriendListResponse>;
4404
+ declare function listFriendsForApp(context: TransportContext, input: {
4405
+ readonly bearer: string;
4406
+ }): Promise<AppFriendListResponse>;
3364
4407
  //#endregion
3365
4408
  //#region src/reads/socials.d.ts
3366
4409
  declare function listSocials(context: TransportContext, input: {
@@ -3652,4 +4695,4 @@ type CookieTokenStoreOptions = {
3652
4695
  };
3653
4696
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3654
4697
  //#endregion
3655
- export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, completePaymentIntent, consolidateDeveloperAppWallet, createConsoleLogger, createCookieTokenStore, createDelegation, createDeveloperApiKey, createDeveloperApp, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, editMessage, exchangeAuthorizationCode, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviews, listInventory, listInventoryForApp, listNotifications, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, refreshAccessToken, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setProcessorWhitelist, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signPaymentIntent, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, toTokenSet, unfollowUser, unhideAppPage, unlockDmKeyBackup, unpinThread, unpublishAppPage, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
4698
+ 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, pinBipUpdate, 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, unpinBipUpdate, 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 };