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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -91,7 +91,7 @@ type Username = string;
91
91
  type DisplayName = string | null;
92
92
  type Bio = string | null;
93
93
  type WebsiteUrl = string | null;
94
- type BannerVariant = "yellow" | "green" | "blue" | "white" | "black";
94
+ type BannerVariant = "yellow" | "green" | "blue" | "white" | "black" | "red";
95
95
  type AdminRole = "super-admin" | "admin" | "read-only" | null;
96
96
  type PresenceStatusMode = "auto" | "online" | "offline";
97
97
  type PlatformEnvironment = "development" | "production";
@@ -106,7 +106,7 @@ type OauthAuthorizationServerMetadata = {
106
106
  grant_types_supported: Array<"authorization_code" | "refresh_token" | "client_credentials">;
107
107
  code_challenge_methods_supported: Array<"S256">;
108
108
  token_endpoint_auth_methods_supported: Array<"client_secret_basic" | "client_secret_post" | "none">;
109
- scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "developer:read" | "developer:apps" | "developer:pages">;
109
+ scopes_supported: Array<"openid" | "profile" | "payments:charge" | "inventory:read" | "social:read" | "developer:read" | "developer:apps" | "developer:pages">;
110
110
  };
111
111
  type OauthScopeString = string;
112
112
  type OauthState = string;
