scrapebadger 0.10.0 → 0.12.0

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.
package/dist/index.d.cts CHANGED
@@ -406,7 +406,7 @@ interface VintedPagination {
406
406
  /**
407
407
  * Response from the search endpoint.
408
408
  */
409
- interface SearchResponse {
409
+ interface SearchResponse$1 {
410
410
  /** List of matching items */
411
411
  items: VintedItemSummary[];
412
412
  /** Pagination metadata */
@@ -469,7 +469,7 @@ interface StatusesResponse {
469
469
  /**
470
470
  * Response from the markets endpoint.
471
471
  */
472
- interface MarketsResponse {
472
+ interface MarketsResponse$1 {
473
473
  /** List of available markets */
474
474
  markets: VintedMarket[];
475
475
  }
@@ -528,7 +528,7 @@ interface VintedSearchParams {
528
528
  * });
529
529
  * ```
530
530
  */
531
- declare class SearchClient$2 {
531
+ declare class SearchClient$3 {
532
532
  private readonly client;
533
533
  constructor(client: BaseClient);
534
534
  /**
@@ -551,7 +551,7 @@ declare class SearchClient$2 {
551
551
  * console.log(`Found ${results.pagination.total_entries} items`);
552
552
  * ```
553
553
  */
554
- search(params: VintedSearchParams): Promise<SearchResponse>;
554
+ search(params: VintedSearchParams): Promise<SearchResponse$1>;
555
555
  }
556
556
 
557
557
  /**
@@ -706,7 +706,7 @@ declare class UsersClient$1 {
706
706
  * }
707
707
  * ```
708
708
  */
709
- declare class ReferenceClient {
709
+ declare class ReferenceClient$1 {
710
710
  private readonly client;
711
711
  constructor(client: BaseClient);
712
712
  /**
@@ -784,7 +784,7 @@ declare class ReferenceClient {
784
784
  * }
785
785
  * ```
786
786
  */
787
- markets(): Promise<MarketsResponse>;
787
+ markets(): Promise<MarketsResponse$1>;
788
788
  }
789
789
 
790
790
  /**
@@ -821,13 +821,13 @@ declare class ReferenceClient {
821
821
  */
822
822
  declare class VintedClient {
823
823
  /** Client for item search operations */
824
- readonly search: SearchClient$2;
824
+ readonly search: SearchClient$3;
825
825
  /** Client for individual item operations */
826
826
  readonly items: ItemsClient;
827
827
  /** Client for user operations */
828
828
  readonly users: UsersClient$1;
829
829
  /** Client for reference data (brands, colors, statuses, markets) */
830
- readonly reference: ReferenceClient;
830
+ readonly reference: ReferenceClient$1;
831
831
  /**
832
832
  * Create a new Vinted client.
833
833
  *
@@ -1232,6 +1232,65 @@ interface AiModeSearchParams {
1232
1232
  q: string;
1233
1233
  gl?: string;
1234
1234
  hl?: string;
1235
+ /**
1236
+ * Include the raw `answer_html` body in the response (can be 100s of
1237
+ * KB). Defaults to true; set false when you only need `text_blocks` /
1238
+ * `markdown`.
1239
+ */
1240
+ include_html?: boolean;
1241
+ }
1242
+ /** A source cited by an AI Mode / AI Overview answer. */
1243
+ interface AiReference {
1244
+ title?: string | null;
1245
+ link?: string | null;
1246
+ snippet?: string | null;
1247
+ source?: string | null;
1248
+ favicon?: string | null;
1249
+ thumbnail?: string | null;
1250
+ index?: number | null;
1251
+ }
1252
+ /** One item inside a `list` text block. */
1253
+ interface AiListItem {
1254
+ type?: string;
1255
+ snippet?: string | null;
1256
+ links?: Array<Record<string, unknown>>;
1257
+ }
1258
+ /** One row of a `table` text block (ordered cell values). */
1259
+ interface AiTableRow {
1260
+ cells: string[];
1261
+ }
1262
+ /**
1263
+ * A single block of the AI-generated answer. `type` is one of
1264
+ * `paragraph` | `heading` | `list` | `table`. A `table` block carries
1265
+ * `header` + `rows`; a `list` block carries `items`.
1266
+ */
1267
+ interface AiTextBlock {
1268
+ type?: string | null;
1269
+ snippet?: string | null;
1270
+ text?: string | null;
1271
+ level?: number | null;
1272
+ items?: AiListItem[];
1273
+ citation_links?: AiReference[];
1274
+ links?: Array<Record<string, unknown>>;
1275
+ header?: string[];
1276
+ rows?: AiTableRow[];
1277
+ }
1278
+ /**
1279
+ * Response for `/v1/google/ai-mode/search`. `markdown` is a compact
1280
+ * rendering of the whole answer; `answer_html` is the raw answer body
1281
+ * (present unless `include_html: false`).
1282
+ */
1283
+ interface AiModeResponse {
1284
+ text_blocks: AiTextBlock[];
1285
+ references: AiReference[];
1286
+ shopping_results?: Array<Record<string, unknown>>;
1287
+ inline_images?: Array<Record<string, unknown>>;
1288
+ local_results?: Array<Record<string, unknown>>;
1289
+ markdown?: string | null;
1290
+ answer_html?: string | null;
1291
+ query: string;
1292
+ language: string;
1293
+ country: string;
1235
1294
  }
1236
1295
  /**
1237
1296
  * Params for `/v1/google/lens/search`. Response carries `lens_results`
@@ -1344,7 +1403,15 @@ interface FlightsSearchParams {
1344
1403
  declare class AiModeClient {
1345
1404
  private readonly client;
1346
1405
  constructor(client: BaseClient);
1347
- search(params: AiModeSearchParams): Promise<GoogleResponse>;
1406
+ /**
1407
+ * Get an AI-generated answer from Google's AI Mode (udm=50).
1408
+ *
1409
+ * The response carries structured `text_blocks` (prose, headings,
1410
+ * comparison `table` blocks and lists), a flat `references` list, a
1411
+ * compact `markdown` rendering and — unless `include_html: false` —
1412
+ * the raw `answer_html` body.
1413
+ */
1414
+ search(params: AiModeSearchParams): Promise<AiModeResponse>;
1348
1415
  }
1349
1416
 
1350
1417
  /**
@@ -1668,7 +1735,7 @@ declare class PatentsClient {
1668
1735
  /**
1669
1736
  * Client for Google's immersive product detail endpoint.
1670
1737
  */
1671
- declare class ProductsClient {
1738
+ declare class ProductsClient$1 {
1672
1739
  private readonly client;
1673
1740
  constructor(client: BaseClient);
1674
1741
  detail(params: ProductsDetailParams): Promise<GoogleResponse>;
@@ -1746,7 +1813,7 @@ declare class ScholarClient {
1746
1813
  * }
1747
1814
  * ```
1748
1815
  */
1749
- declare class SearchClient$1 {
1816
+ declare class SearchClient$2 {
1750
1817
  private readonly client;
1751
1818
  constructor(client: BaseClient);
1752
1819
  /**
@@ -1942,7 +2009,7 @@ declare class VideosClient {
1942
2009
  */
1943
2010
  declare class GoogleClient {
1944
2011
  /** Google Web Search (SERP) — with optional deferred AI Overview follow-up. */
1945
- readonly search: SearchClient$1;
2012
+ readonly search: SearchClient$2;
1946
2013
  /** Google Maps — places, reviews, photos, posts. */
1947
2014
  readonly maps: MapsClient;
1948
2015
  /** Google News — articles, topics, trending. */
@@ -1976,7 +2043,7 @@ declare class GoogleClient {
1976
2043
  /** Google Flights — one-way, round-trip, and multi-city itineraries. */
1977
2044
  readonly flights: FlightsClient;
1978
2045
  /** Google Products — immersive product detail. */
1979
- readonly products: ProductsClient;
2046
+ readonly products: ProductsClient$1;
1980
2047
  constructor(client: BaseClient);
1981
2048
  }
1982
2049
 
@@ -2773,7 +2840,7 @@ interface DomainPostsResponse {
2773
2840
  * const domainPosts = await client.reddit.search.domainPosts({ domain: "github.com" });
2774
2841
  * ```
2775
2842
  */
2776
- declare class SearchClient {
2843
+ declare class SearchClient$1 {
2777
2844
  private readonly client;
2778
2845
  constructor(client: BaseClient);
2779
2846
  /**
@@ -3382,7 +3449,7 @@ declare class UsersClient {
3382
3449
  */
3383
3450
  declare class RedditClient {
3384
3451
  /** Client for search operations (posts, subreddits, users, domain posts) */
3385
- readonly search: SearchClient;
3452
+ readonly search: SearchClient$1;
3386
3453
  /** Client for post operations (trending, details, comments, duplicates) */
3387
3454
  readonly posts: PostsClient;
3388
3455
  /** Client for subreddit operations (details, posts, rules, moderators, wiki) */
@@ -3397,6 +3464,883 @@ declare class RedditClient {
3397
3464
  constructor(client: BaseClient);
3398
3465
  }
3399
3466
 
3467
+ /**
3468
+ * TypeScript types for Amazon API responses.
3469
+ *
3470
+ * These interfaces mirror the backend `amazon_scraper` response schema
3471
+ * field-for-field. Optional / nullable backend fields are typed as
3472
+ * `Type | null`; backend list fields default to `[]` and are typed as arrays.
3473
+ * Every datetime field ships in BOTH `*_utc` (number) and `*_at` (string) form.
3474
+ */
3475
+ /**
3476
+ * A parsed price with both the numeric value and its raw rendering.
3477
+ */
3478
+ interface AmazonPrice {
3479
+ /** Numeric price value */
3480
+ value: number | null;
3481
+ /** ISO currency code (e.g. "USD") */
3482
+ currency: string | null;
3483
+ /** Currency symbol (e.g. "$") */
3484
+ symbol: string | null;
3485
+ /** Raw rendered price string (e.g. "$29.99") */
3486
+ raw: string | null;
3487
+ }
3488
+ /**
3489
+ * Page-number pagination (Amazon listings use 1-based page numbers).
3490
+ */
3491
+ interface Pagination {
3492
+ /** Current page number (1-indexed) */
3493
+ current_page: number;
3494
+ /** Total number of pages, if known */
3495
+ total_pages: number | null;
3496
+ /** Total number of results, if known */
3497
+ total_results: number | null;
3498
+ }
3499
+ /**
3500
+ * A single supported marketplace (for /markets).
3501
+ */
3502
+ interface MarketInfo {
3503
+ /** Market code (e.g. "US", "UK", "DE") */
3504
+ code: string;
3505
+ /** Amazon domain suffix (e.g. "com", "co.uk") */
3506
+ domain: string;
3507
+ /** Country name */
3508
+ country: string;
3509
+ /** Currency code (e.g. "USD") */
3510
+ currency: string;
3511
+ /** Locale (e.g. "en-US") */
3512
+ locale: string;
3513
+ /** Market display name */
3514
+ name: string;
3515
+ }
3516
+ /**
3517
+ * A reference category / department alias (for /categories).
3518
+ */
3519
+ interface CategoryInfo {
3520
+ /** Category display name */
3521
+ name: string;
3522
+ /** Category alias */
3523
+ alias: string;
3524
+ /** Search alias used in /search `category` param */
3525
+ search_alias: string | null;
3526
+ /** Bestsellers browse-node ID */
3527
+ bestseller_node: string | null;
3528
+ }
3529
+ /**
3530
+ * Per-star rating distribution (percentages 0-100).
3531
+ */
3532
+ interface RatingBreakdown {
3533
+ five_star: number | null;
3534
+ four_star: number | null;
3535
+ three_star: number | null;
3536
+ two_star: number | null;
3537
+ one_star: number | null;
3538
+ }
3539
+ /**
3540
+ * A single bestsellers-rank entry for a product.
3541
+ */
3542
+ interface BestsellersRankEntry {
3543
+ rank: number | null;
3544
+ category: string | null;
3545
+ link: string | null;
3546
+ }
3547
+ /**
3548
+ * A buying option / variation of a product.
3549
+ */
3550
+ interface ProductVariant {
3551
+ asin: string;
3552
+ attributes: Record<string, string>;
3553
+ price: AmazonPrice | null;
3554
+ is_current: boolean;
3555
+ }
3556
+ /**
3557
+ * The featured-offer (buybox) winner shown on the product page.
3558
+ */
3559
+ interface Buybox {
3560
+ seller_name: string | null;
3561
+ seller_id: string | null;
3562
+ price: AmazonPrice | null;
3563
+ fulfillment: string | null;
3564
+ }
3565
+ /**
3566
+ * Promotional badges attached to a product.
3567
+ */
3568
+ interface ProductBadges {
3569
+ amazons_choice: boolean;
3570
+ amazons_choice_keyword: string | null;
3571
+ best_seller: boolean;
3572
+ prime: boolean;
3573
+ climate_pledge_friendly: boolean;
3574
+ }
3575
+ /**
3576
+ * A clippable coupon on the product page.
3577
+ */
3578
+ interface Coupon {
3579
+ text: string | null;
3580
+ discount: string | null;
3581
+ }
3582
+ /**
3583
+ * A deal active on the product page.
3584
+ */
3585
+ interface ProductDeal {
3586
+ type: string | null;
3587
+ price: AmazonPrice | null;
3588
+ ends_at: string | null;
3589
+ }
3590
+ /**
3591
+ * Delivery information shown on the product page.
3592
+ */
3593
+ interface Delivery {
3594
+ message: string | null;
3595
+ date: string | null;
3596
+ is_free: boolean | null;
3597
+ }
3598
+ /**
3599
+ * A related product (frequently-bought-together / also-bought).
3600
+ */
3601
+ interface RelatedProduct {
3602
+ asin: string;
3603
+ title: string | null;
3604
+ link: string | null;
3605
+ image: string | null;
3606
+ price: AmazonPrice | null;
3607
+ }
3608
+ /**
3609
+ * Full product detail (PDP).
3610
+ */
3611
+ interface Product {
3612
+ asin: string;
3613
+ parent_asin: string | null;
3614
+ title: string | null;
3615
+ link: string | null;
3616
+ brand: string | null;
3617
+ brand_url: string | null;
3618
+ manufacturer: string | null;
3619
+ model_number: string | null;
3620
+ price: AmazonPrice | null;
3621
+ list_price: AmazonPrice | null;
3622
+ savings_amount: AmazonPrice | null;
3623
+ discount_percent: number | null;
3624
+ rating: number | null;
3625
+ ratings_total: number | null;
3626
+ rating_breakdown: RatingBreakdown | null;
3627
+ bought_past_month: string | null;
3628
+ in_stock: boolean | null;
3629
+ availability: string | null;
3630
+ feature_bullets: string[];
3631
+ description: string | null;
3632
+ main_image: string | null;
3633
+ images: string[];
3634
+ images_count: number;
3635
+ videos: string[];
3636
+ videos_count: number;
3637
+ has_aplus_content: boolean;
3638
+ variants: ProductVariant[];
3639
+ variant_asins: string[];
3640
+ categories: string[];
3641
+ bestsellers_rank: BestsellersRankEntry[];
3642
+ attributes: Record<string, string>;
3643
+ specifications: Record<string, string>;
3644
+ dimensions: string | null;
3645
+ weight: string | null;
3646
+ first_available: string | null;
3647
+ country_of_origin: string | null;
3648
+ buybox: Buybox | null;
3649
+ sold_by: string | null;
3650
+ ships_from: string | null;
3651
+ fulfilled_by: string | null;
3652
+ is_amazon_seller: boolean | null;
3653
+ badges: ProductBadges;
3654
+ coupon: Coupon | null;
3655
+ deal: ProductDeal | null;
3656
+ delivery: Delivery | null;
3657
+ frequently_bought_together: RelatedProduct[];
3658
+ also_bought: RelatedProduct[];
3659
+ answered_questions: number | null;
3660
+ /** The product page's embedded featured reviews (max 8). */
3661
+ top_reviews: Review[];
3662
+ scraped_utc: number | null;
3663
+ scraped_at: string | null;
3664
+ }
3665
+ /**
3666
+ * A single search / category-browse result row.
3667
+ */
3668
+ interface SearchResult {
3669
+ position: number;
3670
+ asin: string;
3671
+ title: string | null;
3672
+ link: string | null;
3673
+ image: string | null;
3674
+ price: AmazonPrice | null;
3675
+ list_price: AmazonPrice | null;
3676
+ unit_price: string | null;
3677
+ rating: number | null;
3678
+ ratings_total: number | null;
3679
+ is_prime: boolean;
3680
+ is_sponsored: boolean;
3681
+ is_amazons_choice: boolean;
3682
+ is_best_seller: boolean;
3683
+ bought_past_month: string | null;
3684
+ coupon: string | null;
3685
+ availability: string | null;
3686
+ }
3687
+ /**
3688
+ * The seller behind a specific offer.
3689
+ */
3690
+ interface OfferSeller {
3691
+ name: string | null;
3692
+ id: string | null;
3693
+ link: string | null;
3694
+ rating: number | null;
3695
+ ratings_total: number | null;
3696
+ ratings_percentage_positive: number | null;
3697
+ }
3698
+ /**
3699
+ * The condition of an offered item.
3700
+ */
3701
+ interface OfferCondition {
3702
+ is_new: boolean | null;
3703
+ title: string | null;
3704
+ comments: string | null;
3705
+ }
3706
+ /**
3707
+ * Delivery terms for a specific offer.
3708
+ */
3709
+ interface OfferDelivery {
3710
+ is_free: boolean | null;
3711
+ fulfilled_by_amazon: boolean | null;
3712
+ date: string | null;
3713
+ price: AmazonPrice | null;
3714
+ }
3715
+ /**
3716
+ * A single seller offer for a product.
3717
+ */
3718
+ interface Offer {
3719
+ position: number;
3720
+ seller: OfferSeller | null;
3721
+ price: AmazonPrice | null;
3722
+ condition: OfferCondition | null;
3723
+ delivery: OfferDelivery | null;
3724
+ buybox_winner: boolean;
3725
+ is_prime: boolean;
3726
+ minimum_order_quantity: number | null;
3727
+ maximum_order_quantity: number | null;
3728
+ }
3729
+ /**
3730
+ * The reviewer's public profile.
3731
+ */
3732
+ interface ReviewProfile {
3733
+ name: string | null;
3734
+ link: string | null;
3735
+ id: string | null;
3736
+ image: string | null;
3737
+ }
3738
+ /**
3739
+ * A single product review.
3740
+ */
3741
+ interface Review {
3742
+ id: string | null;
3743
+ title: string | null;
3744
+ body: string | null;
3745
+ rating: number | null;
3746
+ date_raw: string | null;
3747
+ date_utc: number | null;
3748
+ date_at: string | null;
3749
+ review_country: string | null;
3750
+ is_global_review: boolean;
3751
+ profile: ReviewProfile | null;
3752
+ verified_purchase: boolean;
3753
+ vine_program: boolean;
3754
+ helpful_votes: number | null;
3755
+ variant: string | null;
3756
+ images: string[];
3757
+ }
3758
+ /**
3759
+ * A single bestseller / new-release row.
3760
+ */
3761
+ interface Bestseller {
3762
+ rank: number | null;
3763
+ position: number;
3764
+ asin: string;
3765
+ title: string | null;
3766
+ link: string | null;
3767
+ image: string | null;
3768
+ rating: number | null;
3769
+ ratings_total: number | null;
3770
+ price: AmazonPrice | null;
3771
+ }
3772
+ /**
3773
+ * A single deal row.
3774
+ */
3775
+ interface Deal {
3776
+ position: number;
3777
+ asin: string;
3778
+ title: string | null;
3779
+ link: string | null;
3780
+ image: string | null;
3781
+ deal_price: AmazonPrice | null;
3782
+ list_price: AmazonPrice | null;
3783
+ discount_percent: number | null;
3784
+ deal_type: string | null;
3785
+ is_lightning_deal: boolean;
3786
+ badge: string | null;
3787
+ ends_at_utc: number | null;
3788
+ ends_at: string | null;
3789
+ }
3790
+ /**
3791
+ * Feedback counts for a single rolling window.
3792
+ */
3793
+ interface FeedbackWindow {
3794
+ positive: number | null;
3795
+ neutral: number | null;
3796
+ negative: number | null;
3797
+ count: number | null;
3798
+ }
3799
+ /**
3800
+ * Seller feedback summary across rolling windows.
3801
+ *
3802
+ * Note: the 12-month / 90-day / 30-day windows ship on the wire under the
3803
+ * keys `12mo`, `90d` and `30d`.
3804
+ */
3805
+ interface SellerFeedbackSummary {
3806
+ lifetime: FeedbackWindow | null;
3807
+ /** 12-month feedback window */
3808
+ "12mo": FeedbackWindow | null;
3809
+ /** 90-day feedback window */
3810
+ "90d": FeedbackWindow | null;
3811
+ /** 30-day feedback window */
3812
+ "30d": FeedbackWindow | null;
3813
+ }
3814
+ /**
3815
+ * A seller profile.
3816
+ */
3817
+ interface Seller {
3818
+ seller_id: string;
3819
+ name: string | null;
3820
+ link: string | null;
3821
+ rating: number | null;
3822
+ ratings_total: number | null;
3823
+ ratings_percentage_positive: number | null;
3824
+ feedback: SellerFeedbackSummary | null;
3825
+ business_name: string | null;
3826
+ business_address: string | null;
3827
+ member_since: string | null;
3828
+ }
3829
+ /**
3830
+ * A single buyer-feedback entry for a seller.
3831
+ */
3832
+ interface SellerFeedbackEntry {
3833
+ rating: number | null;
3834
+ comment: string | null;
3835
+ rater: string | null;
3836
+ date_raw: string | null;
3837
+ date_utc: number | null;
3838
+ date_at: string | null;
3839
+ }
3840
+ /**
3841
+ * A single keyword suggestion.
3842
+ */
3843
+ interface AutocompleteSuggestion {
3844
+ value: string;
3845
+ alias: string | null;
3846
+ }
3847
+ /** Response from the /search endpoint. */
3848
+ interface SearchResponse {
3849
+ query: string;
3850
+ domain: string;
3851
+ results: SearchResult[];
3852
+ pagination: Pagination;
3853
+ scraped_utc: number | null;
3854
+ scraped_at: string | null;
3855
+ }
3856
+ /** Response from the /products/{asin} endpoint. */
3857
+ interface ProductDetailResponse {
3858
+ domain: string;
3859
+ product: Product;
3860
+ }
3861
+ /** Response from the /products/{asin}/offers endpoint. */
3862
+ interface OffersResponse {
3863
+ asin: string;
3864
+ domain: string;
3865
+ buybox: Offer | null;
3866
+ offers: Offer[];
3867
+ total_offers: number | null;
3868
+ scraped_utc: number | null;
3869
+ scraped_at: string | null;
3870
+ }
3871
+ /** Response from the /products/{asin}/reviews endpoint. */
3872
+ interface ReviewsResponse {
3873
+ asin: string;
3874
+ domain: string;
3875
+ reviews: Review[];
3876
+ rating: number | null;
3877
+ ratings_total: number | null;
3878
+ rating_breakdown: RatingBreakdown | null;
3879
+ pagination: Pagination;
3880
+ scraped_utc: number | null;
3881
+ scraped_at: string | null;
3882
+ }
3883
+ /** Response from the /bestsellers endpoint. */
3884
+ interface BestsellersResponse {
3885
+ domain: string;
3886
+ category: string | null;
3887
+ bestsellers: Bestseller[];
3888
+ pagination: Pagination;
3889
+ scraped_utc: number | null;
3890
+ scraped_at: string | null;
3891
+ }
3892
+ /** Response from the /new-releases endpoint. */
3893
+ interface NewReleasesResponse {
3894
+ domain: string;
3895
+ category: string | null;
3896
+ new_releases: Bestseller[];
3897
+ pagination: Pagination;
3898
+ scraped_utc: number | null;
3899
+ scraped_at: string | null;
3900
+ }
3901
+ /** Response from the /deals endpoint. */
3902
+ interface DealsResponse {
3903
+ domain: string;
3904
+ category: string | null;
3905
+ deals: Deal[];
3906
+ pagination: Pagination;
3907
+ scraped_utc: number | null;
3908
+ scraped_at: string | null;
3909
+ }
3910
+ /** Response from the /category endpoint. */
3911
+ interface CategoryResponse {
3912
+ domain: string;
3913
+ node: string;
3914
+ results: SearchResult[];
3915
+ pagination: Pagination;
3916
+ scraped_utc: number | null;
3917
+ scraped_at: string | null;
3918
+ }
3919
+ /** Response from the /sellers/{seller_id} endpoint. */
3920
+ interface SellerProfileResponse {
3921
+ domain: string;
3922
+ seller: Seller;
3923
+ }
3924
+ /** Response from the /sellers/{seller_id}/products endpoint. */
3925
+ interface SellerProductsResponse {
3926
+ domain: string;
3927
+ seller_id: string;
3928
+ products: SearchResult[];
3929
+ pagination: Pagination;
3930
+ scraped_utc: number | null;
3931
+ scraped_at: string | null;
3932
+ }
3933
+ /** Response from the /sellers/{seller_id}/feedback endpoint. */
3934
+ interface SellerFeedbackResponse {
3935
+ domain: string;
3936
+ seller_id: string;
3937
+ feedback: SellerFeedbackEntry[];
3938
+ pagination: Pagination;
3939
+ scraped_utc: number | null;
3940
+ scraped_at: string | null;
3941
+ }
3942
+ /** Response from the /autocomplete endpoint. */
3943
+ interface AutocompleteResponse {
3944
+ query: string;
3945
+ domain: string;
3946
+ suggestions: AutocompleteSuggestion[];
3947
+ }
3948
+ /** Response from the /markets endpoint. */
3949
+ interface MarketsResponse {
3950
+ markets: MarketInfo[];
3951
+ }
3952
+ /** Response from the /categories endpoint. */
3953
+ interface CategoriesResponse {
3954
+ categories: CategoryInfo[];
3955
+ }
3956
+ /** Parameters for searching Amazon products. */
3957
+ interface AmazonSearchParams {
3958
+ /** Search query string */
3959
+ query: string;
3960
+ /** Amazon marketplace domain (default: "com") */
3961
+ domain?: string;
3962
+ /** Page number (1-indexed) */
3963
+ page?: number;
3964
+ /** Sort order (e.g. "price_low_to_high", "featured", "review_rank") */
3965
+ sort_by?: string;
3966
+ /** Category / department alias to scope the search */
3967
+ category?: string;
3968
+ /** Minimum price filter */
3969
+ min_price?: number;
3970
+ /** Maximum price filter */
3971
+ max_price?: number;
3972
+ /** Delivery ZIP / postal code for localized price & availability */
3973
+ zip?: string;
3974
+ /** Preferred content language / locale (e.g. "en_US") */
3975
+ language?: string;
3976
+ }
3977
+ /** Options for fetching product detail. */
3978
+ interface AmazonProductParams {
3979
+ /** Amazon marketplace domain (default: "com") */
3980
+ domain?: string;
3981
+ /** Delivery ZIP / postal code */
3982
+ zip?: string;
3983
+ /** Preferred content language (e.g. "en_US") */
3984
+ language?: string;
3985
+ }
3986
+ /** Options for fetching product offers. */
3987
+ interface AmazonOffersParams {
3988
+ /** Amazon marketplace domain (default: "com") */
3989
+ domain?: string;
3990
+ /** Delivery ZIP / postal code */
3991
+ zip?: string;
3992
+ }
3993
+ /** Options for fetching product reviews. */
3994
+ interface AmazonReviewsParams {
3995
+ /** Amazon marketplace domain (default: "com") */
3996
+ domain?: string;
3997
+ /** Page number (1-indexed) */
3998
+ page?: number;
3999
+ /** Sort order ("helpful" or "recent") */
4000
+ sort_by?: "helpful" | "recent";
4001
+ /** Filter by star rating (e.g. "five_star", "one_star") */
4002
+ star?: string;
4003
+ /** Restrict to verified-purchase reviews */
4004
+ verified_only?: boolean;
4005
+ /** Restrict to reviews containing images / video */
4006
+ media_only?: boolean;
4007
+ }
4008
+ /** Options for the bestsellers / new-releases endpoints. */
4009
+ interface AmazonListingsParams {
4010
+ /** Amazon marketplace domain (default: "com") */
4011
+ domain?: string;
4012
+ /** Bestsellers / new-releases node or category alias */
4013
+ category?: string;
4014
+ /** Page number (1-indexed) */
4015
+ page?: number;
4016
+ }
4017
+ /** Options for the deals endpoint. */
4018
+ interface AmazonDealsParams {
4019
+ /** Amazon marketplace domain (default: "com") */
4020
+ domain?: string;
4021
+ /** Deals category filter */
4022
+ category?: string;
4023
+ /** Page number (1-indexed) */
4024
+ page?: number;
4025
+ }
4026
+ /** Options for the category-browse endpoint. */
4027
+ interface AmazonCategoryParams {
4028
+ /** Browse-node ID (required) */
4029
+ node: string;
4030
+ /** Amazon marketplace domain (default: "com") */
4031
+ domain?: string;
4032
+ /** Page number (1-indexed) */
4033
+ page?: number;
4034
+ /** Sort order */
4035
+ sort_by?: string;
4036
+ }
4037
+ /** Options for seller storefront products / feedback endpoints. */
4038
+ interface AmazonSellerListParams {
4039
+ /** Amazon marketplace domain (default: "com") */
4040
+ domain?: string;
4041
+ /** Page number (1-indexed) */
4042
+ page?: number;
4043
+ }
4044
+ /** Options for the seller profile endpoint. */
4045
+ interface AmazonSellerParams {
4046
+ /** Amazon marketplace domain (default: "com") */
4047
+ domain?: string;
4048
+ }
4049
+ /** Options for the autocomplete endpoint. */
4050
+ interface AmazonAutocompleteParams {
4051
+ /** Amazon marketplace domain (default: "com") */
4052
+ domain?: string;
4053
+ }
4054
+
4055
+ /**
4056
+ * Amazon Search API client.
4057
+ *
4058
+ * Provides methods for keyword search and keyword autocomplete suggestions.
4059
+ */
4060
+
4061
+ /**
4062
+ * Client for Amazon search and autocomplete endpoints.
4063
+ *
4064
+ * @example
4065
+ * ```typescript
4066
+ * const client = new ScrapeBadger({ apiKey: "key" });
4067
+ *
4068
+ * const results = await client.amazon.search.search({ query: "wireless headphones" });
4069
+ * for (const item of results.results) {
4070
+ * console.log(`${item.position}. ${item.title}`);
4071
+ * }
4072
+ *
4073
+ * const suggestions = await client.amazon.search.autocomplete("lapt");
4074
+ * ```
4075
+ */
4076
+ declare class SearchClient {
4077
+ private readonly client;
4078
+ constructor(client: BaseClient);
4079
+ /**
4080
+ * Search Amazon for products by keyword.
4081
+ *
4082
+ * @param params - Search parameters including query, filters, and pagination.
4083
+ * @returns Search results with rows and pagination metadata.
4084
+ * @throws AuthenticationError - If the API key is invalid.
4085
+ * @throws ValidationError - If the parameters are invalid.
4086
+ */
4087
+ search(params: AmazonSearchParams): Promise<SearchResponse>;
4088
+ /**
4089
+ * Get Amazon keyword autocomplete suggestions.
4090
+ *
4091
+ * @param query - Partial search query string.
4092
+ * @param options - Optional parameters (domain).
4093
+ * @returns Autocomplete suggestions.
4094
+ */
4095
+ autocomplete(query: string, options?: AmazonAutocompleteParams): Promise<AutocompleteResponse>;
4096
+ }
4097
+
4098
+ /**
4099
+ * Amazon Products API client.
4100
+ *
4101
+ * Provides methods for fetching product detail, offers, and reviews by ASIN.
4102
+ */
4103
+
4104
+ /**
4105
+ * Client for Amazon product endpoints (detail, offers, reviews).
4106
+ *
4107
+ * @example
4108
+ * ```typescript
4109
+ * const client = new ScrapeBadger({ apiKey: "key" });
4110
+ *
4111
+ * const detail = await client.amazon.products.get("B08N5WRWNW");
4112
+ * console.log(detail.product.title);
4113
+ *
4114
+ * const offers = await client.amazon.products.offers("B08N5WRWNW");
4115
+ * console.log(`${offers.total_offers} offers`);
4116
+ *
4117
+ * const reviews = await client.amazon.products.reviews("B08N5WRWNW");
4118
+ * ```
4119
+ */
4120
+ declare class ProductsClient {
4121
+ private readonly client;
4122
+ constructor(client: BaseClient);
4123
+ /**
4124
+ * Get full product detail (PDP) for an ASIN.
4125
+ *
4126
+ * @param asin - The product ASIN.
4127
+ * @param options - Optional parameters (domain, zip, language).
4128
+ * @returns Product detail including variants, badges, buybox, and related products.
4129
+ * @throws NotFoundError - If the product doesn't exist.
4130
+ */
4131
+ get(asin: string, options?: AmazonProductParams): Promise<ProductDetailResponse>;
4132
+ /**
4133
+ * Get all-seller offers (and the buybox winner) for an ASIN.
4134
+ *
4135
+ * @param asin - The product ASIN.
4136
+ * @param options - Optional parameters (domain, zip).
4137
+ * @returns Offers response with the buybox winner and full offer list.
4138
+ */
4139
+ offers(asin: string, options?: AmazonOffersParams): Promise<OffersResponse>;
4140
+ /**
4141
+ * Get product reviews for an ASIN.
4142
+ *
4143
+ * @param asin - The product ASIN.
4144
+ * @param options - Optional parameters (domain, page, sort_by, star, verified_only, media_only).
4145
+ * @returns Reviews response with reviews, aggregate rating, and breakdown.
4146
+ */
4147
+ reviews(asin: string, options?: AmazonReviewsParams): Promise<ReviewsResponse>;
4148
+ }
4149
+
4150
+ /**
4151
+ * Amazon Listings API client.
4152
+ *
4153
+ * Provides methods for bestsellers, new releases, deals, and category browse.
4154
+ */
4155
+
4156
+ /**
4157
+ * Client for Amazon listing endpoints (bestsellers, new releases, deals, category).
4158
+ *
4159
+ * @example
4160
+ * ```typescript
4161
+ * const client = new ScrapeBadger({ apiKey: "key" });
4162
+ *
4163
+ * const top = await client.amazon.listings.bestsellers({ category: "electronics" });
4164
+ * for (const item of top.bestsellers) {
4165
+ * console.log(`#${item.rank}: ${item.title}`);
4166
+ * }
4167
+ * ```
4168
+ */
4169
+ declare class ListingsClient {
4170
+ private readonly client;
4171
+ constructor(client: BaseClient);
4172
+ /**
4173
+ * Get the bestsellers list for a marketplace / category.
4174
+ *
4175
+ * @param options - Optional parameters (domain, category, page).
4176
+ * @returns Bestsellers response with ranked products and pagination.
4177
+ */
4178
+ bestsellers(options?: AmazonListingsParams): Promise<BestsellersResponse>;
4179
+ /**
4180
+ * Get the new-releases list for a marketplace / category.
4181
+ *
4182
+ * @param options - Optional parameters (domain, category, page).
4183
+ * @returns New-releases response with ranked products and pagination.
4184
+ */
4185
+ newReleases(options?: AmazonListingsParams): Promise<NewReleasesResponse>;
4186
+ /**
4187
+ * Get current deals for a marketplace / category.
4188
+ *
4189
+ * @param options - Optional parameters (domain, category, page).
4190
+ * @returns Deals response with deal rows and pagination.
4191
+ */
4192
+ deals(options?: AmazonDealsParams): Promise<DealsResponse>;
4193
+ /**
4194
+ * Browse a category / department by browse-node ID.
4195
+ *
4196
+ * @param params - Parameters including the required node ID.
4197
+ * @returns Category response with result rows and pagination.
4198
+ */
4199
+ category(params: AmazonCategoryParams): Promise<CategoryResponse>;
4200
+ }
4201
+
4202
+ /**
4203
+ * Amazon Sellers API client.
4204
+ *
4205
+ * Provides methods for seller profile, storefront products, and buyer feedback.
4206
+ */
4207
+
4208
+ /**
4209
+ * Client for Amazon seller endpoints (profile, products, feedback).
4210
+ *
4211
+ * @example
4212
+ * ```typescript
4213
+ * const client = new ScrapeBadger({ apiKey: "key" });
4214
+ *
4215
+ * const profile = await client.amazon.sellers.get("A2L77EE7U53NWQ");
4216
+ * console.log(profile.seller.name);
4217
+ *
4218
+ * const products = await client.amazon.sellers.products("A2L77EE7U53NWQ");
4219
+ * ```
4220
+ */
4221
+ declare class SellersClient {
4222
+ private readonly client;
4223
+ constructor(client: BaseClient);
4224
+ /**
4225
+ * Get a seller's profile and ratings.
4226
+ *
4227
+ * @param sellerId - The seller ID.
4228
+ * @param options - Optional parameters (domain).
4229
+ * @returns Seller profile response.
4230
+ * @throws NotFoundError - If the seller doesn't exist.
4231
+ */
4232
+ get(sellerId: string, options?: AmazonSellerParams): Promise<SellerProfileResponse>;
4233
+ /**
4234
+ * Get a seller's storefront listings.
4235
+ *
4236
+ * @param sellerId - The seller ID.
4237
+ * @param options - Optional parameters (domain, page).
4238
+ * @returns Seller products response with result rows and pagination.
4239
+ */
4240
+ products(sellerId: string, options?: AmazonSellerListParams): Promise<SellerProductsResponse>;
4241
+ /**
4242
+ * Get buyer feedback entries for a seller.
4243
+ *
4244
+ * @param sellerId - The seller ID.
4245
+ * @param options - Optional parameters (domain, page).
4246
+ * @returns Seller feedback response with feedback entries and pagination.
4247
+ */
4248
+ feedback(sellerId: string, options?: AmazonSellerListParams): Promise<SellerFeedbackResponse>;
4249
+ }
4250
+
4251
+ /**
4252
+ * Amazon Reference Data API client.
4253
+ *
4254
+ * Provides methods for fetching the static marketplace and category lists.
4255
+ */
4256
+
4257
+ /**
4258
+ * Client for Amazon reference data endpoints (markets, categories).
4259
+ *
4260
+ * @example
4261
+ * ```typescript
4262
+ * const client = new ScrapeBadger({ apiKey: "key" });
4263
+ *
4264
+ * const markets = await client.amazon.reference.markets();
4265
+ * for (const m of markets.markets) {
4266
+ * console.log(`${m.code}: ${m.domain} (${m.currency})`);
4267
+ * }
4268
+ *
4269
+ * const categories = await client.amazon.reference.categories();
4270
+ * ```
4271
+ */
4272
+ declare class ReferenceClient {
4273
+ private readonly client;
4274
+ constructor(client: BaseClient);
4275
+ /**
4276
+ * Get all supported Amazon marketplaces.
4277
+ *
4278
+ * @returns Markets response with all supported marketplaces.
4279
+ */
4280
+ markets(): Promise<MarketsResponse>;
4281
+ /**
4282
+ * Get the reference department / category aliases.
4283
+ *
4284
+ * @returns Categories response with all category aliases.
4285
+ */
4286
+ categories(): Promise<CategoriesResponse>;
4287
+ }
4288
+
4289
+ /**
4290
+ * Amazon API client.
4291
+ *
4292
+ * Provides access to all Amazon API endpoints through specialized sub-clients.
4293
+ */
4294
+
4295
+ /**
4296
+ * Amazon API client with access to all Amazon endpoints.
4297
+ *
4298
+ * Provides sub-clients for different resource types:
4299
+ * - `search` - Keyword search and autocomplete
4300
+ * - `products` - Product detail, offers, and reviews
4301
+ * - `listings` - Bestsellers, new releases, deals, and category browse
4302
+ * - `sellers` - Seller profile, storefront products, and feedback
4303
+ * - `reference` - Reference data (markets, categories)
4304
+ *
4305
+ * @example
4306
+ * ```typescript
4307
+ * const client = new ScrapeBadger({ apiKey: "key" });
4308
+ *
4309
+ * // Search products
4310
+ * const results = await client.amazon.search.search({ query: "wireless headphones" });
4311
+ *
4312
+ * // Get product detail
4313
+ * const detail = await client.amazon.products.get("B08N5WRWNW");
4314
+ *
4315
+ * // Get bestsellers
4316
+ * const top = await client.amazon.listings.bestsellers({ category: "electronics" });
4317
+ *
4318
+ * // Get a seller profile
4319
+ * const seller = await client.amazon.sellers.get("A2L77EE7U53NWQ");
4320
+ *
4321
+ * // Get reference data
4322
+ * const markets = await client.amazon.reference.markets();
4323
+ * ```
4324
+ */
4325
+ declare class AmazonClient {
4326
+ /** Client for keyword search and autocomplete */
4327
+ readonly search: SearchClient;
4328
+ /** Client for product detail, offers, and reviews */
4329
+ readonly products: ProductsClient;
4330
+ /** Client for bestsellers, new releases, deals, and category browse */
4331
+ readonly listings: ListingsClient;
4332
+ /** Client for seller profile, products, and feedback */
4333
+ readonly sellers: SellersClient;
4334
+ /** Client for reference data (markets, categories) */
4335
+ readonly reference: ReferenceClient;
4336
+ /**
4337
+ * Create a new Amazon client.
4338
+ *
4339
+ * @param client - The base HTTP client for making requests.
4340
+ */
4341
+ constructor(client: BaseClient);
4342
+ }
4343
+
3400
4344
  /**
3401
4345
  * Main ScrapeBadger client.
3402
4346
  *
@@ -3447,6 +4391,8 @@ declare class ScrapeBadger {
3447
4391
  readonly google: GoogleClient;
3448
4392
  /** Reddit scraper API client */
3449
4393
  readonly reddit: RedditClient;
4394
+ /** Amazon scraper API client — 14 endpoints */
4395
+ readonly amazon: AmazonClient;
3450
4396
  /**
3451
4397
  * Create a new ScrapeBadger client.
3452
4398
  *
@@ -3475,4 +4421,4 @@ declare class ScrapeBadger {
3475
4421
  constructor(config?: Partial<ScrapeBadgerConfig>);
3476
4422
  }
3477
4423
 
3478
- export { type AiModeSearchParams, type AutocompleteParams, type DetectOptions, type DetectResult, type DomainPostsResponse, type FinanceQuoteParams, type FlightsSearchParams, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$1 as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type JobsSearchParams, type LensSearchParams, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient as RedditUsersClient, type RedditWikiPage, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShoppingClickParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse as VintedItemDetailResponse, type VintedItemSummary, ItemsClient as VintedItemsClient, type VintedMarket, type MarketsResponse as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient as VintedReferenceClient, SearchClient$2 as VintedSearchClient, type VintedSearchParams, type SearchResponse as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$1 as VintedUsersClient, WebClient, type WikiPageResponse };
4424
+ export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse as AmazonAutocompleteResponse, type AutocompleteSuggestion as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse as AmazonCategoriesResponse, type CategoryInfo as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse as AmazonCategoryResponse, AmazonClient, type Coupon as AmazonCoupon, type Deal as AmazonDeal, type AmazonDealsParams, type DealsResponse as AmazonDealsResponse, type Delivery as AmazonDelivery, type FeedbackWindow as AmazonFeedbackWindow, ListingsClient as AmazonListingsClient, type AmazonListingsParams, type MarketInfo as AmazonMarketInfo, type MarketsResponse as AmazonMarketsResponse, type NewReleasesResponse as AmazonNewReleasesResponse, type Offer as AmazonOffer, type OfferCondition as AmazonOfferCondition, type OfferDelivery as AmazonOfferDelivery, type OfferSeller as AmazonOfferSeller, type AmazonOffersParams, type OffersResponse as AmazonOffersResponse, type Pagination as AmazonPagination, type AmazonPrice, type Product as AmazonProduct, type ProductBadges as AmazonProductBadges, type ProductDeal as AmazonProductDeal, type ProductDetailResponse as AmazonProductDetailResponse, type AmazonProductParams, type ProductVariant as AmazonProductVariant, ProductsClient as AmazonProductsClient, type RatingBreakdown as AmazonRatingBreakdown, ReferenceClient as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse as AmazonReviewsResponse, SearchClient as AmazonSearchClient, type AmazonSearchParams, type SearchResponse as AmazonSearchResponse, type SearchResult as AmazonSearchResult, type Seller as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse as AmazonSellerProfileResponse, SellersClient as AmazonSellersClient, type AutocompleteParams, type DetectOptions, type DetectResult, type DomainPostsResponse, type FinanceQuoteParams, type FlightsSearchParams, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$1 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$2 as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type JobsSearchParams, type LensSearchParams, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$1 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient as RedditUsersClient, type RedditWikiPage, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShoppingClickParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse as VintedItemDetailResponse, type VintedItemSummary, ItemsClient as VintedItemsClient, type VintedMarket, type MarketsResponse$1 as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$1 as VintedReferenceClient, SearchClient$3 as VintedSearchClient, type VintedSearchParams, type SearchResponse$1 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$1 as VintedUsersClient, WebClient, type WikiPageResponse };