scrapebadger 0.15.6 → 0.16.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 +480 -51
- package/dist/index.d.ts +480 -51
- package/dist/index.js +135 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +135 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -411,7 +411,7 @@ interface VintedPagination {
|
|
|
411
411
|
/**
|
|
412
412
|
* Response from the search endpoint.
|
|
413
413
|
*/
|
|
414
|
-
interface SearchResponse$
|
|
414
|
+
interface SearchResponse$7 {
|
|
415
415
|
/** List of matching items */
|
|
416
416
|
items: VintedItemSummary[];
|
|
417
417
|
/** Pagination metadata */
|
|
@@ -479,7 +479,7 @@ interface StatusesResponse {
|
|
|
479
479
|
/**
|
|
480
480
|
* Response from the markets endpoint.
|
|
481
481
|
*/
|
|
482
|
-
interface MarketsResponse$
|
|
482
|
+
interface MarketsResponse$8 {
|
|
483
483
|
/** List of available markets */
|
|
484
484
|
markets: VintedMarket[];
|
|
485
485
|
}
|
|
@@ -586,7 +586,7 @@ declare class SearchClient$a {
|
|
|
586
586
|
* }
|
|
587
587
|
* ```
|
|
588
588
|
*/
|
|
589
|
-
search(params: VintedSearchParams): Promise<SearchResponse$
|
|
589
|
+
search(params: VintedSearchParams): Promise<SearchResponse$7>;
|
|
590
590
|
}
|
|
591
591
|
|
|
592
592
|
/**
|
|
@@ -819,7 +819,7 @@ declare class ReferenceClient$8 {
|
|
|
819
819
|
* }
|
|
820
820
|
* ```
|
|
821
821
|
*/
|
|
822
|
-
markets(): Promise<MarketsResponse$
|
|
822
|
+
markets(): Promise<MarketsResponse$8>;
|
|
823
823
|
}
|
|
824
824
|
|
|
825
825
|
/**
|
|
@@ -3900,7 +3900,7 @@ interface AutocompleteSuggestion$1 {
|
|
|
3900
3900
|
alias: string | null;
|
|
3901
3901
|
}
|
|
3902
3902
|
/** Response from the /search endpoint. */
|
|
3903
|
-
interface SearchResponse$
|
|
3903
|
+
interface SearchResponse$6 {
|
|
3904
3904
|
query: string;
|
|
3905
3905
|
domain: string;
|
|
3906
3906
|
results: SearchResult$3[];
|
|
@@ -4001,7 +4001,7 @@ interface AutocompleteResponse$4 {
|
|
|
4001
4001
|
suggestions: AutocompleteSuggestion$1[];
|
|
4002
4002
|
}
|
|
4003
4003
|
/** Response from the /markets endpoint. */
|
|
4004
|
-
interface MarketsResponse$
|
|
4004
|
+
interface MarketsResponse$7 {
|
|
4005
4005
|
markets: MarketInfo$4[];
|
|
4006
4006
|
}
|
|
4007
4007
|
/** Response from the /categories endpoint. */
|
|
@@ -4139,7 +4139,7 @@ declare class SearchClient$7 {
|
|
|
4139
4139
|
* @throws AuthenticationError - If the API key is invalid.
|
|
4140
4140
|
* @throws ValidationError - If the parameters are invalid.
|
|
4141
4141
|
*/
|
|
4142
|
-
search(params: AmazonSearchParams): Promise<SearchResponse$
|
|
4142
|
+
search(params: AmazonSearchParams): Promise<SearchResponse$6>;
|
|
4143
4143
|
/**
|
|
4144
4144
|
* Get Amazon keyword autocomplete suggestions.
|
|
4145
4145
|
*
|
|
@@ -4332,7 +4332,7 @@ declare class ReferenceClient$7 {
|
|
|
4332
4332
|
*
|
|
4333
4333
|
* @returns Markets response with all supported marketplaces.
|
|
4334
4334
|
*/
|
|
4335
|
-
markets(): Promise<MarketsResponse$
|
|
4335
|
+
markets(): Promise<MarketsResponse$7>;
|
|
4336
4336
|
/**
|
|
4337
4337
|
* Get the reference department / category aliases.
|
|
4338
4338
|
*
|
|
@@ -4604,7 +4604,7 @@ interface ShopeeMarket {
|
|
|
4604
4604
|
/**
|
|
4605
4605
|
* Response from the /v1/shopee/markets endpoint.
|
|
4606
4606
|
*/
|
|
4607
|
-
interface MarketsResponse$
|
|
4607
|
+
interface MarketsResponse$6 {
|
|
4608
4608
|
markets: ShopeeMarket[];
|
|
4609
4609
|
}
|
|
4610
4610
|
/** Parameters for searching Shopee products. */
|
|
@@ -4810,7 +4810,7 @@ declare class ReferenceClient$6 {
|
|
|
4810
4810
|
*
|
|
4811
4811
|
* @returns Markets response with all supported Shopee markets (0 credits).
|
|
4812
4812
|
*/
|
|
4813
|
-
markets(): Promise<MarketsResponse$
|
|
4813
|
+
markets(): Promise<MarketsResponse$6>;
|
|
4814
4814
|
/**
|
|
4815
4815
|
* Get the full category tree for a Shopee market.
|
|
4816
4816
|
*
|
|
@@ -6279,7 +6279,7 @@ interface AutocompleteSuggestion {
|
|
|
6279
6279
|
value: string;
|
|
6280
6280
|
}
|
|
6281
6281
|
/** Response from the /search and /completed endpoints. */
|
|
6282
|
-
interface SearchResponse$
|
|
6282
|
+
interface SearchResponse$5 {
|
|
6283
6283
|
query: string | null;
|
|
6284
6284
|
domain: string;
|
|
6285
6285
|
category_id: string | null;
|
|
@@ -6348,7 +6348,7 @@ interface AutocompleteResponse$3 {
|
|
|
6348
6348
|
suggestions: AutocompleteSuggestion[];
|
|
6349
6349
|
}
|
|
6350
6350
|
/** Response from the /markets endpoint. */
|
|
6351
|
-
interface MarketsResponse$
|
|
6351
|
+
interface MarketsResponse$5 {
|
|
6352
6352
|
markets: MarketInfo$3[];
|
|
6353
6353
|
}
|
|
6354
6354
|
/** Response from the /categories endpoint. */
|
|
@@ -6500,14 +6500,14 @@ declare class SearchClient$4 {
|
|
|
6500
6500
|
* @throws AuthenticationError - If the API key is invalid.
|
|
6501
6501
|
* @throws ValidationError - If the parameters are invalid.
|
|
6502
6502
|
*/
|
|
6503
|
-
search(params: EbaySearchParams): Promise<SearchResponse$
|
|
6503
|
+
search(params: EbaySearchParams): Promise<SearchResponse$5>;
|
|
6504
6504
|
/**
|
|
6505
6505
|
* Search completed / sold listings — eBay's sold-price history.
|
|
6506
6506
|
*
|
|
6507
6507
|
* @param params - Search parameters including query, filters, and pagination.
|
|
6508
6508
|
* @returns Search results (with `sold: true`), facets, and pagination.
|
|
6509
6509
|
*/
|
|
6510
|
-
completed(params: EbayCompletedParams): Promise<SearchResponse$
|
|
6510
|
+
completed(params: EbayCompletedParams): Promise<SearchResponse$5>;
|
|
6511
6511
|
/**
|
|
6512
6512
|
* Get eBay keyword autocomplete suggestions.
|
|
6513
6513
|
*
|
|
@@ -6678,7 +6678,7 @@ declare class ReferenceClient$4 {
|
|
|
6678
6678
|
*
|
|
6679
6679
|
* @returns Markets response with all supported marketplaces.
|
|
6680
6680
|
*/
|
|
6681
|
-
markets(): Promise<MarketsResponse$
|
|
6681
|
+
markets(): Promise<MarketsResponse$5>;
|
|
6682
6682
|
}
|
|
6683
6683
|
|
|
6684
6684
|
/**
|
|
@@ -7228,7 +7228,7 @@ interface SearchChip {
|
|
|
7228
7228
|
/**
|
|
7229
7229
|
* A page of search results.
|
|
7230
7230
|
*/
|
|
7231
|
-
interface SearchResponse$
|
|
7231
|
+
interface SearchResponse$4 {
|
|
7232
7232
|
query: string | null;
|
|
7233
7233
|
results: SearchResult[];
|
|
7234
7234
|
total_results: number | null;
|
|
@@ -7477,7 +7477,7 @@ interface MarketInfo$2 {
|
|
|
7477
7477
|
/**
|
|
7478
7478
|
* Response from the /markets endpoint.
|
|
7479
7479
|
*/
|
|
7480
|
-
interface MarketsResponse$
|
|
7480
|
+
interface MarketsResponse$4 {
|
|
7481
7481
|
markets: MarketInfo$2[];
|
|
7482
7482
|
}
|
|
7483
7483
|
/** Result-type filter for search. */
|
|
@@ -7679,7 +7679,7 @@ declare class SearchClient$3 {
|
|
|
7679
7679
|
* @throws AuthenticationError - If the API key is invalid.
|
|
7680
7680
|
* @throws ValidationError - If the parameters are invalid.
|
|
7681
7681
|
*/
|
|
7682
|
-
search(params: YoutubeSearchParams): Promise<SearchResponse$
|
|
7682
|
+
search(params: YoutubeSearchParams): Promise<SearchResponse$4>;
|
|
7683
7683
|
/**
|
|
7684
7684
|
* Get YouTube keyword autocomplete suggestions.
|
|
7685
7685
|
*
|
|
@@ -7893,7 +7893,7 @@ declare class ChannelsClient {
|
|
|
7893
7893
|
* @param options - The required query plus optional continuation and region.
|
|
7894
7894
|
* @returns A page of search results scoped to the channel.
|
|
7895
7895
|
*/
|
|
7896
|
-
search(channelId: string, options: YoutubeChannelSearchParams): Promise<SearchResponse$
|
|
7896
|
+
search(channelId: string, options: YoutubeChannelSearchParams): Promise<SearchResponse$4>;
|
|
7897
7897
|
/**
|
|
7898
7898
|
* Resolve a @handle or URL to canonical YouTube ids.
|
|
7899
7899
|
*
|
|
@@ -8120,7 +8120,7 @@ declare class MusicClient {
|
|
|
8120
8120
|
* @param params - The required query plus optional continuation and region.
|
|
8121
8121
|
* @returns A page of search results with a continuation token.
|
|
8122
8122
|
*/
|
|
8123
|
-
search(params: YoutubeMusicSearchParams): Promise<SearchResponse$
|
|
8123
|
+
search(params: YoutubeMusicSearchParams): Promise<SearchResponse$4>;
|
|
8124
8124
|
}
|
|
8125
8125
|
|
|
8126
8126
|
/**
|
|
@@ -8170,7 +8170,7 @@ declare class ReferenceClient$3 {
|
|
|
8170
8170
|
*
|
|
8171
8171
|
* @returns The supported scraper markets.
|
|
8172
8172
|
*/
|
|
8173
|
-
markets(): Promise<MarketsResponse$
|
|
8173
|
+
markets(): Promise<MarketsResponse$4>;
|
|
8174
8174
|
}
|
|
8175
8175
|
|
|
8176
8176
|
/**
|
|
@@ -8275,7 +8275,7 @@ interface Address$1 {
|
|
|
8275
8275
|
coordinate?: Coordinate | null;
|
|
8276
8276
|
}
|
|
8277
8277
|
/** A property photo with multiple resolutions. */
|
|
8278
|
-
interface Photo$
|
|
8278
|
+
interface Photo$2 {
|
|
8279
8279
|
href?: string | null;
|
|
8280
8280
|
href_high?: string | null;
|
|
8281
8281
|
href_med?: string | null;
|
|
@@ -8300,7 +8300,7 @@ interface Office {
|
|
|
8300
8300
|
address?: Address$1 | null;
|
|
8301
8301
|
}
|
|
8302
8302
|
/** A listing agent. */
|
|
8303
|
-
interface Agent$
|
|
8303
|
+
interface Agent$2 {
|
|
8304
8304
|
agent_id?: string | null;
|
|
8305
8305
|
name?: string | null;
|
|
8306
8306
|
first_name?: string | null;
|
|
@@ -8414,7 +8414,7 @@ interface Property$1 {
|
|
|
8414
8414
|
description_text?: string | null;
|
|
8415
8415
|
primary_photo?: string | null;
|
|
8416
8416
|
photo_count?: number | null;
|
|
8417
|
-
photos?: Photo$
|
|
8417
|
+
photos?: Photo$2[];
|
|
8418
8418
|
virtual_tours?: string[];
|
|
8419
8419
|
videos?: string[];
|
|
8420
8420
|
flags?: Flags | null;
|
|
@@ -8424,7 +8424,7 @@ interface Property$1 {
|
|
|
8424
8424
|
last_update_utc?: string | null;
|
|
8425
8425
|
last_update_at?: string | null;
|
|
8426
8426
|
days_on_market?: number | null;
|
|
8427
|
-
agents?: Agent$
|
|
8427
|
+
agents?: Agent$2[];
|
|
8428
8428
|
source_mls_id?: string | null;
|
|
8429
8429
|
source_mls_name?: string | null;
|
|
8430
8430
|
open_houses?: OpenHouse$1[];
|
|
@@ -8439,7 +8439,7 @@ interface PropertyDetail extends Property$1 {
|
|
|
8439
8439
|
estimates?: Estimate[];
|
|
8440
8440
|
}
|
|
8441
8441
|
/** A single location suggestion. */
|
|
8442
|
-
interface Suggestion {
|
|
8442
|
+
interface Suggestion$1 {
|
|
8443
8443
|
id?: string | null;
|
|
8444
8444
|
type?: string | null;
|
|
8445
8445
|
label?: string | null;
|
|
@@ -8465,10 +8465,10 @@ interface MarketInfo$1 {
|
|
|
8465
8465
|
interface AutocompleteResponse$1 {
|
|
8466
8466
|
market: string;
|
|
8467
8467
|
query: string;
|
|
8468
|
-
suggestions: Suggestion[];
|
|
8468
|
+
suggestions: Suggestion$1[];
|
|
8469
8469
|
}
|
|
8470
8470
|
/** Response from the /search endpoint. */
|
|
8471
|
-
interface SearchResponse$
|
|
8471
|
+
interface SearchResponse$3 {
|
|
8472
8472
|
market: string;
|
|
8473
8473
|
country: string;
|
|
8474
8474
|
total: number;
|
|
@@ -8478,7 +8478,7 @@ interface SearchResponse$2 {
|
|
|
8478
8478
|
results: Property$1[];
|
|
8479
8479
|
}
|
|
8480
8480
|
/** Response from the /markets endpoint. */
|
|
8481
|
-
interface MarketsResponse$
|
|
8481
|
+
interface MarketsResponse$3 {
|
|
8482
8482
|
markets: MarketInfo$1[];
|
|
8483
8483
|
}
|
|
8484
8484
|
/** Supported market codes. */
|
|
@@ -8569,7 +8569,7 @@ declare class SearchClient$2 {
|
|
|
8569
8569
|
* @throws AuthenticationError - If the API key is invalid.
|
|
8570
8570
|
* @throws ValidationError - If the parameters are invalid.
|
|
8571
8571
|
*/
|
|
8572
|
-
search(location?: string, options?: RealtorSearchOptions): Promise<SearchResponse$
|
|
8572
|
+
search(location?: string, options?: RealtorSearchOptions): Promise<SearchResponse$3>;
|
|
8573
8573
|
/**
|
|
8574
8574
|
* Get location autocomplete suggestions.
|
|
8575
8575
|
*
|
|
@@ -8638,7 +8638,7 @@ declare class ReferenceClient$2 {
|
|
|
8638
8638
|
*
|
|
8639
8639
|
* @returns Markets response with all supported markets.
|
|
8640
8640
|
*/
|
|
8641
|
-
listMarkets(): Promise<MarketsResponse$
|
|
8641
|
+
listMarkets(): Promise<MarketsResponse$3>;
|
|
8642
8642
|
}
|
|
8643
8643
|
|
|
8644
8644
|
/**
|
|
@@ -8713,7 +8713,7 @@ interface Attribute {
|
|
|
8713
8713
|
/**
|
|
8714
8714
|
* The location attached to an ad or a seller.
|
|
8715
8715
|
*/
|
|
8716
|
-
interface Location {
|
|
8716
|
+
interface Location$1 {
|
|
8717
8717
|
country_id: string | null;
|
|
8718
8718
|
region_id: string | null;
|
|
8719
8719
|
region_name: string | null;
|
|
@@ -8782,7 +8782,7 @@ interface Ad {
|
|
|
8782
8782
|
favorites: number | null;
|
|
8783
8783
|
images: Images;
|
|
8784
8784
|
attributes: Attribute[];
|
|
8785
|
-
location: Location;
|
|
8785
|
+
location: Location$1;
|
|
8786
8786
|
owner: Owner;
|
|
8787
8787
|
/** Ad options / boosts (present in the web payload). */
|
|
8788
8788
|
options: Record<string, unknown>;
|
|
@@ -8818,7 +8818,7 @@ interface Seller {
|
|
|
8818
8818
|
total_ads: number | null;
|
|
8819
8819
|
description: string | null;
|
|
8820
8820
|
profile_picture_url: string | null;
|
|
8821
|
-
location: Location;
|
|
8821
|
+
location: Location$1;
|
|
8822
8822
|
badges: Record<string, unknown>[];
|
|
8823
8823
|
feedback: FeedbackScores | null;
|
|
8824
8824
|
reply_rate: number | null;
|
|
@@ -8873,7 +8873,7 @@ interface LocationSuggestion {
|
|
|
8873
8873
|
lng: number | null;
|
|
8874
8874
|
}
|
|
8875
8875
|
/** Response from the /search endpoint. */
|
|
8876
|
-
interface SearchResponse$
|
|
8876
|
+
interface SearchResponse$2 {
|
|
8877
8877
|
ads: Ad[];
|
|
8878
8878
|
total: number | null;
|
|
8879
8879
|
total_all: number | null;
|
|
@@ -8925,7 +8925,7 @@ interface LocationSearchResponse {
|
|
|
8925
8925
|
suggestions: LocationSuggestion[];
|
|
8926
8926
|
}
|
|
8927
8927
|
/** Response from the /markets endpoint. */
|
|
8928
|
-
interface MarketsResponse$
|
|
8928
|
+
interface MarketsResponse$2 {
|
|
8929
8929
|
markets: Record<string, unknown>[];
|
|
8930
8930
|
}
|
|
8931
8931
|
/** Seller-type filter for search. */
|
|
@@ -9015,7 +9015,7 @@ declare class SearchClient$1 {
|
|
|
9015
9015
|
* @throws AuthenticationError - If the API key is invalid.
|
|
9016
9016
|
* @throws ValidationError - If the parameters are invalid.
|
|
9017
9017
|
*/
|
|
9018
|
-
search(params?: LeboncoinSearchParams): Promise<SearchResponse$
|
|
9018
|
+
search(params?: LeboncoinSearchParams): Promise<SearchResponse$2>;
|
|
9019
9019
|
}
|
|
9020
9020
|
|
|
9021
9021
|
/**
|
|
@@ -9157,7 +9157,7 @@ declare class ReferenceClient$1 {
|
|
|
9157
9157
|
*
|
|
9158
9158
|
* @returns Markets response.
|
|
9159
9159
|
*/
|
|
9160
|
-
markets(): Promise<MarketsResponse$
|
|
9160
|
+
markets(): Promise<MarketsResponse$2>;
|
|
9161
9161
|
}
|
|
9162
9162
|
|
|
9163
9163
|
/**
|
|
@@ -9236,7 +9236,7 @@ interface LatLong {
|
|
|
9236
9236
|
longitude?: number | null;
|
|
9237
9237
|
}
|
|
9238
9238
|
/** A single listing photo with its responsive source variants. */
|
|
9239
|
-
interface Photo {
|
|
9239
|
+
interface Photo$1 {
|
|
9240
9240
|
url?: string | null;
|
|
9241
9241
|
caption?: string | null;
|
|
9242
9242
|
subject_type?: string | null;
|
|
@@ -9286,7 +9286,7 @@ interface MarketInfo {
|
|
|
9286
9286
|
* Merges the search `listResult` top-level with its richer
|
|
9287
9287
|
* `hdpData.homeInfo` sub-object.
|
|
9288
9288
|
*/
|
|
9289
|
-
interface Listing {
|
|
9289
|
+
interface Listing$1 {
|
|
9290
9290
|
position: number;
|
|
9291
9291
|
zpid?: string | null;
|
|
9292
9292
|
id?: string | null;
|
|
@@ -9678,13 +9678,13 @@ interface Property {
|
|
|
9678
9678
|
price_history?: PriceHistoryEvent[];
|
|
9679
9679
|
tax_history?: TaxHistoryEvent[];
|
|
9680
9680
|
schools?: School[];
|
|
9681
|
-
photos?: Photo[];
|
|
9681
|
+
photos?: Photo$1[];
|
|
9682
9682
|
open_house_schedule?: OpenHouse[];
|
|
9683
9683
|
nearby_cities?: NearbyRegion[];
|
|
9684
9684
|
nearby_neighborhoods?: NearbyRegion[];
|
|
9685
9685
|
nearby_zipcodes?: NearbyRegion[];
|
|
9686
9686
|
/** nearby_homes / comps are lazy-loaded client-side (usually empty in SSR). */
|
|
9687
|
-
nearby_homes?: Listing[];
|
|
9687
|
+
nearby_homes?: Listing$1[];
|
|
9688
9688
|
scraped_utc?: number | null;
|
|
9689
9689
|
scraped_at?: string | null;
|
|
9690
9690
|
}
|
|
@@ -9728,7 +9728,7 @@ interface AgentLicense {
|
|
|
9728
9728
|
expiration?: string | null;
|
|
9729
9729
|
}
|
|
9730
9730
|
/** A Zillow real-estate professional profile (from /profile/{username}). */
|
|
9731
|
-
interface Agent {
|
|
9731
|
+
interface Agent$1 {
|
|
9732
9732
|
username?: string | null;
|
|
9733
9733
|
encoded_zuid?: string | null;
|
|
9734
9734
|
name?: string | null;
|
|
@@ -9765,7 +9765,7 @@ interface Agent {
|
|
|
9765
9765
|
professional_information?: Record<string, unknown>[];
|
|
9766
9766
|
reviews?: AgentReview[];
|
|
9767
9767
|
past_sales?: PastSale[];
|
|
9768
|
-
listings?: Listing[];
|
|
9768
|
+
listings?: Listing$1[];
|
|
9769
9769
|
scraped_utc?: number | null;
|
|
9770
9770
|
scraped_at?: string | null;
|
|
9771
9771
|
}
|
|
@@ -9781,10 +9781,10 @@ interface AutocompleteResult {
|
|
|
9781
9781
|
metro_id?: number | null;
|
|
9782
9782
|
}
|
|
9783
9783
|
/** Response from the /search endpoint. */
|
|
9784
|
-
interface SearchResponse {
|
|
9784
|
+
interface SearchResponse$1 {
|
|
9785
9785
|
location?: string | null;
|
|
9786
9786
|
status: string;
|
|
9787
|
-
results: Listing[];
|
|
9787
|
+
results: Listing$1[];
|
|
9788
9788
|
map_results_count: number;
|
|
9789
9789
|
region?: RegionSelection | null;
|
|
9790
9790
|
map_bounds?: MapBounds | null;
|
|
@@ -9798,7 +9798,7 @@ interface PropertyResponse {
|
|
|
9798
9798
|
}
|
|
9799
9799
|
/** Response from the /agent endpoint. */
|
|
9800
9800
|
interface AgentResponse {
|
|
9801
|
-
agent: Agent;
|
|
9801
|
+
agent: Agent$1;
|
|
9802
9802
|
}
|
|
9803
9803
|
/** Response from the /autocomplete endpoint. */
|
|
9804
9804
|
interface AutocompleteResponse {
|
|
@@ -9806,7 +9806,7 @@ interface AutocompleteResponse {
|
|
|
9806
9806
|
results: AutocompleteResult[];
|
|
9807
9807
|
}
|
|
9808
9808
|
/** Response from the /markets endpoint. */
|
|
9809
|
-
interface MarketsResponse {
|
|
9809
|
+
interface MarketsResponse$1 {
|
|
9810
9810
|
markets: MarketInfo[];
|
|
9811
9811
|
}
|
|
9812
9812
|
/** Listing status filter. */
|
|
@@ -9903,7 +9903,7 @@ declare class SearchClient {
|
|
|
9903
9903
|
* @throws AuthenticationError - If the API key is invalid.
|
|
9904
9904
|
* @throws ValidationError - If the parameters are invalid.
|
|
9905
9905
|
*/
|
|
9906
|
-
search(location: string, options?: ZillowSearchOptions): Promise<SearchResponse>;
|
|
9906
|
+
search(location: string, options?: ZillowSearchOptions): Promise<SearchResponse$1>;
|
|
9907
9907
|
/**
|
|
9908
9908
|
* Resolve a search term to Zillow regions/addresses (regionId, lat/lng).
|
|
9909
9909
|
*
|
|
@@ -10006,7 +10006,7 @@ declare class ReferenceClient {
|
|
|
10006
10006
|
*
|
|
10007
10007
|
* @returns Markets response with all supported markets.
|
|
10008
10008
|
*/
|
|
10009
|
-
listMarkets(): Promise<MarketsResponse>;
|
|
10009
|
+
listMarkets(): Promise<MarketsResponse$1>;
|
|
10010
10010
|
}
|
|
10011
10011
|
|
|
10012
10012
|
/**
|
|
@@ -10064,6 +10064,433 @@ declare class ZillowClient {
|
|
|
10064
10064
|
constructor(client: BaseClient);
|
|
10065
10065
|
}
|
|
10066
10066
|
|
|
10067
|
+
/**
|
|
10068
|
+
* TypeScript types for Immobiliare API responses.
|
|
10069
|
+
*
|
|
10070
|
+
* These interfaces mirror the backend `immobiliare_scraper` response schema,
|
|
10071
|
+
* which normalises Immobiliare's internal `api-next` shapes into a clean,
|
|
10072
|
+
* market-agnostic snake_case schema. Optional / nullable backend fields are
|
|
10073
|
+
* typed as `Type | null`; list fields default to `[]` and are typed as
|
|
10074
|
+
* arrays. Markets: it (immobiliare.it), es (indomio.es), gr (indomio.gr),
|
|
10075
|
+
* lu (immotop.lu) — all EUR.
|
|
10076
|
+
*/
|
|
10077
|
+
/** A single listing photo in three sizes. */
|
|
10078
|
+
interface Photo {
|
|
10079
|
+
id: number | null;
|
|
10080
|
+
caption: string | null;
|
|
10081
|
+
small: string | null;
|
|
10082
|
+
medium: string | null;
|
|
10083
|
+
large: string | null;
|
|
10084
|
+
}
|
|
10085
|
+
/** A listing price (`price_per_sqm` / `loan_from` are detail-only). */
|
|
10086
|
+
interface Price {
|
|
10087
|
+
value: number | null;
|
|
10088
|
+
formatted: string | null;
|
|
10089
|
+
min_value: string | null;
|
|
10090
|
+
max_value: string | null;
|
|
10091
|
+
currency: string;
|
|
10092
|
+
visible: boolean;
|
|
10093
|
+
price_per_sqm: string | null;
|
|
10094
|
+
loan_from: string | null;
|
|
10095
|
+
}
|
|
10096
|
+
/** The geographic location block of a listing. */
|
|
10097
|
+
interface Location {
|
|
10098
|
+
address: string | null;
|
|
10099
|
+
latitude: number | null;
|
|
10100
|
+
longitude: number | null;
|
|
10101
|
+
marker: string | null;
|
|
10102
|
+
region: string | null;
|
|
10103
|
+
province: string | null;
|
|
10104
|
+
city: string | null;
|
|
10105
|
+
macrozone: string | null;
|
|
10106
|
+
microzone: string | null;
|
|
10107
|
+
zipcode: string | null;
|
|
10108
|
+
nation_code: string | null;
|
|
10109
|
+
nation_name: string | null;
|
|
10110
|
+
}
|
|
10111
|
+
/** A single listing feature/amenity. */
|
|
10112
|
+
interface Feature {
|
|
10113
|
+
type: string | null;
|
|
10114
|
+
label: string | null;
|
|
10115
|
+
compact_label: string | null;
|
|
10116
|
+
}
|
|
10117
|
+
/** The advertising agency summary attached to a listing. */
|
|
10118
|
+
interface Agency {
|
|
10119
|
+
id: number | null;
|
|
10120
|
+
type: string | null;
|
|
10121
|
+
display_name: string | null;
|
|
10122
|
+
label: string | null;
|
|
10123
|
+
url: string | null;
|
|
10124
|
+
is_paid: boolean | null;
|
|
10125
|
+
guaranteed: boolean | null;
|
|
10126
|
+
show_logo: boolean | null;
|
|
10127
|
+
image_small: string | null;
|
|
10128
|
+
image_large: string | null;
|
|
10129
|
+
phones: string[];
|
|
10130
|
+
}
|
|
10131
|
+
/** The individual agent behind a listing. */
|
|
10132
|
+
interface Agent {
|
|
10133
|
+
type: string | null;
|
|
10134
|
+
display_name: string | null;
|
|
10135
|
+
label: string | null;
|
|
10136
|
+
image_gender: string | null;
|
|
10137
|
+
image_url: string | null;
|
|
10138
|
+
phones: string[];
|
|
10139
|
+
}
|
|
10140
|
+
/** One unit within a listing (a listing may bundle several — a "project"). */
|
|
10141
|
+
interface PropertyUnit {
|
|
10142
|
+
is_main: boolean;
|
|
10143
|
+
surface: string | null;
|
|
10144
|
+
surface_value: number | null;
|
|
10145
|
+
rooms: string | null;
|
|
10146
|
+
bathrooms: string | null;
|
|
10147
|
+
bedrooms: string | null;
|
|
10148
|
+
floor: string | null;
|
|
10149
|
+
elevator: boolean | null;
|
|
10150
|
+
garage: string | null;
|
|
10151
|
+
heating: string | null;
|
|
10152
|
+
energy_class: string | null;
|
|
10153
|
+
condominium_fees: string | null;
|
|
10154
|
+
typology: string | null;
|
|
10155
|
+
category: string | null;
|
|
10156
|
+
caption: string | null;
|
|
10157
|
+
description: string | null;
|
|
10158
|
+
price: Price | null;
|
|
10159
|
+
features: Feature[];
|
|
10160
|
+
ga4_features: string[];
|
|
10161
|
+
views: string[];
|
|
10162
|
+
photos: Photo[];
|
|
10163
|
+
}
|
|
10164
|
+
/** A normalised Immobiliare listing (search card or detail). */
|
|
10165
|
+
interface Listing {
|
|
10166
|
+
id: number;
|
|
10167
|
+
uuid: string | null;
|
|
10168
|
+
url: string | null;
|
|
10169
|
+
title: string | null;
|
|
10170
|
+
/** "sale" | "rent" */
|
|
10171
|
+
contract: string | null;
|
|
10172
|
+
is_new: boolean | null;
|
|
10173
|
+
luxury: boolean | null;
|
|
10174
|
+
is_project: boolean | null;
|
|
10175
|
+
is_mosaic: boolean | null;
|
|
10176
|
+
visibility: string | null;
|
|
10177
|
+
typology: string | null;
|
|
10178
|
+
category: string | null;
|
|
10179
|
+
price: Price | null;
|
|
10180
|
+
location: Location | null;
|
|
10181
|
+
/** Flattened convenience fields (from the main property unit) */
|
|
10182
|
+
surface: string | null;
|
|
10183
|
+
rooms: string | null;
|
|
10184
|
+
bathrooms: string | null;
|
|
10185
|
+
floor: string | null;
|
|
10186
|
+
energy_class: string | null;
|
|
10187
|
+
description: string | null;
|
|
10188
|
+
photo_count: number | null;
|
|
10189
|
+
has_virtual_tour: boolean | null;
|
|
10190
|
+
photos: Photo[];
|
|
10191
|
+
agency: Agency | null;
|
|
10192
|
+
agent: Agent | null;
|
|
10193
|
+
properties_count: number | null;
|
|
10194
|
+
properties: PropertyUnit[];
|
|
10195
|
+
/** Detail-only fields (populated by GET /listings/{id}) */
|
|
10196
|
+
creation_date: string | null;
|
|
10197
|
+
last_modified_utc: number | null;
|
|
10198
|
+
last_modified_at: string | null;
|
|
10199
|
+
features_full: Feature[];
|
|
10200
|
+
}
|
|
10201
|
+
/** A single agent on an agency profile. */
|
|
10202
|
+
interface AgencyAgent {
|
|
10203
|
+
id: number | null;
|
|
10204
|
+
name: string | null;
|
|
10205
|
+
surname: string | null;
|
|
10206
|
+
gender: string | null;
|
|
10207
|
+
thumbnail: string | null;
|
|
10208
|
+
}
|
|
10209
|
+
/** Full agency/advertiser profile (rendered from the agency page). */
|
|
10210
|
+
interface AgencyProfile {
|
|
10211
|
+
id: number;
|
|
10212
|
+
type: string | null;
|
|
10213
|
+
name: string | null;
|
|
10214
|
+
url: string | null;
|
|
10215
|
+
address: string | null;
|
|
10216
|
+
description: string | null;
|
|
10217
|
+
website: string | null;
|
|
10218
|
+
image: string | null;
|
|
10219
|
+
is_paid: boolean | null;
|
|
10220
|
+
partnership: string | null;
|
|
10221
|
+
real_estate_ads: number | null;
|
|
10222
|
+
real_estate_sales: number | null;
|
|
10223
|
+
region: string | null;
|
|
10224
|
+
province: string | null;
|
|
10225
|
+
city: string | null;
|
|
10226
|
+
macrozone: string | null;
|
|
10227
|
+
latitude: number | null;
|
|
10228
|
+
longitude: number | null;
|
|
10229
|
+
phones: string[];
|
|
10230
|
+
opening_hours: string[];
|
|
10231
|
+
agents: AgencyAgent[];
|
|
10232
|
+
market: string;
|
|
10233
|
+
}
|
|
10234
|
+
/** A geography autocomplete candidate → usable as a search location. */
|
|
10235
|
+
interface Suggestion {
|
|
10236
|
+
id: string | null;
|
|
10237
|
+
label: string | null;
|
|
10238
|
+
/** nation | region | province | comune | zone */
|
|
10239
|
+
type: string | null;
|
|
10240
|
+
region_id: string | null;
|
|
10241
|
+
province_id: string | null;
|
|
10242
|
+
city_id: string | null;
|
|
10243
|
+
macrozone_ids: string[];
|
|
10244
|
+
url: string | null;
|
|
10245
|
+
}
|
|
10246
|
+
/** One point in the €/m² time series. */
|
|
10247
|
+
interface PriceStatsPoint {
|
|
10248
|
+
label: string;
|
|
10249
|
+
value: number | null;
|
|
10250
|
+
}
|
|
10251
|
+
/** A single supported Immobiliare-group market. */
|
|
10252
|
+
interface Market {
|
|
10253
|
+
code: string;
|
|
10254
|
+
domain: string;
|
|
10255
|
+
country_code: string;
|
|
10256
|
+
locale: string;
|
|
10257
|
+
currency: string;
|
|
10258
|
+
name: string;
|
|
10259
|
+
}
|
|
10260
|
+
/** A related-search suggestion returned alongside search results. */
|
|
10261
|
+
interface RelatedSearch {
|
|
10262
|
+
label: string | null;
|
|
10263
|
+
url: string | null;
|
|
10264
|
+
}
|
|
10265
|
+
/** Response for /autocomplete. */
|
|
10266
|
+
interface SuggestResponse {
|
|
10267
|
+
suggestions: Suggestion[];
|
|
10268
|
+
market: string;
|
|
10269
|
+
}
|
|
10270
|
+
/** Response for /search. */
|
|
10271
|
+
interface SearchResponse {
|
|
10272
|
+
listings: Listing[];
|
|
10273
|
+
count: number | null;
|
|
10274
|
+
total_ads: number | null;
|
|
10275
|
+
current_page: number | null;
|
|
10276
|
+
max_pages: number | null;
|
|
10277
|
+
is_results_limit_reached: boolean | null;
|
|
10278
|
+
agencies: Agency[];
|
|
10279
|
+
related_searches: RelatedSearch[];
|
|
10280
|
+
market: string;
|
|
10281
|
+
source: string;
|
|
10282
|
+
}
|
|
10283
|
+
/** Response for /agencies/{id}/listings. */
|
|
10284
|
+
interface AgencyListingsResponse {
|
|
10285
|
+
agency_id: number;
|
|
10286
|
+
listings: Listing[];
|
|
10287
|
+
count: number | null;
|
|
10288
|
+
page: number;
|
|
10289
|
+
market: string;
|
|
10290
|
+
}
|
|
10291
|
+
/** Response for /market-insights/prices (€/m² time series). */
|
|
10292
|
+
interface PriceStatsResponse {
|
|
10293
|
+
contract: string;
|
|
10294
|
+
unit: string;
|
|
10295
|
+
points: PriceStatsPoint[];
|
|
10296
|
+
market: string;
|
|
10297
|
+
}
|
|
10298
|
+
/** Response for /markets (a bare array of markets). */
|
|
10299
|
+
type MarketsResponse = Market[];
|
|
10300
|
+
/** Response for /reference (filter enums accepted by /search). */
|
|
10301
|
+
interface ReferenceResponse {
|
|
10302
|
+
contracts: string[];
|
|
10303
|
+
categories: string[];
|
|
10304
|
+
sorts: string[];
|
|
10305
|
+
}
|
|
10306
|
+
/** Supported Immobiliare-group market codes. */
|
|
10307
|
+
type ImmobiliareMarketCode = "it" | "es" | "gr" | "lu";
|
|
10308
|
+
/** Contract type for the /search endpoint. */
|
|
10309
|
+
type ImmobiliareContract = "sale" | "rent";
|
|
10310
|
+
/** Property category for the /search endpoint. */
|
|
10311
|
+
type ImmobiliareCategory = "residential" | "commercial" | "garages" | "offices" | "land" | "buildings" | "warehouses";
|
|
10312
|
+
/** Sort order for the /search endpoint. */
|
|
10313
|
+
type ImmobiliareSort = "relevance" | "price_asc" | "price_desc" | "newest" | "oldest" | "surface_desc" | "surface_asc";
|
|
10314
|
+
/** Parameters for the autocomplete() method. */
|
|
10315
|
+
interface ImmobiliareAutocompleteParams {
|
|
10316
|
+
/** Market (default: "it") */
|
|
10317
|
+
market?: ImmobiliareMarketCode;
|
|
10318
|
+
}
|
|
10319
|
+
/** Parameters for the search() method. */
|
|
10320
|
+
interface ImmobiliareSearchParams {
|
|
10321
|
+
/** Market (default: "it") */
|
|
10322
|
+
market?: ImmobiliareMarketCode;
|
|
10323
|
+
/** Free-text place (auto-resolved to geography ids) */
|
|
10324
|
+
location?: string;
|
|
10325
|
+
/** Region id (fkRegione) from autocomplete() */
|
|
10326
|
+
region_id?: string;
|
|
10327
|
+
/** Province id (idProvincia) from autocomplete() */
|
|
10328
|
+
province_id?: string;
|
|
10329
|
+
/** City id (idComune) from autocomplete() */
|
|
10330
|
+
city_id?: string;
|
|
10331
|
+
/** "sale" | "rent" (default: "sale") */
|
|
10332
|
+
contract?: ImmobiliareContract;
|
|
10333
|
+
/** residential | commercial | garages | offices | land | buildings | warehouses (default: "residential") */
|
|
10334
|
+
category?: ImmobiliareCategory;
|
|
10335
|
+
/** Minimum price filter (EUR) */
|
|
10336
|
+
price_min?: number;
|
|
10337
|
+
/** Maximum price filter (EUR) */
|
|
10338
|
+
price_max?: number;
|
|
10339
|
+
/** Minimum surface filter (m²) */
|
|
10340
|
+
surface_min?: number;
|
|
10341
|
+
/** Maximum surface filter (m²) */
|
|
10342
|
+
surface_max?: number;
|
|
10343
|
+
/** Minimum number of rooms */
|
|
10344
|
+
rooms_min?: number;
|
|
10345
|
+
/** Maximum number of rooms */
|
|
10346
|
+
rooms_max?: number;
|
|
10347
|
+
/** Minimum number of bathrooms */
|
|
10348
|
+
bathrooms_min?: number;
|
|
10349
|
+
/** relevance | price_asc | price_desc | newest | oldest | surface_desc | surface_asc (default: "relevance") */
|
|
10350
|
+
sort?: ImmobiliareSort;
|
|
10351
|
+
/** Page number (>= 1, default: 1) */
|
|
10352
|
+
page?: number;
|
|
10353
|
+
}
|
|
10354
|
+
/** Parameters for the getListing() method. */
|
|
10355
|
+
interface ImmobiliareListingParams {
|
|
10356
|
+
/** Market (default: "it") */
|
|
10357
|
+
market?: ImmobiliareMarketCode;
|
|
10358
|
+
}
|
|
10359
|
+
/** Parameters for the getAgency() method. */
|
|
10360
|
+
interface ImmobiliareAgencyParams {
|
|
10361
|
+
/** Market (default: "it") */
|
|
10362
|
+
market?: ImmobiliareMarketCode;
|
|
10363
|
+
}
|
|
10364
|
+
/** Parameters for the getAgencyListings() method. */
|
|
10365
|
+
interface ImmobiliareAgencyListingsParams {
|
|
10366
|
+
/** Market (default: "it") */
|
|
10367
|
+
market?: ImmobiliareMarketCode;
|
|
10368
|
+
/** Page number (>= 1, default: 1) */
|
|
10369
|
+
page?: number;
|
|
10370
|
+
}
|
|
10371
|
+
/** Parameters for the priceStats() method. */
|
|
10372
|
+
interface ImmobiliarePriceStatsParams {
|
|
10373
|
+
/** Province id, e.g. "MI" */
|
|
10374
|
+
province_id?: string;
|
|
10375
|
+
/** City id (idComune) */
|
|
10376
|
+
city_id?: string;
|
|
10377
|
+
/** Market (default: "it") */
|
|
10378
|
+
market?: ImmobiliareMarketCode;
|
|
10379
|
+
/** "sale" or "rent" (default: "sale") */
|
|
10380
|
+
contract?: "sale" | "rent";
|
|
10381
|
+
}
|
|
10382
|
+
|
|
10383
|
+
/**
|
|
10384
|
+
* Immobiliare API client.
|
|
10385
|
+
*
|
|
10386
|
+
* Immobiliare endpoints: autocomplete (resolve a free-text place to geography
|
|
10387
|
+
* ids), search (list listings by location or explicit ids), getListing (full
|
|
10388
|
+
* single-listing detail), getAgency / getAgencyListings (agency profile +
|
|
10389
|
+
* active listings), priceStats (€/m² time series per area), markets, and
|
|
10390
|
+
* reference (filter enums). Markets: it, es, gr, lu (the Immobiliare Group).
|
|
10391
|
+
*/
|
|
10392
|
+
|
|
10393
|
+
/**
|
|
10394
|
+
* Client for all Immobiliare API operations.
|
|
10395
|
+
*
|
|
10396
|
+
* @example
|
|
10397
|
+
* ```typescript
|
|
10398
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10399
|
+
*
|
|
10400
|
+
* // Resolve a place name to geography ids
|
|
10401
|
+
* const hits = await client.immobiliare.autocomplete("Milano");
|
|
10402
|
+
* const city = hits.suggestions[0];
|
|
10403
|
+
*
|
|
10404
|
+
* // Search listings
|
|
10405
|
+
* const results = await client.immobiliare.search({
|
|
10406
|
+
* city_id: city.city_id ?? undefined,
|
|
10407
|
+
* price_max: 500000,
|
|
10408
|
+
* });
|
|
10409
|
+
* for (const listing of results.listings) {
|
|
10410
|
+
* console.log(`${listing.id}: ${listing.title}`);
|
|
10411
|
+
* }
|
|
10412
|
+
*
|
|
10413
|
+
* // Full single-listing detail
|
|
10414
|
+
* const detail = await client.immobiliare.getListing(123456789);
|
|
10415
|
+
* console.log(detail.price?.formatted);
|
|
10416
|
+
*
|
|
10417
|
+
* // Supported markets
|
|
10418
|
+
* const markets = await client.immobiliare.markets();
|
|
10419
|
+
* ```
|
|
10420
|
+
*/
|
|
10421
|
+
declare class ImmobiliareClient {
|
|
10422
|
+
private readonly client;
|
|
10423
|
+
constructor(client: BaseClient);
|
|
10424
|
+
/**
|
|
10425
|
+
* Resolve a free-text place name into geography ids for search.
|
|
10426
|
+
*
|
|
10427
|
+
* @param query - Free-text place name, e.g. "Milano".
|
|
10428
|
+
* @param options - Optional parameters (market).
|
|
10429
|
+
* @returns Suggest response with region/province/city/zone id candidates.
|
|
10430
|
+
*/
|
|
10431
|
+
autocomplete(query: string, options?: ImmobiliareAutocompleteParams): Promise<SuggestResponse>;
|
|
10432
|
+
/**
|
|
10433
|
+
* Search Immobiliare-group listings.
|
|
10434
|
+
*
|
|
10435
|
+
* Scope the search by `location` (free text, auto-resolved) OR explicit
|
|
10436
|
+
* `region_id` / `province_id` / `city_id` from {@link autocomplete}.
|
|
10437
|
+
*
|
|
10438
|
+
* @param options - Search parameters (market, location/ids, contract,
|
|
10439
|
+
* category, price/surface/room/bathroom filters, sort, page).
|
|
10440
|
+
* @returns Search response with `listings` and pagination metadata.
|
|
10441
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
10442
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
10443
|
+
*/
|
|
10444
|
+
search(options?: ImmobiliareSearchParams): Promise<SearchResponse>;
|
|
10445
|
+
/**
|
|
10446
|
+
* Get the full detail for a single Immobiliare listing.
|
|
10447
|
+
*
|
|
10448
|
+
* @param listingId - The Immobiliare listing id.
|
|
10449
|
+
* @param options - Optional parameters (market).
|
|
10450
|
+
* @returns The full listing detail.
|
|
10451
|
+
* @throws NotFoundError - If the listing doesn't exist.
|
|
10452
|
+
*/
|
|
10453
|
+
getListing(listingId: number, options?: ImmobiliareListingParams): Promise<Listing>;
|
|
10454
|
+
/**
|
|
10455
|
+
* Get an agency/advertiser profile.
|
|
10456
|
+
*
|
|
10457
|
+
* @param agencyId - The Immobiliare agency id.
|
|
10458
|
+
* @param options - Optional parameters (market).
|
|
10459
|
+
* @returns The full agency profile.
|
|
10460
|
+
* @throws NotFoundError - If the agency doesn't exist.
|
|
10461
|
+
*/
|
|
10462
|
+
getAgency(agencyId: number, options?: ImmobiliareAgencyParams): Promise<AgencyProfile>;
|
|
10463
|
+
/**
|
|
10464
|
+
* Get an agency's active listings (25 per page).
|
|
10465
|
+
*
|
|
10466
|
+
* @param agencyId - The Immobiliare agency id.
|
|
10467
|
+
* @param options - Optional parameters (market, page).
|
|
10468
|
+
* @returns Agency-listings response with `listings` and pagination.
|
|
10469
|
+
*/
|
|
10470
|
+
getAgencyListings(agencyId: number, options?: ImmobiliareAgencyListingsParams): Promise<AgencyListingsResponse>;
|
|
10471
|
+
/**
|
|
10472
|
+
* Get the historical average €/m² time series for an area.
|
|
10473
|
+
*
|
|
10474
|
+
* @param regionId - Region id, e.g. "lom" (required).
|
|
10475
|
+
* @param options - Optional parameters (province_id, city_id, market, contract).
|
|
10476
|
+
* @returns Price-stats response with monthly `points` (label + EUR/m² value).
|
|
10477
|
+
*/
|
|
10478
|
+
priceStats(regionId: string, options?: ImmobiliarePriceStatsParams): Promise<PriceStatsResponse>;
|
|
10479
|
+
/**
|
|
10480
|
+
* Get all supported Immobiliare-group markets (it, es, gr, lu).
|
|
10481
|
+
*
|
|
10482
|
+
* @returns A bare array of supported markets (code, domain, country,
|
|
10483
|
+
* locale, currency, name).
|
|
10484
|
+
*/
|
|
10485
|
+
markets(): Promise<MarketsResponse>;
|
|
10486
|
+
/**
|
|
10487
|
+
* Get the filter enums accepted by {@link search}.
|
|
10488
|
+
*
|
|
10489
|
+
* @returns Reference response with `contracts`, `categories`, and `sorts`.
|
|
10490
|
+
*/
|
|
10491
|
+
reference(): Promise<ReferenceResponse>;
|
|
10492
|
+
}
|
|
10493
|
+
|
|
10067
10494
|
/**
|
|
10068
10495
|
* Main ScrapeBadger client.
|
|
10069
10496
|
*
|
|
@@ -10130,6 +10557,8 @@ declare class ScrapeBadger {
|
|
|
10130
10557
|
readonly leboncoin: LeboncoinClient;
|
|
10131
10558
|
/** Zillow scraper API client — 5 endpoints (search, property, agent, autocomplete, markets) */
|
|
10132
10559
|
readonly zillow: ZillowClient;
|
|
10560
|
+
/** Immobiliare scraper API client — 8 endpoints across 4 markets (it, es, gr, lu) */
|
|
10561
|
+
readonly immobiliare: ImmobiliareClient;
|
|
10133
10562
|
/**
|
|
10134
10563
|
* Create a new ScrapeBadger client.
|
|
10135
10564
|
*
|
|
@@ -10158,4 +10587,4 @@ declare class ScrapeBadger {
|
|
|
10158
10587
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
10159
10588
|
}
|
|
10160
10589
|
|
|
10161
|
-
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 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$4 as AmazonMarketInfo, type MarketsResponse$6 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$2 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$7 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$7 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$5 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, type AutocompleteParams, 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$3 as EbayMarketInfo, type MarketsResponse$4 as EbayMarketsResponse, type Pagination$1 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$4 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$4 as EbaySearchClient, type EbaySearchParams, type SearchResponse$4 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 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$9 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 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 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$1 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$1 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$1 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$1 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 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$1 as RealtorAddress, type Agent$1 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$1 as RealtorMarketInfo, type MarketsResponse$2 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$1 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$2 as RealtorReferenceClient, type School$1 as RealtorSchool, SearchClient$2 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$2 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$8 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$1 as RedditUsersClient, type RedditWikiPage, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$5 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$6 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$6 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$5 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$5 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$7 as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$8 as VintedReferenceClient, SearchClient$a as VintedSearchClient, type VintedSearchParams, type SearchResponse$6 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$2 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$2 as YoutubeMarketInfo, type MarketsResponse$3 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$3 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$3 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$3 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 as ZillowAddress, type Agent 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 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo as ZillowMarketInfo, type MarketsResponse as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination as ZillowPagination, type PastSale as ZillowPastSale, type Photo as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School as ZillowSchool, SearchClient as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|
|
10590
|
+
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 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$4 as AmazonMarketInfo, type MarketsResponse$7 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$2 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$7 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$7 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$6 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, type AutocompleteParams, 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$3 as EbayMarketInfo, type MarketsResponse$5 as EbayMarketsResponse, type Pagination$1 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$4 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$4 as EbaySearchClient, type EbaySearchParams, type SearchResponse$5 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 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$9 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 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 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, 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$2 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$1 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$1 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$2 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 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$1 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$1 as RealtorMarketInfo, type MarketsResponse$3 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$2 as RealtorReferenceClient, type School$1 as RealtorSchool, SearchClient$2 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$3 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$8 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$1 as RedditUsersClient, type RedditWikiPage, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$6 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$6 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$6 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$5 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$5 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$8 as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$8 as VintedReferenceClient, SearchClient$a as VintedSearchClient, type VintedSearchParams, type SearchResponse$7 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$2 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$2 as YoutubeMarketInfo, type MarketsResponse$4 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$3 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$3 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$4 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 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 as ZillowMarketInfo, type MarketsResponse$1 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination 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 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School as ZillowSchool, SearchClient as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$1 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|