@@ -127,7 +127,9 @@ type OauthErrorResponse = {
127
127
  type OauthUserInfoResponse = {
128
128
  sub: string;
129
129
  name: string | null;
130
+ preferred_username: string | null;
130
131
  picture: string | null;
132
+ wallet_address: string | null;
131
133
  };
132
134
  type OauthPaymentChargeResponse = ({
133
135
  status: "completed";
@@ -247,7 +249,15 @@ type OauthPaymentIntentContext = {
247
249
  };
248
250
  } | null;
249
251
  environment: "development" | "production";
252
+ onramp?: {
253
+ kind: "bridge";
254
+ from: PaymentNetwork;
255
+ to: PaymentNetwork;
256
+ } | {
257
+ kind: "insufficient";
258
+ };
250
259
  };
260
+ type PaymentNetwork = "ethereum" | "base" | "solana";
251
261
  type OauthPaymentIntentSignResponse = {
252
262
  chain: string;
253
263
  chainId: number;
@@ -277,6 +287,13 @@ type OauthPaymentIntentCompleteSigned = {
277
287
  type OauthPaymentIntentCompleteOffline = {
278
288
  method: "offline";
279
289
  };
290
+ type OauthPaymentIntentSolanaPrepareResponse = {
291
+ transaction: string;
292
+ payer: string;
293
+ };
294
+ type OauthPaymentIntentSolanaCompleteRequest = {
295
+ signedTransaction: string;
296
+ };
280
297
  type ListAppPaymentAuthorizationsResponse = {
281
298
  authorizations: Array<AppPaymentAuthorizationItem>;
282
299
  };
@@ -380,6 +397,119 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
380
397
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
381
398
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
382
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
+ };
383
513
  type ReviewListResponse = {
384
514
  aggregate: ReviewAggregate;
385
515
  reviews: Array<Review>;
@@ -413,12 +543,6 @@ type ReviewReactionCounts = {
413
543
  unhelpful: number;
414
544
  funny: number;
415
545
  };
416
- type ReviewAuthor = {
417
- userId: string;
418
- handle: string | null;
419
- name: string | null;
420
- avatarUrl: string | null;
421
- };
422
546
  type ReviewerStats = {
423
547
  playtimeSecondsThisGame: number;
424
548
  gamesPlayed: number;
@@ -1096,12 +1220,15 @@ type WalletListResponse = {
1096
1220
  wallets: Array<WalletItem>;
1097
1221
  };
1098
1222
  type WalletChainList = Array<{
1099
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1223
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1100
1224
  displayName: string;
1101
- chainId: number;
1225
+ family: "evm" | "solana";
1226
+ nativeSymbol: string;
1227
+ chainId?: number;
1102
1228
  }>;
1103
1229
  type WalletItem = {
1104
- address: string;
1230
+ address: string | string;
1231
+ family: "evm" | "solana";
1105
1232
  label: WalletLabel;
1106
1233
  kind: "personal" | "app";
1107
1234
  app: WalletAppLink;
@@ -1118,6 +1245,9 @@ type WalletBalances = {
1118
1245
  "ethereum-mainnet"?: WalletChainBalance;
1119
1246
  "base-mainnet"?: WalletChainBalance;
1120
1247
  "ethereum-sepolia"?: WalletChainBalance;
1248
+ "base-sepolia"?: WalletChainBalance;
1249
+ "solana-mainnet"?: WalletChainBalance;
1250
+ "solana-devnet"?: WalletChainBalance;
1121
1251
  };
1122
1252
  type WalletChainBalance = {
1123
1253
  native: string;
@@ -1127,12 +1257,14 @@ type WalletDelegationStatus = {
1127
1257
  mode: WalletDelegationMode;
1128
1258
  caps: WalletDelegationCaps;
1129
1259
  policyId: string | null;
1260
+ slippageBps: DelegationSlippageBps;
1130
1261
  };
1131
1262
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1132
1263
  type WalletDelegationCaps = {
1133
1264
  native: string;
1134
1265
  usdc: string;
1135
1266
  } | null;
1267
+ type DelegationSlippageBps = number | null;
1136
1268
  type WalletLabelUpdateResponse = {
1137
1269
  address: string;
1138
1270
  label: WalletLabel;
@@ -1230,6 +1362,7 @@ type MessageTransactionNftTransfer = {
1230
1362
  tokenId: string;
1231
1363
  amount: string;
1232
1364
  itemName: string | null;
1365
+ imageAssetId?: string | null;
1233
1366
  };
1234
1367
  type GroupThreadSummary = {
1235
1368
  kind: "group";
@@ -1812,6 +1945,18 @@ type NotificationItem = {
1812
1945
  payload: AppPageRejectedNotificationPayload;
1813
1946
  read: boolean;
1814
1947
  createdAt: string;
1948
+ } | {
1949
+ id: string;
1950
+ kind: "bip_update_published";
1951
+ payload: BipUpdatePublishedNotificationPayload;
1952
+ read: boolean;
1953
+ createdAt: string;
1954
+ } | {
1955
+ id: string;
1956
+ kind: "bip_now_playable";
1957
+ payload: BipNowPlayableNotificationPayload;
1958
+ read: boolean;
1959
+ createdAt: string;
1815
1960
  } | {
1816
1961
  id: string;
1817
1962
  kind: "app_participant_invite";
@@ -1842,14 +1987,25 @@ type FriendAcceptedNotificationPayload = {
1842
1987
  type AppPageApprovedNotificationPayload = {
1843
1988
  appId: string;
1844
1989
  appName: string;
1845
- scope: "publish" | "changes";
1990
+ scope: "publish" | "changes" | "bip_publish";
1846
1991
  };
1847
1992
  type AppPageRejectedNotificationPayload = {
1848
1993
  appId: string;
1849
1994
  appName: string;
1850
- scope: "publish" | "changes";
1995
+ scope: "publish" | "changes" | "bip_publish";
1851
1996
  notes: string;
1852
1997
  };
1998
+ type BipUpdatePublishedNotificationPayload = {
1999
+ appId: string;
2000
+ appName: string;
2001
+ appSlug: string | null;
2002
+ updateId: string;
2003
+ };
2004
+ type BipNowPlayableNotificationPayload = {
2005
+ appId: string;
2006
+ appName: string;
2007
+ appSlug: string | null;
2008
+ };
1853
2009
  type AppParticipantInviteNotificationPayload = {
1854
2010
  appId: string;
1855
2011
  appName: string;
@@ -1879,6 +2035,9 @@ type FriendListItem = {
1879
2035
  onlineStatus: OnlineStatus;
1880
2036
  };
1881
2037
  type OnlineStatus = "online" | "offline";
2038
+ type AppFriendListResponse = {
2039
+ friends: Array<ThreadParticipant>;
2040
+ };
1882
2041
  type FriendRequestDecision = {
1883
2042
  decision: "accept" | "reject";
1884
2043
  };
@@ -2008,17 +2167,20 @@ type CreateDeveloperAppChain = {
2008
2167
  };
2009
2168
  type UpdateDeveloperApp = {
2010
2169
  name?: DeveloperAppName;
2170
+ slug?: AppPageSlug | null;
2011
2171
  logoUrl?: string | null;
2012
2172
  testAccess?: "private" | "public";
2013
2173
  redirectUris?: Array<string>;
2014
2174
  embedOrigins?: Array<EmbedOrigin>;
2015
2175
  acceptedCurrencies?: AcceptedCurrencies;
2176
+ acceptedNetworks?: AcceptedNetworks;
2016
2177
  paymentStatusWebhookUrl?: string | null;
2017
2178
  paymentStatusWebhookUrlTest?: string | null;
2018
2179
  };
2019
2180
  type EmbedOrigin = string;
2020
2181
  type AcceptedCurrencies = Array<PlatformCurrency>;
2021
2182
  type PlatformCurrency = "eth" | "tron";
2183
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2022
2184
  type DeveloperLogoUploadResponse = {
2023
2185
  logoUrl: string | null;
2024
2186
  };
@@ -2256,6 +2418,7 @@ type DeveloperProductionRequestPayload = {
2256
2418
  type DeveloperAppItem = {
2257
2419
  id: string;
2258
2420
  name: DeveloperAppName;
2421
+ slug: AppPageSlug | null;
2259
2422
  logoUrl: string | null;
2260
2423
  environment: "development" | "production";
2261
2424
  productionApprovedAt: string | null;
@@ -2264,6 +2427,7 @@ type DeveloperAppItem = {
2264
2427
  redirectUris: Array<string>;
2265
2428
  embedOrigins: Array<EmbedOrigin>;
2266
2429
  acceptedCurrencies: AcceptedCurrencies;
2430
+ acceptedNetworks: AcceptedNetworks;
2267
2431
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2268
2432
  keys: Array<DeveloperAppKeyItem>;
2269
2433
  pendingProductionRequestId: string | null;
@@ -2318,9 +2482,18 @@ type AppPageDraft = {
2318
2482
  hiddenAt: string | null;
2319
2483
  hiddenReasonPublic: string | null;
2320
2484
  pendingReview: boolean;
2485
+ bip: AppPageBipState;
2486
+ };
2487
+ type AppPageBipState = {
2488
+ enabled: boolean;
2489
+ status: "draft" | "pending_review" | "published" | "hidden";
2490
+ firstPublishedAt: string | null;
2491
+ reviewedAt: string | null;
2492
+ reviewNotes: string | null;
2493
+ hiddenAt: string | null;
2494
+ hiddenReasonPublic: string | null;
2321
2495
  };
2322
2496
  type UpdateAppPage = {
2323
- slug?: AppPageSlug | null;
2324
2497
  categories?: AppPageCategories;
2325
2498
  tagline?: AppPageTagline | null;
2326
2499
  bannerUrl?: string | null;
@@ -2343,6 +2516,9 @@ type UpdateAppPage = {
2343
2516
  type AppPageGalleryUploadResponse = {
2344
2517
  url: string;
2345
2518
  };
2519
+ type AppPageBipToggle = {
2520
+ enabled: boolean;
2521
+ };
2346
2522
  type AdminActivePlayersResponse = {
2347
2523
  players: Array<AdminActivePlayer>;
2348
2524
  total: number;
@@ -2481,6 +2657,11 @@ type AdminAppPageItem = {
2481
2657
  hiddenAt: string | null;
2482
2658
  hiddenReasonInternal: string | null;
2483
2659
  pendingChangesSubmittedAt: string | null;
2660
+ bipEnabled: boolean;
2661
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2662
+ bipFirstPublishedAt: string | null;
2663
+ bipHiddenAt: string | null;
2664
+ openReportCount: number;
2484
2665
  };
2485
2666
  type AdminAppPageStatusResponse = {
2486
2667
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2506,6 +2687,25 @@ type AdminAppPageDiffField = {
2506
2687
  from: string;
2507
2688
  to: string;
2508
2689
  };
2690
+ type AdminAppPageBipStatusResponse = {
2691
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2692
+ };
2693
+ type AdminAppContentReportListResponse = {
2694
+ reports: Array<AdminAppContentReportItem>;
2695
+ total: number;
2696
+ hasMore: boolean;
2697
+ };
2698
+ type AdminAppContentReportItem = {
2699
+ id: string;
2700
+ category: AppContentReportCategory;
2701
+ details: string | null;
2702
+ status: AppContentReportStatus;
2703
+ acknowledgedAt: string | null;
2704
+ createdAt: string;
2705
+ appId: string;
2706
+ appName: string;
2707
+ appSlug: string | null;
2708
+ };
2509
2709
  type PlatformFeesResponse = {
2510
2710
  purchaseFeeBps: number;
2511
2711
  stakeFeeBps: number;
@@ -2686,6 +2886,13 @@ type AppealResolveRequest = {
2686
2886
  decision: "refund" | "dismiss";
2687
2887
  notes?: string;
2688
2888
  };
2889
+ type PaymentRatesResponse = {
2890
+ asOf: string;
2891
+ ethUsd: number | null;
2892
+ solUsd: number | null;
2893
+ solLamportsPerCent: number | null;
2894
+ tronUsdPerToken: number;
2895
+ };
2689
2896
  type AppealFileResponse = {
2690
2897
  appealId: string;
2691
2898
  paymentId: string;
@@ -2795,7 +3002,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2795
3002
  //#region src/admin/app-pages.d.ts
2796
3003
  declare function listAppPages(context: TransportContext, input: {
2797
3004
  readonly bearer: string;
2798
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3005
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2799
3006
  }): Promise<AdminAppPageListResponse>;
2800
3007
  declare function getAppPageChanges(context: TransportContext, input: {
2801
3008
  readonly bearer: string;
@@ -2820,6 +3027,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2820
3027
  readonly appId: string;
2821
3028
  readonly body: ReviewAppPage;
2822
3029
  }): Promise<AdminAppPageStatusResponse>;
3030
+ declare function reviewAppPageBip(context: TransportContext, input: {
3031
+ readonly bearer: string;
3032
+ readonly appId: string;
3033
+ readonly body: ReviewAppPage;
3034
+ }): Promise<AdminAppPageBipStatusResponse>;
3035
+ declare function hideAppPageBip(context: TransportContext, input: {
3036
+ readonly bearer: string;
3037
+ readonly appId: string;
3038
+ readonly body: HideAppPage;
3039
+ }): Promise<AdminAppPageBipStatusResponse>;
3040
+ declare function unhideAppPageBip(context: TransportContext, input: {
3041
+ readonly bearer: string;
3042
+ readonly appId: string;
3043
+ }): Promise<AdminAppPageBipStatusResponse>;
2823
3044
  //#endregion
2824
3045
  //#region src/admin/appeals.d.ts
2825
3046
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2851,6 +3072,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2851
3072
  readonly body: AppealResolveRequest;
2852
3073
  }): Promise<AppealResolveSignedResponse>;
2853
3074
  //#endregion
3075
+ //#region src/admin/content-reports.d.ts
3076
+ declare function listAdminContentReports(context: TransportContext, input: {
3077
+ readonly bearer: string;
3078
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3079
+ readonly limit?: number;
3080
+ readonly offset?: number;
3081
+ }): Promise<AdminAppContentReportListResponse>;
3082
+ declare function triageAdminContentReport(context: TransportContext, input: {
3083
+ readonly bearer: string;
3084
+ readonly reportId: string;
3085
+ readonly status: "acknowledged" | "dismissed";
3086
+ }): Promise<AppContentReport>;
3087
+ //#endregion
2854
3088
  //#region src/admin/developers.d.ts
2855
3089
  declare function listDeveloperRequests(context: TransportContext, input: {
2856
3090
  readonly bearer: string;
@@ -2990,6 +3224,102 @@ declare function getAppPage(context: TransportContext, input: {
2990
3224
  readonly slug: string;
2991
3225
  }): Promise<PublicAppPage>;
2992
3226
  //#endregion
3227
+ //#region src/catalog/bip-updates.d.ts
3228
+ declare function listBipUpdates(context: TransportContext, input: {
3229
+ readonly bearer?: string;
3230
+ readonly slug: string;
3231
+ readonly limit?: number;
3232
+ readonly offset?: number;
3233
+ }): Promise<BipUpdateListResponse>;
3234
+ declare function listBipUpdateComments(context: TransportContext, input: {
3235
+ readonly bearer?: string;
3236
+ readonly slug: string;
3237
+ readonly updateId: string;
3238
+ readonly limit?: number;
3239
+ readonly offset?: number;
3240
+ }): Promise<BipUpdateCommentListResponse>;
3241
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3242
+ readonly bearer: string;
3243
+ readonly slug: string;
3244
+ }): Promise<MyBipUpdateReactionsResponse>;
3245
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3246
+ readonly bearer: string;
3247
+ readonly slug: string;
3248
+ readonly updateId: string;
3249
+ readonly body: SetBipUpdateReactionRequest;
3250
+ }): Promise<SetBipUpdateReactionResponse>;
3251
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3252
+ readonly bearer: string;
3253
+ readonly slug: string;
3254
+ readonly updateId: string;
3255
+ readonly body: string;
3256
+ }): Promise<CreateBipUpdateCommentResponse>;
3257
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3258
+ readonly bearer: string;
3259
+ readonly slug: string;
3260
+ readonly commentId: string;
3261
+ }): Promise<DeleteBipUpdateCommentResponse>;
3262
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3263
+ readonly bearer: string;
3264
+ readonly appId: string;
3265
+ readonly limit?: number;
3266
+ readonly offset?: number;
3267
+ }): Promise<BipUpdateListResponse>;
3268
+ declare function createBipUpdate(context: TransportContext, input: {
3269
+ readonly bearer: string;
3270
+ readonly appId: string;
3271
+ readonly body: CreateBipUpdateRequest;
3272
+ }): Promise<BipUpdate>;
3273
+ declare function updateBipUpdate(context: TransportContext, input: {
3274
+ readonly bearer: string;
3275
+ readonly appId: string;
3276
+ readonly updateId: string;
3277
+ readonly body: UpdateBipUpdateRequest;
3278
+ }): Promise<BipUpdate>;
3279
+ declare function deleteBipUpdate(context: TransportContext, input: {
3280
+ readonly bearer: string;
3281
+ readonly appId: string;
3282
+ readonly updateId: string;
3283
+ }): Promise<DeleteBipUpdateResponse>;
3284
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3285
+ readonly bearer: string;
3286
+ readonly appId: string;
3287
+ readonly file: Blob;
3288
+ readonly filename: string;
3289
+ readonly contentType: string;
3290
+ }): Promise<BipUpdateMediaUploadResponse>;
3291
+ declare function getBipInterestCount(context: TransportContext, input: {
3292
+ readonly bearer?: string;
3293
+ readonly slug: string;
3294
+ }): Promise<BipInterestCountResponse>;
3295
+ declare function getMyBipEngagement(context: TransportContext, input: {
3296
+ readonly bearer: string;
3297
+ readonly slug: string;
3298
+ }): Promise<BipEngagementResponse>;
3299
+ declare function registerBipInterest(context: TransportContext, input: {
3300
+ readonly bearer: string;
3301
+ readonly slug: string;
3302
+ readonly interested: boolean;
3303
+ }): Promise<BipEngagementResponse>;
3304
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3305
+ readonly bearer: string;
3306
+ readonly slug: string;
3307
+ readonly subscribed: boolean;
3308
+ }): Promise<BipEngagementResponse>;
3309
+ //#endregion
3310
+ //#region src/catalog/build-in-public.d.ts
3311
+ declare function getBipDirectory(context: TransportContext, input: {
3312
+ readonly bearer?: string;
3313
+ readonly genre?: string;
3314
+ readonly q?: string;
3315
+ readonly before?: string;
3316
+ readonly limit?: number;
3317
+ }): Promise<LibraryListResponse>;
3318
+ declare function getBipPage(context: TransportContext, input: {
3319
+ readonly bearer?: string;
3320
+ readonly slug: string;
3321
+ }): Promise<PublicBipPage>;
3322
+ //#endregion
2993
3323
  //#region src/catalog/content-reports.d.ts
2994
3324
  declare function submitAppContentReport(context: TransportContext, input: {
2995
3325
  readonly appId: string;
@@ -3154,6 +3484,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3154
3484
  readonly before?: string;
3155
3485
  }): Promise<PaymentHistoryResponse>;
3156
3486
  //#endregion
3487
+ //#region src/dashboard/rates.d.ts
3488
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3489
+ //#endregion
3157
3490
  //#region src/developer/api-keys.d.ts
3158
3491
  declare function createDeveloperApiKey(context: TransportContext, input: {
3159
3492
  readonly bearer: string;
@@ -3396,6 +3729,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3396
3729
  readonly bearer: string;
3397
3730
  readonly appId: string;
3398
3731
  }): Promise<AppPageDraft>;
3732
+ declare function setAppPageBip(context: TransportContext, input: {
3733
+ readonly bearer: string;
3734
+ readonly appId: string;
3735
+ readonly body: AppPageBipToggle;
3736
+ }): Promise<AppPageDraft>;
3737
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3738
+ readonly bearer: string;
3739
+ readonly appId: string;
3740
+ }): Promise<AppPageDraft>;
3741
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3742
+ readonly bearer: string;
3743
+ readonly appId: string;
3744
+ }): Promise<AppPageDraft>;
3399
3745
  //#endregion
3400
3746
  //#region src/developer/participants.d.ts
3401
3747
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -3767,6 +4113,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3767
4113
  readonly bearer: string;
3768
4114
  readonly intentId: string;
3769
4115
  }): Promise<OauthPaymentIntentResolveResponse>;
