@metatrongg/sdk 0.8.0-dev.73cf69b → 0.8.0-dev.8266b7d

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;
@@ -249,7 +249,15 @@ type OauthPaymentIntentContext = {
249
249
  };
250
250
  } | null;
251
251
  environment: "development" | "production";
252
+ onramp?: {
253
+ kind: "bridge";
254
+ from: PaymentNetwork;
255
+ to: PaymentNetwork;
256
+ } | {
257
+ kind: "insufficient";
258
+ };
252
259
  };
260
+ type PaymentNetwork = "ethereum" | "base" | "solana";
253
261
  type OauthPaymentIntentSignResponse = {
254
262
  chain: string;
255
263
  chainId: number;
@@ -279,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
279
287
  type OauthPaymentIntentCompleteOffline = {
280
288
  method: "offline";
281
289
  };
290
+ type OauthPaymentIntentSolanaPrepareResponse = {
291
+ transaction: string;
292
+ payer: string;
293
+ };
294
+ type OauthPaymentIntentSolanaCompleteRequest = {
295
+ signedTransaction: string;
296
+ };
282
297
  type ListAppPaymentAuthorizationsResponse = {
283
298
  authorizations: Array<AppPaymentAuthorizationItem>;
284
299
  };
@@ -382,6 +397,119 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
382
397
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
383
398
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
384
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
+ };
385
513
  type ReviewListResponse = {
386
514
  aggregate: ReviewAggregate;
387
515
  reviews: Array<Review>;
@@ -415,12 +543,6 @@ type ReviewReactionCounts = {
415
543
  unhelpful: number;
416
544
  funny: number;
417
545
  };
418
- type ReviewAuthor = {
419
- userId: string;
420
- handle: string | null;
421
- name: string | null;
422
- avatarUrl: string | null;
423
- };
424
546
  type ReviewerStats = {
425
547
  playtimeSecondsThisGame: number;
426
548
  gamesPlayed: number;
@@ -611,7 +733,11 @@ type ActivityRow = ({
611
733
  kind: "referral_earning";
612
734
  } & ActivityRowReferralEarning) | ({
613
735
  kind: "nft_charge";
614
- } & ActivityRowNftCharge);
736
+ } & ActivityRowNftCharge) | ({
737
+ kind: "solana_stake";
738
+ } & ActivityRowSolanaStake) | ({
739
+ kind: "solana_pot_leg";
740
+ } & ActivityRowSolanaPotLeg);
615
741
  type ActivityRowPayment = {
616
742
  kind: "payment";
617
743
  groupId: string | null;
@@ -939,6 +1065,56 @@ type ActivityRowNftCharge = {
939
1065
  counterpartyHandle: string | null;
940
1066
  counterpartyDisplayName: string | null;
941
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
+ };
942
1118
  type OutstandingResponse = {
943
1119
  rows: Array<OutstandingByToken>;
944
1120
  };
@@ -1098,12 +1274,15 @@ type WalletListResponse = {
1098
1274
  wallets: Array<WalletItem>;
1099
1275
  };
1100
1276
  type WalletChainList = Array<{
1101
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1277
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1102
1278
  displayName: string;
1103
- chainId: number;
1279
+ family: "evm" | "solana";
1280
+ nativeSymbol: string;
1281
+ chainId?: number;
1104
1282
  }>;
1105
1283
  type WalletItem = {
1106
- address: string;
1284
+ address: string | string;
1285
+ family: "evm" | "solana";
1107
1286
  label: WalletLabel;
1108
1287
  kind: "personal" | "app";
1109
1288
  app: WalletAppLink;
@@ -1120,6 +1299,9 @@ type WalletBalances = {
1120
1299
  "ethereum-mainnet"?: WalletChainBalance;
1121
1300
  "base-mainnet"?: WalletChainBalance;
1122
1301
  "ethereum-sepolia"?: WalletChainBalance;
1302
+ "base-sepolia"?: WalletChainBalance;
1303
+ "solana-mainnet"?: WalletChainBalance;
1304
+ "solana-devnet"?: WalletChainBalance;
1123
1305
  };
1124
1306
  type WalletChainBalance = {
1125
1307
  native: string;
@@ -1129,12 +1311,14 @@ type WalletDelegationStatus = {
1129
1311
  mode: WalletDelegationMode;
1130
1312
  caps: WalletDelegationCaps;
1131
1313
  policyId: string | null;
1314
+ slippageBps: DelegationSlippageBps;
1132
1315
  };
1133
1316
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1134
1317
  type WalletDelegationCaps = {
1135
1318
  native: string;
1136
1319
  usdc: string;
1137
1320
  } | null;
1321
+ type DelegationSlippageBps = number | null;
1138
1322
  type WalletLabelUpdateResponse = {
1139
1323
  address: string;
1140
1324
  label: WalletLabel;
@@ -1232,6 +1416,7 @@ type MessageTransactionNftTransfer = {
1232
1416
  tokenId: string;
1233
1417
  amount: string;
1234
1418
  itemName: string | null;
1419
+ imageAssetId?: string | null;
1235
1420
  };
1236
1421
  type GroupThreadSummary = {
1237
1422
  kind: "group";
@@ -1814,6 +1999,18 @@ type NotificationItem = {
1814
1999
  payload: AppPageRejectedNotificationPayload;
1815
2000
  read: boolean;
1816
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;
1817
2014
  } | {
1818
2015
  id: string;
1819
2016
  kind: "app_participant_invite";
@@ -1844,14 +2041,25 @@ type FriendAcceptedNotificationPayload = {
1844
2041
  type AppPageApprovedNotificationPayload = {
1845
2042
  appId: string;
1846
2043
  appName: string;
1847
- scope: "publish" | "changes";
2044
+ scope: "publish" | "changes" | "bip_publish";
1848
2045
  };
1849
2046
  type AppPageRejectedNotificationPayload = {
1850
2047
  appId: string;
1851
2048
  appName: string;
1852
- scope: "publish" | "changes";
2049
+ scope: "publish" | "changes" | "bip_publish";
1853
2050
  notes: string;
1854
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
+ };
1855
2063
  type AppParticipantInviteNotificationPayload = {
1856
2064
  appId: string;
1857
2065
  appName: string;
@@ -1881,6 +2089,9 @@ type FriendListItem = {
1881
2089
  onlineStatus: OnlineStatus;
1882
2090
  };
1883
2091
  type OnlineStatus = "online" | "offline";
2092
+ type AppFriendListResponse = {
2093
+ friends: Array<ThreadParticipant>;
2094
+ };
1884
2095
  type FriendRequestDecision = {
1885
2096
  decision: "accept" | "reject";
1886
2097
  };
@@ -2016,12 +2227,14 @@ type UpdateDeveloperApp = {
2016
2227
  redirectUris?: Array<string>;
2017
2228
  embedOrigins?: Array<EmbedOrigin>;
2018
2229
  acceptedCurrencies?: AcceptedCurrencies;
2230
+ acceptedNetworks?: AcceptedNetworks;
2019
2231
  paymentStatusWebhookUrl?: string | null;
2020
2232
  paymentStatusWebhookUrlTest?: string | null;
2021
2233
  };
2022
2234
  type EmbedOrigin = string;
2023
2235
  type AcceptedCurrencies = Array<PlatformCurrency>;
2024
2236
  type PlatformCurrency = "eth" | "tron";
2237
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2025
2238
  type DeveloperLogoUploadResponse = {
2026
2239
  logoUrl: string | null;
2027
2240
  };
@@ -2084,7 +2297,7 @@ type DeveloperAppWalletsResponse = {
2084
2297
  };
2085
2298
  type DeveloperAppWalletItem = {
2086
2299
  chain: string;
2087
- address: string;
2300
+ address: string | string;
2088
2301
  custody: "server" | null;
2089
2302
  walletId: string | null;
2090
2303
  autoSweepEnabled: boolean;
@@ -2105,7 +2318,7 @@ type DeveloperAppProvisionWalletResponse = {
2105
2318
  chain: string;
2106
2319
  custody: "server";
2107
2320
  walletId: string;
2108
- address: string;
2321
+ address: string | string;
2109
2322
  };
2110
2323
  type DeveloperAppWithdrawResponse = {
2111
2324
  appId: string;
@@ -2268,6 +2481,7 @@ type DeveloperAppItem = {
2268
2481
  redirectUris: Array<string>;
2269
2482
  embedOrigins: Array<EmbedOrigin>;
2270
2483
  acceptedCurrencies: AcceptedCurrencies;
2484
+ acceptedNetworks: AcceptedNetworks;
2271
2485
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2272
2486
  keys: Array<DeveloperAppKeyItem>;
2273
2487
  pendingProductionRequestId: string | null;
@@ -2322,6 +2536,16 @@ type AppPageDraft = {
2322
2536
  hiddenAt: string | null;
2323
2537
  hiddenReasonPublic: string | null;
2324
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;
2325
2549
  };
2326
2550
  type UpdateAppPage = {
2327
2551
  categories?: AppPageCategories;
@@ -2346,6 +2570,9 @@ type UpdateAppPage = {
2346
2570
  type AppPageGalleryUploadResponse = {
2347
2571
  url: string;
2348
2572
  };
2573
+ type AppPageBipToggle = {
2574
+ enabled: boolean;
2575
+ };
2349
2576
  type AdminActivePlayersResponse = {
2350
2577
  players: Array<AdminActivePlayer>;
2351
2578
  total: number;
@@ -2484,6 +2711,11 @@ type AdminAppPageItem = {
2484
2711
  hiddenAt: string | null;
2485
2712
  hiddenReasonInternal: string | null;
2486
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;
2487
2719
  };
2488
2720
  type AdminAppPageStatusResponse = {
2489
2721
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2509,6 +2741,25 @@ type AdminAppPageDiffField = {
2509
2741
  from: string;
2510
2742
  to: string;
2511
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
+ };
2512
2763
  type PlatformFeesResponse = {
2513
2764
  purchaseFeeBps: number;
2514
2765
  stakeFeeBps: number;
@@ -2689,6 +2940,13 @@ type AppealResolveRequest = {
2689
2940
  decision: "refund" | "dismiss";
2690
2941
  notes?: string;
2691
2942
  };
2943
+ type PaymentRatesResponse = {
2944
+ asOf: string;
2945
+ ethUsd: number | null;
2946
+ solUsd: number | null;
2947
+ solLamportsPerCent: number | null;
2948
+ tronUsdPerToken: number;
2949
+ };
2692
2950
  type AppealFileResponse = {
2693
2951
  appealId: string;
2694
2952
  paymentId: string;
@@ -2798,7 +3056,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2798
3056
  //#region src/admin/app-pages.d.ts
2799
3057
  declare function listAppPages(context: TransportContext, input: {
2800
3058
  readonly bearer: string;
2801
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3059
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2802
3060
  }): Promise<AdminAppPageListResponse>;
2803
3061
  declare function getAppPageChanges(context: TransportContext, input: {
2804
3062
  readonly bearer: string;
@@ -2823,6 +3081,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2823
3081
  readonly appId: string;
2824
3082
  readonly body: ReviewAppPage;
2825
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>;
2826
3098
  //#endregion
2827
3099
  //#region src/admin/appeals.d.ts
2828
3100
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2854,6 +3126,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2854
3126
  readonly body: AppealResolveRequest;
2855
3127
  }): Promise<AppealResolveSignedResponse>;
2856
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
2857
3142
  //#region src/admin/developers.d.ts
2858
3143
  declare function listDeveloperRequests(context: TransportContext, input: {
2859
3144
  readonly bearer: string;
@@ -2993,6 +3278,102 @@ declare function getAppPage(context: TransportContext, input: {
2993
3278
  readonly slug: string;
2994
3279
  }): Promise<PublicAppPage>;
2995
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
2996
3377
  //#region src/catalog/content-reports.d.ts
2997
3378
  declare function submitAppContentReport(context: TransportContext, input: {
2998
3379
  readonly appId: string;
@@ -3157,6 +3538,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3157
3538
  readonly before?: string;
3158
3539
  }): Promise<PaymentHistoryResponse>;
3159
3540
  //#endregion
3541
+ //#region src/dashboard/rates.d.ts
3542
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3543
+ //#endregion
3160
3544
  //#region src/developer/api-keys.d.ts
3161
3545
  declare function createDeveloperApiKey(context: TransportContext, input: {
3162
3546
  readonly bearer: string;
@@ -3399,6 +3783,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3399
3783
  readonly bearer: string;
3400
3784
  readonly appId: string;
3401
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>;
3402
3799
  //#endregion
3403
3800
  //#region src/developer/participants.d.ts
3404
3801
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -3770,6 +4167,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3770
4167
  readonly bearer: string;
3771
4168
  readonly intentId: string;
3772
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>;
3773
4179
  //#endregion
3774
4180
  //#region src/payments/limits.d.ts
3775
4181
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -3980,6 +4386,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3980
4386
  declare function listFriends(context: TransportContext, input: {
3981
4387
  readonly bearer: string;
3982
4388
  }): Promise<FriendListResponse>;
4389
+ declare function listFriendsForApp(context: TransportContext, input: {
4390
+ readonly bearer: string;
4391
+ }): Promise<AppFriendListResponse>;
3983
4392
  //#endregion
3984
4393
  //#region src/reads/socials.d.ts
3985
4394
  declare function listSocials(context: TransportContext, input: {
@@ -4271,4 +4680,4 @@ type CookieTokenStoreOptions = {
4271
4680
  };
4272
4681
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
4273
4682
  //#endregion
4274
- export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, commentOnGameReview, completePaymentIntent, consolidateDeveloperAppWallet, createConsoleLogger, createCookieTokenStore, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, editMessage, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, tipGameReview, toTokenSet, unfollowUser, unhideAppPage, unlockDmKeyBackup, unpinThread, unpublishAppPage, updateAdminRole, updateAppFeeConfig, updateAppPage, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };
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 };