@metatrongg/sdk 0.8.0-dev.eb5de24 → 0.8.0-dev.edb8e7e

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.
@@ -114,7 +114,7 @@ type Username = string;
114
114
  type DisplayName = string | null;
115
115
  type Bio = string | null;
116
116
  type WebsiteUrl = string | null;
117
- type BannerVariant = "yellow" | "green" | "blue" | "white" | "black";
117
+ type BannerVariant = "yellow" | "green" | "blue" | "white" | "black" | "red";
118
118
  type AdminRole = "super-admin" | "admin" | "read-only" | null;
119
119
  type PresenceStatusMode = "auto" | "online" | "offline";
120
120
  type PlatformEnvironment = "development" | "production";
@@ -291,7 +291,15 @@ type OauthPaymentIntentContext = {
291
291
  };
292
292
  } | null;
293
293
  environment: "development" | "production";
294
+ onramp?: {
295
+ kind: "bridge";
296
+ from: PaymentNetwork;
297
+ to: PaymentNetwork;
298
+ } | {
299
+ kind: "insufficient";
300
+ };
294
301
  };
302
+ type PaymentNetwork = "ethereum" | "base" | "solana";
295
303
  type OauthPaymentIntentSignResponse = {
296
304
  chain: string;
297
305
  chainId: number;
@@ -321,6 +329,13 @@ type OauthPaymentIntentCompleteSigned = {
321
329
  type OauthPaymentIntentCompleteOffline = {
322
330
  method: "offline";
323
331
  };
332
+ type OauthPaymentIntentSolanaPrepareResponse = {
333
+ transaction: string;
334
+ payer: string;
335
+ };
336
+ type OauthPaymentIntentSolanaCompleteRequest = {
337
+ signedTransaction: string;
338
+ };
324
339
  type ListAppPaymentAuthorizationsResponse = {
325
340
  authorizations: Array<AppPaymentAuthorizationItem>;
326
341
  };
@@ -387,6 +402,7 @@ type PublicAppPage = {
387
402
  paymentsMode: AppPagePaymentsMode;
388
403
  oauthScopes: Array<string>;
389
404
  chains: Array<string>;
405
+ devlog: boolean;
390
406
  publishedAt: string;
391
407
  updatedAt: string;
392
408
  };
@@ -424,6 +440,121 @@ type AppPageAgeRating = "everyone" | "13_plus" | "16_plus" | "18_plus" | null;
424
440
  type AppPageLanguages = Array<"en" | "es" | "fr" | "de" | "pt" | "it" | "ru" | "ja" | "ko" | "zh" | "hi" | "ar" | "tr" | "vi" | "id" | "th" | "pl" | "nl">;
425
441
  type AppPageReleaseStatus = "live" | "open_beta" | "coming_soon";
426
442
  type AppPagePaymentsMode = "tron" | "onchain" | "both" | null;
443
+ type PublicBipPage = {
444
+ appId: string;
445
+ slug: AppPageSlug;
446
+ appName: string;
447
+ appLogoUrl: string | null;
448
+ categories: AppPageCategories;
449
+ tagline: AppPageTagline;
450
+ bannerUrl: string | null;
451
+ discordUrl: string | null;
452
+ twitterUrl: string | null;
453
+ redditUrl: string | null;
454
+ telegramUrl: string | null;
455
+ gallery: AppPageGallery;
456
+ chapters: AppPageChapters;
457
+ links: AppPageLinks;
458
+ studio: PublicAppPageStudio;
459
+ platforms: AppPagePlatforms;
460
+ gameType: AppPageGameType;
461
+ ageRating: AppPageAgeRating;
462
+ languages: AppPageLanguages;
463
+ releaseStatus: AppPageReleaseStatus;
464
+ publishedAt: string;
465
+ updatedAt: string;
466
+ };
467
+ type BipUpdateListResponse = {
468
+ updates: Array<BipUpdate>;
469
+ total: number;
470
+ hasMore: boolean;
471
+ pinned: BipUpdate | null;
472
+ };
473
+ type BipUpdate = {
474
+ id: string;
475
+ appId: string;
476
+ body: BipUpdateBody;
477
+ attachments: BipUpdateAttachments;
478
+ reactions: BipUpdateReactionCounts;
479
+ commentCount: number;
480
+ createdAt: string;
481
+ updatedAt: string;
482
+ pinnedAt: string | null;
483
+ };
484
+ type BipUpdateBody = string;
485
+ type BipUpdateAttachments = Array<BipUpdateAttachment>;
486
+ type BipUpdateAttachment = {
487
+ url: string;
488
+ kind: "image" | "video";
489
+ order: number;
490
+ };
491
+ type BipUpdateReactionCounts = {
492
+ up: number;
493
+ down: number;
494
+ };
495
+ type BipUpdateCommentListResponse = {
496
+ comments: Array<BipUpdateComment>;
497
+ total: number;
498
+ hasMore: boolean;
499
+ };
500
+ type BipUpdateComment = {
501
+ id: string;
502
+ body: BipUpdateCommentBody;
503
+ author: ReviewAuthor;
504
+ createdAt: string;
505
+ };
506
+ type BipUpdateCommentBody = string;
507
+ type ReviewAuthor = {
508
+ userId: string;
509
+ handle: string | null;
510
+ name: string | null;
511
+ avatarUrl: string | null;
512
+ };
513
+ type BipInterestCountResponse = {
514
+ interestCount: number;
515
+ };
516
+ type BipEngagementResponse = {
517
+ interested: boolean;
518
+ subscribed: boolean;
519
+ interestCount: number;
520
+ };
521
+ type MyBipUpdateReactionsResponse = {
522
+ reactions: Array<MyBipUpdateReaction>;
523
+ };
524
+ type MyBipUpdateReaction = {
525
+ updateId: string;
526
+ vote: "up" | "down";
527
+ };
528
+ type SetBipUpdateReactionResponse = {
529
+ reactions: BipUpdateReactionCounts;
530
+ vote: BipUpdateVote;
531
+ };
532
+ type BipUpdateVote = "up" | "down" | null;
533
+ type SetBipUpdateReactionRequest = {
534
+ vote: BipUpdateVote;
535
+ };
536
+ type CreateBipUpdateCommentResponse = {
537
+ comment: BipUpdateComment;
538
+ commentCount: number;
539
+ };
540
+ type DeleteBipUpdateCommentResponse = {
541
+ commentCount: number;
542
+ };
543
+ type CreateBipUpdateRequest = {
544
+ body: BipUpdateBody;
545
+ attachments?: BipUpdateAttachments;
546
+ };
547
+ type UpdateBipUpdateRequest = {
548
+ body?: BipUpdateBody;
549
+ attachments?: BipUpdateAttachments;
550
+ };
551
+ type DeleteBipUpdateResponse = {
552
+ deleted: true;
553
+ };
554
+ type BipUpdateMediaUploadResponse = {
555
+ url: string;
556
+ kind: "image" | "video";
557
+ };
427
558
  type ReviewListResponse = {
428
559
  aggregate: ReviewAggregate;
429
560
  reviews: Array<Review>;
@@ -457,12 +588,6 @@ type ReviewReactionCounts = {
457
588
  unhelpful: number;
458
589
  funny: number;
459
590
  };
460
- type ReviewAuthor = {
461
- userId: string;
462
- handle: string | null;
463
- name: string | null;
464
- avatarUrl: string | null;
465
- };
466
591
  type ReviewerStats = {
467
592
  playtimeSecondsThisGame: number;
468
593
  gamesPlayed: number;
@@ -653,7 +778,11 @@ type ActivityRow = ({
653
778
  kind: "referral_earning";
654
779
  } & ActivityRowReferralEarning) | ({
655
780
  kind: "nft_charge";
656
- } & ActivityRowNftCharge);
781
+ } & ActivityRowNftCharge) | ({
782
+ kind: "solana_stake";
783
+ } & ActivityRowSolanaStake) | ({
784
+ kind: "solana_pot_leg";
785
+ } & ActivityRowSolanaPotLeg);
657
786
  type ActivityRowPayment = {
658
787
  kind: "payment";
659
788
  groupId: string | null;
@@ -981,6 +1110,56 @@ type ActivityRowNftCharge = {
981
1110
  counterpartyHandle: string | null;
982
1111
  counterpartyDisplayName: string | null;
983
1112
  };
1113
+ type ActivityRowSolanaStake = {
1114
+ kind: "solana_stake";
1115
+ groupId: string | null;
1116
+ id: string;
1117
+ chain: string;
1118
+ occurredAt: string;
1119
+ role: "outgoing" | "incoming";
1120
+ amount: string;
1121
+ token: string;
1122
+ potId: string | null;
1123
+ usdCents: number;
1124
+ status: "completed";
1125
+ txHash: string | null;
1126
+ app: {
1127
+ id: string;
1128
+ name: string;
1129
+ logoUrl: string | null;
1130
+ slug: string | null;
1131
+ bannerUrl: string | null;
1132
+ } | null;
1133
+ stakerUserId?: string | null;
1134
+ stakerHandle?: string | null;
1135
+ stakerDisplayName?: string | null;
1136
+ metadata?: PaymentMetadata | null;
1137
+ };
1138
+ type ActivityRowSolanaPotLeg = {
1139
+ kind: "solana_pot_leg";
1140
+ groupId: string | null;
1141
+ id: string;
1142
+ chain: string;
1143
+ occurredAt: string;
1144
+ role: "outgoing" | "incoming";
1145
+ beneficiary: string;
1146
+ potId: string | null;
1147
+ amount: string;
1148
+ token: string;
1149
+ usdCents: number | null;
1150
+ status: "settled";
1151
+ app: {
1152
+ id: string;
1153
+ name: string;
1154
+ logoUrl: string | null;
1155
+ slug: string | null;
1156
+ bannerUrl: string | null;
1157
+ } | null;
1158
+ txHash: string | null;
1159
+ recipientUserId?: string | null;
1160
+ recipientHandle?: string | null;
1161
+ recipientDisplayName?: string | null;
1162
+ };
984
1163
  type OutstandingResponse = {
985
1164
  rows: Array<OutstandingByToken>;
986
1165
  };
@@ -1216,12 +1395,15 @@ type WalletListResponse = {
1216
1395
  wallets: Array<WalletItem>;
1217
1396
  };
1218
1397
  type WalletChainList = Array<{
1219
- id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia";
1398
+ id: "ethereum-mainnet" | "base-mainnet" | "ethereum-sepolia" | "base-sepolia" | "solana-mainnet" | "solana-devnet";
1220
1399
  displayName: string;
1221
- chainId: number;
1400
+ family: "evm" | "solana";
1401
+ nativeSymbol: string;
1402
+ chainId?: number;
1222
1403
  }>;
1223
1404
  type WalletItem = {
1224
- address: string;
1405
+ address: string | string;
1406
+ family: "evm" | "solana";
1225
1407
  label: WalletLabel;
1226
1408
  kind: "personal" | "app";
1227
1409
  app: WalletAppLink;
@@ -1238,6 +1420,9 @@ type WalletBalances = {
1238
1420
  "ethereum-mainnet"?: WalletChainBalance;
1239
1421
  "base-mainnet"?: WalletChainBalance;
1240
1422
  "ethereum-sepolia"?: WalletChainBalance;
1423
+ "base-sepolia"?: WalletChainBalance;
1424
+ "solana-mainnet"?: WalletChainBalance;
1425
+ "solana-devnet"?: WalletChainBalance;
1241
1426
  };
1242
1427
  type WalletChainBalance = {
1243
1428
  native: string;
@@ -1247,12 +1432,14 @@ type WalletDelegationStatus = {
1247
1432
  mode: WalletDelegationMode;
1248
1433
  caps: WalletDelegationCaps;
1249
1434
  policyId: string | null;
1435
+ slippageBps: DelegationSlippageBps;
1250
1436
  };
1251
1437
  type WalletDelegationMode = "infinite" | "custom" | "scoped" | null;
1252
1438
  type WalletDelegationCaps = {
1253
1439
  native: string;
1254
1440
  usdc: string;
1255
1441
  } | null;
1442
+ type DelegationSlippageBps = number | null;
1256
1443
  type WalletLabelUpdateResponse = {
1257
1444
  address: string;
1258
1445
  label: WalletLabel;
@@ -1912,6 +2099,18 @@ type NotificationItem = {
1912
2099
  payload: AppPageRejectedNotificationPayload;
1913
2100
  read: boolean;
1914
2101
  createdAt: string;
2102
+ } | {
2103
+ id: string;
2104
+ kind: "bip_update_published";
2105
+ payload: BipUpdatePublishedNotificationPayload;
2106
+ read: boolean;
2107
+ createdAt: string;
2108
+ } | {
2109
+ id: string;
2110
+ kind: "bip_now_playable";
2111
+ payload: BipNowPlayableNotificationPayload;
2112
+ read: boolean;
2113
+ createdAt: string;
1915
2114
  } | {
1916
2115
  id: string;
1917
2116
  kind: "app_participant_invite";
@@ -1942,14 +2141,25 @@ type FriendAcceptedNotificationPayload = {
1942
2141
  type AppPageApprovedNotificationPayload = {
1943
2142
  appId: string;
1944
2143
  appName: string;
1945
- scope: "publish" | "changes";
2144
+ scope: "publish" | "changes" | "bip_publish";
1946
2145
  };
1947
2146
  type AppPageRejectedNotificationPayload = {
1948
2147
  appId: string;
1949
2148
  appName: string;
1950
- scope: "publish" | "changes";
2149
+ scope: "publish" | "changes" | "bip_publish";
1951
2150
  notes: string;
1952
2151
  };
2152
+ type BipUpdatePublishedNotificationPayload = {
2153
+ appId: string;
2154
+ appName: string;
2155
+ appSlug: string | null;
2156
+ updateId: string;
2157
+ };
2158
+ type BipNowPlayableNotificationPayload = {
2159
+ appId: string;
2160
+ appName: string;
2161
+ appSlug: string | null;
2162
+ };
1953
2163
  type AppParticipantInviteNotificationPayload = {
1954
2164
  appId: string;
1955
2165
  appName: string;
@@ -2117,12 +2327,14 @@ type UpdateDeveloperApp = {
2117
2327
  redirectUris?: Array<string>;
2118
2328
  embedOrigins?: Array<EmbedOrigin>;
2119
2329
  acceptedCurrencies?: AcceptedCurrencies;
2330
+ acceptedNetworks?: AcceptedNetworks;
2120
2331
  paymentStatusWebhookUrl?: string | null;
2121
2332
  paymentStatusWebhookUrlTest?: string | null;
2122
2333
  };
2123
2334
  type EmbedOrigin = string;
2124
2335
  type AcceptedCurrencies = Array<PlatformCurrency>;
2125
2336
  type PlatformCurrency = "eth" | "tron";
2337
+ type AcceptedNetworks = Array<PaymentNetwork> | null;
2126
2338
  type DeveloperLogoUploadResponse = {
2127
2339
  logoUrl: string | null;
2128
2340
  };
@@ -2185,7 +2397,7 @@ type DeveloperAppWalletsResponse = {
2185
2397
  };
2186
2398
  type DeveloperAppWalletItem = {
2187
2399
  chain: string;
2188
- address: string;
2400
+ address: string | string;
2189
2401
  custody: "server" | null;
2190
2402
  walletId: string | null;
2191
2403
  autoSweepEnabled: boolean;
@@ -2206,7 +2418,7 @@ type DeveloperAppProvisionWalletResponse = {
2206
2418
  chain: string;
2207
2419
  custody: "server";
2208
2420
  walletId: string;
2209
- address: string;
2421
+ address: string | string;
2210
2422
  };
2211
2423
  type DeveloperAppWithdrawResponse = {
2212
2424
  appId: string;
@@ -2369,6 +2581,7 @@ type DeveloperAppItem = {
2369
2581
  redirectUris: Array<string>;
2370
2582
  embedOrigins: Array<EmbedOrigin>;
2371
2583
  acceptedCurrencies: AcceptedCurrencies;
2584
+ acceptedNetworks: AcceptedNetworks;
2372
2585
  payoutAddresses: Array<DeveloperAppPayoutAddressItem>;
2373
2586
  keys: Array<DeveloperAppKeyItem>;
2374
2587
  pendingProductionRequestId: string | null;
@@ -2423,6 +2636,16 @@ type AppPageDraft = {
2423
2636
  hiddenAt: string | null;
2424
2637
  hiddenReasonPublic: string | null;
2425
2638
  pendingReview: boolean;
2639
+ bip: AppPageBipState;
2640
+ };
2641
+ type AppPageBipState = {
2642
+ enabled: boolean;
2643
+ status: "draft" | "pending_review" | "published" | "hidden";
2644
+ firstPublishedAt: string | null;
2645
+ reviewedAt: string | null;
2646
+ reviewNotes: string | null;
2647
+ hiddenAt: string | null;
2648
+ hiddenReasonPublic: string | null;
2426
2649
  };
2427
2650
  type UpdateAppPage = {
2428
2651
  categories?: AppPageCategories;
@@ -2447,6 +2670,9 @@ type UpdateAppPage = {
2447
2670
  type AppPageGalleryUploadResponse = {
2448
2671
  url: string;
2449
2672
  };
2673
+ type AppPageBipToggle = {
2674
+ enabled: boolean;
2675
+ };
2450
2676
  type AdminActivePlayersResponse = {
2451
2677
  players: Array<AdminActivePlayer>;
2452
2678
  total: number;
@@ -2518,6 +2744,7 @@ type AdminAuditListResponse = {
2518
2744
  total: number;
2519
2745
  offset: number;
2520
2746
  limit: number;
2747
+ nextCursor: string | null;
2521
2748
  };
2522
2749
  type AdminAuditListItem = {
2523
2750
  id: string;
@@ -2585,6 +2812,11 @@ type AdminAppPageItem = {
2585
2812
  hiddenAt: string | null;
2586
2813
  hiddenReasonInternal: string | null;
2587
2814
  pendingChangesSubmittedAt: string | null;
2815
+ bipEnabled: boolean;
2816
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2817
+ bipFirstPublishedAt: string | null;
2818
+ bipHiddenAt: string | null;
2819
+ openReportCount: number;
2588
2820
  };
2589
2821
  type AdminAppPageStatusResponse = {
2590
2822
  status: "draft" | "pending_review" | "published" | "hidden";
@@ -2610,6 +2842,25 @@ type AdminAppPageDiffField = {
2610
2842
  from: string;
2611
2843
  to: string;
2612
2844
  };
2845
+ type AdminAppPageBipStatusResponse = {
2846
+ bipStatus: "draft" | "pending_review" | "published" | "hidden";
2847
+ };
2848
+ type AdminAppContentReportListResponse = {
2849
+ reports: Array<AdminAppContentReportItem>;
2850
+ total: number;
2851
+ hasMore: boolean;
2852
+ };
2853
+ type AdminAppContentReportItem = {
2854
+ id: string;
2855
+ category: AppContentReportCategory;
2856
+ details: string | null;
2857
+ status: AppContentReportStatus;
2858
+ acknowledgedAt: string | null;
2859
+ createdAt: string;
2860
+ appId: string;
2861
+ appName: string;
2862
+ appSlug: string | null;
2863
+ };
2613
2864
  type PlatformFeesResponse = {
2614
2865
  purchaseFeeBps: number;
2615
2866
  stakeFeeBps: number;
@@ -2790,6 +3041,13 @@ type AppealResolveRequest = {
2790
3041
  decision: "refund" | "dismiss";
2791
3042
  notes?: string;
2792
3043
  };
3044
+ type PaymentRatesResponse = {
3045
+ asOf: string;
3046
+ ethUsd: number | null;
3047
+ solUsd: number | null;
3048
+ solLamportsPerCent: number | null;
3049
+ tronUsdPerToken: number;
3050
+ };
2793
3051
  type AppealFileResponse = {
2794
3052
  appealId: string;
2795
3053
  paymentId: string;
@@ -2838,7 +3096,7 @@ type OauthPaymentPayoutRequest = {
2838
3096
  metadata?: PaymentMetadata;
2839
3097
  };
2840
3098
  type OauthPaymentDistributeResponse = {
2841
- distributionId: string;
3099
+ distributionId?: string;
2842
3100
  txHash: string;
2843
3101
  blockNumber: string;
2844
3102
  potId: string;
@@ -2961,7 +3219,7 @@ declare function listActivePlayers(context: TransportContext, input: {
2961
3219
  //#region src/admin/app-pages.d.ts
2962
3220
  declare function listAppPages(context: TransportContext, input: {
2963
3221
  readonly bearer: string;
2964
- readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes";
3222
+ readonly status?: "draft" | "pending_review" | "published" | "hidden" | "all" | "pending_changes" | "bip_pending_review";
2965
3223
  }): Promise<AdminAppPageListResponse>;
2966
3224
  declare function getAppPageChanges(context: TransportContext, input: {
2967
3225
  readonly bearer: string;
@@ -2986,6 +3244,20 @@ declare function reviewAppPage(context: TransportContext, input: {
2986
3244
  readonly appId: string;
2987
3245
  readonly body: ReviewAppPage;
2988
3246
  }): Promise<AdminAppPageStatusResponse>;
3247
+ declare function reviewAppPageBip(context: TransportContext, input: {
3248
+ readonly bearer: string;
3249
+ readonly appId: string;
3250
+ readonly body: ReviewAppPage;
3251
+ }): Promise<AdminAppPageBipStatusResponse>;
3252
+ declare function hideAppPageBip(context: TransportContext, input: {
3253
+ readonly bearer: string;
3254
+ readonly appId: string;
3255
+ readonly body: HideAppPage;
3256
+ }): Promise<AdminAppPageBipStatusResponse>;
3257
+ declare function unhideAppPageBip(context: TransportContext, input: {
3258
+ readonly bearer: string;
3259
+ readonly appId: string;
3260
+ }): Promise<AdminAppPageBipStatusResponse>;
2989
3261
  //#endregion
2990
3262
  //#region src/admin/appeals.d.ts
2991
3263
  declare function listAppealQueue(context: TransportContext, input: {
@@ -3017,6 +3289,19 @@ declare function resolveAppeal(context: TransportContext, input: {
3017
3289
  readonly body: AppealResolveRequest;
3018
3290
  }): Promise<AppealResolveSignedResponse>;
3019
3291
  //#endregion
3292
+ //#region src/admin/content-reports.d.ts
3293
+ declare function listAdminContentReports(context: TransportContext, input: {
3294
+ readonly bearer: string;
3295
+ readonly status?: "open" | "acknowledged" | "dismissed" | "all";
3296
+ readonly limit?: number;
3297
+ readonly offset?: number;
3298
+ }): Promise<AdminAppContentReportListResponse>;
3299
+ declare function triageAdminContentReport(context: TransportContext, input: {
3300
+ readonly bearer: string;
3301
+ readonly reportId: string;
3302
+ readonly status: "acknowledged" | "dismissed";
3303
+ }): Promise<AppContentReport>;
3304
+ //#endregion
3020
3305
  //#region src/admin/developers.d.ts
3021
3306
  declare function listDeveloperRequests(context: TransportContext, input: {
3022
3307
  readonly bearer: string;
@@ -3146,6 +3431,7 @@ declare function listAudit(context: TransportContext, input: {
3146
3431
  readonly actorId?: string;
3147
3432
  readonly targetType?: string;
3148
3433
  readonly targetId?: string;
3434
+ readonly cursor?: string;
3149
3435
  readonly offset?: number;
3150
3436
  readonly limit?: number;
3151
3437
  }): Promise<AdminAuditListResponse>;
@@ -3156,6 +3442,113 @@ declare function getAppPage(context: TransportContext, input: {
3156
3442
  readonly slug: string;
3157
3443
  }): Promise<PublicAppPage>;
3158
3444
  //#endregion
3445
+ //#region src/catalog/bip-updates.d.ts
3446
+ declare function listBipUpdates(context: TransportContext, input: {
3447
+ readonly bearer?: string;
3448
+ readonly slug: string;
3449
+ readonly limit?: number;
3450
+ readonly offset?: number;
3451
+ }): Promise<BipUpdateListResponse>;
3452
+ declare function listBipUpdateComments(context: TransportContext, input: {
3453
+ readonly bearer?: string;
3454
+ readonly slug: string;
3455
+ readonly updateId: string;
3456
+ readonly limit?: number;
3457
+ readonly offset?: number;
3458
+ }): Promise<BipUpdateCommentListResponse>;
3459
+ declare function getMyBipUpdateReactions(context: TransportContext, input: {
3460
+ readonly bearer: string;
3461
+ readonly slug: string;
3462
+ }): Promise<MyBipUpdateReactionsResponse>;
3463
+ declare function setBipUpdateReaction(context: TransportContext, input: {
3464
+ readonly bearer: string;
3465
+ readonly slug: string;
3466
+ readonly updateId: string;
3467
+ readonly body: SetBipUpdateReactionRequest;
3468
+ }): Promise<SetBipUpdateReactionResponse>;
3469
+ declare function commentOnBipUpdate(context: TransportContext, input: {
3470
+ readonly bearer: string;
3471
+ readonly slug: string;
3472
+ readonly updateId: string;
3473
+ readonly body: string;
3474
+ }): Promise<CreateBipUpdateCommentResponse>;
3475
+ declare function deleteBipUpdateComment(context: TransportContext, input: {
3476
+ readonly bearer: string;
3477
+ readonly slug: string;
3478
+ readonly commentId: string;
3479
+ }): Promise<DeleteBipUpdateCommentResponse>;
3480
+ declare function listDeveloperBipUpdates(context: TransportContext, input: {
3481
+ readonly bearer: string;
3482
+ readonly appId: string;
3483
+ readonly limit?: number;
3484
+ readonly offset?: number;
3485
+ }): Promise<BipUpdateListResponse>;
3486
+ declare function createBipUpdate(context: TransportContext, input: {
3487
+ readonly bearer: string;
3488
+ readonly appId: string;
3489
+ readonly body: CreateBipUpdateRequest;
3490
+ }): Promise<BipUpdate>;
3491
+ declare function updateBipUpdate(context: TransportContext, input: {
3492
+ readonly bearer: string;
3493
+ readonly appId: string;
3494
+ readonly updateId: string;
3495
+ readonly body: UpdateBipUpdateRequest;
3496
+ }): Promise<BipUpdate>;
3497
+ declare function deleteBipUpdate(context: TransportContext, input: {
3498
+ readonly bearer: string;
3499
+ readonly appId: string;
3500
+ readonly updateId: string;
3501
+ }): Promise<DeleteBipUpdateResponse>;
3502
+ declare function pinBipUpdate(context: TransportContext, input: {
3503
+ readonly bearer: string;
3504
+ readonly appId: string;
3505
+ readonly updateId: string;
3506
+ }): Promise<BipUpdate>;
3507
+ declare function unpinBipUpdate(context: TransportContext, input: {
3508
+ readonly bearer: string;
3509
+ readonly appId: string;
3510
+ readonly updateId: string;
3511
+ }): Promise<BipUpdate>;
3512
+ declare function uploadBipUpdateMedia(context: TransportContext, input: {
3513
+ readonly bearer: string;
3514
+ readonly appId: string;
3515
+ readonly file: Blob;
3516
+ readonly filename: string;
3517
+ readonly contentType: string;
3518
+ }): Promise<BipUpdateMediaUploadResponse>;
3519
+ declare function getBipInterestCount(context: TransportContext, input: {
3520
+ readonly bearer?: string;
3521
+ readonly slug: string;
3522
+ }): Promise<BipInterestCountResponse>;
3523
+ declare function getMyBipEngagement(context: TransportContext, input: {
3524
+ readonly bearer: string;
3525
+ readonly slug: string;
3526
+ }): Promise<BipEngagementResponse>;
3527
+ declare function registerBipInterest(context: TransportContext, input: {
3528
+ readonly bearer: string;
3529
+ readonly slug: string;
3530
+ readonly interested: boolean;
3531
+ }): Promise<BipEngagementResponse>;
3532
+ declare function subscribeBipUpdates(context: TransportContext, input: {
3533
+ readonly bearer: string;
3534
+ readonly slug: string;
3535
+ readonly subscribed: boolean;
3536
+ }): Promise<BipEngagementResponse>;
3537
+ //#endregion
3538
+ //#region src/catalog/build-in-public.d.ts
3539
+ declare function getBipDirectory(context: TransportContext, input: {
3540
+ readonly bearer?: string;
3541
+ readonly genre?: string;
3542
+ readonly q?: string;
3543
+ readonly sort?: "newest" | "top";
3544
+ readonly before?: string;
3545
+ readonly limit?: number;
3546
+ }): Promise<LibraryListResponse>;
3547
+ declare function getBipPage(context: TransportContext, input: {
3548
+ readonly bearer?: string;
3549
+ readonly slug: string;
3550
+ }): Promise<PublicBipPage>;
3551
+ //#endregion
3159
3552
  //#region src/catalog/content-reports.d.ts
3160
3553
  declare function submitAppContentReport(context: TransportContext, input: {
3161
3554
  readonly appId: string;
@@ -3168,6 +3561,7 @@ declare function getLibrary(context: TransportContext, input: {
3168
3561
  readonly bearer?: string;
3169
3562
  readonly genre?: string;
3170
3563
  readonly q?: string;
3564
+ readonly sort?: "newest" | "top";
3171
3565
  readonly before?: string;
3172
3566
  readonly limit?: number;
3173
3567
  }): Promise<LibraryListResponse>;
@@ -3326,6 +3720,9 @@ declare function getPaymentHistory(context: TransportContext, input: {
3326
3720
  readonly before?: string;
3327
3721
  }): Promise<PaymentHistoryResponse>;
3328
3722
  //#endregion
3723
+ //#region src/dashboard/rates.d.ts
3724
+ declare function getPaymentRates(context: TransportContext): Promise<PaymentRatesResponse>;
3725
+ //#endregion
3329
3726
  //#region src/developer/api-keys.d.ts
3330
3727
  declare function createDeveloperApiKey(context: TransportContext, input: {
3331
3728
  readonly bearer: string;
@@ -3568,6 +3965,19 @@ declare function unpublishAppPage(context: TransportContext, input: {
3568
3965
  readonly bearer: string;
3569
3966
  readonly appId: string;
3570
3967
  }): Promise<AppPageDraft>;
3968
+ declare function setAppPageBip(context: TransportContext, input: {
3969
+ readonly bearer: string;
3970
+ readonly appId: string;
3971
+ readonly body: AppPageBipToggle;
3972
+ }): Promise<AppPageDraft>;
3973
+ declare function submitAppPageBipForReview(context: TransportContext, input: {
3974
+ readonly bearer: string;
3975
+ readonly appId: string;
3976
+ }): Promise<AppPageDraft>;
3977
+ declare function unpublishAppPageBip(context: TransportContext, input: {
3978
+ readonly bearer: string;
3979
+ readonly appId: string;
3980
+ }): Promise<AppPageDraft>;
3571
3981
  //#endregion
3572
3982
  //#region src/developer/participants.d.ts
3573
3983
  declare function listDeveloperAppParticipants(context: TransportContext, input: {
@@ -4100,6 +4510,15 @@ declare function denyPaymentIntent(context: TransportContext, input: {
4100
4510
  readonly bearer: string;
4101
4511
  readonly intentId: string;
4102
4512
  }): Promise<OauthPaymentIntentResolveResponse>;
4513
+ declare function preparePaymentIntentSolana(context: TransportContext, input: {
4514
+ readonly bearer: string;
4515
+ readonly intentId: string;
4516
+ }): Promise<OauthPaymentIntentSolanaPrepareResponse>;
4517
+ declare function completePaymentIntentSolana(context: TransportContext, input: {
4518
+ readonly bearer: string;
4519
+ readonly intentId: string;
4520
+ readonly body: OauthPaymentIntentSolanaCompleteRequest;
4521
+ }): Promise<OauthPaymentIntentResolveResponse>;
4103
4522
  //#endregion
4104
4523
  //#region src/payments/limits.d.ts
4105
4524
  declare function getPaymentLimits(context: TransportContext, input: {
@@ -4610,4 +5029,4 @@ declare class TronNodeClient {
4610
5029
  };
4611
5030
  }
4612
5031
  //#endregion
4613
- export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, 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, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnGameReview, completePaymentIntent, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createConsoleLogger, 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, distributePot, distributeTronPot, editMessage, endPlaySession, 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, getIntentStatus, getLibrary, getMoonpayAvailability, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideThread, inventoryUpdateEventSchema, 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, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, 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 };
5032
+ export { AppTokenCache, AuthorizeUrl, type BrowserClientConfig, BuildAuthorizeUrlInput, ChargeResult, type FetchLike, GameHalfCredentials, HttpsGuardOptions, InflightDedup, InventoryUpdateEvent, type Logger, MountPresenceWidgetOptions, NOOP_RATE_LIMITER, type NodeClientConfig, OauthErrorCode, OauthInventoryEventsSubscriber, OauthInventoryEventsSubscriberLifecycle, OauthInventoryEventsSubscriberOptions, OauthPaymentEventsSubscriber, OauthPaymentEventsSubscriberLifecycle, OauthPaymentEventsSubscriberOptions, OauthPaymentWebhookBody, type OauthScope, PkcePair, PlaySessionGameStatus, PresenceStatus, PresenceWidgetHandle, RateLimitOptions, RateLimiter, RequestOptions, 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, TransportContext, TronError, TronNodeClient, TronOauthError, TronWsCloseCode, TronWsCloseError, VerifyWebhookFailure, VerifyWebhookInput, VerifyWebhookResult, VerifyWebhookSuccess, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, acceptDeveloperInvite, addAdmin, addAppealBlacklist, addReaction, approveTronCashout, assertSecureIssuer, batchThreadDmKeys, bindReferral, buildAuthorizeUrl, cancelFriendRequest, cancelPot, charge, chargeTronDirect, chargeTronPot, commentOnBipUpdate, commentOnGameReview, completePaymentIntent, completePaymentIntentSolana, confirmPlaySession, consolidateDeveloperAppWallet, createAppTokenCache, createBipUpdate, createConsoleLogger, 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, distributePot, distributeTronPot, editMessage, endPlaySession, 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, getIntentStatus, getLibrary, getMoonpayAvailability, getMyBipEngagement, getMyBipUpdateReactions, getMyDmKey, getMyGameReview, getMyGameReviewReactions, getOutstanding, getPaymentChains, getPaymentHistory, getPaymentIntent, getPaymentLimits, getPaymentPrice, getPaymentRates, getPlatformFees, getPlaytime, getPlaytimeTimeseries, getPublicProfile, getReferral, getThreadDmKey, getTronBalance, getTronGameBalance, getTronSecurity, heartbeatPlaySession, hideAppPage, hideAppPageBip, hideThread, inventoryUpdateEventSchema, 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, mintClientCredentialsToken, mintMoonpayBuyUrl, mintMoonpaySellUrl, mountPresenceWidget, oauthPaymentWebhookBodySchema, parseJson, pinBipUpdate, pinThread, postAdminAppealRoomMessage, postAppealRoomMessage, preparePaymentIntentSolana, previewReferral, provisionDeveloperAppWallet, publishDmKey, quoteDeveloperAppInventoryRegistration, quoteNftTransfer, quoteRelayedVaultPermit, redeemInventoryMintPermit, refreshAccessToken, registerBipInterest, registerDeveloperAppInventoryItem, registerOauthClient, rejectTronCashout, removeAdmin, removeAppealBlacklist, removeFriend, removeParticipant, removeReaction, replyToGameReview, requestDeveloperAppProduction, requestMint, requestPayout, resolveAppeal, reviewAppPage, reviewAppPageBip, reviewAppPageChanges, reviewDeveloperRequest, revokeDeveloperApiKey, revokeDeveloperAppParticipant, revokePaymentAuthorization, revokeToken, rotateDeveloperAppKey, rotateDeveloperAppPaymentWebhookSecret, rotateProcessorTreasury, searchGiphy, searchUsers, send, sendFriendRequest, sendJson, sendMessage, sendPresenceHeartbeat, setAppPageBip, setBipUpdateReaction, setMyGameReviewReaction, setProcessorWhitelist, setTronSecurity, setVaultOperator, setVaultPause, setVaultWithdrawLockDefault, setVaultWithdrawLockOverride, setupDmKeyBackup, sha256Base64Url, signInventoryVaultPermit, signPaymentIntent, startOauthInventoryEventsSubscriber, startOauthPaymentEventsSubscriber, submitAppContentReport, submitAppPageBipForReview, submitAppPageForReview, submitDeveloperRequest, submitRelayedVaultPermit, subscribeBipUpdates, tipGameReview, toTokenSet, triageAdminContentReport, unfollowUser, unhideAppPage, unhideAppPageBip, unlockDmKeyBackup, unpinBipUpdate, 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 };