scrapebadger 0.29.0 → 0.30.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/README.md +1 -0
- package/dist/index.d.cts +923 -37
- package/dist/index.d.ts +923 -37
- package/dist/index.js +264 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +247 -25
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -609,7 +609,7 @@ interface VintedSearchParams {
|
|
|
609
609
|
* });
|
|
610
610
|
* ```
|
|
611
611
|
*/
|
|
612
|
-
declare class SearchClient$
|
|
612
|
+
declare class SearchClient$d {
|
|
613
613
|
private readonly client;
|
|
614
614
|
constructor(client: BaseClient);
|
|
615
615
|
/**
|
|
@@ -808,7 +808,7 @@ declare class UsersClient$3 {
|
|
|
808
808
|
* }
|
|
809
809
|
* ```
|
|
810
810
|
*/
|
|
811
|
-
declare class ReferenceClient$
|
|
811
|
+
declare class ReferenceClient$b {
|
|
812
812
|
private readonly client;
|
|
813
813
|
constructor(client: BaseClient);
|
|
814
814
|
/**
|
|
@@ -923,13 +923,13 @@ declare class ReferenceClient$a {
|
|
|
923
923
|
*/
|
|
924
924
|
declare class VintedClient {
|
|
925
925
|
/** Client for item search operations */
|
|
926
|
-
readonly search: SearchClient$
|
|
926
|
+
readonly search: SearchClient$d;
|
|
927
927
|
/** Client for individual item operations */
|
|
928
928
|
readonly items: ItemsClient$1;
|
|
929
929
|
/** Client for user operations */
|
|
930
930
|
readonly users: UsersClient$3;
|
|
931
931
|
/** Client for reference data (brands, colors, statuses, markets) */
|
|
932
|
-
readonly reference: ReferenceClient$
|
|
932
|
+
readonly reference: ReferenceClient$b;
|
|
933
933
|
/**
|
|
934
934
|
* Create a new Vinted client.
|
|
935
935
|
*
|
|
@@ -1862,7 +1862,7 @@ declare class PatentsClient {
|
|
|
1862
1862
|
/**
|
|
1863
1863
|
* Client for Google's immersive product detail endpoint.
|
|
1864
1864
|
*/
|
|
1865
|
-
declare class ProductsClient$
|
|
1865
|
+
declare class ProductsClient$3 {
|
|
1866
1866
|
private readonly client;
|
|
1867
1867
|
constructor(client: BaseClient);
|
|
1868
1868
|
detail(params: ProductsDetailParams): Promise<GoogleResponse>;
|
|
@@ -1940,7 +1940,7 @@ declare class ScholarClient {
|
|
|
1940
1940
|
* }
|
|
1941
1941
|
* ```
|
|
1942
1942
|
*/
|
|
1943
|
-
declare class SearchClient$
|
|
1943
|
+
declare class SearchClient$c {
|
|
1944
1944
|
private readonly client;
|
|
1945
1945
|
constructor(client: BaseClient);
|
|
1946
1946
|
/**
|
|
@@ -2142,7 +2142,7 @@ declare class VideosClient$2 {
|
|
|
2142
2142
|
*/
|
|
2143
2143
|
declare class GoogleClient {
|
|
2144
2144
|
/** Google Web Search (SERP) — with optional deferred AI Overview follow-up. */
|
|
2145
|
-
readonly search: SearchClient$
|
|
2145
|
+
readonly search: SearchClient$c;
|
|
2146
2146
|
/** Google Maps — places, reviews, photos, posts. */
|
|
2147
2147
|
readonly maps: MapsClient;
|
|
2148
2148
|
/** Google News — articles, topics, trending. */
|
|
@@ -2176,7 +2176,7 @@ declare class GoogleClient {
|
|
|
2176
2176
|
/** Google Flights — one-way, round-trip, and multi-city itineraries. */
|
|
2177
2177
|
readonly flights: FlightsClient;
|
|
2178
2178
|
/** Google Products — immersive product detail. */
|
|
2179
|
-
readonly products: ProductsClient$
|
|
2179
|
+
readonly products: ProductsClient$3;
|
|
2180
2180
|
constructor(client: BaseClient);
|
|
2181
2181
|
}
|
|
2182
2182
|
|
|
@@ -2973,7 +2973,7 @@ interface DomainPostsResponse {
|
|
|
2973
2973
|
* const domainPosts = await client.reddit.search.domainPosts({ domain: "github.com" });
|
|
2974
2974
|
* ```
|
|
2975
2975
|
*/
|
|
2976
|
-
declare class SearchClient$
|
|
2976
|
+
declare class SearchClient$b {
|
|
2977
2977
|
private readonly client;
|
|
2978
2978
|
constructor(client: BaseClient);
|
|
2979
2979
|
/**
|
|
@@ -3582,7 +3582,7 @@ declare class UsersClient$2 {
|
|
|
3582
3582
|
*/
|
|
3583
3583
|
declare class RedditClient {
|
|
3584
3584
|
/** Client for search operations (posts, subreddits, users, domain posts) */
|
|
3585
|
-
readonly search: SearchClient$
|
|
3585
|
+
readonly search: SearchClient$b;
|
|
3586
3586
|
/** Client for post operations (trending, details, comments, duplicates) */
|
|
3587
3587
|
readonly posts: PostsClient;
|
|
3588
3588
|
/** Client for subreddit operations (details, posts, rules, moderators, wiki) */
|
|
@@ -4172,7 +4172,7 @@ declare class MediaClient {
|
|
|
4172
4172
|
* const tags = await client.instagram.search.hashtags("running");
|
|
4173
4173
|
* ```
|
|
4174
4174
|
*/
|
|
4175
|
-
declare class SearchClient$
|
|
4175
|
+
declare class SearchClient$a {
|
|
4176
4176
|
private readonly client;
|
|
4177
4177
|
constructor(client: BaseClient);
|
|
4178
4178
|
/**
|
|
@@ -4330,7 +4330,7 @@ declare class InstagramClient {
|
|
|
4330
4330
|
/** Client for media operations (detail, comments, replies, likers, oEmbed) */
|
|
4331
4331
|
readonly media: MediaClient;
|
|
4332
4332
|
/** Client for search operations (users, hashtags, places, top, reels, music, autocomplete) */
|
|
4333
|
-
readonly search: SearchClient$
|
|
4333
|
+
readonly search: SearchClient$a;
|
|
4334
4334
|
/** Client for hashtag operations (info, top, recent, reels) */
|
|
4335
4335
|
readonly hashtags: HashtagsClient$1;
|
|
4336
4336
|
/** Client for location operations (info, top, recent, search) */
|
|
@@ -5405,7 +5405,7 @@ interface AmazonAutocompleteParams {
|
|
|
5405
5405
|
* const suggestions = await client.amazon.search.autocomplete("lapt");
|
|
5406
5406
|
* ```
|
|
5407
5407
|
*/
|
|
5408
|
-
declare class SearchClient$
|
|
5408
|
+
declare class SearchClient$9 {
|
|
5409
5409
|
private readonly client;
|
|
5410
5410
|
constructor(client: BaseClient);
|
|
5411
5411
|
/**
|
|
@@ -5449,7 +5449,7 @@ declare class SearchClient$8 {
|
|
|
5449
5449
|
* const reviews = await client.amazon.products.reviews("B08N5WRWNW");
|
|
5450
5450
|
* ```
|
|
5451
5451
|
*/
|
|
5452
|
-
declare class ProductsClient$
|
|
5452
|
+
declare class ProductsClient$2 {
|
|
5453
5453
|
private readonly client;
|
|
5454
5454
|
constructor(client: BaseClient);
|
|
5455
5455
|
/**
|
|
@@ -5550,7 +5550,7 @@ declare class ListingsClient$1 {
|
|
|
5550
5550
|
* const products = await client.amazon.sellers.products("A2L77EE7U53NWQ");
|
|
5551
5551
|
* ```
|
|
5552
5552
|
*/
|
|
5553
|
-
declare class SellersClient$
|
|
5553
|
+
declare class SellersClient$3 {
|
|
5554
5554
|
private readonly client;
|
|
5555
5555
|
constructor(client: BaseClient);
|
|
5556
5556
|
/**
|
|
@@ -5601,7 +5601,7 @@ declare class SellersClient$2 {
|
|
|
5601
5601
|
* const categories = await client.amazon.reference.categories();
|
|
5602
5602
|
* ```
|
|
5603
5603
|
*/
|
|
5604
|
-
declare class ReferenceClient$
|
|
5604
|
+
declare class ReferenceClient$a {
|
|
5605
5605
|
private readonly client;
|
|
5606
5606
|
constructor(client: BaseClient);
|
|
5607
5607
|
/**
|
|
@@ -5656,15 +5656,15 @@ declare class ReferenceClient$9 {
|
|
|
5656
5656
|
*/
|
|
5657
5657
|
declare class AmazonClient {
|
|
5658
5658
|
/** Client for keyword search and autocomplete */
|
|
5659
|
-
readonly search: SearchClient$
|
|
5659
|
+
readonly search: SearchClient$9;
|
|
5660
5660
|
/** Client for product detail, offers, and reviews */
|
|
5661
|
-
readonly products: ProductsClient$
|
|
5661
|
+
readonly products: ProductsClient$2;
|
|
5662
5662
|
/** Client for bestsellers, new releases, deals, and category browse */
|
|
5663
5663
|
readonly listings: ListingsClient$1;
|
|
5664
5664
|
/** Client for seller profile, products, and feedback */
|
|
5665
|
-
readonly sellers: SellersClient$
|
|
5665
|
+
readonly sellers: SellersClient$3;
|
|
5666
5666
|
/** Client for reference data (markets, categories) */
|
|
5667
|
-
readonly reference: ReferenceClient$
|
|
5667
|
+
readonly reference: ReferenceClient$a;
|
|
5668
5668
|
/**
|
|
5669
5669
|
* Create a new Amazon client.
|
|
5670
5670
|
*
|
|
@@ -5956,7 +5956,7 @@ interface ShopeeCategoriesParams {
|
|
|
5956
5956
|
* const cat = await client.shopee.search.categoryItems(100001, { market: "sg" });
|
|
5957
5957
|
* ```
|
|
5958
5958
|
*/
|
|
5959
|
-
declare class SearchClient$
|
|
5959
|
+
declare class SearchClient$8 {
|
|
5960
5960
|
private readonly client;
|
|
5961
5961
|
constructor(client: BaseClient);
|
|
5962
5962
|
/**
|
|
@@ -6001,7 +6001,7 @@ declare class SearchClient$7 {
|
|
|
6001
6001
|
* }
|
|
6002
6002
|
* ```
|
|
6003
6003
|
*/
|
|
6004
|
-
declare class ProductsClient {
|
|
6004
|
+
declare class ProductsClient$1 {
|
|
6005
6005
|
private readonly client;
|
|
6006
6006
|
constructor(client: BaseClient);
|
|
6007
6007
|
/**
|
|
@@ -6079,7 +6079,7 @@ declare class ReviewsClient {
|
|
|
6079
6079
|
* }
|
|
6080
6080
|
* ```
|
|
6081
6081
|
*/
|
|
6082
|
-
declare class ReferenceClient$
|
|
6082
|
+
declare class ReferenceClient$9 {
|
|
6083
6083
|
private readonly client;
|
|
6084
6084
|
constructor(client: BaseClient);
|
|
6085
6085
|
/**
|
|
@@ -6139,13 +6139,13 @@ declare class ReferenceClient$8 {
|
|
|
6139
6139
|
*/
|
|
6140
6140
|
declare class ShopeeClient {
|
|
6141
6141
|
/** Client for keyword search and category-item listing */
|
|
6142
|
-
readonly search: SearchClient$
|
|
6142
|
+
readonly search: SearchClient$8;
|
|
6143
6143
|
/** Client for full product detail pages */
|
|
6144
|
-
readonly products: ProductsClient;
|
|
6144
|
+
readonly products: ProductsClient$1;
|
|
6145
6145
|
/** Client for product reviews and rating summaries */
|
|
6146
6146
|
readonly reviews: ReviewsClient;
|
|
6147
6147
|
/** Client for reference data (markets, category tree) */
|
|
6148
|
-
readonly reference: ReferenceClient$
|
|
6148
|
+
readonly reference: ReferenceClient$9;
|
|
6149
6149
|
/**
|
|
6150
6150
|
* Create a new Shopee client.
|
|
6151
6151
|
*
|
|
@@ -6991,7 +6991,7 @@ declare class VideosClient$1 {
|
|
|
6991
6991
|
* const users = await client.tiktok.search.users({ query: "skincare" });
|
|
6992
6992
|
* ```
|
|
6993
6993
|
*/
|
|
6994
|
-
declare class SearchClient$
|
|
6994
|
+
declare class SearchClient$7 {
|
|
6995
6995
|
private readonly client;
|
|
6996
6996
|
constructor(client: BaseClient);
|
|
6997
6997
|
/**
|
|
@@ -7197,7 +7197,7 @@ declare class AdsClient$1 {
|
|
|
7197
7197
|
* }
|
|
7198
7198
|
* ```
|
|
7199
7199
|
*/
|
|
7200
|
-
declare class ReferenceClient$
|
|
7200
|
+
declare class ReferenceClient$8 {
|
|
7201
7201
|
private readonly client;
|
|
7202
7202
|
constructor(client: BaseClient);
|
|
7203
7203
|
/**
|
|
@@ -7262,7 +7262,7 @@ declare class TikTokClient {
|
|
|
7262
7262
|
/** Client for video detail, comments, replies, related, transcript, oEmbed */
|
|
7263
7263
|
readonly videos: VideosClient$1;
|
|
7264
7264
|
/** Client for keyword search across videos, users, and hashtags */
|
|
7265
|
-
readonly search: SearchClient$
|
|
7265
|
+
readonly search: SearchClient$7;
|
|
7266
7266
|
/** Client for sound/music detail and videos using a sound */
|
|
7267
7267
|
readonly music: MusicClient$1;
|
|
7268
7268
|
/** Client for hashtag detail and tagged videos */
|
|
@@ -7272,7 +7272,7 @@ declare class TikTokClient {
|
|
|
7272
7272
|
/** Client for the Commercial Content Library (ad transparency) */
|
|
7273
7273
|
readonly ads: AdsClient$1;
|
|
7274
7274
|
/** Client for reference data (regions) and service health */
|
|
7275
|
-
readonly reference: ReferenceClient$
|
|
7275
|
+
readonly reference: ReferenceClient$8;
|
|
7276
7276
|
/**
|
|
7277
7277
|
* Create a new TikTok client.
|
|
7278
7278
|
*
|
|
@@ -7784,7 +7784,7 @@ interface EbayAutocompleteParams {
|
|
|
7784
7784
|
* const suggestions = await client.ebay.search.autocomplete("ipho");
|
|
7785
7785
|
* ```
|
|
7786
7786
|
*/
|
|
7787
|
-
declare class SearchClient$
|
|
7787
|
+
declare class SearchClient$6 {
|
|
7788
7788
|
private readonly client;
|
|
7789
7789
|
constructor(client: BaseClient);
|
|
7790
7790
|
/**
|
|
@@ -7875,7 +7875,7 @@ declare class ItemsClient {
|
|
|
7875
7875
|
* const feedback = await client.ebay.sellers.feedback("musicmagpie");
|
|
7876
7876
|
* ```
|
|
7877
7877
|
*/
|
|
7878
|
-
declare class SellersClient$
|
|
7878
|
+
declare class SellersClient$2 {
|
|
7879
7879
|
private readonly client;
|
|
7880
7880
|
constructor(client: BaseClient);
|
|
7881
7881
|
/**
|
|
@@ -7965,7 +7965,7 @@ declare class CategoriesClient {
|
|
|
7965
7965
|
* }
|
|
7966
7966
|
* ```
|
|
7967
7967
|
*/
|
|
7968
|
-
declare class ReferenceClient$
|
|
7968
|
+
declare class ReferenceClient$7 {
|
|
7969
7969
|
private readonly client;
|
|
7970
7970
|
constructor(client: BaseClient);
|
|
7971
7971
|
/**
|
|
@@ -8020,15 +8020,15 @@ declare class ReferenceClient$6 {
|
|
|
8020
8020
|
*/
|
|
8021
8021
|
declare class EbayClient {
|
|
8022
8022
|
/** Client for active search, completed/sold search, and autocomplete */
|
|
8023
|
-
readonly search: SearchClient$
|
|
8023
|
+
readonly search: SearchClient$6;
|
|
8024
8024
|
/** Client for item detail and catalog product reviews */
|
|
8025
8025
|
readonly items: ItemsClient;
|
|
8026
8026
|
/** Client for seller profile, items, and feedback */
|
|
8027
|
-
readonly sellers: SellersClient$
|
|
8027
|
+
readonly sellers: SellersClient$2;
|
|
8028
8028
|
/** Client for category browse and the reference category list */
|
|
8029
8029
|
readonly categories: CategoriesClient;
|
|
8030
8030
|
/** Client for reference data (markets) */
|
|
8031
|
-
readonly reference: ReferenceClient$
|
|
8031
|
+
readonly reference: ReferenceClient$7;
|
|
8032
8032
|
/**
|
|
8033
8033
|
* Create a new eBay client.
|
|
8034
8034
|
*
|
|
@@ -8037,6 +8037,890 @@ declare class EbayClient {
|
|
|
8037
8037
|
constructor(client: BaseClient);
|
|
8038
8038
|
}
|
|
8039
8039
|
|
|
8040
|
+
/**
|
|
8041
|
+
* TypeScript types for the Walmart API.
|
|
8042
|
+
*
|
|
8043
|
+
* These interfaces mirror the backend `walmart_scraper` response schema
|
|
8044
|
+
* field-for-field. Optional / nullable backend fields are typed as
|
|
8045
|
+
* `Type | null`; backend list fields default to `[]` and are typed as arrays.
|
|
8046
|
+
*
|
|
8047
|
+
* Walmart is US-only (walmart.com). walmart.ca / walmart.com.mx run on
|
|
8048
|
+
* different platforms with different payload shapes, so there is no market or
|
|
8049
|
+
* country parameter anywhere in this module.
|
|
8050
|
+
*/
|
|
8051
|
+
/** An untyped JSON object passed through verbatim from Walmart's payload. */
|
|
8052
|
+
type WalmartRaw = Record<string, unknown>;
|
|
8053
|
+
/** A single price point. Walmart nests several of these per item. */
|
|
8054
|
+
interface WalmartPrice {
|
|
8055
|
+
price: number | null;
|
|
8056
|
+
currency: string | null;
|
|
8057
|
+
price_string: string | null;
|
|
8058
|
+
price_display: string | null;
|
|
8059
|
+
support_text: string | null;
|
|
8060
|
+
variant_price_string: string | null;
|
|
8061
|
+
}
|
|
8062
|
+
/** A min/max price span, with gift-card denominations when applicable. */
|
|
8063
|
+
interface WalmartPriceRange {
|
|
8064
|
+
min_price: number | null;
|
|
8065
|
+
max_price: number | null;
|
|
8066
|
+
currency: string | null;
|
|
8067
|
+
price_string: string | null;
|
|
8068
|
+
denominations: number[];
|
|
8069
|
+
}
|
|
8070
|
+
/** The full price block — current, was/list, unit, savings and range. */
|
|
8071
|
+
interface WalmartPriceInfo {
|
|
8072
|
+
current_price: WalmartPrice | null;
|
|
8073
|
+
was_price: WalmartPrice | null;
|
|
8074
|
+
list_price: WalmartPrice | null;
|
|
8075
|
+
unit_price: WalmartPrice | null;
|
|
8076
|
+
comparison_price: WalmartPrice | null;
|
|
8077
|
+
subscription_price: WalmartPrice | null;
|
|
8078
|
+
shipping_price: WalmartPrice | null;
|
|
8079
|
+
price_range: WalmartPriceRange | null;
|
|
8080
|
+
savings_amount: number | null;
|
|
8081
|
+
savings_string: string | null;
|
|
8082
|
+
is_price_reduced: boolean | null;
|
|
8083
|
+
price_display_codes: WalmartRaw;
|
|
8084
|
+
additional_fees: WalmartRaw[];
|
|
8085
|
+
volume_price_tiers: WalmartRaw[];
|
|
8086
|
+
}
|
|
8087
|
+
/** A product image. */
|
|
8088
|
+
interface WalmartImage {
|
|
8089
|
+
id: string | null;
|
|
8090
|
+
url: string | null;
|
|
8091
|
+
zoomable: boolean | null;
|
|
8092
|
+
}
|
|
8093
|
+
/** A product video with its per-quality versions. */
|
|
8094
|
+
interface WalmartVideo {
|
|
8095
|
+
title: string | null;
|
|
8096
|
+
poster: string | null;
|
|
8097
|
+
versions: WalmartRaw;
|
|
8098
|
+
captions: WalmartRaw[];
|
|
8099
|
+
}
|
|
8100
|
+
/** One breadcrumb node in the category trail. */
|
|
8101
|
+
interface WalmartBreadcrumb {
|
|
8102
|
+
name: string | null;
|
|
8103
|
+
url: string | null;
|
|
8104
|
+
}
|
|
8105
|
+
/** Specification / highlight / warning / at-a-glance row. */
|
|
8106
|
+
interface WalmartNameValue {
|
|
8107
|
+
name: string | null;
|
|
8108
|
+
value: string | null;
|
|
8109
|
+
icon_url: string | null;
|
|
8110
|
+
}
|
|
8111
|
+
/** A named group of specification rows. */
|
|
8112
|
+
interface WalmartSpecificationGroup {
|
|
8113
|
+
group_name: string | null;
|
|
8114
|
+
specifications: WalmartNameValue[];
|
|
8115
|
+
}
|
|
8116
|
+
/** A merchandising badge (rollback, best seller, …). */
|
|
8117
|
+
interface WalmartBadge {
|
|
8118
|
+
id: string | null;
|
|
8119
|
+
text: string | null;
|
|
8120
|
+
type: string | null;
|
|
8121
|
+
key: string | null;
|
|
8122
|
+
}
|
|
8123
|
+
/** Shipping / pickup / delivery option with its live availability. */
|
|
8124
|
+
interface WalmartFulfillmentOption {
|
|
8125
|
+
type: string | null;
|
|
8126
|
+
availability_status: string | null;
|
|
8127
|
+
availability_type: string | null;
|
|
8128
|
+
inventory_status: string | null;
|
|
8129
|
+
available_quantity: number | null;
|
|
8130
|
+
is_low_in_stock: boolean | null;
|
|
8131
|
+
location_text: string | null;
|
|
8132
|
+
max_order_quantity: number | null;
|
|
8133
|
+
order_limit: number | null;
|
|
8134
|
+
restricted: boolean | null;
|
|
8135
|
+
selected: boolean | null;
|
|
8136
|
+
speed_details: WalmartRaw | null;
|
|
8137
|
+
}
|
|
8138
|
+
/** Per-method SLA and promised delivery dates. */
|
|
8139
|
+
interface WalmartFulfillmentSummary {
|
|
8140
|
+
fulfillment: string | null;
|
|
8141
|
+
fulfillment_badge: string | null;
|
|
8142
|
+
fulfillment_price: number | null;
|
|
8143
|
+
fulfillment_methods: string[];
|
|
8144
|
+
delivery_date: string | null;
|
|
8145
|
+
max_delivery_date: string | null;
|
|
8146
|
+
store_delivery_date: string | null;
|
|
8147
|
+
store_max_delivery_date: string | null;
|
|
8148
|
+
store_id: string | null;
|
|
8149
|
+
store_timezone: string | null;
|
|
8150
|
+
/**
|
|
8151
|
+
* Walmart returns SLA as a structured object
|
|
8152
|
+
* (`{unitOfMeasure, minimumValue, maximumValue, rank}`), not a string.
|
|
8153
|
+
*/
|
|
8154
|
+
sla: WalmartRaw | null;
|
|
8155
|
+
regular_sla: WalmartRaw | null;
|
|
8156
|
+
calculated_sla_days: number | null;
|
|
8157
|
+
is_express: boolean | null;
|
|
8158
|
+
is_free_for_wplus: boolean | null;
|
|
8159
|
+
}
|
|
8160
|
+
/** Return eligibility, window and policy text. */
|
|
8161
|
+
interface WalmartReturnPolicy {
|
|
8162
|
+
returnable: boolean | null;
|
|
8163
|
+
returnable_to_store: boolean | null;
|
|
8164
|
+
free_returns: boolean | null;
|
|
8165
|
+
return_window: string | null;
|
|
8166
|
+
return_policy_type: string | null;
|
|
8167
|
+
return_policy_text: string | null;
|
|
8168
|
+
return_policy_condition: string | null;
|
|
8169
|
+
return_location: string | null;
|
|
8170
|
+
holiday_return_enabled: boolean | null;
|
|
8171
|
+
}
|
|
8172
|
+
/** One selectable variant (colour / size / capacity …). */
|
|
8173
|
+
interface WalmartVariant {
|
|
8174
|
+
id: string | null;
|
|
8175
|
+
us_item_id: string | null;
|
|
8176
|
+
name: string | null;
|
|
8177
|
+
variant_type: string | null;
|
|
8178
|
+
value: string | null;
|
|
8179
|
+
type_name: string | null;
|
|
8180
|
+
value_name: string | null;
|
|
8181
|
+
url: string | null;
|
|
8182
|
+
price: number | null;
|
|
8183
|
+
in_stock: boolean | null;
|
|
8184
|
+
available: boolean | null;
|
|
8185
|
+
selected: boolean | null;
|
|
8186
|
+
image_url: string | null;
|
|
8187
|
+
images: string[];
|
|
8188
|
+
swatch_image_url: string | null;
|
|
8189
|
+
}
|
|
8190
|
+
/** Refurbished / pre-owned / new alternative offer on the same product. */
|
|
8191
|
+
interface WalmartConditionOffer {
|
|
8192
|
+
offer_id: string | null;
|
|
8193
|
+
condition: string | null;
|
|
8194
|
+
is_condition_new: boolean | null;
|
|
8195
|
+
availability_status: string | null;
|
|
8196
|
+
price: number | null;
|
|
8197
|
+
price_string: string | null;
|
|
8198
|
+
/**
|
|
8199
|
+
* Walmart returns this as null, a bool, or a nested object depending on the
|
|
8200
|
+
* item — normalised to "are there other conditions on offer?".
|
|
8201
|
+
*/
|
|
8202
|
+
more_conditions: boolean | null;
|
|
8203
|
+
}
|
|
8204
|
+
/** A promotion or offer attached to the product. */
|
|
8205
|
+
interface WalmartPromotion {
|
|
8206
|
+
id: string | null;
|
|
8207
|
+
type: string | null;
|
|
8208
|
+
description: string | null;
|
|
8209
|
+
terms: string | null;
|
|
8210
|
+
}
|
|
8211
|
+
/** Grocery items only — Walmart's structured nutrition block. */
|
|
8212
|
+
interface WalmartNutritionFacts {
|
|
8213
|
+
calorie_info: WalmartRaw | null;
|
|
8214
|
+
key_nutrients: WalmartRaw | null;
|
|
8215
|
+
vitamin_minerals: WalmartRaw | null;
|
|
8216
|
+
serving_info: WalmartRaw | null;
|
|
8217
|
+
additional_disclaimer: string | null;
|
|
8218
|
+
}
|
|
8219
|
+
/** Manufacturer warranty information. */
|
|
8220
|
+
interface WalmartWarranty {
|
|
8221
|
+
information: string | null;
|
|
8222
|
+
length: string | null;
|
|
8223
|
+
url: string | null;
|
|
8224
|
+
}
|
|
8225
|
+
/**
|
|
8226
|
+
* Which store/postcode Walmart resolved this response against.
|
|
8227
|
+
*
|
|
8228
|
+
* Walmart derives the assortment store from the exit IP's geography — it
|
|
8229
|
+
* cannot be pinned by cookie or query param. Prices and availability are
|
|
8230
|
+
* therefore store-specific whether the caller asked for it or not, so the
|
|
8231
|
+
* resolved location is returned explicitly rather than left implicit.
|
|
8232
|
+
*/
|
|
8233
|
+
interface WalmartLocationContext {
|
|
8234
|
+
postal_code: string | null;
|
|
8235
|
+
city: string | null;
|
|
8236
|
+
state: string | null;
|
|
8237
|
+
store_id: string | null;
|
|
8238
|
+
intent: string | null;
|
|
8239
|
+
}
|
|
8240
|
+
/** Seller as it appears on a product — not the full seller profile. */
|
|
8241
|
+
interface WalmartEmbeddedSeller {
|
|
8242
|
+
seller_id: string | null;
|
|
8243
|
+
/** Use THIS as the id for `sellers.get()` — the 32-char hex `seller_id` 404s. */
|
|
8244
|
+
catalog_seller_id: string | null;
|
|
8245
|
+
seller_name: string | null;
|
|
8246
|
+
seller_display_name: string | null;
|
|
8247
|
+
seller_type: string | null;
|
|
8248
|
+
seller_logo_url: string | null;
|
|
8249
|
+
seller_storefront_url: string | null;
|
|
8250
|
+
seller_average_rating: number | null;
|
|
8251
|
+
seller_review_count: number | null;
|
|
8252
|
+
has_seller_badge: boolean | null;
|
|
8253
|
+
is_pro_seller: boolean | null;
|
|
8254
|
+
wfs_enabled: boolean | null;
|
|
8255
|
+
wfs_provider_name: string | null;
|
|
8256
|
+
}
|
|
8257
|
+
/** Full Walmart product detail (PDP). */
|
|
8258
|
+
interface WalmartProduct {
|
|
8259
|
+
us_item_id: string | null;
|
|
8260
|
+
item_id: string | null;
|
|
8261
|
+
product_id: string | null;
|
|
8262
|
+
primary_product_id: string | null;
|
|
8263
|
+
offer_id: string | null;
|
|
8264
|
+
upc: string | null;
|
|
8265
|
+
gtin: string | null;
|
|
8266
|
+
model: string | null;
|
|
8267
|
+
manufacturer_product_id: string | null;
|
|
8268
|
+
sku: string | null;
|
|
8269
|
+
name: string | null;
|
|
8270
|
+
brand: string | null;
|
|
8271
|
+
brand_url: string | null;
|
|
8272
|
+
short_description: string | null;
|
|
8273
|
+
long_description: string | null;
|
|
8274
|
+
/** Walmart's own generative-AI description, as an HTML `<ul>`. */
|
|
8275
|
+
ai_description_html: string | null;
|
|
8276
|
+
/** Walmart's own generative-AI concise summary, as a highlight list. */
|
|
8277
|
+
ai_highlights: WalmartNameValue[];
|
|
8278
|
+
url: string | null;
|
|
8279
|
+
canonical_url: string | null;
|
|
8280
|
+
item_type: string | null;
|
|
8281
|
+
product_type_id: string | null;
|
|
8282
|
+
class_type: string | null;
|
|
8283
|
+
sales_unit: string | null;
|
|
8284
|
+
gender: string | null;
|
|
8285
|
+
category_path: string | null;
|
|
8286
|
+
category_path_id: string | null;
|
|
8287
|
+
breadcrumbs: WalmartBreadcrumb[];
|
|
8288
|
+
department_name: string | null;
|
|
8289
|
+
image_url: string | null;
|
|
8290
|
+
images: WalmartImage[];
|
|
8291
|
+
videos: WalmartVideo[];
|
|
8292
|
+
price: number | null;
|
|
8293
|
+
currency: string | null;
|
|
8294
|
+
price_info: WalmartPriceInfo | null;
|
|
8295
|
+
promotions: WalmartPromotion[];
|
|
8296
|
+
promo_text: string | null;
|
|
8297
|
+
availability_status: string | null;
|
|
8298
|
+
in_stock: boolean | null;
|
|
8299
|
+
is_out_of_stock: boolean | null;
|
|
8300
|
+
fulfillment_type: string | null;
|
|
8301
|
+
fulfillment_options: WalmartFulfillmentOption[];
|
|
8302
|
+
fulfillment_summary: WalmartFulfillmentSummary[];
|
|
8303
|
+
shipping_option: string | null;
|
|
8304
|
+
pickup_option: string | null;
|
|
8305
|
+
order_limit: number | null;
|
|
8306
|
+
order_min_limit: number | null;
|
|
8307
|
+
is_preorder: boolean | null;
|
|
8308
|
+
is_blitz_item: boolean | null;
|
|
8309
|
+
aisle: string | null;
|
|
8310
|
+
location: WalmartLocationContext | null;
|
|
8311
|
+
add_on_services: WalmartRaw[];
|
|
8312
|
+
has_care_plans: boolean | null;
|
|
8313
|
+
rating: number | null;
|
|
8314
|
+
review_count: number | null;
|
|
8315
|
+
seller: WalmartEmbeddedSeller | null;
|
|
8316
|
+
additional_offer_count: number | null;
|
|
8317
|
+
transactable_offer_count: number | null;
|
|
8318
|
+
condition_offers: WalmartConditionOffer[];
|
|
8319
|
+
condition: string | null;
|
|
8320
|
+
is_condition_new: boolean | null;
|
|
8321
|
+
is_preowned: boolean | null;
|
|
8322
|
+
preowned_condition: string | null;
|
|
8323
|
+
variants: WalmartVariant[];
|
|
8324
|
+
variant_criteria: WalmartRaw[];
|
|
8325
|
+
selected_variant_ids: string[];
|
|
8326
|
+
specifications: WalmartNameValue[];
|
|
8327
|
+
specification_groups: WalmartSpecificationGroup[];
|
|
8328
|
+
highlights: WalmartNameValue[];
|
|
8329
|
+
warnings: WalmartNameValue[];
|
|
8330
|
+
warranty: WalmartWarranty | null;
|
|
8331
|
+
nutrition_facts: WalmartNutritionFacts | null;
|
|
8332
|
+
ingredients: string | null;
|
|
8333
|
+
badges: WalmartBadge[];
|
|
8334
|
+
trust_badges: WalmartRaw[];
|
|
8335
|
+
return_policy: WalmartReturnPolicy | null;
|
|
8336
|
+
product_disclaimers: WalmartRaw[];
|
|
8337
|
+
snap_eligible: boolean | null;
|
|
8338
|
+
fsa_eligible: boolean | null;
|
|
8339
|
+
subscription_eligible: boolean | null;
|
|
8340
|
+
is_customizable: boolean | null;
|
|
8341
|
+
free_shipping: boolean | null;
|
|
8342
|
+
buy_now_eligible: boolean | null;
|
|
8343
|
+
legal_restriction: string | null;
|
|
8344
|
+
rating_distribution: WalmartRatingDistribution | null;
|
|
8345
|
+
top_reviews: WalmartReview[];
|
|
8346
|
+
review_aspects: WalmartRaw[];
|
|
8347
|
+
review_summary: string | null;
|
|
8348
|
+
}
|
|
8349
|
+
/** One product card in a search or category result set. */
|
|
8350
|
+
interface WalmartSearchItem {
|
|
8351
|
+
us_item_id: string | null;
|
|
8352
|
+
item_id: string | null;
|
|
8353
|
+
product_id: string | null;
|
|
8354
|
+
offer_id: string | null;
|
|
8355
|
+
name: string | null;
|
|
8356
|
+
brand: string | null;
|
|
8357
|
+
manufacturer_name: string | null;
|
|
8358
|
+
url: string | null;
|
|
8359
|
+
canonical_url: string | null;
|
|
8360
|
+
image_url: string | null;
|
|
8361
|
+
images: string[];
|
|
8362
|
+
description: string | null;
|
|
8363
|
+
short_description: string | null;
|
|
8364
|
+
price: number | null;
|
|
8365
|
+
currency: string | null;
|
|
8366
|
+
price_string: string | null;
|
|
8367
|
+
was_price: number | null;
|
|
8368
|
+
price_info: WalmartPriceInfo | null;
|
|
8369
|
+
price_per_unit: string | null;
|
|
8370
|
+
rating: number | null;
|
|
8371
|
+
review_count: number | null;
|
|
8372
|
+
in_stock: boolean | null;
|
|
8373
|
+
is_out_of_stock: boolean | null;
|
|
8374
|
+
availability_status: string | null;
|
|
8375
|
+
fulfillment_type: string | null;
|
|
8376
|
+
fulfillment_badges: string[];
|
|
8377
|
+
fulfillment_speed: string[];
|
|
8378
|
+
shipping_option: string | null;
|
|
8379
|
+
seller_id: string | null;
|
|
8380
|
+
seller_name: string | null;
|
|
8381
|
+
seller_type: string | null;
|
|
8382
|
+
is_sponsored: boolean | null;
|
|
8383
|
+
is_two_day_shipping: boolean | null;
|
|
8384
|
+
badges: WalmartBadge[];
|
|
8385
|
+
variants: WalmartVariant[];
|
|
8386
|
+
category: string | null;
|
|
8387
|
+
department_name: string | null;
|
|
8388
|
+
item_type: string | null;
|
|
8389
|
+
condition: string | null;
|
|
8390
|
+
is_preowned: boolean | null;
|
|
8391
|
+
snap_eligible: boolean | null;
|
|
8392
|
+
/** 1-based rank across the merged organic result set. */
|
|
8393
|
+
position: number | null;
|
|
8394
|
+
/** Walmart's raw itemStackPosition — the index of the STACK the item came
|
|
8395
|
+
* from, shared by every item in that stack. Not a rank. */
|
|
8396
|
+
stack_position: number | null;
|
|
8397
|
+
product_location: string | null;
|
|
8398
|
+
additional_offer_count: number | null;
|
|
8399
|
+
}
|
|
8400
|
+
/** A page of search, category, deals or seller-catalogue results. */
|
|
8401
|
+
interface WalmartSearchResponse {
|
|
8402
|
+
query: string | null;
|
|
8403
|
+
url: string | null;
|
|
8404
|
+
page: number;
|
|
8405
|
+
/**
|
|
8406
|
+
* Walmart's OWN claimed total. Deliberately NOT called `total_results`: it
|
|
8407
|
+
* reports ~14,700 for a query that stops returning products after page 10.
|
|
8408
|
+
* It moves correctly when a filter is applied, so it is a useful relative
|
|
8409
|
+
* signal — just not a reachable count. Use `max_page` to bound a crawl.
|
|
8410
|
+
*/
|
|
8411
|
+
total_results_reported: number | null;
|
|
8412
|
+
/** The measured page ceiling for this surface (10 search / 11 browse). */
|
|
8413
|
+
max_page: number | null;
|
|
8414
|
+
result_count: number;
|
|
8415
|
+
has_more_pages: boolean | null;
|
|
8416
|
+
sort: string | null;
|
|
8417
|
+
title: string | null;
|
|
8418
|
+
breadcrumbs: WalmartBreadcrumb[];
|
|
8419
|
+
related_searches: string[];
|
|
8420
|
+
spelling_correction: string | null;
|
|
8421
|
+
items: WalmartSearchItem[];
|
|
8422
|
+
}
|
|
8423
|
+
/** The star histogram and its aggregate counts. */
|
|
8424
|
+
interface WalmartRatingDistribution {
|
|
8425
|
+
average_rating: number | null;
|
|
8426
|
+
rounded_average_rating: number | null;
|
|
8427
|
+
total_review_count: number | null;
|
|
8428
|
+
reviews_with_text_count: number | null;
|
|
8429
|
+
recommended_percentage: number | null;
|
|
8430
|
+
total_media_count: number | null;
|
|
8431
|
+
one_star: number | null;
|
|
8432
|
+
two_star: number | null;
|
|
8433
|
+
three_star: number | null;
|
|
8434
|
+
four_star: number | null;
|
|
8435
|
+
five_star: number | null;
|
|
8436
|
+
one_star_percent: number | null;
|
|
8437
|
+
two_star_percent: number | null;
|
|
8438
|
+
three_star_percent: number | null;
|
|
8439
|
+
four_star_percent: number | null;
|
|
8440
|
+
five_star_percent: number | null;
|
|
8441
|
+
}
|
|
8442
|
+
/** A single customer review. */
|
|
8443
|
+
interface WalmartReview {
|
|
8444
|
+
review_id: string | null;
|
|
8445
|
+
rating: number | null;
|
|
8446
|
+
title: string | null;
|
|
8447
|
+
text: string | null;
|
|
8448
|
+
author: string | null;
|
|
8449
|
+
/** ISO 8601 UTC string. */
|
|
8450
|
+
submitted_at: string | null;
|
|
8451
|
+
/** Unix seconds. */
|
|
8452
|
+
submitted_utc: number | null;
|
|
8453
|
+
verified_purchase: boolean | null;
|
|
8454
|
+
helpful_count: number | null;
|
|
8455
|
+
not_helpful_count: number | null;
|
|
8456
|
+
photos: string[];
|
|
8457
|
+
media: WalmartRaw[];
|
|
8458
|
+
badges: WalmartBadge[];
|
|
8459
|
+
user_badges: WalmartBadge[];
|
|
8460
|
+
seller_name: string | null;
|
|
8461
|
+
fulfilled_by: string | null;
|
|
8462
|
+
condition: string | null;
|
|
8463
|
+
syndication_source: string | null;
|
|
8464
|
+
original_language: string | null;
|
|
8465
|
+
aspects: WalmartRaw[];
|
|
8466
|
+
client_responses: WalmartRaw[];
|
|
8467
|
+
}
|
|
8468
|
+
/** A page of reviews (10 per page — Walmart's size, not adjustable). */
|
|
8469
|
+
interface WalmartReviewsResponse {
|
|
8470
|
+
item_id: string | null;
|
|
8471
|
+
url: string | null;
|
|
8472
|
+
page: number;
|
|
8473
|
+
sort: string | null;
|
|
8474
|
+
result_count: number;
|
|
8475
|
+
distribution: WalmartRatingDistribution | null;
|
|
8476
|
+
aspects: WalmartRaw[];
|
|
8477
|
+
review_summary: string | null;
|
|
8478
|
+
top_positive_review: WalmartReview | null;
|
|
8479
|
+
top_negative_review: WalmartReview | null;
|
|
8480
|
+
reviews: WalmartReview[];
|
|
8481
|
+
}
|
|
8482
|
+
/** A marketplace seller's public profile. */
|
|
8483
|
+
interface WalmartSeller {
|
|
8484
|
+
seller_id: string | null;
|
|
8485
|
+
catalog_seller_id: string | null;
|
|
8486
|
+
name: string | null;
|
|
8487
|
+
display_name: string | null;
|
|
8488
|
+
seller_type: string | null;
|
|
8489
|
+
url: string | null;
|
|
8490
|
+
logo_url: string | null;
|
|
8491
|
+
banner_url: string | null;
|
|
8492
|
+
about: string | null;
|
|
8493
|
+
email: string | null;
|
|
8494
|
+
phone: string | null;
|
|
8495
|
+
address1: string | null;
|
|
8496
|
+
address2: string | null;
|
|
8497
|
+
city: string | null;
|
|
8498
|
+
state: string | null;
|
|
8499
|
+
postal_code: string | null;
|
|
8500
|
+
country: string | null;
|
|
8501
|
+
country_code: string | null;
|
|
8502
|
+
rating: number | null;
|
|
8503
|
+
review_count: number | null;
|
|
8504
|
+
has_seller_badge: boolean | null;
|
|
8505
|
+
is_pro_seller: boolean | null;
|
|
8506
|
+
is_alcohol_seller: boolean | null;
|
|
8507
|
+
deactivation_status: string | null;
|
|
8508
|
+
tax_policy: string | null;
|
|
8509
|
+
}
|
|
8510
|
+
/**
|
|
8511
|
+
* Seller profile.
|
|
8512
|
+
*
|
|
8513
|
+
* No product list: `/seller/{id}` renders its catalogue client-side. Use
|
|
8514
|
+
* `sellers.products()` — it goes through search with a `retailer_id` facet.
|
|
8515
|
+
*/
|
|
8516
|
+
interface WalmartSellerResponse {
|
|
8517
|
+
seller: WalmartSeller;
|
|
8518
|
+
featured_items: WalmartSearchItem[];
|
|
8519
|
+
}
|
|
8520
|
+
/** One day of opening hours. */
|
|
8521
|
+
interface WalmartStoreHours {
|
|
8522
|
+
day: string | null;
|
|
8523
|
+
start: string | null;
|
|
8524
|
+
end: string | null;
|
|
8525
|
+
closed: boolean | null;
|
|
8526
|
+
}
|
|
8527
|
+
/**
|
|
8528
|
+
* An in-store department (pharmacy, deli, auto centre …).
|
|
8529
|
+
*
|
|
8530
|
+
* Each carries its OWN phone and opening hours, which differ from the store's.
|
|
8531
|
+
*/
|
|
8532
|
+
interface WalmartStoreService {
|
|
8533
|
+
name: string | null;
|
|
8534
|
+
display_name: string | null;
|
|
8535
|
+
phone: string | null;
|
|
8536
|
+
open_24_hours: boolean | null;
|
|
8537
|
+
hours: WalmartStoreHours[];
|
|
8538
|
+
}
|
|
8539
|
+
/** A physical Walmart store. */
|
|
8540
|
+
interface WalmartStore {
|
|
8541
|
+
store_id: string | null;
|
|
8542
|
+
name: string | null;
|
|
8543
|
+
display_name: string | null;
|
|
8544
|
+
store_type: string | null;
|
|
8545
|
+
phone: string | null;
|
|
8546
|
+
address1: string | null;
|
|
8547
|
+
address2: string | null;
|
|
8548
|
+
city: string | null;
|
|
8549
|
+
state: string | null;
|
|
8550
|
+
postal_code: string | null;
|
|
8551
|
+
country: string | null;
|
|
8552
|
+
latitude: number | null;
|
|
8553
|
+
longitude: number | null;
|
|
8554
|
+
distance_miles: number | null;
|
|
8555
|
+
timezone: string | null;
|
|
8556
|
+
open_24_hours: boolean | null;
|
|
8557
|
+
is_spark_store: boolean | null;
|
|
8558
|
+
is_glass_eligible: boolean | null;
|
|
8559
|
+
hours: WalmartStoreHours[];
|
|
8560
|
+
services: WalmartStoreService[];
|
|
8561
|
+
access_types: string[];
|
|
8562
|
+
}
|
|
8563
|
+
/** A store plus the stores around it — one fetch, several answers. */
|
|
8564
|
+
interface WalmartStoreResponse {
|
|
8565
|
+
store: WalmartStore;
|
|
8566
|
+
departments: string[];
|
|
8567
|
+
/** Populated only for stores with a fuel station. */
|
|
8568
|
+
fuel_prices: WalmartRaw[];
|
|
8569
|
+
nearby_count: number;
|
|
8570
|
+
nearby_stores: WalmartStore[];
|
|
8571
|
+
}
|
|
8572
|
+
/** One search-box suggestion. */
|
|
8573
|
+
interface WalmartSuggestion {
|
|
8574
|
+
query: string | null;
|
|
8575
|
+
type: string | null;
|
|
8576
|
+
image_url: string | null;
|
|
8577
|
+
url: string | null;
|
|
8578
|
+
department_id: string | null;
|
|
8579
|
+
department_name: string | null;
|
|
8580
|
+
}
|
|
8581
|
+
/** Search-box suggestions for a partial term. */
|
|
8582
|
+
interface WalmartAutocompleteResponse {
|
|
8583
|
+
query: string;
|
|
8584
|
+
result_count: number;
|
|
8585
|
+
suggestions: WalmartSuggestion[];
|
|
8586
|
+
}
|
|
8587
|
+
/** A supported Walmart market. Only `US` / walmart.com is supported. */
|
|
8588
|
+
interface WalmartMarket {
|
|
8589
|
+
code: string;
|
|
8590
|
+
name: string;
|
|
8591
|
+
domain: string;
|
|
8592
|
+
currency: string;
|
|
8593
|
+
language: string;
|
|
8594
|
+
}
|
|
8595
|
+
/** The supported-markets list. */
|
|
8596
|
+
interface WalmartMarketsResponse {
|
|
8597
|
+
result_count: number;
|
|
8598
|
+
markets: WalmartMarket[];
|
|
8599
|
+
}
|
|
8600
|
+
/**
|
|
8601
|
+
* Result ordering for `/search` and `/sellers/{id}/products`.
|
|
8602
|
+
*
|
|
8603
|
+
* Not available on `/category` — Walmart's browse pages ignore sort.
|
|
8604
|
+
*/
|
|
8605
|
+
type WalmartSortBy = "best_match" | "best_seller" | "price_low" | "price_high" | "rating_high" | "new";
|
|
8606
|
+
/** Review ordering for `/products/{id}/reviews`. */
|
|
8607
|
+
type WalmartReviewSort = "relevancy" | "submission-desc" | "submission-asc" | "rating-desc" | "rating-asc" | "helpful";
|
|
8608
|
+
/** Options for the search endpoint. */
|
|
8609
|
+
interface WalmartSearchParams {
|
|
8610
|
+
/** Page number, 1-10. Results dry up past page 10 whatever the total says. */
|
|
8611
|
+
page?: number;
|
|
8612
|
+
sort?: WalmartSortBy;
|
|
8613
|
+
min_price?: number;
|
|
8614
|
+
max_price?: number;
|
|
8615
|
+
/**
|
|
8616
|
+
* Facet filter, e.g. `"brand:HP"`. Facets can be APPLIED but not enumerated —
|
|
8617
|
+
* Walmart renders the filter rail client-side.
|
|
8618
|
+
*/
|
|
8619
|
+
facet?: string;
|
|
8620
|
+
}
|
|
8621
|
+
/** Options for the category-browse endpoint (no `sort` — browse ignores it). */
|
|
8622
|
+
interface WalmartCategoryParams {
|
|
8623
|
+
/** Page number, 1-11. */
|
|
8624
|
+
page?: number;
|
|
8625
|
+
min_price?: number;
|
|
8626
|
+
max_price?: number;
|
|
8627
|
+
/** Facet filter, e.g. `"brand:HP"`. */
|
|
8628
|
+
facet?: string;
|
|
8629
|
+
}
|
|
8630
|
+
/** Options for the deals endpoint. */
|
|
8631
|
+
interface WalmartDealsParams {
|
|
8632
|
+
/** Page number, 1-11. */
|
|
8633
|
+
page?: number;
|
|
8634
|
+
min_price?: number;
|
|
8635
|
+
max_price?: number;
|
|
8636
|
+
}
|
|
8637
|
+
/** Options for the product-reviews endpoint. */
|
|
8638
|
+
interface WalmartReviewsParams {
|
|
8639
|
+
/** Page number, 1-100. 10 reviews per page. */
|
|
8640
|
+
page?: number;
|
|
8641
|
+
sort?: WalmartReviewSort;
|
|
8642
|
+
}
|
|
8643
|
+
/** Options for the seller-catalogue endpoint. */
|
|
8644
|
+
interface WalmartSellerProductsParams {
|
|
8645
|
+
/** Page number, 1-10. */
|
|
8646
|
+
page?: number;
|
|
8647
|
+
sort?: WalmartSortBy;
|
|
8648
|
+
}
|
|
8649
|
+
|
|
8650
|
+
/**
|
|
8651
|
+
* Walmart Search API client.
|
|
8652
|
+
*
|
|
8653
|
+
* Search, category browse, the deals feed, and search-box autocomplete.
|
|
8654
|
+
*/
|
|
8655
|
+
|
|
8656
|
+
/**
|
|
8657
|
+
* Client for Walmart search, category, deals and autocomplete endpoints.
|
|
8658
|
+
*
|
|
8659
|
+
* @example
|
|
8660
|
+
* ```typescript
|
|
8661
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
8662
|
+
*
|
|
8663
|
+
* const results = await client.walmart.search.search("laptop", { sort: "price_low" });
|
|
8664
|
+
* for (const item of results.items) {
|
|
8665
|
+
* console.log(`${item.position}. ${item.name} — $${item.price}`);
|
|
8666
|
+
* }
|
|
8667
|
+
*
|
|
8668
|
+
* const browse = await client.walmart.search.category("electronics/3944");
|
|
8669
|
+
* const deals = await client.walmart.search.deals();
|
|
8670
|
+
* const suggestions = await client.walmart.search.autocomplete("lapt");
|
|
8671
|
+
* ```
|
|
8672
|
+
*/
|
|
8673
|
+
declare class SearchClient$5 {
|
|
8674
|
+
private readonly client;
|
|
8675
|
+
constructor(client: BaseClient);
|
|
8676
|
+
/**
|
|
8677
|
+
* Search walmart.com.
|
|
8678
|
+
*
|
|
8679
|
+
* @param query - Search keywords, e.g. `"laptop"`.
|
|
8680
|
+
* @param params - Optional page (1-10), sort, price and facet filters.
|
|
8681
|
+
* @returns A page of ~40-60 organic products.
|
|
8682
|
+
*
|
|
8683
|
+
* @remarks
|
|
8684
|
+
* Results dry up after page 10 regardless of `total_results_reported`; bound
|
|
8685
|
+
* a crawl with `max_page`. Sponsored ad tiles are dropped, sponsored
|
|
8686
|
+
* *products* are returned and flagged `is_sponsored`.
|
|
8687
|
+
*/
|
|
8688
|
+
search(query: string, params?: WalmartSearchParams): Promise<WalmartSearchResponse>;
|
|
8689
|
+
/**
|
|
8690
|
+
* Browse a Walmart category. Same result shape as {@link search}.
|
|
8691
|
+
*
|
|
8692
|
+
* @param path - Browse path, e.g. `"electronics/3944"`, or a `/cp/...` path.
|
|
8693
|
+
* @param params - Optional page (1-11), price and facet filters.
|
|
8694
|
+
*
|
|
8695
|
+
* @remarks
|
|
8696
|
+
* No `sort`: Walmart's browse pages ignore it (verified). Sort on
|
|
8697
|
+
* {@link search} instead.
|
|
8698
|
+
*/
|
|
8699
|
+
category(path: string, params?: WalmartCategoryParams): Promise<WalmartSearchResponse>;
|
|
8700
|
+
/**
|
|
8701
|
+
* Walmart's current deals, rollbacks and clearance.
|
|
8702
|
+
*
|
|
8703
|
+
* @param params - Optional page (1-11) and price filters.
|
|
8704
|
+
*/
|
|
8705
|
+
deals(params?: WalmartDealsParams): Promise<WalmartSearchResponse>;
|
|
8706
|
+
/**
|
|
8707
|
+
* Walmart search-box suggestions — the cheapest call in this API.
|
|
8708
|
+
*
|
|
8709
|
+
* @param query - Partial search term, e.g. `"lapt"`.
|
|
8710
|
+
*/
|
|
8711
|
+
autocomplete(query: string): Promise<WalmartAutocompleteResponse>;
|
|
8712
|
+
}
|
|
8713
|
+
|
|
8714
|
+
/**
|
|
8715
|
+
* Walmart Products API client.
|
|
8716
|
+
*
|
|
8717
|
+
* Product detail and paginated customer reviews.
|
|
8718
|
+
*/
|
|
8719
|
+
|
|
8720
|
+
/**
|
|
8721
|
+
* Client for Walmart product endpoints (detail, reviews).
|
|
8722
|
+
*
|
|
8723
|
+
* @example
|
|
8724
|
+
* ```typescript
|
|
8725
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
8726
|
+
*
|
|
8727
|
+
* const product = await client.walmart.products.get("5689919121");
|
|
8728
|
+
* console.log(product.name, product.price, product.seller?.seller_name);
|
|
8729
|
+
*
|
|
8730
|
+
* const reviews = await client.walmart.products.reviews("5689919121", {
|
|
8731
|
+
* sort: "helpful",
|
|
8732
|
+
* });
|
|
8733
|
+
* ```
|
|
8734
|
+
*/
|
|
8735
|
+
declare class ProductsClient {
|
|
8736
|
+
private readonly client;
|
|
8737
|
+
constructor(client: BaseClient);
|
|
8738
|
+
/**
|
|
8739
|
+
* Get full product detail.
|
|
8740
|
+
*
|
|
8741
|
+
* @param itemId - Walmart `usItemId`, e.g. `"5689919121"`.
|
|
8742
|
+
* @throws NotFoundError - If the item doesn't exist.
|
|
8743
|
+
*
|
|
8744
|
+
* @remarks
|
|
8745
|
+
* Only the numeric id is needed — the SEO slug is decorative and ignored by
|
|
8746
|
+
* Walmart's router. Prices and availability are store-specific; the resolved
|
|
8747
|
+
* store is on `location`.
|
|
8748
|
+
*/
|
|
8749
|
+
get(itemId: string): Promise<WalmartProduct>;
|
|
8750
|
+
/**
|
|
8751
|
+
* Get paginated customer reviews with the full star histogram.
|
|
8752
|
+
*
|
|
8753
|
+
* @param itemId - Walmart `usItemId`.
|
|
8754
|
+
* @param params - Optional page (1-100) and sort.
|
|
8755
|
+
* @returns Reviews plus the rating breakdown, aspects, and the most-helpful
|
|
8756
|
+
* positive and negative reviews.
|
|
8757
|
+
*
|
|
8758
|
+
* @remarks 10 reviews per page — Walmart's page size, not adjustable.
|
|
8759
|
+
*/
|
|
8760
|
+
reviews(itemId: string, params?: WalmartReviewsParams): Promise<WalmartReviewsResponse>;
|
|
8761
|
+
}
|
|
8762
|
+
|
|
8763
|
+
/**
|
|
8764
|
+
* Walmart Sellers API client.
|
|
8765
|
+
*
|
|
8766
|
+
* Marketplace seller profile and seller catalogue.
|
|
8767
|
+
*/
|
|
8768
|
+
|
|
8769
|
+
/**
|
|
8770
|
+
* Client for Walmart seller endpoints (profile, products).
|
|
8771
|
+
*
|
|
8772
|
+
* @example
|
|
8773
|
+
* ```typescript
|
|
8774
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
8775
|
+
*
|
|
8776
|
+
* const seller = await client.walmart.sellers.get("101040442");
|
|
8777
|
+
* console.log(seller.seller.name, seller.seller.rating);
|
|
8778
|
+
*
|
|
8779
|
+
* // `query` is required — the seller facet alone returns nothing.
|
|
8780
|
+
* const catalogue = await client.walmart.sellers.products("101040442", "headphones");
|
|
8781
|
+
* ```
|
|
8782
|
+
*/
|
|
8783
|
+
declare class SellersClient$1 {
|
|
8784
|
+
private readonly client;
|
|
8785
|
+
constructor(client: BaseClient);
|
|
8786
|
+
/**
|
|
8787
|
+
* Get a marketplace seller's profile — contact details, address, rating,
|
|
8788
|
+
* policies.
|
|
8789
|
+
*
|
|
8790
|
+
* @param sellerId - Numeric catalog seller id, e.g. `"101040442"`. This is
|
|
8791
|
+
* the `seller.catalog_seller_id` on a product — NOT the 32-char hex
|
|
8792
|
+
* `seller_id`, which 404s as a storefront URL.
|
|
8793
|
+
*
|
|
8794
|
+
* @remarks
|
|
8795
|
+
* No page parameter and no product list: adding `?page=` makes Walmart's own
|
|
8796
|
+
* SSR throw. Use {@link products} for the catalogue.
|
|
8797
|
+
*/
|
|
8798
|
+
get(sellerId: string): Promise<WalmartSellerResponse>;
|
|
8799
|
+
/**
|
|
8800
|
+
* List a marketplace seller's catalogue.
|
|
8801
|
+
*
|
|
8802
|
+
* @param sellerId - Numeric catalog seller id.
|
|
8803
|
+
* @param query - Search term scoping the catalogue. REQUIRED — this goes
|
|
8804
|
+
* through search with a `retailer_id` facet, and the facet alone returns
|
|
8805
|
+
* zero results.
|
|
8806
|
+
* @param params - Optional page (1-10) and sort.
|
|
8807
|
+
*/
|
|
8808
|
+
products(sellerId: string, query: string, params?: WalmartSellerProductsParams): Promise<WalmartSearchResponse>;
|
|
8809
|
+
}
|
|
8810
|
+
|
|
8811
|
+
/**
|
|
8812
|
+
* Walmart Stores API client.
|
|
8813
|
+
*/
|
|
8814
|
+
|
|
8815
|
+
/**
|
|
8816
|
+
* Client for Walmart store endpoints.
|
|
8817
|
+
*
|
|
8818
|
+
* @example
|
|
8819
|
+
* ```typescript
|
|
8820
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
8821
|
+
*
|
|
8822
|
+
* const res = await client.walmart.stores.get("100");
|
|
8823
|
+
* console.log(res.store.address1, res.store.hours);
|
|
8824
|
+
* for (const svc of res.store.services) {
|
|
8825
|
+
* console.log(svc.display_name, svc.phone);
|
|
8826
|
+
* }
|
|
8827
|
+
* ```
|
|
8828
|
+
*/
|
|
8829
|
+
declare class StoresClient {
|
|
8830
|
+
private readonly client;
|
|
8831
|
+
constructor(client: BaseClient);
|
|
8832
|
+
/**
|
|
8833
|
+
* Get store detail plus every store around it.
|
|
8834
|
+
*
|
|
8835
|
+
* @param storeId - Walmart store number, e.g. `"100"`.
|
|
8836
|
+
* @returns The store's address, geo, phone, opening hours and per-department
|
|
8837
|
+
* services (each with its own hours and phone), plus ~30 nearby stores.
|
|
8838
|
+
*/
|
|
8839
|
+
get(storeId: string): Promise<WalmartStoreResponse>;
|
|
8840
|
+
}
|
|
8841
|
+
|
|
8842
|
+
/**
|
|
8843
|
+
* Walmart Reference Data API client.
|
|
8844
|
+
*/
|
|
8845
|
+
|
|
8846
|
+
/**
|
|
8847
|
+
* Client for Walmart reference data endpoints (markets, health).
|
|
8848
|
+
*
|
|
8849
|
+
* @example
|
|
8850
|
+
* ```typescript
|
|
8851
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
8852
|
+
*
|
|
8853
|
+
* const markets = await client.walmart.reference.markets();
|
|
8854
|
+
* ```
|
|
8855
|
+
*/
|
|
8856
|
+
declare class ReferenceClient$6 {
|
|
8857
|
+
private readonly client;
|
|
8858
|
+
constructor(client: BaseClient);
|
|
8859
|
+
/**
|
|
8860
|
+
* Get the supported Walmart markets.
|
|
8861
|
+
*
|
|
8862
|
+
* @remarks
|
|
8863
|
+
* Only walmart.com (US) is supported — walmart.ca and walmart.com.mx run on
|
|
8864
|
+
* different platforms with different payload shapes, so they are not claimed
|
|
8865
|
+
* here rather than shipped broken.
|
|
8866
|
+
*/
|
|
8867
|
+
markets(): Promise<WalmartMarketsResponse>;
|
|
8868
|
+
/**
|
|
8869
|
+
* Check the health of the Walmart scraper service.
|
|
8870
|
+
*
|
|
8871
|
+
* @returns The raw health payload from the scraper service.
|
|
8872
|
+
*/
|
|
8873
|
+
health(): Promise<unknown>;
|
|
8874
|
+
}
|
|
8875
|
+
|
|
8876
|
+
/**
|
|
8877
|
+
* Walmart API client.
|
|
8878
|
+
*
|
|
8879
|
+
* Provides access to all Walmart API endpoints through specialized sub-clients.
|
|
8880
|
+
* US-only (walmart.com) — there is no market or country parameter.
|
|
8881
|
+
*/
|
|
8882
|
+
|
|
8883
|
+
/**
|
|
8884
|
+
* Walmart API client with access to all Walmart endpoints.
|
|
8885
|
+
*
|
|
8886
|
+
* Sub-clients:
|
|
8887
|
+
* - `search` - Search, category browse, deals, autocomplete
|
|
8888
|
+
* - `products` - Product detail and reviews
|
|
8889
|
+
* - `sellers` - Marketplace seller profile and catalogue
|
|
8890
|
+
* - `stores` - Store detail and nearby stores
|
|
8891
|
+
* - `reference` - Reference data (markets) and service health
|
|
8892
|
+
*
|
|
8893
|
+
* @example
|
|
8894
|
+
* ```typescript
|
|
8895
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
8896
|
+
*
|
|
8897
|
+
* const results = await client.walmart.search.search("laptop");
|
|
8898
|
+
* const product = await client.walmart.products.get("5689919121");
|
|
8899
|
+
* const reviews = await client.walmart.products.reviews("5689919121");
|
|
8900
|
+
* const seller = await client.walmart.sellers.get("101040442");
|
|
8901
|
+
* const store = await client.walmart.stores.get("100");
|
|
8902
|
+
* const markets = await client.walmart.reference.markets();
|
|
8903
|
+
* ```
|
|
8904
|
+
*/
|
|
8905
|
+
declare class WalmartClient {
|
|
8906
|
+
/** Client for search, category browse, deals and autocomplete */
|
|
8907
|
+
readonly search: SearchClient$5;
|
|
8908
|
+
/** Client for product detail and reviews */
|
|
8909
|
+
readonly products: ProductsClient;
|
|
8910
|
+
/** Client for marketplace seller profile and catalogue */
|
|
8911
|
+
readonly sellers: SellersClient$1;
|
|
8912
|
+
/** Client for store detail and nearby stores */
|
|
8913
|
+
readonly stores: StoresClient;
|
|
8914
|
+
/** Client for reference data (markets) and service health */
|
|
8915
|
+
readonly reference: ReferenceClient$6;
|
|
8916
|
+
/**
|
|
8917
|
+
* Create a new Walmart client.
|
|
8918
|
+
*
|
|
8919
|
+
* @param client - The base HTTP client for making requests.
|
|
8920
|
+
*/
|
|
8921
|
+
constructor(client: BaseClient);
|
|
8922
|
+
}
|
|
8923
|
+
|
|
8040
8924
|
/**
|
|
8041
8925
|
* TypeScript types for YouTube API responses.
|
|
8042
8926
|
*
|
|
@@ -13340,6 +14224,8 @@ declare class ScrapeBadger {
|
|
|
13340
14224
|
readonly tiktok: TikTokClient;
|
|
13341
14225
|
/** eBay scraper API client — 12 endpoints across 18 markets */
|
|
13342
14226
|
readonly ebay: EbayClient;
|
|
14227
|
+
/** Walmart scraper API client — 11 endpoints (walmart.com, US-only) */
|
|
14228
|
+
readonly walmart: WalmartClient;
|
|
13343
14229
|
/** YouTube scraper API client — 39 endpoints */
|
|
13344
14230
|
readonly youtube: YoutubeClient;
|
|
13345
14231
|
/** Realtor scraper API client — 4 endpoints across 2 markets (us, ca) */
|
|
@@ -13386,4 +14272,4 @@ declare class ScrapeBadger {
|
|
|
13386
14272
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
13387
14273
|
}
|
|
13388
14274
|
|
|
13389
|
-
export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 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$1 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$5 as AmazonMarketInfo, type MarketsResponse$8 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$3 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$1 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$9 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$8 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$7 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$2 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, AskClient as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient as ChatGPTBrandClient, type ChatGPTBrandVisibilityParams, type ChatGPTBrandVisibilityResponse, type ChatGPTCitation, ChatGPTClient, type ChatGPTCompetitorMention, type ChatGPTModel, type ChatGPTModelsParams, type ChatGPTModelsResponse, ReferenceClient as ChatGPTReferenceClient, type ChatGPTSearchResult, type ChatGPTWebSearchMode, type DepopCard, DepopClient, type DepopMarket, type DepopMarketsResponse, type DepopProductDetail, type DepopProductParams, type SearchMeta as DepopSearchMeta, type DepopSearchParams, type DepopSearchResponse, type DepopShopProfile, type DepopUserParams, type DepopUserProductsParams, type DepopUserProductsResponse, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$6 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$5 as EbaySearchClient, type EbaySearchParams, type SearchResponse$6 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$1 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, 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$2 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$b as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse$1 as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse$1 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$9 as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$3 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$3 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$2 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$3 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type Address as LinkedInAddress, LinkedInClient, type Company as LinkedInCompany, type LinkedInCompanyJobsParams, type LinkedInCountryParams, type CourseInstructor as LinkedInCourseInstructor, type LinkedInGeoSuggestResponse, type GeoSuggestion as LinkedInGeoSuggestion, type LinkedInHealthResponse, type JobCard as LinkedInJobCard, type JobDetail as LinkedInJobDetail, type JobsSearchMeta as LinkedInJobsSearchMeta, type LinkedInJobsSearchParams, type LinkedInJobsSearchResponse, type LearningCourse as LinkedInLearningCourse, type Post as LinkedInPost, type PostComment as LinkedInPostComment, type Profile as LinkedInProfile, type ProfileEducation as LinkedInProfileEducation, type ProfileExperience as LinkedInProfileExperience, type School as LinkedInSchool, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient$1 as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, 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 Address$2 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$4 as RealtorReferenceClient, type School$2 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$a as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 as RedditUsersClient, type RedditWikiPage, type Address$3 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$3 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$8 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$7 as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$7 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$6 as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, 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$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$a as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$a as VintedReferenceClient, SearchClient$c as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, WebClient, type WikiPageResponse, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$3 as YoutubeMarketInfo, type MarketsResponse$5 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$5 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$4 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$5 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address$1 as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$2 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School$1 as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|
|
14275
|
+
export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 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$1 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$5 as AmazonMarketInfo, type MarketsResponse$8 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$3 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$2 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$a as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$9 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$7 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$3 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, AskClient as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient as ChatGPTBrandClient, type ChatGPTBrandVisibilityParams, type ChatGPTBrandVisibilityResponse, type ChatGPTCitation, ChatGPTClient, type ChatGPTCompetitorMention, type ChatGPTModel, type ChatGPTModelsParams, type ChatGPTModelsResponse, ReferenceClient as ChatGPTReferenceClient, type ChatGPTSearchResult, type ChatGPTWebSearchMode, type DepopCard, DepopClient, type DepopMarket, type DepopMarketsResponse, type DepopProductDetail, type DepopProductParams, type SearchMeta as DepopSearchMeta, type DepopSearchParams, type DepopSearchResponse, type DepopShopProfile, type DepopUserParams, type DepopUserProductsParams, type DepopUserProductsResponse, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$7 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$6 as EbaySearchClient, type EbaySearchParams, type SearchResponse$6 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$2 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, 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$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$c as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse$1 as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse$1 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$a as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$3 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$3 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$2 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$3 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type Address as LinkedInAddress, LinkedInClient, type Company as LinkedInCompany, type LinkedInCompanyJobsParams, type LinkedInCountryParams, type CourseInstructor as LinkedInCourseInstructor, type LinkedInGeoSuggestResponse, type GeoSuggestion as LinkedInGeoSuggestion, type LinkedInHealthResponse, type JobCard as LinkedInJobCard, type JobDetail as LinkedInJobDetail, type JobsSearchMeta as LinkedInJobsSearchMeta, type LinkedInJobsSearchParams, type LinkedInJobsSearchResponse, type LearningCourse as LinkedInLearningCourse, type Post as LinkedInPost, type PostComment as LinkedInPostComment, type Profile as LinkedInProfile, type ProfileEducation as LinkedInProfileEducation, type ProfileExperience as LinkedInProfileExperience, type School as LinkedInSchool, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient$1 as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, 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 Address$2 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$4 as RealtorReferenceClient, type School$2 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$b as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 as RedditUsersClient, type RedditWikiPage, type Address$3 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$3 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient$1 as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$9 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$8 as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$8 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$7 as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, 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$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$a as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$b as VintedReferenceClient, SearchClient$d as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, type WalmartAutocompleteResponse, type WalmartBadge, type WalmartBreadcrumb, type WalmartCategoryParams, WalmartClient, type WalmartConditionOffer, type WalmartDealsParams, type WalmartEmbeddedSeller, type WalmartFulfillmentOption, type WalmartFulfillmentSummary, type WalmartImage, type WalmartLocationContext, type WalmartMarket, type WalmartMarketsResponse, type WalmartNameValue, type WalmartNutritionFacts, type WalmartPrice, type WalmartPriceInfo, type WalmartPriceRange, type WalmartProduct, ProductsClient as WalmartProductsClient, type WalmartPromotion, type WalmartRatingDistribution, type WalmartRaw, ReferenceClient$6 as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$5 as WalmartSearchClient, type WalmartSearchItem, type WalmartSearchParams, type WalmartSearchResponse, type WalmartSeller, type WalmartSellerProductsParams, type WalmartSellerResponse, SellersClient$1 as WalmartSellersClient, type WalmartSortBy, type WalmartSpecificationGroup, type WalmartStore, type WalmartStoreHours, type WalmartStoreResponse, type WalmartStoreService, StoresClient as WalmartStoresClient, type WalmartSuggestion, type WalmartVariant, type WalmartVideo, type WalmartWarranty, WebClient, type WikiPageResponse, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$3 as YoutubeMarketInfo, type MarketsResponse$5 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$5 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$4 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$5 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address$1 as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$2 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School$1 as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|