@metatrongg/sdk 0.8.0-dev.6ac4e78 → 0.8.0-dev.6be671d

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,16 @@ 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) | ({
737
+ kind: "solana_stake";
738
+ } & ActivityRowSolanaStake) | ({
739
+ kind: "solana_pot_leg";
740
+ } & ActivityRowSolanaPotLeg);
531
741
  type ActivityRowPayment = {
532
742
  kind: "payment";
533
743
  groupId: string | null;
@@ -773,6 +983,8 @@ type ActivityRowTronPot = {
773
983
  role: "incoming" | "outgoing";
774
984
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
775
985
  amountCents: number;
986
+ usdCents: number;
987
+ status: "settled";
776
988
  app: {
777
989
  id: string;
778
990
  name: string;
@@ -780,8 +992,16 @@ type ActivityRowTronPot = {
780
992
  slug: string | null;
781
993
  bannerUrl: string | null;
782
994
  } | null;
995
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
783
996
  metadata?: PaymentMetadata | null;
784
997
  };
998
+ type ActivityTronInvolvedUser = {
999
+ userId: string;
1000
+ handle: string | null;
1001
+ displayName: string | null;
1002
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
1003
+ amountCents: number;
1004
+ };
785
1005
  type ActivityRowTronCashout = {
786
1006
  kind: "tron_cashout";
787
1007
  groupId: string | null;
@@ -799,6 +1019,20 @@ type ActivityRowTronCashout = {
799
1019
  rejectionReason: string | null;
800
1020
  settledAt: string | null;
801
1021
  };
1022
+ type ActivityRowTronTransfer = {
1023
+ kind: "tron_transfer";
1024
+ groupId: string | null;
1025
+ id: string;
1026
+ occurredAt: string;
1027
+ role: "incoming" | "outgoing";
1028
+ amountCents: number;
1029
+ usdCents: number;
1030
+ status: "settled";
1031
+ counterpartyUserId: string | null;
1032
+ counterpartyHandle: string | null;
1033
+ counterpartyDisplayName: string | null;
1034
+ note: string | null;
1035
+ };
802
1036
  type ActivityRowReferralEarning = {
803
1037
  kind: "referral_earning";
804
1038
  groupId: string | null;
@@ -815,6 +1049,72 @@ type ActivityRowReferralEarning = {
815
1049
  logIndex: number;
816
1050
  usdCents: number | null;
817
1051
  };
1052
+ type ActivityRowNftCharge = {
1053
+ kind: "nft_charge";
1054
+ groupId: string | null;
1055
+ id: string;
1056
+ occurredAt: string;
1057
+ role: "outgoing";
1058
+ chargeKind: "registration" | "mint" | "transfer_gas";
1059
+ amountCents: number;
1060
+ usdCents: number;
1061
+ status: "settled";
1062
+ collectionAddress: string | null;
1063
+ tokenId: string | null;
1064
+ counterpartyUserId: string | null;
1065
+ counterpartyHandle: string | null;
1066
+ counterpartyDisplayName: string | null;
1067
+ };
1068
+ type ActivityRowSolanaStake = {
1069
+ kind: "solana_stake";
1070
+ groupId: string | null;
1071
+ id: string;
1072
+ chain: string;
1073
+ occurredAt: string;
1074
+ role: "outgoing" | "incoming";
1075
+ amount: string;
1076
+ token: string;
1077
+ potId: string | null;
1078
+ usdCents: number;
1079
+ status: "completed";
1080
+ txHash: string | null;
1081
+ app: {
1082
+ id: string;
1083
+ name: string;
1084
+ logoUrl: string | null;
1085
+ slug: string | null;
1086
+ bannerUrl: string | null;
1087
+ } | null;
1088
+ stakerUserId?: string | null;
1089
+ stakerHandle?: string | null;
1090
+ stakerDisplayName?: string | null;
1091
+ metadata?: PaymentMetadata | null;
1092
+ };
1093
+ type ActivityRowSolanaPotLeg = {
1094
+ kind: "solana_pot_leg";
1095
+ groupId: string | null;
1096
+ id: string;
1097
+ chain: string;
1098
+ occurredAt: string;
1099
+ role: "outgoing" | "incoming";
1100
+ beneficiary: string;
1101
+ potId: string | null;
1102
+ amount: string;
1103
+ token: string;
1104
+ usdCents: number | null;
1105
+ status: "settled";
1106
+ app: {
1107
+ id: string;
1108
+ name: string;
1109
+ logoUrl: string | null;
1110
+ slug: string | null;
1111
+ bannerUrl: string | null;
1112
+ } | null;
1113
+ txHash: string | null;
1114
+ recipientUserId?: string | null;
1115
+ recipientHandle?: string | null;
1116
+ recipientDisplayName?: string | null;
1117
+ };
818
1118
  type OutstandingResponse = {
819
1119
  rows: Array<OutstandingByToken>;
820
1120
  };
@@ -864,7 +1164,7 @@ type TronLedgerResponse = {
864
1164
  };
865
1165
  type TronLedgerEntry = {
866
1166
  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";
1167
+ 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
1168
  amountCents: number;
869
1169
  currency: string;
870
1170
  createdAt: string;
@@ -879,6 +1179,45 @@ type TronDepositResponse = {
879
1179
  type TronDepositRequest = {
880
1180
  amountCents: number;
881
1181
  };
1182
+ type TronTransferResponse = {
1183
+ status: "completed";
1184
+ amountCents: number;
1185
+ balanceCents: number;
1186
+ recipient: {
1187
+ userId: string;
1188
+ handle: string | null;
1189
+ displayName: string | null;
1190
+ };
1191
+ };
1192
+ type TronTransferRequest = {
1193
+ recipientUserId: string;
1194
+ amountCents: number;
1195
+ note?: string;
1196
+ challengeId?: string;
1197
+ signature?: string;
1198
+ threadId?: string;
1199
+ };
1200
+ type TronSecuritySetting = {
1201
+ requireSignature: boolean;
1202
+ };
1203
+ type TronTransferChallengeResponse = ({
1204
+ required: false;
1205
+ } & TronTransferChallengeNotRequired) | ({
1206
+ required: true;
1207
+ } & TronTransferChallengeRequired);
1208
+ type TronTransferChallengeNotRequired = {
1209
+ required: false;
1210
+ };
1211
+ type TronTransferChallengeRequired = {
1212
+ required: true;
1213
+ challengeId: string;
1214
+ message: string;
1215
+ expiresAt: string;
1216
+ };
1217
+ type TronTransferChallengeRequest = {
1218
+ recipientUserId: string;
1219
+ amountCents: number;
1220
+ };
882
1221
  type TronConnectOnboardingResponse = {
883
1222
  url: string;
884
1223
  };
@@ -935,12 +1274,15 @@ type WalletListResponse = {
935
1274
  wallets: Array<WalletItem>;
936
1275
  };
937
1276
  type WalletChainList = Array<{
938
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1277
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
939
1278
  displayName: string;
940
- chainId: number;
1279
+ family: "evm" | "solana";
1280
+ nativeSymbol: string;
1281
+ chainId?: number;
941
1282
  }>;
942
1283
  type WalletItem = {
943
- address: string;
1284
+ address: string | string;
1285
+ family: "evm" | "solana";
944
1286
  label: WalletLabel;
945
1287
  kind: "personal" | "app";
946
1288
  app: WalletAppLink;
@@ -957,6 +1299,9 @@ type WalletBalances = {
957
1299
  "ethereum-mainnet"?: WalletChainBalance;
958
1300
  "base-mainnet"?: WalletChainBalance;
959
1301
  "ethereum-sepolia"?: WalletChainBalance;
1302
+ "base-sepolia"?: WalletChainBalance;
1303
+ "solana-mainnet"?: WalletChainBalance;
1304
+ "solana-devnet"?: WalletChainBalance;
960
1305
  };
961
1306
  type WalletChainBalance = {
962
1307
  native: string;
@@ -966,12 +1311,14 @@ type WalletDelegationStatus = {
966
1311
  mode: WalletDelegationMode;
967
1312
  caps: WalletDelegationCaps;
968
1313
  policyId: string | null;
1314
+ slippageBps: DelegationSlippageBps;
969
1315
  };
970
1316
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
971
1317
  type WalletDelegationCaps = {
972
1318
  native: string;
973
1319
  usdc: string;
974
1320
  } | null;
1321
+ type DelegationSlippageBps = number | null;
975
1322
  type WalletLabelUpdateResponse = {
976
1323
  address: string;
977
1324
  label: WalletLabel;
@@ -1045,6 +1392,7 @@ type ThreadLastMessagePreview = {
1045
1392
  url: string;
1046
1393
  count: number;
1047
1394
  } | null;
1395
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1048
1396
  sentAt: string;
1049
1397
  } | null;
1050
1398
  type MessageEnvelope = {
@@ -1056,6 +1404,20 @@ type MessageEnvelope = {
1056
1404
  iv: string;
1057
1405
  ct: string;
1058
1406
  } | null;
1407
+ type MessageTransactionTronTransfer = {
1408
+ kind: "tron_transfer";
1409
+ amountCents: number;
1410
+ recipientUserId: string;
1411
+ };
1412
+ type MessageTransactionNftTransfer = {
1413
+ kind: "nft_transfer";
1414
+ recipientUserId: string;
1415
+ collectionAddress: string;
1416
+ tokenId: string;
1417
+ amount: string;
1418
+ itemName: string | null;
1419
+ imageAssetId?: string | null;
1420
+ };
1059
1421
  type GroupThreadSummary = {
1060
1422
  kind: "group";
1061
1423
  id: string;
@@ -1102,6 +1464,7 @@ type MessageItem = {
1102
1464
  id: string;
1103
1465
  threadId: string;
1104
1466
  senderUserId: string;
1467
+ transaction?: MessageTransactionTronTransfer | MessageTransactionNftTransfer | null;
1105
1468
  body: string;
1106
1469
  envelope?: MessageEnvelope;
1107
1470
  sentAt: string;
@@ -1313,11 +1676,45 @@ type InventoryHolding = {
1313
1676
  tokenId: string;
1314
1677
  amount: string;
1315
1678
  name: string | null;
1679
+ description: string | null;
1316
1680
  imageAssetId: string | null;
1317
1681
  bannerAssetId: string | null;
1318
1682
  devMetadata: {
1319
1683
  [key: string]: unknown;
1320
1684
  };
1685
+ appId: string | null;
1686
+ appName: string | null;
1687
+ appLogoUrl: string | null;
1688
+ };
1689
+ type InventoryPendingPermitListResponse = {
1690
+ permits: Array<InventoryPendingPermit>;
1691
+ };
1692
+ type InventoryPendingPermit = {
1693
+ id: string;
1694
+ appId: string;
1695
+ itemId: string;
1696
+ amount: string;
1697
+ priceCents: number | null;
1698
+ gasSponsored: boolean;
1699
+ environment: "development" | "production";
1700
+ createdAt: string;
1701
+ tokenId: string;
1702
+ name: string | null;
1703
+ description: string | null;
1704
+ imageAssetId: string | null;
1705
+ chain: string;
1706
+ collectionAddress: string;
1707
+ kind: "erc721" | "erc1155";
1708
+ };
1709
+ type InventoryPermitRedeemResult = {
1710
+ mint: MintRequestResult;
1711
+ charge: {
1712
+ currency: "tron";
1713
+ gasCents: number;
1714
+ priceCents: number;
1715
+ totalCents: number;
1716
+ gasPaidBy: "user" | "developer";
1717
+ };
1321
1718
  };
1322
1719
  type MintRequestResult = {
1323
1720
  mintRequestId: string;
@@ -1333,6 +1730,247 @@ type MintRequestInput = {
1333
1730
  tokenId?: string;
1334
1731
  amount?: string;
1335
1732
  };
1733
+ type InventoryCollectionListResponse = {
1734
+ collections: Array<InventoryCollectionSummary>;
1735
+ };
1736
+ type InventoryCollectionSummary = {
1737
+ id: string;
1738
+ chain: string;
1739
+ collectionAddress: string;
1740
+ kind: "erc721" | "erc1155";
1741
+ name: string | null;
1742
+ environment: "development" | "production";
1743
+ };
1744
+ type InventoryRegistrationQuote = {
1745
+ itemCount: number;
1746
+ baselineUsdCents: number;
1747
+ gasUsdCents: number;
1748
+ tron: {
1749
+ baselineCents: number;
1750
+ gasCents: number;
1751
+ totalCents: number;
1752
+ };
1753
+ eth: {
1754
+ baselineWei: string;
1755
+ gasWei: string;
1756
+ totalWei: string;
1757
+ };
1758
+ };
1759
+ type InventoryItemRegistrationInput = {
1760
+ collectionAddress: string;
1761
+ chain: string;
1762
+ items: Array<InventoryItemRegistrationSpec>;
1763
+ };
1764
+ type InventoryItemRegistrationSpec = {
1765
+ name?: string | null;
1766
+ description?: string | null;
1767
+ devMetadata?: {
1768
+ [key: string]: unknown;
1769
+ };
1770
+ supplyType?: InventorySupplyType;
1771
+ maxSupply?: string | null;
1772
+ active?: boolean;
1773
+ };
1774
+ type InventorySupplyType = "capped" | "flexible" | "unlimited";
1775
+ type InventoryItemRegistrationResult = {
1776
+ items: Array<InventoryItemRecord>;
1777
+ charge: {
1778
+ currency: "tron";
1779
+ amountCents: number;
1780
+ baselineCents: number;
1781
+ gasCents: number;
1782
+ addItemTxHash: string;
1783
+ };
1784
+ };
1785
+ type InventoryItemRecord = {
1786
+ id: string;
1787
+ collectionId: string;
1788
+ collectionAddress: string;
1789
+ chain: string;
1790
+ kind: "erc721" | "erc1155";
1791
+ tokenId: string;
1792
+ name: string | null;
1793
+ description: string | null;
1794
+ imageAssetId: string | null;
1795
+ bannerAssetId: string | null;
1796
+ devMetadata: {
1797
+ [key: string]: unknown;
1798
+ };
1799
+ supplyType: InventorySupplyType | null;
1800
+ maxSupply: string | null;
1801
+ active: boolean;
1802
+ };
1803
+ type InventoryItemListResponse = {
1804
+ items: Array<InventoryItemRecord>;
1805
+ };
1806
+ type InventoryMintPermitRecord = {
1807
+ id: string;
1808
+ appId: string;
1809
+ itemId: string;
1810
+ userId: string;
1811
+ amount: string;
1812
+ priceCents: number | null;
1813
+ gasSponsored: boolean;
1814
+ status: "pending" | "redeemed" | "revoked";
1815
+ createdAt: string;
1816
+ };
1817
+ type InventoryMintPermitCreateInput = {
1818
+ toUserId: string;
1819
+ amount?: string;
1820
+ priceCents?: number | null;
1821
+ gasSponsored?: boolean;
1822
+ };
1823
+ type InventoryItemHoldersResponse = {
1824
+ stats: InventoryItemStats;
1825
+ holders: Array<InventoryItemHolder>;
1826
+ };
1827
+ type InventoryItemStats = {
1828
+ holderCount: number;
1829
+ walletCount: number;
1830
+ totalHeld: string;
1831
+ };
1832
+ type InventoryItemHolder = {
1833
+ walletAddress: string;
1834
+ userId: string | null;
1835
+ amount: string;
1836
+ };
1837
+ type InventoryVaultPermitRecord = {
1838
+ id: string;
1839
+ appId: string;
1840
+ itemId: string;
1841
+ userId: string;
1842
+ direction: "vault_in" | "withdraw";
1843
+ lockKind: "vault" | "burn" | null;
1844
+ amount: string;
1845
+ gasSponsored: boolean;
1846
+ status: "pending" | "redeemed" | "revoked";
1847
+ custodyId: string | null;
1848
+ createdAt: string;
1849
+ };
1850
+ type InventoryVaultPermitCreateInput = {
1851
+ toUserId: string;
1852
+ lockKind: "vault" | "burn";
1853
+ amount?: string;
1854
+ gasSponsored?: boolean;
1855
+ };
1856
+ type InventoryWithdrawPermitCreateInput = {
1857
+ custodyId: string;
1858
+ };
1859
+ type InventoryPendingVaultPermitListResponse = {
1860
+ permits: Array<InventoryPendingVaultPermit>;
1861
+ };
1862
+ type InventoryPendingVaultPermit = {
1863
+ id: string;
1864
+ appId: string;
1865
+ itemId: string;
1866
+ direction: "vault_in" | "withdraw";
1867
+ lockKind: "vault" | "burn" | null;
1868
+ amount: string;
1869
+ gasSponsored: boolean;
1870
+ environment: "development" | "production";
1871
+ custodyId: string | null;
1872
+ createdAt: string;
1873
+ tokenId: string;
1874
+ name: string | null;
1875
+ description: string | null;
1876
+ imageAssetId: string | null;
1877
+ chain: string;
1878
+ collectionAddress: string;
1879
+ kind: "erc721" | "erc1155";
1880
+ };
1881
+ type InventorySignedVaultPermit = {
1882
+ permitId: string;
1883
+ direction: "vault_in" | "withdraw";
1884
+ vault: string;
1885
+ collection: string;
1886
+ user: string;
1887
+ tokenId: string;
1888
+ amount: string;
1889
+ lockKind: "vault" | "burn" | null;
1890
+ destination: string | null;
1891
+ deadline: number;
1892
+ signature: string;
1893
+ };
1894
+ type InventoryRelayedVaultQuoteResponse = {
1895
+ direction: "vault_in" | "withdraw";
1896
+ collection: string;
1897
+ vault: string;
1898
+ chainId: number;
1899
+ user: string;
1900
+ tokenId: string;
1901
+ amount: string;
1902
+ nonce: string | null;
1903
+ deadline: number;
1904
+ feeCents: number;
1905
+ gasWei: string;
1906
+ gasPaidBy: "developer" | "user";
1907
+ requiresUserSignature: boolean;
1908
+ };
1909
+ type InventoryRelayedVaultSubmitResponse = {
1910
+ ok: boolean;
1911
+ txHash: string;
1912
+ chargedCents: number;
1913
+ gasPaidBy: "developer" | "user";
1914
+ };
1915
+ type InventoryRelayedVaultSubmitRequest = {
1916
+ userSignature?: string;
1917
+ deadline?: number;
1918
+ };
1919
+ type InventoryNftTransferQuoteResponse = {
1920
+ collection: string;
1921
+ chainId: number;
1922
+ from: string;
1923
+ to: string;
1924
+ tokenId: string;
1925
+ amount: string;
1926
+ nonce: string;
1927
+ deadline: number;
1928
+ feeCents: number;
1929
+ gasWei: string;
1930
+ selfPayAvailable: boolean;
1931
+ };
1932
+ type InventoryNftTransferQuoteRequest = {
1933
+ toUserId: string;
1934
+ collection: string;
1935
+ tokenId: string;
1936
+ amount?: string;
1937
+ };
1938
+ type InventoryNftTransferResponse = {
1939
+ ok: boolean;
1940
+ txHash: string;
1941
+ chargedCents: number;
1942
+ };
1943
+ type InventoryNftTransferRequest = {
1944
+ toUserId: string;
1945
+ collection: string;
1946
+ tokenId: string;
1947
+ amount?: string;
1948
+ deadline: number;
1949
+ userSignature: string;
1950
+ threadId?: string;
1951
+ };
1952
+ type InventoryVaultCustodyListResponse = {
1953
+ custody: Array<InventoryVaultCustody>;
1954
+ };
1955
+ type InventoryVaultCustody = {
1956
+ id: string;
1957
+ collectionId: string;
1958
+ collectionAddress: string;
1959
+ chain: string;
1960
+ kind: "erc721" | "erc1155";
1961
+ tokenId: string;
1962
+ amount: string;
1963
+ lockKind: "vault" | "burn";
1964
+ vaultAddress: string;
1965
+ createdAt: string;
1966
+ name: string | null;
1967
+ description: string | null;
1968
+ imageAssetId: string | null;
1969
+ };
1970
+ type InventoryVaultForceWithdrawResponse = {
1971
+ ok: boolean;
1972
+ txHash: string;
1973
+ };
1336
1974
  type NotificationListResponse = {
1337
1975
  notifications: Array<NotificationItem>;
1338
1976
  unreadCount: number;
@@ -1361,6 +1999,18 @@ type NotificationItem = {
1361
1999
  payload: AppPageRejectedNotificationPayload;
1362
2000
  read: boolean;
1363
2001
  createdAt: string;
2002
+ } | {
2003
+ id: string;
2004
+ kind: "bip_update_published";
2005
+ payload: BipUpdatePublishedNotificationPayload;
2006
+ read: boolean;
2007
+ createdAt: string;
2008
+ } | {
2009
+ id: string;
2010
+ kind: "bip_now_playable";
2011
+ payload: BipNowPlayableNotificationPayload;
2012
+ read: boolean;
2013
+ createdAt: string;
1364
2014
  } | {
1365
2015
  id: string;
1366
2016
  kind: "app_participant_invite";
@@ -1391,14 +2041,25 @@ type FriendAcceptedNotificationPayload = {
1391
2041
  type AppPageApprovedNotificationPayload = {
1392
2042
  appId: string;
1393
2043
  appName: string;
1394
- scope: "publish" | "changes";
2044
+ scope: "publish" | "changes" | "bip_publish";
1395
2045
  };
1396
2046
  type AppPageRejectedNotificationPayload = {
1397
2047
  appId: string;
1398
2048
  appName: string;
1399
- scope: "publish" | "changes";
2049
+ scope: "publish" | "changes" | "bip_publish";
1400
2050
  notes: string;
1401
2051
  };
2052
+ type BipUpdatePublishedNotificationPayload = {
2053
+ appId: string;
2054
+ appName: string;
2055
+ appSlug: string | null;
2056
+ updateId: string;
2057
+ };
2058
+ type BipNowPlayableNotificationPayload = {
2059
+ appId: string;
2060
+ appName: string;
2061
+ appSlug: string | null;
2062
+ };
1402
2063
  type AppParticipantInviteNotificationPayload = {
1403
2064
  appId: string;
1404
2065
  appName: string;
@@ -1428,6 +2089,9 @@ type FriendListItem = {
1428
2089
  onlineStatus: OnlineStatus;
1429
2090
  };
1430
2091
  type OnlineStatus = "online" | "offline";
2092
+ type AppFriendListResponse = {
2093
+ friends: Array<ThreadParticipant>;
2094
+ };
1431
2095
  type FriendRequestDecision = {
1432
2096
  decision: "accept" | "reject";
1433
2097
  };
@@ -1500,7 +2164,7 @@ type ProfileRecentReview = {
1500
2164
  appId: string;
1501
2165
  appName: string;
1502
2166
  appLogoUrl: string | null;
1503
- rating: number;
2167
+ recommended: boolean;
1504
2168
  body: string;
1505
2169
  createdAt: string;
1506
2170
  };
@@ -1557,17 +2221,20 @@ type CreateDeveloperAppChain = {
1557
2221
  };
1558
2222
  type UpdateDeveloperApp = {
1559
2223
  name?: DeveloperAppName;
2224
+ slug?: AppPageSlug | null;
1560
2225
  logoUrl?: string | null;
1561
2226
  testAccess?: "private" | "public";
1562
2227
  redirectUris?: Array<string>;
1563
2228
  embedOrigins?: Array<EmbedOrigin>;
1564
2229
  acceptedCurrencies?: AcceptedCurrencies;
2230
+ acceptedNetworks?: AcceptedNetworks;
1565
2231
  paymentStatusWebhookUrl?: string | null;
1566
2232
  paymentStatusWebhookUrlTest?: string | null;
1567
2233
  };
1568
2234
  type EmbedOrigin = string;
1569
2235
  type AcceptedCurrencies = Array<PlatformCurrency>;
1570
2236
  type PlatformCurrency = "eth" | "tron";
2237
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
1571
2238
  type DeveloperLogoUploadResponse = {
1572
2239
  logoUrl: string | null;
1573
2240
  };
@@ -1630,7 +2297,7 @@ type DeveloperAppWalletsResponse = {
1630
2297
  };
1631
2298
  type DeveloperAppWalletItem = {
1632
2299
  chain: string;
1633
- address: string;
2300
+ address: string | string;
1634
2301
  custody: "server" | null;
1635
2302
  walletId: string | null;
1636
2303
  autoSweepEnabled: boolean;
@@ -1651,7 +2318,7 @@ type DeveloperAppProvisionWalletResponse = {
1651
2318
  chain: string;
1652
2319
  custody: "server";
1653
2320
  walletId: string;
1654
- address: string;
2321
+ address: string | string;
1655
2322
  };
1656
2323
  type DeveloperAppWithdrawResponse = {
1657
2324
  appId: string;
@@ -1805,6 +2472,7 @@ type DeveloperProductionRequestPayload = {
1805
2472
  type DeveloperAppItem = {
1806
2473
  id: string;
1807
2474
  name: DeveloperAppName;
2475
+ slug: AppPageSlug | null;
1808
2476
  logoUrl: string | null;
1809
2477
  environment: "development" | "production";
1810
2478
  productionApprovedAt: string | null;
@@ -1813,6 +2481,7 @@ type DeveloperAppItem = {
1813
2481
  redirectUris: Array<string>;
1814
2482
  embedOrigins: Array<EmbedOrigin>;
1815
2483
  acceptedCurrencies: AcceptedCurrencies;
2484
+ acceptedNetworks: AcceptedNetworks;
1816
2485
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
1817
2486
  keys: Array<DeveloperAppKeyItem>;
1818
2487
  pendingProductionRequestId: string | null;
@@ -1856,15 +2525,29 @@ type AppPageDraft = {
1856
2525
  gallery: AppPageGallery;
1857
2526
  chapters: AppPageChapters;
1858
2527
  links: AppPageLinks;
2528
+ platforms: AppPagePlatforms;
2529
+ gameType: AppPageGameType;
2530
+ ageRating: AppPageAgeRating;
2531
+ languages: AppPageLanguages;
2532
+ releaseStatus: AppPageReleaseStatus;
1859
2533
  firstPublishedAt: string | null;
1860
2534
  reviewedAt: string | null;
1861
2535
  reviewNotes: string | null;
1862
2536
  hiddenAt: string | null;
1863
2537
  hiddenReasonPublic: string | null;
1864
2538
  pendingReview: boolean;
2539
+ bip: AppPageBipState;
2540
+ };
2541
+ type AppPageBipState = {
2542
+ enabled: boolean;
2543
+ status: "draft" | "pending_review" | "published" | "hidden";
2544
+ firstPublishedAt: string | null;
2545
+ reviewedAt: string | null;
2546
+ reviewNotes: string | null;
2547
+ hiddenAt: string | null;
2548
+ hiddenReasonPublic: string | null;
1865
2549
  };
1866
2550
  type UpdateAppPage = {
1867
- slug?: AppPageSlug | null;
1868
2551
  categories?: AppPageCategories;
1869
2552
  tagline?: AppPageTagline | null;
1870
2553
  bannerUrl?: string | null;
@@ -1878,10 +2561,18 @@ type UpdateAppPage = {
1878
2561
  gallery?: AppPageGallery;
1879
2562
  chapters?: AppPageChapters;
1880
2563
  links?: AppPageLinks;
2564
+ platforms?: AppPagePlatforms;
2565
+ gameType?: AppPageGameType;
2566
+ ageRating?: AppPageAgeRating;
2567
+ languages?: AppPageLanguages;
2568
+ releaseStatus?: AppPageReleaseStatus;
1881
2569
  };
1882
2570
  type AppPageGalleryUploadResponse = {
1883
2571
  url: string;
1884
2572
  };
2573
+ type AppPageBipToggle = {
2574
+ enabled: boolean;
2575
+ };
1885
2576
  type AdminActivePlayersResponse = {
1886
2577
  players: Array<AdminActivePlayer>;
1887
2578
  total: number;
@@ -2020,6 +2711,11 @@ type AdminAppPageItem = {
2020
2711
  hiddenAt: string | null;
2021
2712
  hiddenReasonInternal: string | null;
2022
2713
  pendingChangesSubmittedAt: string | null;
2714
+ bipEnabled: boolean;
2715
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2716
+ bipFirstPublishedAt: string | null;
2717
+ bipHiddenAt: string | null;
2718
+ openReportCount: number;
2023
2719
  };
2024
2720
  type AdminAppPageStatusResponse = {
2025
2721
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2045,6 +2741,25 @@ type AdminAppPageDiffField = {
2045
2741
  from: string;
2046
2742
  to: string;
2047
2743
  };
2744
+ type AdminAppPageBipStatusResponse = {
2745
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2746
+ };
2747
+ type AdminAppContentReportListResponse = {
2748
+ reports: Array<AdminAppContentReportItem>;
2749
+ total: number;
2750
+ hasMore: boolean;
2751
+ };
2752
+ type AdminAppContentReportItem = {
2753
+ id: string;
2754
+ category: AppContentReportCategory;
2755
+ details: string | null;
2756
+ status: AppContentReportStatus;
2757
+ acknowledgedAt: string | null;
2758
+ createdAt: string;
2759
+ appId: string;
2760
+ appName: string;
2761
+ appSlug: string | null;
2762
+ };
2048
2763
  type PlatformFeesResponse = {
2049
2764
  purchaseFeeBps: number;
2050
2765
  stakeFeeBps: number;
@@ -2225,6 +2940,13 @@ type AppealResolveRequest = {
2225
2940
  decision: "refund" | "dismiss";
2226
2941
  notes?: string;
2227
2942
  };
2943
+ type PaymentRatesResponse = {
2944
+ asOf: string;
2945
+ ethUsd: number | null;
2946
+ solUsd: number | null;
2947
+ solLamportsPerCent: number | null;
2948
+ tronUsdPerToken: number;
2949
+ };
2228
2950
  type AppealFileResponse = {
2229
2951
  appealId: string;
2230
2952
  paymentId: string;
@@ -2334,7 +3056,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2334
3056
  //#region src/admin/app-pages.d.ts
2335
3057
  declare function listAppPages(context: TransportContext, input: {
2336
3058
  readonly bearer: string;
2337
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3059
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2338
3060
  }): Promise<AdminAppPageListResponse>;
2339
3061
  declare function getAppPageChanges(context: TransportContext, input: {
2340
3062
  readonly bearer: string;
@@ -2359,6 +3081,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2359
3081
  readonly appId: string;
2360
3082
  readonly body: ReviewAppPage;
2361
3083
  }): Promise<AdminAppPageStatusResponse>;
3084
+ declare function reviewAppPageBip(context: TransportContext, input: {
3085
+ readonly bearer: string;
3086
+ readonly appId: string;
3087
+ readonly body: ReviewAppPage;
3088
+ }): Promise<AdminAppPageBipStatusResponse>;
3089
+ declare function hideAppPageBip(context: TransportContext, input: {
3090
+ readonly bearer: string;
3091
+ readonly appId: string;
3092
+ readonly body: HideAppPage;
3093
+ }): Promise<AdminAppPageBipStatusResponse>;
3094
+ declare function unhideAppPageBip(context: TransportContext, input: {
3095
+ readonly bearer: string;
3096
+ readonly appId: string;
3097
+ }): Promise<AdminAppPageBipStatusResponse>;
2362
3098
  //#endregion
2363
3099
  //#region src/admin/appeals.d.ts
2364
3100
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2390,6 +3126,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2390
3126
  readonly body: AppealResolveRequest;
2391
3127
  }): Promise<AppealResolveSignedResponse>;
2392
3128
  //#endregion
3129
+ //#region src/admin/content-reports.d.ts
3130
+ declare function listAdminContentReports(context: TransportContext, input: {
3131
+ readonly bearer: string;
3132
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3133
+ readonly limit?: number;
3134
+ readonly offset?: number;
3135
+ }): Promise<AdminAppContentReportListResponse>;
3136
+ declare function triageAdminContentReport(context: TransportContext, input: {
3137
+ readonly bearer: string;
3138
+ readonly reportId: string;
3139
+ readonly status: "acknowledged" | "dismissed";
3140
+ }): Promise<AppContentReport>;
3141
+ //#endregion
2393
3142
  //#region src/admin/developers.d.ts
2394
3143
  declare function listDeveloperRequests(context: TransportContext, input: {
2395
3144
  readonly bearer: string;
@@ -2405,6 +3154,12 @@ declare function listDevelopers(context: TransportContext, input: {
2405
3154
  readonly bearer: string;
2406
3155
  }): Promise<AdminDeveloperListResponse>;
2407
3156
  //#endregion
3157
+ //#region src/admin/inventory-vault.d.ts
3158
+ declare function forceWithdrawVaultCustody(context: TransportContext, input: {
3159
+ readonly bearer: string;
3160
+ readonly custodyId: string;
3161
+ }): Promise<InventoryVaultForceWithdrawResponse>;
3162
+ //#endregion
2408
3163
  //#region src/admin/payments.d.ts
2409
3164
  declare function getPlatformFees(context: TransportContext, input: {
2410
3165
  readonly bearer: string;
@@ -2523,6 +3278,102 @@ declare function getAppPage(context: TransportContext, input: {
2523
3278
  readonly slug: string;
2524
3279
  }): Promise<PublicAppPage>;
2525
3280
  //#endregion
3281
+ //#region src/catalog/bip-updates.d.ts
3282
+ declare function listBipUpdates(context: TransportContext, input: {
3283
+ readonly bearer?: string;
3284
+ readonly slug: string;
3285
+ readonly limit?: number;
3286
+ readonly offset?: number;
3287
+ }): Promise<BipUpdateListResponse>;
3288
+ declare function listBipUpdateComments(context: TransportContext, input: {
3289
+ readonly bearer?: string;
3290
+ readonly slug: string;
3291
+ readonly updateId: string;
3292
+ readonly limit?: number;
3293
+ readonly offset?: number;
3294
+ }): Promise<BipUpdateCommentListResponse>;
3295
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3296
+ readonly bearer: string;
3297
+ readonly slug: string;
3298
+ }): Promise<MyBipUpdateReactionsResponse>;
3299
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3300
+ readonly bearer: string;
3301
+ readonly slug: string;
3302
+ readonly updateId: string;
3303
+ readonly body: SetBipUpdateReactionRequest;
3304
+ }): Promise<SetBipUpdateReactionResponse>;
3305
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3306
+ readonly bearer: string;
3307
+ readonly slug: string;
3308
+ readonly updateId: string;
3309
+ readonly body: string;
3310
+ }): Promise<CreateBipUpdateCommentResponse>;
3311
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3312
+ readonly bearer: string;
3313
+ readonly slug: string;
3314
+ readonly commentId: string;
3315
+ }): Promise<DeleteBipUpdateCommentResponse>;
3316
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3317
+ readonly bearer: string;
3318
+ readonly appId: string;
3319
+ readonly limit?: number;
3320
+ readonly offset?: number;
3321
+ }): Promise<BipUpdateListResponse>;
3322
+ declare function createBipUpdate(context: TransportContext, input: {
3323
+ readonly bearer: string;
3324
+ readonly appId: string;
3325
+ readonly body: CreateBipUpdateRequest;
3326
+ }): Promise<BipUpdate>;
3327
+ declare function updateBipUpdate(context: TransportContext, input: {
3328
+ readonly bearer: string;
3329
+ readonly appId: string;
3330
+ readonly updateId: string;
3331
+ readonly body: UpdateBipUpdateRequest;
3332
+ }): Promise<BipUpdate>;
3333
+ declare function deleteBipUpdate(context: TransportContext, input: {
3334
+ readonly bearer: string;
3335
+ readonly appId: string;
3336
+ readonly updateId: string;
3337
+ }): Promise<DeleteBipUpdateResponse>;
3338
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3339
+ readonly bearer: string;
3340
+ readonly appId: string;
3341
+ readonly file: Blob;
3342
+ readonly filename: string;
3343
+ readonly contentType: string;
3344
+ }): Promise<BipUpdateMediaUploadResponse>;
3345
+ declare function getBipInterestCount(context: TransportContext, input: {
3346
+ readonly bearer?: string;
3347
+ readonly slug: string;
3348
+ }): Promise<BipInterestCountResponse>;
3349
+ declare function getMyBipEngagement(context: TransportContext, input: {
3350
+ readonly bearer: string;
3351
+ readonly slug: string;
3352
+ }): Promise<BipEngagementResponse>;
3353
+ declare function registerBipInterest(context: TransportContext, input: {
3354
+ readonly bearer: string;
3355
+ readonly slug: string;
3356
+ readonly interested: boolean;
3357
+ }): Promise<BipEngagementResponse>;
3358
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3359
+ readonly bearer: string;
3360
+ readonly slug: string;
3361
+ readonly subscribed: boolean;
3362
+ }): Promise<BipEngagementResponse>;
3363
+ //#endregion
3364
+ //#region src/catalog/build-in-public.d.ts
3365
+ declare function getBipDirectory(context: TransportContext, input: {
3366
+ readonly bearer?: string;
3367
+ readonly genre?: string;
3368
+ readonly q?: string;
3369
+ readonly before?: string;
3370
+ readonly limit?: number;
3371
+ }): Promise<LibraryListResponse>;
3372
+ declare function getBipPage(context: TransportContext, input: {
3373
+ readonly bearer?: string;
3374
+ readonly slug: string;
3375
+ }): Promise<PublicBipPage>;
3376
+ //#endregion
2526
3377
  //#region src/catalog/content-reports.d.ts
2527
3378
  declare function submitAppContentReport(context: TransportContext, input: {
2528
3379
  readonly appId: string;
@@ -2567,6 +3418,41 @@ declare function deleteMyGameReview(context: TransportContext, input: {
2567
3418
  readonly slug: string;
2568
3419
  readonly bearer: string;
2569
3420
  }): Promise<MyReviewResponse>;
3421
+ declare function getMyGameReviewReactions(context: TransportContext, input: {
3422
+ readonly slug: string;
3423
+ readonly bearer: string;
3424
+ }): Promise<MyReviewReactionsResponse>;
3425
+ declare function setMyGameReviewReaction(context: TransportContext, input: {
3426
+ readonly slug: string;
3427
+ readonly reviewId: string;
3428
+ readonly bearer: string;
3429
+ readonly reaction: SetReviewReactionRequest;
3430
+ }): Promise<SetReviewReactionResponse>;
3431
+ declare function tipGameReview(context: TransportContext, input: {
3432
+ readonly slug: string;
3433
+ readonly reviewId: string;
3434
+ readonly bearer: string;
3435
+ readonly tip: TipReviewRequest;
3436
+ readonly idempotencyKey?: string;
3437
+ }): Promise<TipReviewResponse>;
3438
+ declare function listGameReviewComments(context: TransportContext, input: {
3439
+ readonly slug: string;
3440
+ readonly reviewId: string;
3441
+ readonly bearer?: string;
3442
+ readonly limit?: number;
3443
+ readonly offset?: number;
3444
+ }): Promise<ReviewCommentListResponse>;
3445
+ declare function commentOnGameReview(context: TransportContext, input: {
3446
+ readonly slug: string;
3447
+ readonly reviewId: string;
3448
+ readonly bearer: string;
3449
+ readonly comment: CreateReviewCommentRequest;
3450
+ }): Promise<CreateReviewCommentResponse>;
3451
+ declare function deleteGameReviewComment(context: TransportContext, input: {
3452
+ readonly slug: string;
3453
+ readonly commentId: string;
3454
+ readonly bearer: string;
3455
+ }): Promise<DeleteReviewCommentResponse>;
2570
3456
  declare function replyToGameReview(context: TransportContext, input: {
2571
3457
  readonly appId: string;
2572
3458
  readonly reviewId: string;
@@ -2652,6 +3538,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
2652
3538
  readonly before?: string;
2653
3539
  }): Promise<PaymentHistoryResponse>;
2654
3540
  //#endregion
3541
+ //#region src/dashboard/rates.d.ts
3542
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3543
+ //#endregion
2655
3544
  //#region src/developer/api-keys.d.ts
2656
3545
  declare function createDeveloperApiKey(context: TransportContext, input: {
2657
3546
  readonly bearer: string;
@@ -2789,6 +3678,53 @@ declare function updateDeveloperAppContentReportStatus(context: TransportContext
2789
3678
  readonly status: "acknowledged" | "dismissed";
2790
3679
  }): Promise<AppContentReport>;
2791
3680
  //#endregion
3681
+ //#region src/developer/inventory.d.ts
3682
+ declare function quoteDeveloperAppInventoryRegistration(context: TransportContext, input: {
3683
+ readonly bearer: string;
3684
+ readonly appId: string;
3685
+ readonly registration: InventoryItemRegistrationInput;
3686
+ }): Promise<InventoryRegistrationQuote>;
3687
+ declare function registerDeveloperAppInventoryItem(context: TransportContext, input: {
3688
+ readonly bearer: string;
3689
+ readonly appId: string;
3690
+ readonly registration: InventoryItemRegistrationInput;
3691
+ }): Promise<InventoryItemRegistrationResult>;
3692
+ declare function listDeveloperAppInventoryCollections(context: TransportContext, input: {
3693
+ readonly bearer: string;
3694
+ readonly appId: string;
3695
+ }): Promise<InventoryCollectionListResponse>;
3696
+ declare function listDeveloperAppInventoryItems(context: TransportContext, input: {
3697
+ readonly bearer: string;
3698
+ readonly appId: string;
3699
+ }): Promise<InventoryItemListResponse>;
3700
+ declare function createDeveloperAppMintPermit(context: TransportContext, input: {
3701
+ readonly bearer: string;
3702
+ readonly appId: string;
3703
+ readonly itemId: string;
3704
+ readonly grant: InventoryMintPermitCreateInput;
3705
+ }): Promise<InventoryMintPermitRecord>;
3706
+ declare function getDeveloperAppInventoryItemHolders(context: TransportContext, input: {
3707
+ readonly bearer: string;
3708
+ readonly appId: string;
3709
+ readonly itemId: string;
3710
+ }): Promise<InventoryItemHoldersResponse>;
3711
+ declare function uploadDeveloperAppInventoryItemImage(context: TransportContext, input: {
3712
+ readonly bearer: string;
3713
+ readonly appId: string;
3714
+ readonly itemId: string;
3715
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3716
+ readonly filename: string;
3717
+ readonly contentType: string;
3718
+ }): Promise<InventoryItemRecord>;
3719
+ declare function uploadDeveloperAppInventoryItemBanner(context: TransportContext, input: {
3720
+ readonly bearer: string;
3721
+ readonly appId: string;
3722
+ readonly itemId: string;
3723
+ readonly file: Blob | ArrayBufferView | ArrayBuffer;
3724
+ readonly filename: string;
3725
+ readonly contentType: string;
3726
+ }): Promise<InventoryItemRecord>;
3727
+ //#endregion
2792
3728
  //#region src/developer/pages.d.ts
2793
3729
  declare function getDeveloperAppPage(context: TransportContext, input: {
2794
3730
  readonly bearer: string;
@@ -2847,6 +3783,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
2847
3783
  readonly bearer: string;
2848
3784
  readonly appId: string;
2849
3785
  }): Promise<AppPageDraft>;
3786
+ declare function setAppPageBip(context: TransportContext, input: {
3787
+ readonly bearer: string;
3788
+ readonly appId: string;
3789
+ readonly body: AppPageBipToggle;
3790
+ }): Promise<AppPageDraft>;
3791
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3792
+ readonly bearer: string;
3793
+ readonly appId: string;
3794
+ }): Promise<AppPageDraft>;
3795
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3796
+ readonly bearer: string;
3797
+ readonly appId: string;
3798
+ }): Promise<AppPageDraft>;
2850
3799
  //#endregion
2851
3800
  //#region src/developer/participants.d.ts
2852
3801
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -2913,6 +3862,20 @@ declare function uploadMultipart(context: TransportContext, input: {
2913
3862
  readonly contentType: string;
2914
3863
  }): Promise<unknown>;
2915
3864
  //#endregion
3865
+ //#region src/developer/vault.d.ts
3866
+ declare function createDeveloperVaultPermit(context: TransportContext, input: {
3867
+ readonly bearer: string;
3868
+ readonly appId: string;
3869
+ readonly itemId: string;
3870
+ readonly grant: InventoryVaultPermitCreateInput;
3871
+ }): Promise<InventoryVaultPermitRecord>;
3872
+ declare function createDeveloperWithdrawPermit(context: TransportContext, input: {
3873
+ readonly bearer: string;
3874
+ readonly appId: string;
3875
+ readonly itemId: string;
3876
+ readonly grant: InventoryWithdrawPermitCreateInput;
3877
+ }): Promise<InventoryVaultPermitRecord>;
3878
+ //#endregion
2916
3879
  //#region src/inventory/list.d.ts
2917
3880
  declare function listInventory(context: TransportContext, input: {
2918
3881
  readonly bearer: string;
@@ -2921,12 +3884,55 @@ declare function listInventoryForApp(context: TransportContext, input: {
2921
3884
  readonly bearer: string;
2922
3885
  }): Promise<InventoryListResponse>;
2923
3886
  //#endregion
3887
+ //#region src/inventory/nft-transfer.d.ts
3888
+ declare function quoteNftTransfer(context: TransportContext, input: {
3889
+ readonly bearer: string;
3890
+ readonly body: InventoryNftTransferQuoteRequest;
3891
+ }): Promise<InventoryNftTransferQuoteResponse>;
3892
+ declare function executeNftTransfer(context: TransportContext, input: {
3893
+ readonly bearer: string;
3894
+ readonly body: InventoryNftTransferRequest;
3895
+ }): Promise<InventoryNftTransferResponse>;
3896
+ //#endregion
3897
+ //#region src/inventory/permits.d.ts
3898
+ declare function listInventoryMintPermits(context: TransportContext, input: {
3899
+ readonly bearer: string;
3900
+ }): Promise<InventoryPendingPermitListResponse>;
3901
+ declare function redeemInventoryMintPermit(context: TransportContext, input: {
3902
+ readonly bearer: string;
3903
+ readonly permitId: string;
3904
+ }): Promise<InventoryPermitRedeemResult>;
3905
+ //#endregion
2924
3906
  //#region src/inventory/request-mint.d.ts
2925
3907
  declare function requestMint(context: TransportContext, input: {
2926
3908
  readonly appBearer: string;
2927
3909
  readonly body: MintRequestInput;
2928
3910
  }): Promise<MintRequestResult>;
2929
3911
  //#endregion
3912
+ //#region src/inventory/vault.d.ts
3913
+ declare function listInventoryVaultPermits(context: TransportContext, input: {
3914
+ readonly bearer: string;
3915
+ }): Promise<InventoryPendingVaultPermitListResponse>;
3916
+ declare function signInventoryVaultPermit(context: TransportContext, input: {
3917
+ readonly bearer: string;
3918
+ readonly permitId: string;
3919
+ }): Promise<InventorySignedVaultPermit>;
3920
+ declare function quoteRelayedVaultPermit(context: TransportContext, input: {
3921
+ readonly bearer: string;
3922
+ readonly permitId: string;
3923
+ }): Promise<InventoryRelayedVaultQuoteResponse>;
3924
+ declare function submitRelayedVaultPermit(context: TransportContext, input: {
3925
+ readonly bearer: string;
3926
+ readonly permitId: string;
3927
+ readonly body: InventoryRelayedVaultSubmitRequest;
3928
+ }): Promise<InventoryRelayedVaultSubmitResponse>;
3929
+ declare function listInventoryVaulted(context: TransportContext, input: {
3930
+ readonly bearer: string;
3931
+ }): Promise<InventoryVaultCustodyListResponse>;
3932
+ declare function listOauthInventoryVaulted(context: TransportContext, input: {
3933
+ readonly bearer: string;
3934
+ }): Promise<InventoryVaultCustodyListResponse>;
3935
+ //#endregion
2930
3936
  //#region src/messaging/dm-key-backup.d.ts
2931
3937
  declare function getDmKeyBackupStatus(context: TransportContext, input: {
2932
3938
  readonly bearer: string;
@@ -3161,6 +4167,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3161
4167
  readonly bearer: string;
3162
4168
  readonly intentId: string;
3163
4169
  }): Promise<OauthPaymentIntentResolveResponse>;
4170
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4171
+ readonly bearer: string;
4172
+ readonly intentId: string;
4173
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4174
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4175
+ readonly bearer: string;
4176
+ readonly intentId: string;
4177
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4178
+ }): Promise<OauthPaymentIntentResolveResponse>;
3164
4179
  //#endregion
3165
4180
  //#region src/payments/limits.d.ts
3166
4181
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -3203,6 +4218,22 @@ declare function createTronDeposit(context: TransportContext, input: {
3203
4218
  readonly bearer: string;
3204
4219
  readonly body: TronDepositRequest;
3205
4220
  }): Promise<TronDepositResponse>;
4221
+ declare function createTronTransfer(context: TransportContext, input: {
4222
+ readonly bearer: string;
4223
+ readonly body: TronTransferRequest;
4224
+ readonly idempotencyKey?: string;
4225
+ }): Promise<TronTransferResponse>;
4226
+ declare function getTronSecurity(context: TransportContext, input: {
4227
+ readonly bearer: string;
4228
+ }): Promise<TronSecuritySetting>;
4229
+ declare function setTronSecurity(context: TransportContext, input: {
4230
+ readonly bearer: string;
4231
+ readonly setting: TronSecuritySetting;
4232
+ }): Promise<TronSecuritySetting>;
4233
+ declare function createTronTransferChallenge(context: TransportContext, input: {
4234
+ readonly bearer: string;
4235
+ readonly body: TronTransferChallengeRequest;
4236
+ }): Promise<TronTransferChallengeResponse>;
3206
4237
  declare function createTronConnectOnboarding(context: TransportContext, input: {
3207
4238
  readonly bearer: string;
3208
4239
  }): Promise<TronConnectOnboardingResponse>;
@@ -3339,6 +4370,10 @@ declare function sendFriendRequest(context: TransportContext, input: {
3339
4370
  readonly bearer: string;
3340
4371
  readonly userId: string;
3341
4372
  }): Promise<void>;
4373
+ declare function removeFriend(context: TransportContext, input: {
4374
+ readonly bearer: string;
4375
+ readonly userId: string;
4376
+ }): Promise<void>;
3342
4377
  declare function decideFriendRequest(context: TransportContext, input: {
3343
4378
  readonly bearer: string;
3344
4379
  readonly requestId: string;
@@ -3351,6 +4386,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3351
4386
  declare function listFriends(context: TransportContext, input: {
3352
4387
  readonly bearer: string;
3353
4388
  }): Promise<FriendListResponse>;
4389
+ declare function listFriendsForApp(context: TransportContext, input: {
4390
+ readonly bearer: string;
4391
+ }): Promise<AppFriendListResponse>;
3354
4392
  //#endregion
3355
4393
  //#region src/reads/socials.d.ts
3356
4394
  declare function listSocials(context: TransportContext, input: {
@@ -3642,4 +4680,4 @@ type CookieTokenStoreOptions = {
3642
4680
  };
3643
4681
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
3644
4682
  //#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 };
4683
+ 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 };