@metatrongg/sdk 0.8.0-dev.35a45fe → 0.8.0-dev.3dc9fcb

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;
@@ -380,6 +390,119 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
380
390
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
381
391
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
382
392
  type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
393
+ type PublicBipPage = {
394
+ appId: string;
395
+ slug: AppPageSlug;
396
+ appName: string;
397
+ appLogoUrl: string | null;
398
+ categories: AppPageCategories;
399
+ tagline: AppPageTagline;
400
+ bannerUrl: string | null;
401
+ discordUrl: string | null;
402
+ twitterUrl: string | null;
403
+ redditUrl: string | null;
404
+ telegramUrl: string | null;
405
+ gallery: AppPageGallery;
406
+ chapters: AppPageChapters;
407
+ links: AppPageLinks;
408
+ studio: PublicAppPageStudio;
409
+ platforms: AppPagePlatforms;
410
+ gameType: AppPageGameType;
411
+ ageRating: AppPageAgeRating;
412
+ languages: AppPageLanguages;
413
+ releaseStatus: AppPageReleaseStatus;
414
+ publishedAt: string;
415
+ updatedAt: string;
416
+ };
417
+ type BipUpdateListResponse = {
418
+ updates: Array<BipUpdate>;
419
+ total: number;
420
+ hasMore: boolean;
421
+ };
422
+ type BipUpdate = {
423
+ id: string;
424
+ appId: string;
425
+ body: BipUpdateBody;
426
+ attachments: BipUpdateAttachments;
427
+ reactions: BipUpdateReactionCounts;
428
+ commentCount: number;
429
+ createdAt: string;
430
+ updatedAt: string;
431
+ };
432
+ type BipUpdateBody = string;
433
+ type BipUpdateAttachments = Array<BipUpdateAttachment>;
434
+ type BipUpdateAttachment = {
435
+ url: string;
436
+ kind: "image" | "video";
437
+ order: number;
438
+ };
439
+ type BipUpdateReactionCounts = {
440
+ up: number;
441
+ down: number;
442
+ };
443
+ type BipUpdateCommentListResponse = {
444
+ comments: Array<BipUpdateComment>;
445
+ total: number;
446
+ hasMore: boolean;
447
+ };
448
+ type BipUpdateComment = {
449
+ id: string;
450
+ body: BipUpdateCommentBody;
451
+ author: ReviewAuthor;
452
+ createdAt: string;
453
+ };
454
+ type BipUpdateCommentBody = string;
455
+ type ReviewAuthor = {
456
+ userId: string;
457
+ handle: string | null;
458
+ name: string | null;
459
+ avatarUrl: string | null;
460
+ };
461
+ type BipInterestCountResponse = {
462
+ interestCount: number;
463
+ };
464
+ type BipEngagementResponse = {
465
+ interested: boolean;
466
+ subscribed: boolean;
467
+ interestCount: number;
468
+ };
469
+ type MyBipUpdateReactionsResponse = {
470
+ reactions: Array<MyBipUpdateReaction>;
471
+ };
472
+ type MyBipUpdateReaction = {
473
+ updateId: string;
474
+ vote: "up" | "down";
475
+ };
476
+ type SetBipUpdateReactionResponse = {
477
+ reactions: BipUpdateReactionCounts;
478
+ vote: BipUpdateVote;
479
+ };
480
+ type BipUpdateVote = "up" | "down" | null;
481
+ type SetBipUpdateReactionRequest = {
482
+ vote: BipUpdateVote;
483
+ };
484
+ type CreateBipUpdateCommentResponse = {
485
+ comment: BipUpdateComment;
486
+ commentCount: number;
487
+ };
488
+ type DeleteBipUpdateCommentResponse = {
489
+ commentCount: number;
490
+ };
491
+ type CreateBipUpdateRequest = {
492
+ body: BipUpdateBody;
493
+ attachments?: BipUpdateAttachments;
494
+ };
495
+ type UpdateBipUpdateRequest = {
496
+ body?: BipUpdateBody;
497
+ attachments?: BipUpdateAttachments;
498
+ };
499
+ type DeleteBipUpdateResponse = {
500
+ deleted: true;
501
+ };
502
+ type BipUpdateMediaUploadResponse = {
503
+ url: string;
504
+ kind: "image" | "video";
505
+ };
383
506
  type ReviewListResponse = {
384
507
  aggregate: ReviewAggregate;
385
508
  reviews: Array<Review>;
@@ -413,12 +536,6 @@ type ReviewReactionCounts = {
413
536
  unhelpful: number;
414
537
  funny: number;
415
538
  };
416
- type ReviewAuthor = {
417
- userId: string;
418
- handle: string | null;
419
- name: string | null;
420
- avatarUrl: string | null;
421
- };
422
539
  type ReviewerStats = {
423
540
  playtimeSecondsThisGame: number;
424
541
  gamesPlayed: number;
@@ -1096,12 +1213,15 @@ type WalletListResponse = {
1096
1213
  wallets: Array<WalletItem>;
1097
1214
  };
1098
1215
  type WalletChainList = Array<{
1099
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1216
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1100
1217
  displayName: string;
1101
- chainId: number;
1218
+ family: "evm" | "solana";
1219
+ nativeSymbol: string;
1220
+ chainId?: number;
1102
1221
  }>;
1103
1222
  type WalletItem = {
1104
- address: string;
1223
+ address: string | string;
1224
+ family: "evm" | "solana";
1105
1225
  label: WalletLabel;
1106
1226
  kind: "personal" | "app";
1107
1227
  app: WalletAppLink;
@@ -1118,6 +1238,9 @@ type WalletBalances = {
1118
1238
  "ethereum-mainnet"?: WalletChainBalance;
1119
1239
  "base-mainnet"?: WalletChainBalance;
1120
1240
  "ethereum-sepolia"?: WalletChainBalance;
1241
+ "base-sepolia"?: WalletChainBalance;
1242
+ "solana-mainnet"?: WalletChainBalance;
1243
+ "solana-devnet"?: WalletChainBalance;
1121
1244
  };
1122
1245
  type WalletChainBalance = {
1123
1246
  native: string;
@@ -1127,12 +1250,14 @@ type WalletDelegationStatus = {
1127
1250
  mode: WalletDelegationMode;
1128
1251
  caps: WalletDelegationCaps;
1129
1252
  policyId: string | null;
1253
+ slippageBps: DelegationSlippageBps;
1130
1254
  };
1131
1255
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1132
1256
  type WalletDelegationCaps = {
1133
1257
  native: string;
1134
1258
  usdc: string;
1135
1259
  } | null;
1260
+ type DelegationSlippageBps = number | null;
1136
1261
  type WalletLabelUpdateResponse = {
1137
1262
  address: string;
1138
1263
  label: WalletLabel;
@@ -1230,6 +1355,7 @@ type MessageTransactionNftTransfer = {
1230
1355
  tokenId: string;
1231
1356
  amount: string;
1232
1357
  itemName: string | null;
1358
+ imageAssetId?: string | null;
1233
1359
  };
1234
1360
  type GroupThreadSummary = {
1235
1361
  kind: "group";
@@ -1812,6 +1938,18 @@ type NotificationItem = {
1812
1938
  payload: AppPageRejectedNotificationPayload;
1813
1939
  read: boolean;
1814
1940
  createdAt: string;
1941
+ } | {
1942
+ id: string;
1943
+ kind: "bip_update_published";
1944
+ payload: BipUpdatePublishedNotificationPayload;
1945
+ read: boolean;
1946
+ createdAt: string;
1947
+ } | {
1948
+ id: string;
1949
+ kind: "bip_now_playable";
1950
+ payload: BipNowPlayableNotificationPayload;
1951
+ read: boolean;
1952
+ createdAt: string;
1815
1953
  } | {
1816
1954
  id: string;
1817
1955
  kind: "app_participant_invite";
@@ -1842,14 +1980,25 @@ type FriendAcceptedNotificationPayload = {
1842
1980
  type AppPageApprovedNotificationPayload = {
1843
1981
  appId: string;
1844
1982
  appName: string;
1845
- scope: "publish" | "changes";
1983
+ scope: "publish" | "changes" | "bip_publish";
1846
1984
  };
1847
1985
  type AppPageRejectedNotificationPayload = {
1848
1986
  appId: string;
1849
1987
  appName: string;
1850
- scope: "publish" | "changes";
1988
+ scope: "publish" | "changes" | "bip_publish";
1851
1989
  notes: string;
1852
1990
  };
1991
+ type BipUpdatePublishedNotificationPayload = {
1992
+ appId: string;
1993
+ appName: string;
1994
+ appSlug: string | null;
1995
+ updateId: string;
1996
+ };
1997
+ type BipNowPlayableNotificationPayload = {
1998
+ appId: string;
1999
+ appName: string;
2000
+ appSlug: string | null;
2001
+ };
1853
2002
  type AppParticipantInviteNotificationPayload = {
1854
2003
  appId: string;
1855
2004
  appName: string;
@@ -1879,6 +2028,9 @@ type FriendListItem = {
1879
2028
  onlineStatus: OnlineStatus;
1880
2029
  };
1881
2030
  type OnlineStatus = "online" | "offline";
2031
+ type AppFriendListResponse = {
2032
+ friends: Array<ThreadParticipant>;
2033
+ };
1882
2034
  type FriendRequestDecision = {
1883
2035
  decision: "accept" | "reject";
1884
2036
  };
@@ -2008,17 +2160,20 @@ type CreateDeveloperAppChain = {
2008
2160
  };
2009
2161
  type UpdateDeveloperApp = {
2010
2162
  name?: DeveloperAppName;
2163
+ slug?: AppPageSlug | null;
2011
2164
  logoUrl?: string | null;
2012
2165
  testAccess?: "private" | "public";
2013
2166
  redirectUris?: Array<string>;
2014
2167
  embedOrigins?: Array<EmbedOrigin>;
2015
2168
  acceptedCurrencies?: AcceptedCurrencies;
2169
+ acceptedNetworks?: AcceptedNetworks;
2016
2170
  paymentStatusWebhookUrl?: string | null;
2017
2171
  paymentStatusWebhookUrlTest?: string | null;
2018
2172
  };
2019
2173
  type EmbedOrigin = string;
2020
2174
  type AcceptedCurrencies = Array<PlatformCurrency>;
2021
2175
  type PlatformCurrency = "eth" | "tron";
2176
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2022
2177
  type DeveloperLogoUploadResponse = {
2023
2178
  logoUrl: string | null;
2024
2179
  };
@@ -2256,6 +2411,7 @@ type DeveloperProductionRequestPayload = {
2256
2411
  type DeveloperAppItem = {
2257
2412
  id: string;
2258
2413
  name: DeveloperAppName;
2414
+ slug: AppPageSlug | null;
2259
2415
  logoUrl: string | null;
2260
2416
  environment: "development" | "production";
2261
2417
  productionApprovedAt: string | null;
@@ -2264,6 +2420,7 @@ type DeveloperAppItem = {
2264
2420
  redirectUris: Array<string>;
2265
2421
  embedOrigins: Array<EmbedOrigin>;
2266
2422
  acceptedCurrencies: AcceptedCurrencies;
2423
+ acceptedNetworks: AcceptedNetworks;
2267
2424
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2268
2425
  keys: Array<DeveloperAppKeyItem>;
2269
2426
  pendingProductionRequestId: string | null;
@@ -2318,9 +2475,18 @@ type AppPageDraft = {
2318
2475
  hiddenAt: string | null;
2319
2476
  hiddenReasonPublic: string | null;
2320
2477
  pendingReview: boolean;
2478
+ bip: AppPageBipState;
2479
+ };
2480
+ type AppPageBipState = {
2481
+ enabled: boolean;
2482
+ status: "draft" | "pending_review" | "published" | "hidden";
2483
+ firstPublishedAt: string | null;
2484
+ reviewedAt: string | null;
2485
+ reviewNotes: string | null;
2486
+ hiddenAt: string | null;
2487
+ hiddenReasonPublic: string | null;
2321
2488
  };
2322
2489
  type UpdateAppPage = {
2323
- slug?: AppPageSlug | null;
2324
2490
  categories?: AppPageCategories;
2325
2491
  tagline?: AppPageTagline | null;
2326
2492
  bannerUrl?: string | null;
@@ -2343,6 +2509,9 @@ type UpdateAppPage = {
2343
2509
  type AppPageGalleryUploadResponse = {
2344
2510
  url: string;
2345
2511
  };
2512
+ type AppPageBipToggle = {
2513
+ enabled: boolean;
2514
+ };
2346
2515
  type AdminActivePlayersResponse = {
2347
2516
  players: Array<AdminActivePlayer>;
2348
2517
  total: number;
@@ -2481,6 +2650,11 @@ type AdminAppPageItem = {
2481
2650
  hiddenAt: string | null;
2482
2651
  hiddenReasonInternal: string | null;
2483
2652
  pendingChangesSubmittedAt: string | null;
2653
+ bipEnabled: boolean;
2654
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2655
+ bipFirstPublishedAt: string | null;
2656
+ bipHiddenAt: string | null;
2657
+ openReportCount: number;
2484
2658
  };
2485
2659
  type AdminAppPageStatusResponse = {
2486
2660
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2506,6 +2680,25 @@ type AdminAppPageDiffField = {
2506
2680
  from: string;
2507
2681
  to: string;
2508
2682
  };
2683
+ type AdminAppPageBipStatusResponse = {
2684
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2685
+ };
2686
+ type AdminAppContentReportListResponse = {
2687
+ reports: Array<AdminAppContentReportItem>;
2688
+ total: number;
2689
+ hasMore: boolean;
2690
+ };
2691
+ type AdminAppContentReportItem = {
2692
+ id: string;
2693
+ category: AppContentReportCategory;
2694
+ details: string | null;
2695
+ status: AppContentReportStatus;
2696
+ acknowledgedAt: string | null;
2697
+ createdAt: string;
2698
+ appId: string;
2699
+ appName: string;
2700
+ appSlug: string | null;
2701
+ };
2509
2702
  type PlatformFeesResponse = {
2510
2703
  purchaseFeeBps: number;
2511
2704
  stakeFeeBps: number;
@@ -2795,7 +2988,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2795
2988
  //#region src/admin/app-pages.d.ts
2796
2989
  declare function listAppPages(context: TransportContext, input: {
2797
2990
  readonly bearer: string;
2798
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
2991
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2799
2992
  }): Promise<AdminAppPageListResponse>;
2800
2993
  declare function getAppPageChanges(context: TransportContext, input: {
2801
2994
  readonly bearer: string;
@@ -2820,6 +3013,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2820
3013
  readonly appId: string;
2821
3014
  readonly body: ReviewAppPage;
2822
3015
  }): Promise<AdminAppPageStatusResponse>;
3016
+ declare function reviewAppPageBip(context: TransportContext, input: {
3017
+ readonly bearer: string;
3018
+ readonly appId: string;
3019
+ readonly body: ReviewAppPage;
3020
+ }): Promise<AdminAppPageBipStatusResponse>;
3021
+ declare function hideAppPageBip(context: TransportContext, input: {
3022
+ readonly bearer: string;
3023
+ readonly appId: string;
3024
+ readonly body: HideAppPage;
3025
+ }): Promise<AdminAppPageBipStatusResponse>;
3026
+ declare function unhideAppPageBip(context: TransportContext, input: {
3027
+ readonly bearer: string;
3028
+ readonly appId: string;
3029
+ }): Promise<AdminAppPageBipStatusResponse>;
2823
3030
  //#endregion
2824
3031
  //#region src/admin/appeals.d.ts
2825
3032
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2851,6 +3058,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2851
3058
  readonly body: AppealResolveRequest;
2852
3059
  }): Promise<AppealResolveSignedResponse>;
2853
3060
  //#endregion
3061
+ //#region src/admin/content-reports.d.ts
3062
+ declare function listAdminContentReports(context: TransportContext, input: {
3063
+ readonly bearer: string;
3064
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3065
+ readonly limit?: number;
3066
+ readonly offset?: number;
3067
+ }): Promise<AdminAppContentReportListResponse>;
3068
+ declare function triageAdminContentReport(context: TransportContext, input: {
3069
+ readonly bearer: string;
3070
+ readonly reportId: string;
3071
+ readonly status: "acknowledged" | "dismissed";
3072
+ }): Promise<AppContentReport>;
3073
+ //#endregion
2854
3074
  //#region src/admin/developers.d.ts
2855
3075
  declare function listDeveloperRequests(context: TransportContext, input: {
2856
3076
  readonly bearer: string;
@@ -2990,6 +3210,102 @@ declare function getAppPage(context: TransportContext, input: {
2990
3210
  readonly slug: string;
2991
3211
  }): Promise<PublicAppPage>;
2992
3212
  //#endregion
3213
+ //#region src/catalog/bip-updates.d.ts
3214
+ declare function listBipUpdates(context: TransportContext, input: {
3215
+ readonly bearer?: string;
3216
+ readonly slug: string;
3217
+ readonly limit?: number;
3218
+ readonly offset?: number;
3219
+ }): Promise<BipUpdateListResponse>;
3220
+ declare function listBipUpdateComments(context: TransportContext, input: {
3221
+ readonly bearer?: string;
3222
+ readonly slug: string;
3223
+ readonly updateId: string;
3224
+ readonly limit?: number;
3225
+ readonly offset?: number;
3226
+ }): Promise<BipUpdateCommentListResponse>;
3227
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3228
+ readonly bearer: string;
3229
+ readonly slug: string;
3230
+ }): Promise<MyBipUpdateReactionsResponse>;
3231
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3232
+ readonly bearer: string;
3233
+ readonly slug: string;
3234
+ readonly updateId: string;
3235
+ readonly body: SetBipUpdateReactionRequest;
3236
+ }): Promise<SetBipUpdateReactionResponse>;
3237
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3238
+ readonly bearer: string;
3239
+ readonly slug: string;
3240
+ readonly updateId: string;
3241
+ readonly body: string;
3242
+ }): Promise<CreateBipUpdateCommentResponse>;
3243
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3244
+ readonly bearer: string;
3245
+ readonly slug: string;
3246
+ readonly commentId: string;
3247
+ }): Promise<DeleteBipUpdateCommentResponse>;
3248
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3249
+ readonly bearer: string;
3250
+ readonly appId: string;
3251
+ readonly limit?: number;
3252
+ readonly offset?: number;
3253
+ }): Promise<BipUpdateListResponse>;
3254
+ declare function createBipUpdate(context: TransportContext, input: {
3255
+ readonly bearer: string;
3256
+ readonly appId: string;
3257
+ readonly body: CreateBipUpdateRequest;
3258
+ }): Promise<BipUpdate>;
3259
+ declare function updateBipUpdate(context: TransportContext, input: {
3260
+ readonly bearer: string;
3261
+ readonly appId: string;
3262
+ readonly updateId: string;
3263
+ readonly body: UpdateBipUpdateRequest;
3264
+ }): Promise<BipUpdate>;
3265
+ declare function deleteBipUpdate(context: TransportContext, input: {
3266
+ readonly bearer: string;
3267
+ readonly appId: string;
3268
+ readonly updateId: string;
3269
+ }): Promise<DeleteBipUpdateResponse>;
3270
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3271
+ readonly bearer: string;
3272
+ readonly appId: string;
3273
+ readonly file: Blob;
3274
+ readonly filename: string;
3275
+ readonly contentType: string;
3276
+ }): Promise<BipUpdateMediaUploadResponse>;
3277
+ declare function getBipInterestCount(context: TransportContext, input: {
3278
+ readonly bearer?: string;
3279
+ readonly slug: string;
3280
+ }): Promise<BipInterestCountResponse>;
3281
+ declare function getMyBipEngagement(context: TransportContext, input: {
3282
+ readonly bearer: string;
3283
+ readonly slug: string;
3284
+ }): Promise<BipEngagementResponse>;
3285
+ declare function registerBipInterest(context: TransportContext, input: {
3286
+ readonly bearer: string;
3287
+ readonly slug: string;
3288
+ readonly interested: boolean;
3289
+ }): Promise<BipEngagementResponse>;
3290
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3291
+ readonly bearer: string;
3292
+ readonly slug: string;
3293
+ readonly subscribed: boolean;
3294
+ }): Promise<BipEngagementResponse>;
3295
+ //#endregion
3296
+ //#region src/catalog/build-in-public.d.ts
3297
+ declare function getBipDirectory(context: TransportContext, input: {
3298
+ readonly bearer?: string;
3299
+ readonly genre?: string;
3300
+ readonly q?: string;
3301
+ readonly before?: string;
3302
+ readonly limit?: number;
3303
+ }): Promise<LibraryListResponse>;
3304
+ declare function getBipPage(context: TransportContext, input: {
3305
+ readonly bearer?: string;
3306
+ readonly slug: string;
3307
+ }): Promise<PublicBipPage>;
3308
+ //#endregion
2993
3309
  //#region src/catalog/content-reports.d.ts
2994
3310
  declare function submitAppContentReport(context: TransportContext, input: {
2995
3311
  readonly appId: string;
@@ -3396,6 +3712,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3396
3712
  readonly bearer: string;
3397
3713
  readonly appId: string;
3398
3714
  }): Promise<AppPageDraft>;
3715
+ declare function setAppPageBip(context: TransportContext, input: {
3716
+ readonly bearer: string;
3717
+ readonly appId: string;
3718
+ readonly body: AppPageBipToggle;
3719
+ }): Promise<AppPageDraft>;
3720
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3721
+ readonly bearer: string;
3722
+ readonly appId: string;
3723
+ }): Promise<AppPageDraft>;
3724
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3725
+ readonly bearer: string;
3726
+ readonly appId: string;
3727
+ }): Promise<AppPageDraft>;
3399
3728
  //#endregion
3400
3729
  //#region src/developer/participants.d.ts
3401
3730
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -3977,6 +4306,9 @@ declare function cancelFriendRequest(context: TransportContext, input: {
3977
4306
  declare function listFriends(context: TransportContext, input: {
3978
4307
  readonly bearer: string;
3979
4308
  }): Promise<FriendListResponse>;
4309
+ declare function listFriendsForApp(context: TransportContext, input: {
4310
+ readonly bearer: string;
4311
+ }): Promise<AppFriendListResponse>;
3980
4312
  //#endregion
3981
4313
  //#region src/reads/socials.d.ts
3982
4314
  declare function listSocials(context: TransportContext, input: {
@@ -4268,4 +4600,4 @@ type CookieTokenStoreOptions = {
4268
4600
  };
4269
4601
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
4270
4602
  //#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 };
4603
+ 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, 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, 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, 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 };