4116
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4117
+ readonly bearer: string;
4118
+ readonly intentId: string;
4119
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4120
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4121
+ readonly bearer: string;
4122
+ readonly intentId: string;
4123
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4124
+ }): Promise<OauthPaymentIntentResolveResponse>;
3770
4125
  //#endregion
3771
4126
  //#region src/payments/limits.d.ts
3772
4127
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -3977,6 +4332,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3977
4332
  declare function listFriends(context: TransportContext, input: {
3978
4333
  readonly bearer: string;
3979
4334
  }): Promise<FriendListResponse>;
4335
+ declare function listFriendsForApp(context: TransportContext, input: {
4336
+ readonly bearer: string;
4337
+ }): Promise<AppFriendListResponse>;
3980
4338
  //#endregion
3981
4339
  //#region src/reads/socials.d.ts
3982
4340
  declare function listSocials(context: TransportContext, input: {
@@ -4268,4 +4626,4 @@ type CookieTokenStoreOptions = {
4268
4626
  };
4269
4627
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
4270
4628
  //#endregion
4271
- 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 };
4629
+ export { AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, CookieTokenStoreOptions, type FetchLike, InflightDedup, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, OauthErrorCode, OauthPaymentWebhookBody, type OauthScope, PkcePair, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, SERVER_RATE_LIMIT_MAX_MUTATING, SERVER_RATE_LIMIT_MAX_READ, SERVER_RATE_LIMIT_WINDOW_MS, type SdkBaseConfig, TRON_WS_CLOSE_CODES, type TokenSet, type TokenStore, TronBrowserClient, TronError, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, charge, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, consolidateDeveloperAppWallet, createBipUpdate, createConsoleLogger, createCookieTokenStore, createDelegation, createDeveloperApiKey, createDeveloperApp, createDeveloperAppMintPermit, createDeveloperVaultPermit, createDeveloperWithdrawPermit, createDirectThread, createInMemoryTokenStore, createInflightDedup, createNoopLogger, createRateLimiter, createReferralCode, createTronCashout, createTronConnectOnboarding, createTronDeposit, createTronTransfer, createTronTransferChallenge, decideFriendRequest, declineDeveloperInvite, defaultEndpoints, deleteAppPageBanner, deleteAppPageThumbnail, deleteAppPageThumbnailVideo, deleteAvatar, deleteBipUpdate, deleteBipUpdateComment, deleteDelegation, deleteDeveloperApp, deleteDeveloperAppLogo, deleteDeveloperProfileLogo, deleteDeveloperRequestLogo, deleteGameReviewComment, deleteGameReviewReply, deleteMessage, deleteMyGameReview, deleteThread, deleteThreadLogo, denyPaymentIntent, editMessage, exchangeAuthorizationCode, executeNftTransfer, fetchAuthorizationServerMetadata, fetchUserInfo, fileAppeal, fileAppealPotLeg, followUser, forceWithdrawVaultCustody, generatePkce, generateState, getActivity, getActivityGroup, getAdminAppealRoom, getAppFeeConfig, getAppPage, getAppPageChanges, getAppealRoom, getBipDirectory, getBipInterestCount, getBipPage, getDelegation, getDeveloperAppActivity, getDeveloperAppBalances, getDeveloperAppEarnings, getDeveloperAppInventoryItemHolders, getDeveloperAppOverview, getDeveloperAppPage, getDeveloperAppPlaytime, getDeveloperAppTronBalance, getDeveloperAppWallets, getDeveloperPaymentAppeals, getDeveloperPaymentPendingDeposits, getDeveloperStatus, getDeveloperTronBalanceSummary, getDmKeyBackupStatus, getEarningsTimeseries, getIntentStatus, getLibrary, getMeStats, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronSecurity, hideAppPage, hideAppPageBip, hideThread, inviteDeveloperAppParticipant, inviteParticipants, leaveThread, listActivePlayers, listAdminContentReports, listAdmins, listAppPages, listAppealBlacklist, listAppealQueue, listAudit, listBipUpdateComments, listBipUpdates, listDeveloperApiKeys, listDeveloperAppContentReports, listDeveloperAppInventoryCollections, listDeveloperAppInventoryItems, listDeveloperAppParticipants, listDeveloperAppReviews, listDeveloperBipUpdates, listDeveloperInvites, listDeveloperRequests, listDevelopers, listFriends, listFriendsForApp, listGameReviewComments, listGameReviews, listInventory, listInventoryForApp, listInventoryMintPermits, listInventoryVaultPermits, listInventoryVaulted, listNotifications, listOauthInventoryVaulted, listPaymentAuthorizations, listSocials, listThreadMessages, listThreads, listTronCashoutQueue, listTronCashouts, listTronLedger, listUsers, listWalletManager, listWallets, markAllNotificationsRead, markThreadRead, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, sendFriendRequest, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinThread, unpublishAppPage, unpublishAppPageBip, updateAdminRole, updateAppFeeConfig, updateAppPage, updateBipUpdate, updateDeveloperApp, updateDeveloperAppAutoSweep, updateDeveloperAppContentReportStatus, updateDeveloperProfile, updateNotification, updateParticipantRole, updatePaymentAuthorization, updatePlatformFees, updateProfile, updateThreadSettings, updateUserBan, updateWalletLabel, uploadAdminAppealRoomAttachment, uploadAppPageBanner, uploadAppPageGallery, uploadAppPageThumbnail, uploadAppPageThumbnailVideo, uploadAppealRoomAttachment, uploadAttachment, uploadAvatar, uploadBipUpdateMedia, uploadDeveloperAppInventoryItemBanner, uploadDeveloperAppInventoryItemImage, uploadDeveloperAppLogo, uploadDeveloperProfileLogo, uploadDeveloperRequestLogo, uploadMultipart, uploadThreadLogo, upsertMyGameReview, verifyWebhook, withdrawDeveloperAppWallet };