@metatrongg/sdk 0.8.0-dev.2fc7340 → 0.8.0-dev.3419bfc

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";
@@ -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;
@@ -1098,12 +1220,15 @@ type WalletListResponse = {
1098
1220
  wallets: Array<WalletItem>;
1099
1221
  };
1100
1222
  type WalletChainList = Array<{
1101
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1223
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1102
1224
  displayName: string;
1103
- chainId: number;
1225
+ family: "evm" | "solana";
1226
+ nativeSymbol: string;
1227
+ chainId?: number;
1104
1228
  }>;
1105
1229
  type WalletItem = {
1106
- address: string;
1230
+ address: string | string;
1231
+ family: "evm" | "solana";
1107
1232
  label: WalletLabel;
1108
1233
  kind: "personal" | "app";
1109
1234
  app: WalletAppLink;
@@ -1120,6 +1245,9 @@ type WalletBalances = {
1120
1245
  "ethereum-mainnet"?: WalletChainBalance;
1121
1246
  "base-mainnet"?: WalletChainBalance;
1122
1247
  "ethereum-sepolia"?: WalletChainBalance;
1248
+ "base-sepolia"?: WalletChainBalance;
1249
+ "solana-mainnet"?: WalletChainBalance;
1250
+ "solana-devnet"?: WalletChainBalance;
1123
1251
  };
1124
1252
  type WalletChainBalance = {
1125
1253
  native: string;
@@ -1129,12 +1257,14 @@ type WalletDelegationStatus = {
1129
1257
  mode: WalletDelegationMode;
1130
1258
  caps: WalletDelegationCaps;
1131
1259
  policyId: string | null;
1260
+ slippageBps: DelegationSlippageBps;
1132
1261
  };
1133
1262
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1134
1263
  type WalletDelegationCaps = {
1135
1264
  native: string;
1136
1265
  usdc: string;
1137
1266
  } | null;
1267
+ type DelegationSlippageBps = number | null;
1138
1268
  type WalletLabelUpdateResponse = {
1139
1269
  address: string;
1140
1270
  label: WalletLabel;
@@ -1815,6 +1945,18 @@ type NotificationItem = {
1815
1945
  payload: AppPageRejectedNotificationPayload;
1816
1946
  read: boolean;
1817
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;
1818
1960
  } | {
1819
1961
  id: string;
1820
1962
  kind: "app_participant_invite";
@@ -1845,14 +1987,25 @@ type FriendAcceptedNotificationPayload = {
1845
1987
  type AppPageApprovedNotificationPayload = {
1846
1988
  appId: string;
1847
1989
  appName: string;
1848
- scope: "publish" | "changes";
1990
+ scope: "publish" | "changes" | "bip_publish";
1849
1991
  };
1850
1992
  type AppPageRejectedNotificationPayload = {
1851
1993
  appId: string;
1852
1994
  appName: string;
1853
- scope: "publish" | "changes";
1995
+ scope: "publish" | "changes" | "bip_publish";
1854
1996
  notes: string;
1855
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
+ };
1856
2009
  type AppParticipantInviteNotificationPayload = {
1857
2010
  appId: string;
1858
2011
  appName: string;
@@ -2020,12 +2173,14 @@ type UpdateDeveloperApp = {
2020
2173
  redirectUris?: Array<string>;
2021
2174
  embedOrigins?: Array<EmbedOrigin>;
2022
2175
  acceptedCurrencies?: AcceptedCurrencies;
2176
+ acceptedNetworks?: AcceptedNetworks;
2023
2177
  paymentStatusWebhookUrl?: string | null;
2024
2178
  paymentStatusWebhookUrlTest?: string | null;
2025
2179
  };
2026
2180
  type EmbedOrigin = string;
2027
2181
  type AcceptedCurrencies = Array<PlatformCurrency>;
2028
2182
  type PlatformCurrency = "eth" | "tron";
2183
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2029
2184
  type DeveloperLogoUploadResponse = {
2030
2185
  logoUrl: string | null;
2031
2186
  };
@@ -2272,6 +2427,7 @@ type DeveloperAppItem = {
2272
2427
  redirectUris: Array<string>;
2273
2428
  embedOrigins: Array<EmbedOrigin>;
2274
2429
  acceptedCurrencies: AcceptedCurrencies;
2430
+ acceptedNetworks: AcceptedNetworks;
2275
2431
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2276
2432
  keys: Array<DeveloperAppKeyItem>;
2277
2433
  pendingProductionRequestId: string | null;
@@ -2326,6 +2482,16 @@ type AppPageDraft = {
2326
2482
  hiddenAt: string | null;
2327
2483
  hiddenReasonPublic: string | null;
2328
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;
2329
2495
  };
2330
2496
  type UpdateAppPage = {
2331
2497
  categories?: AppPageCategories;
@@ -2350,6 +2516,9 @@ type UpdateAppPage = {
2350
2516
  type AppPageGalleryUploadResponse = {
2351
2517
  url: string;
2352
2518
  };
2519
+ type AppPageBipToggle = {
2520
+ enabled: boolean;
2521
+ };
2353
2522
  type AdminActivePlayersResponse = {
2354
2523
  players: Array<AdminActivePlayer>;
2355
2524
  total: number;
@@ -2488,6 +2657,11 @@ type AdminAppPageItem = {
2488
2657
  hiddenAt: string | null;
2489
2658
  hiddenReasonInternal: string | null;
2490
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;
2491
2665
  };
2492
2666
  type AdminAppPageStatusResponse = {
2493
2667
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2513,6 +2687,25 @@ type AdminAppPageDiffField = {
2513
2687
  from: string;
2514
2688
  to: string;
2515
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
+ };
2516
2709
  type PlatformFeesResponse = {
2517
2710
  purchaseFeeBps: number;
2518
2711
  stakeFeeBps: number;
@@ -2693,6 +2886,13 @@ type AppealResolveRequest = {
2693
2886
  decision: "refund" | "dismiss";
2694
2887
  notes?: string;
2695
2888
  };
2889
+ type PaymentRatesResponse = {
2890
+ asOf: string;
2891
+ ethUsd: number | null;
2892
+ solUsd: number | null;
2893
+ solLamportsPerCent: number | null;
2894
+ tronUsdPerToken: number;
2895
+ };
2696
2896
  type AppealFileResponse = {
2697
2897
  appealId: string;
2698
2898
  paymentId: string;
@@ -2802,7 +3002,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2802
3002
  //#region src/admin/app-pages.d.ts
2803
3003
  declare function listAppPages(context: TransportContext, input: {
2804
3004
  readonly bearer: string;
2805
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3005
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2806
3006
  }): Promise<AdminAppPageListResponse>;
2807
3007
  declare function getAppPageChanges(context: TransportContext, input: {
2808
3008
  readonly bearer: string;
@@ -2827,6 +3027,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2827
3027
  readonly appId: string;
2828
3028
  readonly body: ReviewAppPage;
2829
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>;
2830
3044
  //#endregion
2831
3045
  //#region src/admin/appeals.d.ts
2832
3046
  declare function listAppealQueue(context: TransportContext, input: {
@@ -2858,6 +3072,19 @@ declare function resolveAppeal(context: TransportContext, input: {
2858
3072
  readonly body: AppealResolveRequest;
2859
3073
  }): Promise<AppealResolveSignedResponse>;
2860
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
2861
3088
  //#region src/admin/developers.d.ts
2862
3089
  declare function listDeveloperRequests(context: TransportContext, input: {
2863
3090
  readonly bearer: string;
@@ -2997,6 +3224,102 @@ declare function getAppPage(context: TransportContext, input: {
2997
3224
  readonly slug: string;
2998
3225
  }): Promise<PublicAppPage>;
2999
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
3000
3323
  //#region src/catalog/content-reports.d.ts
3001
3324
  declare function submitAppContentReport(context: TransportContext, input: {
3002
3325
  readonly appId: string;
@@ -3161,6 +3484,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3161
3484
  readonly before?: string;
3162
3485
  }): Promise<PaymentHistoryResponse>;
3163
3486
  //#endregion
3487
+ //#region src/dashboard/rates.d.ts
3488
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3489
+ //#endregion
3164
3490
  //#region src/developer/api-keys.d.ts
3165
3491
  declare function createDeveloperApiKey(context: TransportContext, input: {
3166
3492
  readonly bearer: string;
@@ -3403,6 +3729,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3403
3729
  readonly bearer: string;
3404
3730
  readonly appId: string;
3405
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>;
3406
3745
  //#endregion
3407
3746
  //#region src/developer/participants.d.ts
3408
3747
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -3774,6 +4113,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
3774
4113
  readonly bearer: string;
3775
4114
  readonly intentId: string;
3776
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>;
3777
4125
  //#endregion
3778
4126
  //#region src/payments/limits.d.ts
3779
4127
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -4278,4 +4626,4 @@ type CookieTokenStoreOptions = {
4278
4626
  };
4279
4627
  declare function createCookieTokenStore(options?: CookieTokenStoreOptions): TokenStore;
4280
4628
  //#endregion
4281
- 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, 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, 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 };