scrapebadger 0.15.6 → 0.17.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 +2 -0
- package/dist/index.d.cts +1015 -120
- package/dist/index.d.ts +1015 -120
- package/dist/index.js +275 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +270 -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$8 {
|
|
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$9 {
|
|
483
483
|
/** List of available markets */
|
|
484
484
|
markets: VintedMarket[];
|
|
485
485
|
}
|
|
@@ -550,7 +550,7 @@ interface VintedSearchParams {
|
|
|
550
550
|
* });
|
|
551
551
|
* ```
|
|
552
552
|
*/
|
|
553
|
-
declare class SearchClient$
|
|
553
|
+
declare class SearchClient$b {
|
|
554
554
|
private readonly client;
|
|
555
555
|
constructor(client: BaseClient);
|
|
556
556
|
/**
|
|
@@ -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$8>;
|
|
590
590
|
}
|
|
591
591
|
|
|
592
592
|
/**
|
|
@@ -741,7 +741,7 @@ declare class UsersClient$2 {
|
|
|
741
741
|
* }
|
|
742
742
|
* ```
|
|
743
743
|
*/
|
|
744
|
-
declare class ReferenceClient$
|
|
744
|
+
declare class ReferenceClient$9 {
|
|
745
745
|
private readonly client;
|
|
746
746
|
constructor(client: BaseClient);
|
|
747
747
|
/**
|
|
@@ -819,7 +819,7 @@ declare class ReferenceClient$8 {
|
|
|
819
819
|
* }
|
|
820
820
|
* ```
|
|
821
821
|
*/
|
|
822
|
-
markets(): Promise<MarketsResponse$
|
|
822
|
+
markets(): Promise<MarketsResponse$9>;
|
|
823
823
|
}
|
|
824
824
|
|
|
825
825
|
/**
|
|
@@ -856,13 +856,13 @@ declare class ReferenceClient$8 {
|
|
|
856
856
|
*/
|
|
857
857
|
declare class VintedClient {
|
|
858
858
|
/** Client for item search operations */
|
|
859
|
-
readonly search: SearchClient$
|
|
859
|
+
readonly search: SearchClient$b;
|
|
860
860
|
/** Client for individual item operations */
|
|
861
861
|
readonly items: ItemsClient$1;
|
|
862
862
|
/** Client for user operations */
|
|
863
863
|
readonly users: UsersClient$2;
|
|
864
864
|
/** Client for reference data (brands, colors, statuses, markets) */
|
|
865
|
-
readonly reference: ReferenceClient$
|
|
865
|
+
readonly reference: ReferenceClient$9;
|
|
866
866
|
/**
|
|
867
867
|
* Create a new Vinted client.
|
|
868
868
|
*
|
|
@@ -1862,7 +1862,7 @@ declare class ScholarClient {
|
|
|
1862
1862
|
* }
|
|
1863
1863
|
* ```
|
|
1864
1864
|
*/
|
|
1865
|
-
declare class SearchClient$
|
|
1865
|
+
declare class SearchClient$a {
|
|
1866
1866
|
private readonly client;
|
|
1867
1867
|
constructor(client: BaseClient);
|
|
1868
1868
|
/**
|
|
@@ -2064,7 +2064,7 @@ declare class VideosClient$2 {
|
|
|
2064
2064
|
*/
|
|
2065
2065
|
declare class GoogleClient {
|
|
2066
2066
|
/** Google Web Search (SERP) — with optional deferred AI Overview follow-up. */
|
|
2067
|
-
readonly search: SearchClient$
|
|
2067
|
+
readonly search: SearchClient$a;
|
|
2068
2068
|
/** Google Maps — places, reviews, photos, posts. */
|
|
2069
2069
|
readonly maps: MapsClient;
|
|
2070
2070
|
/** Google News — articles, topics, trending. */
|
|
@@ -2895,7 +2895,7 @@ interface DomainPostsResponse {
|
|
|
2895
2895
|
* const domainPosts = await client.reddit.search.domainPosts({ domain: "github.com" });
|
|
2896
2896
|
* ```
|
|
2897
2897
|
*/
|
|
2898
|
-
declare class SearchClient$
|
|
2898
|
+
declare class SearchClient$9 {
|
|
2899
2899
|
private readonly client;
|
|
2900
2900
|
constructor(client: BaseClient);
|
|
2901
2901
|
/**
|
|
@@ -3504,7 +3504,7 @@ declare class UsersClient$1 {
|
|
|
3504
3504
|
*/
|
|
3505
3505
|
declare class RedditClient {
|
|
3506
3506
|
/** Client for search operations (posts, subreddits, users, domain posts) */
|
|
3507
|
-
readonly search: SearchClient$
|
|
3507
|
+
readonly search: SearchClient$9;
|
|
3508
3508
|
/** Client for post operations (trending, details, comments, duplicates) */
|
|
3509
3509
|
readonly posts: PostsClient;
|
|
3510
3510
|
/** Client for subreddit operations (details, posts, rules, moderators, wiki) */
|
|
@@ -3543,7 +3543,7 @@ interface AmazonPrice {
|
|
|
3543
3543
|
/**
|
|
3544
3544
|
* Page-number pagination (Amazon listings use 1-based page numbers).
|
|
3545
3545
|
*/
|
|
3546
|
-
interface Pagination$
|
|
3546
|
+
interface Pagination$3 {
|
|
3547
3547
|
/** Current page number (1-indexed) */
|
|
3548
3548
|
current_page: number;
|
|
3549
3549
|
/** Total number of pages, if known */
|
|
@@ -3554,7 +3554,7 @@ interface Pagination$2 {
|
|
|
3554
3554
|
/**
|
|
3555
3555
|
* A single supported marketplace (for /markets).
|
|
3556
3556
|
*/
|
|
3557
|
-
interface MarketInfo$
|
|
3557
|
+
interface MarketInfo$5 {
|
|
3558
3558
|
/** Market code (e.g. "US", "UK", "DE") */
|
|
3559
3559
|
code: string;
|
|
3560
3560
|
/** Amazon domain suffix (e.g. "com", "co.uk") */
|
|
@@ -3900,11 +3900,11 @@ interface AutocompleteSuggestion$1 {
|
|
|
3900
3900
|
alias: string | null;
|
|
3901
3901
|
}
|
|
3902
3902
|
/** Response from the /search endpoint. */
|
|
3903
|
-
interface SearchResponse$
|
|
3903
|
+
interface SearchResponse$7 {
|
|
3904
3904
|
query: string;
|
|
3905
3905
|
domain: string;
|
|
3906
3906
|
results: SearchResult$3[];
|
|
3907
|
-
pagination: Pagination$
|
|
3907
|
+
pagination: Pagination$3;
|
|
3908
3908
|
scraped_utc: number | null;
|
|
3909
3909
|
scraped_at: string | null;
|
|
3910
3910
|
}
|
|
@@ -3931,7 +3931,7 @@ interface ReviewsResponse$1 {
|
|
|
3931
3931
|
rating: number | null;
|
|
3932
3932
|
ratings_total: number | null;
|
|
3933
3933
|
rating_breakdown: RatingBreakdown$1 | null;
|
|
3934
|
-
pagination: Pagination$
|
|
3934
|
+
pagination: Pagination$3;
|
|
3935
3935
|
scraped_utc: number | null;
|
|
3936
3936
|
scraped_at: string | null;
|
|
3937
3937
|
}
|
|
@@ -3940,7 +3940,7 @@ interface BestsellersResponse {
|
|
|
3940
3940
|
domain: string;
|
|
3941
3941
|
category: string | null;
|
|
3942
3942
|
bestsellers: Bestseller[];
|
|
3943
|
-
pagination: Pagination$
|
|
3943
|
+
pagination: Pagination$3;
|
|
3944
3944
|
scraped_utc: number | null;
|
|
3945
3945
|
scraped_at: string | null;
|
|
3946
3946
|
}
|
|
@@ -3949,7 +3949,7 @@ interface NewReleasesResponse {
|
|
|
3949
3949
|
domain: string;
|
|
3950
3950
|
category: string | null;
|
|
3951
3951
|
new_releases: Bestseller[];
|
|
3952
|
-
pagination: Pagination$
|
|
3952
|
+
pagination: Pagination$3;
|
|
3953
3953
|
scraped_utc: number | null;
|
|
3954
3954
|
scraped_at: string | null;
|
|
3955
3955
|
}
|
|
@@ -3958,7 +3958,7 @@ interface DealsResponse {
|
|
|
3958
3958
|
domain: string;
|
|
3959
3959
|
category: string | null;
|
|
3960
3960
|
deals: Deal[];
|
|
3961
|
-
pagination: Pagination$
|
|
3961
|
+
pagination: Pagination$3;
|
|
3962
3962
|
scraped_utc: number | null;
|
|
3963
3963
|
scraped_at: string | null;
|
|
3964
3964
|
}
|
|
@@ -3967,7 +3967,7 @@ interface CategoryResponse$1 {
|
|
|
3967
3967
|
domain: string;
|
|
3968
3968
|
node: string;
|
|
3969
3969
|
results: SearchResult$3[];
|
|
3970
|
-
pagination: Pagination$
|
|
3970
|
+
pagination: Pagination$3;
|
|
3971
3971
|
scraped_utc: number | null;
|
|
3972
3972
|
scraped_at: string | null;
|
|
3973
3973
|
}
|
|
@@ -3981,7 +3981,7 @@ interface SellerProductsResponse {
|
|
|
3981
3981
|
domain: string;
|
|
3982
3982
|
seller_id: string;
|
|
3983
3983
|
products: SearchResult$3[];
|
|
3984
|
-
pagination: Pagination$
|
|
3984
|
+
pagination: Pagination$3;
|
|
3985
3985
|
scraped_utc: number | null;
|
|
3986
3986
|
scraped_at: string | null;
|
|
3987
3987
|
}
|
|
@@ -3990,7 +3990,7 @@ interface SellerFeedbackResponse$1 {
|
|
|
3990
3990
|
domain: string;
|
|
3991
3991
|
seller_id: string;
|
|
3992
3992
|
feedback: SellerFeedbackEntry[];
|
|
3993
|
-
pagination: Pagination$
|
|
3993
|
+
pagination: Pagination$3;
|
|
3994
3994
|
scraped_utc: number | null;
|
|
3995
3995
|
scraped_at: string | null;
|
|
3996
3996
|
}
|
|
@@ -4001,8 +4001,8 @@ interface AutocompleteResponse$4 {
|
|
|
4001
4001
|
suggestions: AutocompleteSuggestion$1[];
|
|
4002
4002
|
}
|
|
4003
4003
|
/** Response from the /markets endpoint. */
|
|
4004
|
-
interface MarketsResponse$
|
|
4005
|
-
markets: MarketInfo$
|
|
4004
|
+
interface MarketsResponse$8 {
|
|
4005
|
+
markets: MarketInfo$5[];
|
|
4006
4006
|
}
|
|
4007
4007
|
/** Response from the /categories endpoint. */
|
|
4008
4008
|
interface CategoriesResponse$3 {
|
|
@@ -4128,7 +4128,7 @@ interface AmazonAutocompleteParams {
|
|
|
4128
4128
|
* const suggestions = await client.amazon.search.autocomplete("lapt");
|
|
4129
4129
|
* ```
|
|
4130
4130
|
*/
|
|
4131
|
-
declare class SearchClient$
|
|
4131
|
+
declare class SearchClient$8 {
|
|
4132
4132
|
private readonly client;
|
|
4133
4133
|
constructor(client: BaseClient);
|
|
4134
4134
|
/**
|
|
@@ -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$7>;
|
|
4143
4143
|
/**
|
|
4144
4144
|
* Get Amazon keyword autocomplete suggestions.
|
|
4145
4145
|
*
|
|
@@ -4221,7 +4221,7 @@ declare class ProductsClient$1 {
|
|
|
4221
4221
|
* }
|
|
4222
4222
|
* ```
|
|
4223
4223
|
*/
|
|
4224
|
-
declare class ListingsClient {
|
|
4224
|
+
declare class ListingsClient$1 {
|
|
4225
4225
|
private readonly client;
|
|
4226
4226
|
constructor(client: BaseClient);
|
|
4227
4227
|
/**
|
|
@@ -4324,7 +4324,7 @@ declare class SellersClient$2 {
|
|
|
4324
4324
|
* const categories = await client.amazon.reference.categories();
|
|
4325
4325
|
* ```
|
|
4326
4326
|
*/
|
|
4327
|
-
declare class ReferenceClient$
|
|
4327
|
+
declare class ReferenceClient$8 {
|
|
4328
4328
|
private readonly client;
|
|
4329
4329
|
constructor(client: BaseClient);
|
|
4330
4330
|
/**
|
|
@@ -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$8>;
|
|
4336
4336
|
/**
|
|
4337
4337
|
* Get the reference department / category aliases.
|
|
4338
4338
|
*
|
|
@@ -4379,15 +4379,15 @@ declare class ReferenceClient$7 {
|
|
|
4379
4379
|
*/
|
|
4380
4380
|
declare class AmazonClient {
|
|
4381
4381
|
/** Client for keyword search and autocomplete */
|
|
4382
|
-
readonly search: SearchClient$
|
|
4382
|
+
readonly search: SearchClient$8;
|
|
4383
4383
|
/** Client for product detail, offers, and reviews */
|
|
4384
4384
|
readonly products: ProductsClient$1;
|
|
4385
4385
|
/** Client for bestsellers, new releases, deals, and category browse */
|
|
4386
|
-
readonly listings: ListingsClient;
|
|
4386
|
+
readonly listings: ListingsClient$1;
|
|
4387
4387
|
/** Client for seller profile, products, and feedback */
|
|
4388
4388
|
readonly sellers: SellersClient$2;
|
|
4389
4389
|
/** Client for reference data (markets, categories) */
|
|
4390
|
-
readonly reference: ReferenceClient$
|
|
4390
|
+
readonly reference: ReferenceClient$8;
|
|
4391
4391
|
/**
|
|
4392
4392
|
* Create a new Amazon client.
|
|
4393
4393
|
*
|
|
@@ -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$7 {
|
|
4608
4608
|
markets: ShopeeMarket[];
|
|
4609
4609
|
}
|
|
4610
4610
|
/** Parameters for searching Shopee products. */
|
|
@@ -4679,7 +4679,7 @@ interface ShopeeCategoriesParams {
|
|
|
4679
4679
|
* const cat = await client.shopee.search.categoryItems(100001, { market: "sg" });
|
|
4680
4680
|
* ```
|
|
4681
4681
|
*/
|
|
4682
|
-
declare class SearchClient$
|
|
4682
|
+
declare class SearchClient$7 {
|
|
4683
4683
|
private readonly client;
|
|
4684
4684
|
constructor(client: BaseClient);
|
|
4685
4685
|
/**
|
|
@@ -4802,7 +4802,7 @@ declare class ReviewsClient {
|
|
|
4802
4802
|
* }
|
|
4803
4803
|
* ```
|
|
4804
4804
|
*/
|
|
4805
|
-
declare class ReferenceClient$
|
|
4805
|
+
declare class ReferenceClient$7 {
|
|
4806
4806
|
private readonly client;
|
|
4807
4807
|
constructor(client: BaseClient);
|
|
4808
4808
|
/**
|
|
@@ -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$7>;
|
|
4814
4814
|
/**
|
|
4815
4815
|
* Get the full category tree for a Shopee market.
|
|
4816
4816
|
*
|
|
@@ -4862,13 +4862,13 @@ declare class ReferenceClient$6 {
|
|
|
4862
4862
|
*/
|
|
4863
4863
|
declare class ShopeeClient {
|
|
4864
4864
|
/** Client for keyword search and category-item listing */
|
|
4865
|
-
readonly search: SearchClient$
|
|
4865
|
+
readonly search: SearchClient$7;
|
|
4866
4866
|
/** Client for full product detail pages */
|
|
4867
4867
|
readonly products: ProductsClient;
|
|
4868
4868
|
/** Client for product reviews and rating summaries */
|
|
4869
4869
|
readonly reviews: ReviewsClient;
|
|
4870
4870
|
/** Client for reference data (markets, category tree) */
|
|
4871
|
-
readonly reference: ReferenceClient$
|
|
4871
|
+
readonly reference: ReferenceClient$7;
|
|
4872
4872
|
/**
|
|
4873
4873
|
* Create a new Shopee client.
|
|
4874
4874
|
*
|
|
@@ -5714,7 +5714,7 @@ declare class VideosClient$1 {
|
|
|
5714
5714
|
* const users = await client.tiktok.search.users({ query: "skincare" });
|
|
5715
5715
|
* ```
|
|
5716
5716
|
*/
|
|
5717
|
-
declare class SearchClient$
|
|
5717
|
+
declare class SearchClient$6 {
|
|
5718
5718
|
private readonly client;
|
|
5719
5719
|
constructor(client: BaseClient);
|
|
5720
5720
|
/**
|
|
@@ -5920,7 +5920,7 @@ declare class AdsClient$1 {
|
|
|
5920
5920
|
* }
|
|
5921
5921
|
* ```
|
|
5922
5922
|
*/
|
|
5923
|
-
declare class ReferenceClient$
|
|
5923
|
+
declare class ReferenceClient$6 {
|
|
5924
5924
|
private readonly client;
|
|
5925
5925
|
constructor(client: BaseClient);
|
|
5926
5926
|
/**
|
|
@@ -5985,7 +5985,7 @@ declare class TikTokClient {
|
|
|
5985
5985
|
/** Client for video detail, comments, replies, related, transcript, oEmbed */
|
|
5986
5986
|
readonly videos: VideosClient$1;
|
|
5987
5987
|
/** Client for keyword search across videos, users, and hashtags */
|
|
5988
|
-
readonly search: SearchClient$
|
|
5988
|
+
readonly search: SearchClient$6;
|
|
5989
5989
|
/** Client for sound/music detail and videos using a sound */
|
|
5990
5990
|
readonly music: MusicClient$1;
|
|
5991
5991
|
/** Client for hashtag detail and tagged videos */
|
|
@@ -5995,7 +5995,7 @@ declare class TikTokClient {
|
|
|
5995
5995
|
/** Client for the Commercial Content Library (ad transparency) */
|
|
5996
5996
|
readonly ads: AdsClient$1;
|
|
5997
5997
|
/** Client for reference data (regions) and service health */
|
|
5998
|
-
readonly reference: ReferenceClient$
|
|
5998
|
+
readonly reference: ReferenceClient$6;
|
|
5999
5999
|
/**
|
|
6000
6000
|
* Create a new TikTok client.
|
|
6001
6001
|
*
|
|
@@ -6028,7 +6028,7 @@ interface EbayPrice {
|
|
|
6028
6028
|
/**
|
|
6029
6029
|
* Page-number pagination (eBay listings use 1-based `_pgn` numbers).
|
|
6030
6030
|
*/
|
|
6031
|
-
interface Pagination$
|
|
6031
|
+
interface Pagination$2 {
|
|
6032
6032
|
/** Current page number (1-indexed) */
|
|
6033
6033
|
current_page: number;
|
|
6034
6034
|
/** Results per page, if known */
|
|
@@ -6041,7 +6041,7 @@ interface Pagination$1 {
|
|
|
6041
6041
|
/**
|
|
6042
6042
|
* A single supported marketplace (for /markets).
|
|
6043
6043
|
*/
|
|
6044
|
-
interface MarketInfo$
|
|
6044
|
+
interface MarketInfo$4 {
|
|
6045
6045
|
/** Market code (e.g. "US", "GB", "DE") */
|
|
6046
6046
|
code: string;
|
|
6047
6047
|
/** eBay domain suffix (e.g. "com", "co.uk") */
|
|
@@ -6279,14 +6279,14 @@ interface AutocompleteSuggestion {
|
|
|
6279
6279
|
value: string;
|
|
6280
6280
|
}
|
|
6281
6281
|
/** Response from the /search and /completed endpoints. */
|
|
6282
|
-
interface SearchResponse$
|
|
6282
|
+
interface SearchResponse$6 {
|
|
6283
6283
|
query: string | null;
|
|
6284
6284
|
domain: string;
|
|
6285
6285
|
category_id: string | null;
|
|
6286
6286
|
sold: boolean;
|
|
6287
6287
|
results: SearchResult$1[];
|
|
6288
6288
|
facets: Record<string, string[]>;
|
|
6289
|
-
pagination: Pagination$
|
|
6289
|
+
pagination: Pagination$2;
|
|
6290
6290
|
scraped_utc: number | null;
|
|
6291
6291
|
scraped_at: string | null;
|
|
6292
6292
|
}
|
|
@@ -6305,7 +6305,7 @@ interface SellerItemsResponse {
|
|
|
6305
6305
|
domain: string;
|
|
6306
6306
|
username: string;
|
|
6307
6307
|
results: SearchResult$1[];
|
|
6308
|
-
pagination: Pagination$
|
|
6308
|
+
pagination: Pagination$2;
|
|
6309
6309
|
scraped_utc: number | null;
|
|
6310
6310
|
scraped_at: string | null;
|
|
6311
6311
|
}
|
|
@@ -6314,7 +6314,7 @@ interface SellerFeedbackResponse {
|
|
|
6314
6314
|
domain: string;
|
|
6315
6315
|
username: string;
|
|
6316
6316
|
feedback: FeedbackEntry[];
|
|
6317
|
-
pagination: Pagination$
|
|
6317
|
+
pagination: Pagination$2;
|
|
6318
6318
|
scraped_utc: number | null;
|
|
6319
6319
|
scraped_at: string | null;
|
|
6320
6320
|
}
|
|
@@ -6327,7 +6327,7 @@ interface ReviewsResponse {
|
|
|
6327
6327
|
ratings_total: number | null;
|
|
6328
6328
|
histogram: RatingHistogram | null;
|
|
6329
6329
|
reviews: Review[];
|
|
6330
|
-
pagination: Pagination$
|
|
6330
|
+
pagination: Pagination$2;
|
|
6331
6331
|
scraped_utc: number | null;
|
|
6332
6332
|
scraped_at: string | null;
|
|
6333
6333
|
}
|
|
@@ -6337,7 +6337,7 @@ interface CategoryResponse {
|
|
|
6337
6337
|
category_id: string;
|
|
6338
6338
|
results: SearchResult$1[];
|
|
6339
6339
|
facets: Record<string, string[]>;
|
|
6340
|
-
pagination: Pagination$
|
|
6340
|
+
pagination: Pagination$2;
|
|
6341
6341
|
scraped_utc: number | null;
|
|
6342
6342
|
scraped_at: string | null;
|
|
6343
6343
|
}
|
|
@@ -6348,8 +6348,8 @@ interface AutocompleteResponse$3 {
|
|
|
6348
6348
|
suggestions: AutocompleteSuggestion[];
|
|
6349
6349
|
}
|
|
6350
6350
|
/** Response from the /markets endpoint. */
|
|
6351
|
-
interface MarketsResponse$
|
|
6352
|
-
markets: MarketInfo$
|
|
6351
|
+
interface MarketsResponse$6 {
|
|
6352
|
+
markets: MarketInfo$4[];
|
|
6353
6353
|
}
|
|
6354
6354
|
/** Response from the /categories endpoint. */
|
|
6355
6355
|
interface CategoriesResponse$2 {
|
|
@@ -6489,7 +6489,7 @@ interface EbayAutocompleteParams {
|
|
|
6489
6489
|
* const suggestions = await client.ebay.search.autocomplete("ipho");
|
|
6490
6490
|
* ```
|
|
6491
6491
|
*/
|
|
6492
|
-
declare class SearchClient$
|
|
6492
|
+
declare class SearchClient$5 {
|
|
6493
6493
|
private readonly client;
|
|
6494
6494
|
constructor(client: BaseClient);
|
|
6495
6495
|
/**
|
|
@@ -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$6>;
|
|
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$6>;
|
|
6511
6511
|
/**
|
|
6512
6512
|
* Get eBay keyword autocomplete suggestions.
|
|
6513
6513
|
*
|
|
@@ -6670,7 +6670,7 @@ declare class CategoriesClient {
|
|
|
6670
6670
|
* }
|
|
6671
6671
|
* ```
|
|
6672
6672
|
*/
|
|
6673
|
-
declare class ReferenceClient$
|
|
6673
|
+
declare class ReferenceClient$5 {
|
|
6674
6674
|
private readonly client;
|
|
6675
6675
|
constructor(client: BaseClient);
|
|
6676
6676
|
/**
|
|
@@ -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$6>;
|
|
6682
6682
|
}
|
|
6683
6683
|
|
|
6684
6684
|
/**
|
|
@@ -6725,7 +6725,7 @@ declare class ReferenceClient$4 {
|
|
|
6725
6725
|
*/
|
|
6726
6726
|
declare class EbayClient {
|
|
6727
6727
|
/** Client for active search, completed/sold search, and autocomplete */
|
|
6728
|
-
readonly search: SearchClient$
|
|
6728
|
+
readonly search: SearchClient$5;
|
|
6729
6729
|
/** Client for item detail and catalog product reviews */
|
|
6730
6730
|
readonly items: ItemsClient;
|
|
6731
6731
|
/** Client for seller profile, items, and feedback */
|
|
@@ -6733,7 +6733,7 @@ declare class EbayClient {
|
|
|
6733
6733
|
/** Client for category browse and the reference category list */
|
|
6734
6734
|
readonly categories: CategoriesClient;
|
|
6735
6735
|
/** Client for reference data (markets) */
|
|
6736
|
-
readonly reference: ReferenceClient$
|
|
6736
|
+
readonly reference: ReferenceClient$5;
|
|
6737
6737
|
/**
|
|
6738
6738
|
* Create a new eBay client.
|
|
6739
6739
|
*
|
|
@@ -7228,7 +7228,7 @@ interface SearchChip {
|
|
|
7228
7228
|
/**
|
|
7229
7229
|
* A page of search results.
|
|
7230
7230
|
*/
|
|
7231
|
-
interface SearchResponse$
|
|
7231
|
+
interface SearchResponse$5 {
|
|
7232
7232
|
query: string | null;
|
|
7233
7233
|
results: SearchResult[];
|
|
7234
7234
|
total_results: number | null;
|
|
@@ -7466,7 +7466,7 @@ interface RegionsResponse$1 {
|
|
|
7466
7466
|
/**
|
|
7467
7467
|
* A single geo-targeted scraper market (for /markets).
|
|
7468
7468
|
*/
|
|
7469
|
-
interface MarketInfo$
|
|
7469
|
+
interface MarketInfo$3 {
|
|
7470
7470
|
/** Content region code (e.g. "US") */
|
|
7471
7471
|
gl: string;
|
|
7472
7472
|
/** UI language code (e.g. "en") */
|
|
@@ -7477,8 +7477,8 @@ interface MarketInfo$2 {
|
|
|
7477
7477
|
/**
|
|
7478
7478
|
* Response from the /markets endpoint.
|
|
7479
7479
|
*/
|
|
7480
|
-
interface MarketsResponse$
|
|
7481
|
-
markets: MarketInfo$
|
|
7480
|
+
interface MarketsResponse$5 {
|
|
7481
|
+
markets: MarketInfo$3[];
|
|
7482
7482
|
}
|
|
7483
7483
|
/** Result-type filter for search. */
|
|
7484
7484
|
type YoutubeSearchType = "video" | "channel" | "playlist" | "movie" | "all";
|
|
@@ -7668,7 +7668,7 @@ interface YoutubeCategoriesParams {
|
|
|
7668
7668
|
* const suggestions = await client.youtube.search.autocomplete("lofi");
|
|
7669
7669
|
* ```
|
|
7670
7670
|
*/
|
|
7671
|
-
declare class SearchClient$
|
|
7671
|
+
declare class SearchClient$4 {
|
|
7672
7672
|
private readonly client;
|
|
7673
7673
|
constructor(client: BaseClient);
|
|
7674
7674
|
/**
|
|
@@ -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$5>;
|
|
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$5>;
|
|
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$5>;
|
|
8124
8124
|
}
|
|
8125
8125
|
|
|
8126
8126
|
/**
|
|
@@ -8143,7 +8143,7 @@ declare class MusicClient {
|
|
|
8143
8143
|
* const markets = await client.youtube.reference.markets();
|
|
8144
8144
|
* ```
|
|
8145
8145
|
*/
|
|
8146
|
-
declare class ReferenceClient$
|
|
8146
|
+
declare class ReferenceClient$4 {
|
|
8147
8147
|
private readonly client;
|
|
8148
8148
|
constructor(client: BaseClient);
|
|
8149
8149
|
/**
|
|
@@ -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$5>;
|
|
8174
8174
|
}
|
|
8175
8175
|
|
|
8176
8176
|
/**
|
|
@@ -8221,7 +8221,7 @@ declare class ReferenceClient$3 {
|
|
|
8221
8221
|
*/
|
|
8222
8222
|
declare class YoutubeClient {
|
|
8223
8223
|
/** Client for full-matrix search and keyword autocomplete */
|
|
8224
|
-
readonly search: SearchClient$
|
|
8224
|
+
readonly search: SearchClient$4;
|
|
8225
8225
|
/** Client for video detail, comments, transcript, captions, streams, live chat, batch, and oEmbed */
|
|
8226
8226
|
readonly videos: VideosClient;
|
|
8227
8227
|
/** Client for channel detail, tab feeds, about, subscriber count, search, and resolve */
|
|
@@ -8237,7 +8237,7 @@ declare class YoutubeClient {
|
|
|
8237
8237
|
/** Client for YouTube Music search */
|
|
8238
8238
|
readonly music: MusicClient;
|
|
8239
8239
|
/** Client for reference data (categories, languages, regions, markets) */
|
|
8240
|
-
readonly reference: ReferenceClient$
|
|
8240
|
+
readonly reference: ReferenceClient$4;
|
|
8241
8241
|
/**
|
|
8242
8242
|
* Create a new YouTube client.
|
|
8243
8243
|
*
|
|
@@ -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;
|
|
@@ -8453,7 +8453,7 @@ interface Suggestion {
|
|
|
8453
8453
|
market?: string | null;
|
|
8454
8454
|
}
|
|
8455
8455
|
/** A single supported market (for /markets). */
|
|
8456
|
-
interface MarketInfo$
|
|
8456
|
+
interface MarketInfo$2 {
|
|
8457
8457
|
code: string;
|
|
8458
8458
|
domain: string;
|
|
8459
8459
|
country: string;
|
|
@@ -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$4 {
|
|
8472
8472
|
market: string;
|
|
8473
8473
|
country: string;
|
|
8474
8474
|
total: number;
|
|
@@ -8478,8 +8478,8 @@ interface SearchResponse$2 {
|
|
|
8478
8478
|
results: Property$1[];
|
|
8479
8479
|
}
|
|
8480
8480
|
/** Response from the /markets endpoint. */
|
|
8481
|
-
interface MarketsResponse$
|
|
8482
|
-
markets: MarketInfo$
|
|
8481
|
+
interface MarketsResponse$4 {
|
|
8482
|
+
markets: MarketInfo$2[];
|
|
8483
8483
|
}
|
|
8484
8484
|
/** Supported market codes. */
|
|
8485
8485
|
type RealtorMarket = "us" | "ca";
|
|
@@ -8556,7 +8556,7 @@ interface RealtorPropertyOptions {
|
|
|
8556
8556
|
* const suggestions = await client.realtor.search.autocomplete("Miami");
|
|
8557
8557
|
* ```
|
|
8558
8558
|
*/
|
|
8559
|
-
declare class SearchClient$
|
|
8559
|
+
declare class SearchClient$3 {
|
|
8560
8560
|
private readonly client;
|
|
8561
8561
|
constructor(client: BaseClient);
|
|
8562
8562
|
/**
|
|
@@ -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$4>;
|
|
8573
8573
|
/**
|
|
8574
8574
|
* Get location autocomplete suggestions.
|
|
8575
8575
|
*
|
|
@@ -8630,7 +8630,7 @@ declare class PropertiesClient$1 {
|
|
|
8630
8630
|
* }
|
|
8631
8631
|
* ```
|
|
8632
8632
|
*/
|
|
8633
|
-
declare class ReferenceClient$
|
|
8633
|
+
declare class ReferenceClient$3 {
|
|
8634
8634
|
private readonly client;
|
|
8635
8635
|
constructor(client: BaseClient);
|
|
8636
8636
|
/**
|
|
@@ -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$4>;
|
|
8642
8642
|
}
|
|
8643
8643
|
|
|
8644
8644
|
/**
|
|
@@ -8676,11 +8676,11 @@ declare class ReferenceClient$2 {
|
|
|
8676
8676
|
*/
|
|
8677
8677
|
declare class RealtorClient {
|
|
8678
8678
|
/** Client for property search and location autocomplete */
|
|
8679
|
-
readonly search: SearchClient$
|
|
8679
|
+
readonly search: SearchClient$3;
|
|
8680
8680
|
/** Client for full property detail */
|
|
8681
8681
|
readonly properties: PropertiesClient$1;
|
|
8682
8682
|
/** Client for reference data (markets) */
|
|
8683
|
-
readonly reference: ReferenceClient$
|
|
8683
|
+
readonly reference: ReferenceClient$3;
|
|
8684
8684
|
/**
|
|
8685
8685
|
* Create a new Realtor client.
|
|
8686
8686
|
*
|
|
@@ -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$3 {
|
|
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$3 {
|
|
8929
8929
|
markets: Record<string, unknown>[];
|
|
8930
8930
|
}
|
|
8931
8931
|
/** Seller-type filter for search. */
|
|
@@ -9001,7 +9001,7 @@ interface LeboncoinDepartmentsParams {
|
|
|
9001
9001
|
* }
|
|
9002
9002
|
* ```
|
|
9003
9003
|
*/
|
|
9004
|
-
declare class SearchClient$
|
|
9004
|
+
declare class SearchClient$2 {
|
|
9005
9005
|
private readonly client;
|
|
9006
9006
|
constructor(client: BaseClient);
|
|
9007
9007
|
/**
|
|
@@ -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$3>;
|
|
9019
9019
|
}
|
|
9020
9020
|
|
|
9021
9021
|
/**
|
|
@@ -9123,7 +9123,7 @@ declare class SellersClient {
|
|
|
9123
9123
|
* const { markets } = await client.leboncoin.reference.markets();
|
|
9124
9124
|
* ```
|
|
9125
9125
|
*/
|
|
9126
|
-
declare class ReferenceClient$
|
|
9126
|
+
declare class ReferenceClient$2 {
|
|
9127
9127
|
private readonly client;
|
|
9128
9128
|
constructor(client: BaseClient);
|
|
9129
9129
|
/**
|
|
@@ -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$3>;
|
|
9161
9161
|
}
|
|
9162
9162
|
|
|
9163
9163
|
/**
|
|
@@ -9200,13 +9200,13 @@ declare class ReferenceClient$1 {
|
|
|
9200
9200
|
*/
|
|
9201
9201
|
declare class LeboncoinClient {
|
|
9202
9202
|
/** Client for ad search */
|
|
9203
|
-
readonly search: SearchClient$
|
|
9203
|
+
readonly search: SearchClient$2;
|
|
9204
9204
|
/** Client for ad detail and similar ads */
|
|
9205
9205
|
readonly ads: AdsClient;
|
|
9206
9206
|
/** Client for seller profile and listings */
|
|
9207
9207
|
readonly sellers: SellersClient;
|
|
9208
9208
|
/** Client for reference data (categories, regions, departments, locations, markets) */
|
|
9209
|
-
readonly reference: ReferenceClient$
|
|
9209
|
+
readonly reference: ReferenceClient$2;
|
|
9210
9210
|
/**
|
|
9211
9211
|
* Create a new Leboncoin client.
|
|
9212
9212
|
*
|
|
@@ -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;
|
|
@@ -9244,7 +9244,7 @@ interface Photo {
|
|
|
9244
9244
|
sources?: Record<string, unknown>[];
|
|
9245
9245
|
}
|
|
9246
9246
|
/** Page-number pagination (Zillow search returns ~40 results per page). */
|
|
9247
|
-
interface Pagination {
|
|
9247
|
+
interface Pagination$1 {
|
|
9248
9248
|
current_page?: number;
|
|
9249
9249
|
per_page?: number | null;
|
|
9250
9250
|
total_pages?: number | null;
|
|
@@ -9272,7 +9272,7 @@ interface NearbyRegion {
|
|
|
9272
9272
|
url?: string | null;
|
|
9273
9273
|
}
|
|
9274
9274
|
/** A supported coverage region (for /markets). */
|
|
9275
|
-
interface MarketInfo {
|
|
9275
|
+
interface MarketInfo$1 {
|
|
9276
9276
|
code: string;
|
|
9277
9277
|
country: string;
|
|
9278
9278
|
currency: string;
|
|
@@ -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,14 +9781,14 @@ interface AutocompleteResult {
|
|
|
9781
9781
|
metro_id?: number | null;
|
|
9782
9782
|
}
|
|
9783
9783
|
/** Response from the /search endpoint. */
|
|
9784
|
-
interface SearchResponse {
|
|
9784
|
+
interface SearchResponse$2 {
|
|
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;
|
|
9791
|
-
pagination: Pagination;
|
|
9791
|
+
pagination: Pagination$1;
|
|
9792
9792
|
scraped_utc?: number | null;
|
|
9793
9793
|
scraped_at?: string | null;
|
|
9794
9794
|
}
|
|
@@ -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,8 +9806,8 @@ interface AutocompleteResponse {
|
|
|
9806
9806
|
results: AutocompleteResult[];
|
|
9807
9807
|
}
|
|
9808
9808
|
/** Response from the /markets endpoint. */
|
|
9809
|
-
interface MarketsResponse {
|
|
9810
|
-
markets: MarketInfo[];
|
|
9809
|
+
interface MarketsResponse$2 {
|
|
9810
|
+
markets: MarketInfo$1[];
|
|
9811
9811
|
}
|
|
9812
9812
|
/** Listing status filter. */
|
|
9813
9813
|
type ZillowStatus = "for_sale" | "for_rent" | "sold";
|
|
@@ -9887,7 +9887,7 @@ interface ZillowAgentOptions {
|
|
|
9887
9887
|
* const suggestions = await client.zillow.search.autocomplete("Miami");
|
|
9888
9888
|
* ```
|
|
9889
9889
|
*/
|
|
9890
|
-
declare class SearchClient {
|
|
9890
|
+
declare class SearchClient$1 {
|
|
9891
9891
|
private readonly client;
|
|
9892
9892
|
constructor(client: BaseClient);
|
|
9893
9893
|
/**
|
|
@@ -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$2>;
|
|
9907
9907
|
/**
|
|
9908
9908
|
* Resolve a search term to Zillow regions/addresses (regionId, lat/lng).
|
|
9909
9909
|
*
|
|
@@ -9998,7 +9998,7 @@ declare class AgentClient {
|
|
|
9998
9998
|
* }
|
|
9999
9999
|
* ```
|
|
10000
10000
|
*/
|
|
10001
|
-
declare class ReferenceClient {
|
|
10001
|
+
declare class ReferenceClient$1 {
|
|
10002
10002
|
private readonly client;
|
|
10003
10003
|
constructor(client: BaseClient);
|
|
10004
10004
|
/**
|
|
@@ -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$2>;
|
|
10010
10010
|
}
|
|
10011
10011
|
|
|
10012
10012
|
/**
|
|
@@ -10049,13 +10049,13 @@ declare class ReferenceClient {
|
|
|
10049
10049
|
*/
|
|
10050
10050
|
declare class ZillowClient {
|
|
10051
10051
|
/** Client for property search and location autocomplete */
|
|
10052
|
-
readonly search: SearchClient;
|
|
10052
|
+
readonly search: SearchClient$1;
|
|
10053
10053
|
/** Client for full property detail */
|
|
10054
10054
|
readonly properties: PropertiesClient;
|
|
10055
10055
|
/** Client for agent profile + listings */
|
|
10056
10056
|
readonly agent: AgentClient;
|
|
10057
10057
|
/** Client for reference data (markets) */
|
|
10058
|
-
readonly reference: ReferenceClient;
|
|
10058
|
+
readonly reference: ReferenceClient$1;
|
|
10059
10059
|
/**
|
|
10060
10060
|
* Create a new Zillow client.
|
|
10061
10061
|
*
|
|
@@ -10064,6 +10064,897 @@ 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$1 {
|
|
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$1 = 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$1>;
|
|
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$1>;
|
|
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
|
+
|
|
10494
|
+
/**
|
|
10495
|
+
* TypeScript types for LoopNet API responses.
|
|
10496
|
+
*
|
|
10497
|
+
* These interfaces mirror the backend `loopnet_scraper` response schema
|
|
10498
|
+
* field-for-field. Optional / nullable backend fields are typed as
|
|
10499
|
+
* `Type | null`; backend list fields default to `[]` and are typed as arrays.
|
|
10500
|
+
* Every datetime field ships in BOTH `*_utc` (number) and `*_at` (string) form.
|
|
10501
|
+
*
|
|
10502
|
+
* LoopNet is multi-market (us/ca/uk/fr/es); every search response carries
|
|
10503
|
+
* `market` + `currency` so a caller can tell CAD from GBP.
|
|
10504
|
+
*/
|
|
10505
|
+
/** A LoopNet broker/agent attributed to a listing or profile. */
|
|
10506
|
+
interface Broker {
|
|
10507
|
+
name: string | null;
|
|
10508
|
+
company: string | null;
|
|
10509
|
+
title: string | null;
|
|
10510
|
+
phone: string | null;
|
|
10511
|
+
email: string | null;
|
|
10512
|
+
photo: string | null;
|
|
10513
|
+
url: string | null;
|
|
10514
|
+
broker_id: string | null;
|
|
10515
|
+
city: string | null;
|
|
10516
|
+
region: string | null;
|
|
10517
|
+
}
|
|
10518
|
+
/** One leasable space / unit within a listing (lease listings). */
|
|
10519
|
+
interface Space {
|
|
10520
|
+
name: string | null;
|
|
10521
|
+
space_use: string | null;
|
|
10522
|
+
size_sqft: number | null;
|
|
10523
|
+
size_text: string | null;
|
|
10524
|
+
rent_text: string | null;
|
|
10525
|
+
rent_per_sqft: number | null;
|
|
10526
|
+
/** "/SF/YR", "/SF/MO", "/MO" */
|
|
10527
|
+
rent_period: string | null;
|
|
10528
|
+
term: string | null;
|
|
10529
|
+
condition: string | null;
|
|
10530
|
+
available_date: string | null;
|
|
10531
|
+
floor: string | null;
|
|
10532
|
+
}
|
|
10533
|
+
/** A supported coverage market (for /markets). */
|
|
10534
|
+
interface MarketInfo {
|
|
10535
|
+
code: string;
|
|
10536
|
+
domain: string;
|
|
10537
|
+
country: string;
|
|
10538
|
+
currency: string;
|
|
10539
|
+
locale: string;
|
|
10540
|
+
name: string;
|
|
10541
|
+
}
|
|
10542
|
+
/** A LoopNet property-type facet (for /property-types). */
|
|
10543
|
+
interface PropertyTypeInfo {
|
|
10544
|
+
slug: string;
|
|
10545
|
+
name: string;
|
|
10546
|
+
}
|
|
10547
|
+
/** Page-number pagination (LoopNet returns ~25 cards per page, caps ~500). */
|
|
10548
|
+
interface Pagination {
|
|
10549
|
+
current_page: number;
|
|
10550
|
+
per_page: number | null;
|
|
10551
|
+
total_pages: number | null;
|
|
10552
|
+
total_results: number | null;
|
|
10553
|
+
}
|
|
10554
|
+
/** One LoopNet search result card (search / broker listings). */
|
|
10555
|
+
interface ListingCard {
|
|
10556
|
+
position: number;
|
|
10557
|
+
listing_id: string | null;
|
|
10558
|
+
property_id: string | null;
|
|
10559
|
+
url: string | null;
|
|
10560
|
+
/** for-lease | for-sale | auction */
|
|
10561
|
+
listing_type: string | null;
|
|
10562
|
+
/** Office, Retail, Industrial … */
|
|
10563
|
+
property_type: string | null;
|
|
10564
|
+
property_type_id: string | null;
|
|
10565
|
+
space_use: string | null;
|
|
10566
|
+
status: string | null;
|
|
10567
|
+
status_id: string | null;
|
|
10568
|
+
exposure_level: string | null;
|
|
10569
|
+
is_auction: boolean | null;
|
|
10570
|
+
title: string | null;
|
|
10571
|
+
subtitle: string | null;
|
|
10572
|
+
description: string | null;
|
|
10573
|
+
/** LoopNet "N Star" building rating */
|
|
10574
|
+
building_rating: number | null;
|
|
10575
|
+
year_built: number | null;
|
|
10576
|
+
/** "$41.40 /SF/YR", "$2,500,000" */
|
|
10577
|
+
price_text: string | null;
|
|
10578
|
+
price: number | null;
|
|
10579
|
+
price_currency: string | null;
|
|
10580
|
+
/** "/SF/YR", "/SF/MO", null for sale */
|
|
10581
|
+
price_period: string | null;
|
|
10582
|
+
/** "901 - 15,746 SF" */
|
|
10583
|
+
size_text: string | null;
|
|
10584
|
+
size_min_sqft: number | null;
|
|
10585
|
+
size_max_sqft: number | null;
|
|
10586
|
+
address: string | null;
|
|
10587
|
+
city: string | null;
|
|
10588
|
+
state: string | null;
|
|
10589
|
+
zip: string | null;
|
|
10590
|
+
county: string | null;
|
|
10591
|
+
country: string | null;
|
|
10592
|
+
market_id: string | null;
|
|
10593
|
+
latitude: number | null;
|
|
10594
|
+
longitude: number | null;
|
|
10595
|
+
thumbnail: string | null;
|
|
10596
|
+
has_virtual_tour: boolean | null;
|
|
10597
|
+
page_rank: number | null;
|
|
10598
|
+
position_rank: number | null;
|
|
10599
|
+
brokers: Broker[];
|
|
10600
|
+
}
|
|
10601
|
+
/** Full LoopNet listing detail (JSON-LD RealEstateListing + DOM facts). */
|
|
10602
|
+
interface ListingDetail {
|
|
10603
|
+
listing_id: string | null;
|
|
10604
|
+
property_id: string | null;
|
|
10605
|
+
url: string | null;
|
|
10606
|
+
market: string | null;
|
|
10607
|
+
country: string | null;
|
|
10608
|
+
/** for-lease | for-sale | auction */
|
|
10609
|
+
listing_type: string | null;
|
|
10610
|
+
/** "For Lease" / "For Sale" */
|
|
10611
|
+
transaction_type: string | null;
|
|
10612
|
+
name: string | null;
|
|
10613
|
+
title: string | null;
|
|
10614
|
+
subtitle: string | null;
|
|
10615
|
+
description: string | null;
|
|
10616
|
+
highlights: string[];
|
|
10617
|
+
price_text: string | null;
|
|
10618
|
+
price: number | null;
|
|
10619
|
+
price_currency: string | null;
|
|
10620
|
+
price_period: string | null;
|
|
10621
|
+
rental_rate_text: string | null;
|
|
10622
|
+
cap_rate: number | null;
|
|
10623
|
+
noi: string | null;
|
|
10624
|
+
price_per_sqft: number | null;
|
|
10625
|
+
property_type: string | null;
|
|
10626
|
+
property_sub_type: string | null;
|
|
10627
|
+
building_class: string | null;
|
|
10628
|
+
building_size_sqft: number | null;
|
|
10629
|
+
building_size_text: string | null;
|
|
10630
|
+
rentable_building_area: string | null;
|
|
10631
|
+
total_space_available: string | null;
|
|
10632
|
+
total_space_available_sqft: number | null;
|
|
10633
|
+
min_divisible: string | null;
|
|
10634
|
+
max_contiguous: string | null;
|
|
10635
|
+
typical_floor_size: string | null;
|
|
10636
|
+
building_height: string | null;
|
|
10637
|
+
ceiling_height: string | null;
|
|
10638
|
+
year_built: number | null;
|
|
10639
|
+
year_built_renovated: string | null;
|
|
10640
|
+
building_rating: number | null;
|
|
10641
|
+
lot_size_text: string | null;
|
|
10642
|
+
lot_size_acres: number | null;
|
|
10643
|
+
units: number | null;
|
|
10644
|
+
stories: number | null;
|
|
10645
|
+
percent_leased: string | null;
|
|
10646
|
+
tenancy: string | null;
|
|
10647
|
+
zoning: string | null;
|
|
10648
|
+
parcel_id: string | null;
|
|
10649
|
+
parking: string | null;
|
|
10650
|
+
walk_score: number | null;
|
|
10651
|
+
amenities: string[];
|
|
10652
|
+
address: string | null;
|
|
10653
|
+
city: string | null;
|
|
10654
|
+
state: string | null;
|
|
10655
|
+
zip: string | null;
|
|
10656
|
+
county: string | null;
|
|
10657
|
+
latitude: number | null;
|
|
10658
|
+
longitude: number | null;
|
|
10659
|
+
images: string[];
|
|
10660
|
+
photo_count: number | null;
|
|
10661
|
+
videos: string[];
|
|
10662
|
+
documents: string[];
|
|
10663
|
+
has_virtual_tour: boolean | null;
|
|
10664
|
+
spaces: Space[];
|
|
10665
|
+
brokers: Broker[];
|
|
10666
|
+
/** Every additionalProperty name/value pair LoopNet ships, verbatim */
|
|
10667
|
+
additional_facts: {
|
|
10668
|
+
name: string;
|
|
10669
|
+
value: string;
|
|
10670
|
+
}[];
|
|
10671
|
+
date_posted_utc: number | null;
|
|
10672
|
+
date_posted_at: string | null;
|
|
10673
|
+
date_updated_utc: number | null;
|
|
10674
|
+
date_updated_at: string | null;
|
|
10675
|
+
scraped_utc: number | null;
|
|
10676
|
+
scraped_at: string | null;
|
|
10677
|
+
}
|
|
10678
|
+
/** A LoopNet broker/professional profile with their listings. */
|
|
10679
|
+
interface BrokerProfile {
|
|
10680
|
+
broker_id: string | null;
|
|
10681
|
+
name: string | null;
|
|
10682
|
+
company: string | null;
|
|
10683
|
+
title: string | null;
|
|
10684
|
+
phone: string | null;
|
|
10685
|
+
email: string | null;
|
|
10686
|
+
photo: string | null;
|
|
10687
|
+
url: string | null;
|
|
10688
|
+
bio: string | null;
|
|
10689
|
+
address: string | null;
|
|
10690
|
+
city: string | null;
|
|
10691
|
+
state: string | null;
|
|
10692
|
+
license_number: string | null;
|
|
10693
|
+
specialties: string[];
|
|
10694
|
+
listing_count: number | null;
|
|
10695
|
+
listings: ListingCard[];
|
|
10696
|
+
scraped_utc: number | null;
|
|
10697
|
+
scraped_at: string | null;
|
|
10698
|
+
}
|
|
10699
|
+
/** Response from the /search endpoint. */
|
|
10700
|
+
interface SearchResponse {
|
|
10701
|
+
market: string;
|
|
10702
|
+
country: string;
|
|
10703
|
+
currency: string;
|
|
10704
|
+
listing_type: string;
|
|
10705
|
+
property_type: string | null;
|
|
10706
|
+
location: string | null;
|
|
10707
|
+
results: ListingCard[];
|
|
10708
|
+
pagination: Pagination;
|
|
10709
|
+
scraped_utc: number | null;
|
|
10710
|
+
scraped_at: string | null;
|
|
10711
|
+
}
|
|
10712
|
+
/** Response from the /listings/{listing_id} endpoint. */
|
|
10713
|
+
interface ListingResponse {
|
|
10714
|
+
listing: ListingDetail;
|
|
10715
|
+
}
|
|
10716
|
+
/** Response from the /brokers/{slug}/{broker_id} endpoint. */
|
|
10717
|
+
interface BrokerResponse {
|
|
10718
|
+
broker: BrokerProfile;
|
|
10719
|
+
}
|
|
10720
|
+
/** Response from the /markets endpoint. */
|
|
10721
|
+
interface MarketsResponse {
|
|
10722
|
+
markets: MarketInfo[];
|
|
10723
|
+
}
|
|
10724
|
+
/** Response from the /property-types endpoint. */
|
|
10725
|
+
interface PropertyTypesResponse {
|
|
10726
|
+
property_types: PropertyTypeInfo[];
|
|
10727
|
+
}
|
|
10728
|
+
/** Coverage market for LoopNet requests. */
|
|
10729
|
+
type LoopNetMarket = "us" | "ca" | "uk" | "fr" | "es";
|
|
10730
|
+
/** Listing-type filter for listing search. */
|
|
10731
|
+
type LoopNetListingType = "for-lease" | "for-sale" | "auctions";
|
|
10732
|
+
/** What min_price/max_price apply to. */
|
|
10733
|
+
type LoopNetPriceType = "unit" | "sf" | "acre";
|
|
10734
|
+
/** Parameters for the listing search endpoint. */
|
|
10735
|
+
interface LoopNetSearchParams {
|
|
10736
|
+
/** Location — "Houston, TX", ZIP, state code, or "usa" (required) */
|
|
10737
|
+
location: string;
|
|
10738
|
+
/** Coverage market (default: "us") */
|
|
10739
|
+
market?: LoopNetMarket;
|
|
10740
|
+
/** Listing type (default: "for-lease") */
|
|
10741
|
+
listing_type?: LoopNetListingType;
|
|
10742
|
+
/** Property-type slug from /property-types (default: all) */
|
|
10743
|
+
property_type?: string;
|
|
10744
|
+
/** Page number (1-20; LoopNet caps ~500 results) */
|
|
10745
|
+
page?: number;
|
|
10746
|
+
/** Minimum price filter */
|
|
10747
|
+
min_price?: number;
|
|
10748
|
+
/** Maximum price filter */
|
|
10749
|
+
max_price?: number;
|
|
10750
|
+
/** What min/max price apply to */
|
|
10751
|
+
price_type?: LoopNetPriceType;
|
|
10752
|
+
/** Minimum size (square feet) */
|
|
10753
|
+
min_size?: number;
|
|
10754
|
+
/** Maximum size (square feet) */
|
|
10755
|
+
max_size?: number;
|
|
10756
|
+
}
|
|
10757
|
+
|
|
10758
|
+
/**
|
|
10759
|
+
* LoopNet Search API client.
|
|
10760
|
+
*
|
|
10761
|
+
* Provides commercial-listing search for for-lease / for-sale / auction
|
|
10762
|
+
* listings across 5 markets (us, ca, uk, fr, es).
|
|
10763
|
+
*/
|
|
10764
|
+
|
|
10765
|
+
/**
|
|
10766
|
+
* Client for the LoopNet listing search endpoint.
|
|
10767
|
+
*
|
|
10768
|
+
* @example
|
|
10769
|
+
* ```typescript
|
|
10770
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10771
|
+
*
|
|
10772
|
+
* const results = await client.loopnet.search.search({ location: "Houston, TX" });
|
|
10773
|
+
* for (const listing of results.results) {
|
|
10774
|
+
* console.log(`${listing.position}. ${listing.address} — ${listing.price_text}`);
|
|
10775
|
+
* }
|
|
10776
|
+
* ```
|
|
10777
|
+
*/
|
|
10778
|
+
declare class SearchClient {
|
|
10779
|
+
private readonly client;
|
|
10780
|
+
constructor(client: BaseClient);
|
|
10781
|
+
/**
|
|
10782
|
+
* Search LoopNet for for-lease / for-sale / auction commercial listings.
|
|
10783
|
+
*
|
|
10784
|
+
* Costs 10 credits.
|
|
10785
|
+
*
|
|
10786
|
+
* @param params - Search parameters including location, filters, and pagination.
|
|
10787
|
+
* @returns Search results with listing cards and pagination metadata.
|
|
10788
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
10789
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
10790
|
+
*/
|
|
10791
|
+
search(params: LoopNetSearchParams): Promise<SearchResponse>;
|
|
10792
|
+
}
|
|
10793
|
+
|
|
10794
|
+
/**
|
|
10795
|
+
* LoopNet Listings API client.
|
|
10796
|
+
*
|
|
10797
|
+
* Provides full listing detail lookup by listing id.
|
|
10798
|
+
*/
|
|
10799
|
+
|
|
10800
|
+
/** Options for the listing detail endpoint. */
|
|
10801
|
+
interface LoopNetListingParams {
|
|
10802
|
+
/** Coverage market (default: "us") */
|
|
10803
|
+
market?: LoopNetMarket;
|
|
10804
|
+
}
|
|
10805
|
+
/**
|
|
10806
|
+
* Client for the LoopNet listing detail endpoint.
|
|
10807
|
+
*
|
|
10808
|
+
* @example
|
|
10809
|
+
* ```typescript
|
|
10810
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10811
|
+
*
|
|
10812
|
+
* const detail = await client.loopnet.listings.get("12345678");
|
|
10813
|
+
* console.log(detail.listing.address, detail.listing.price_text);
|
|
10814
|
+
* ```
|
|
10815
|
+
*/
|
|
10816
|
+
declare class ListingsClient {
|
|
10817
|
+
private readonly client;
|
|
10818
|
+
constructor(client: BaseClient);
|
|
10819
|
+
/**
|
|
10820
|
+
* Get a single LoopNet listing's full detail by listing id.
|
|
10821
|
+
*
|
|
10822
|
+
* Costs 12 credits.
|
|
10823
|
+
*
|
|
10824
|
+
* @param listingId - The LoopNet listing id.
|
|
10825
|
+
* @param params - Optional market selector.
|
|
10826
|
+
* @returns Listing detail response.
|
|
10827
|
+
* @throws NotFoundError - If the listing doesn't exist.
|
|
10828
|
+
*/
|
|
10829
|
+
get(listingId: string, params?: LoopNetListingParams): Promise<ListingResponse>;
|
|
10830
|
+
}
|
|
10831
|
+
|
|
10832
|
+
/**
|
|
10833
|
+
* LoopNet Brokers API client.
|
|
10834
|
+
*
|
|
10835
|
+
* Provides a commercial broker's profile and their active listings.
|
|
10836
|
+
*/
|
|
10837
|
+
|
|
10838
|
+
/** Options for the broker profile endpoint. */
|
|
10839
|
+
interface LoopNetBrokerParams {
|
|
10840
|
+
/** Coverage market (default: "us") */
|
|
10841
|
+
market?: LoopNetMarket;
|
|
10842
|
+
}
|
|
10843
|
+
/**
|
|
10844
|
+
* Client for the LoopNet broker profile endpoint.
|
|
10845
|
+
*
|
|
10846
|
+
* @example
|
|
10847
|
+
* ```typescript
|
|
10848
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10849
|
+
*
|
|
10850
|
+
* const profile = await client.loopnet.brokers.get("jane-doe", "w7x2k9");
|
|
10851
|
+
* console.log(profile.broker.name, profile.broker.listing_count);
|
|
10852
|
+
* ```
|
|
10853
|
+
*/
|
|
10854
|
+
declare class BrokersClient {
|
|
10855
|
+
private readonly client;
|
|
10856
|
+
constructor(client: BaseClient);
|
|
10857
|
+
/**
|
|
10858
|
+
* Get a LoopNet broker's profile and their active listings.
|
|
10859
|
+
*
|
|
10860
|
+
* Costs 8 credits.
|
|
10861
|
+
*
|
|
10862
|
+
* @param slug - The broker's profile URL slug.
|
|
10863
|
+
* @param brokerId - The LoopNet broker id.
|
|
10864
|
+
* @param params - Optional market selector.
|
|
10865
|
+
* @returns Broker profile response with the broker and their listings.
|
|
10866
|
+
* @throws NotFoundError - If the broker doesn't exist.
|
|
10867
|
+
*/
|
|
10868
|
+
get(slug: string, brokerId: string, params?: LoopNetBrokerParams): Promise<BrokerResponse>;
|
|
10869
|
+
}
|
|
10870
|
+
|
|
10871
|
+
/**
|
|
10872
|
+
* LoopNet Reference Data API client.
|
|
10873
|
+
*
|
|
10874
|
+
* Provides the static coverage-market and property-type lists.
|
|
10875
|
+
*/
|
|
10876
|
+
|
|
10877
|
+
/**
|
|
10878
|
+
* Client for LoopNet reference endpoints (markets, property types).
|
|
10879
|
+
*
|
|
10880
|
+
* @example
|
|
10881
|
+
* ```typescript
|
|
10882
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10883
|
+
*
|
|
10884
|
+
* const markets = await client.loopnet.reference.markets();
|
|
10885
|
+
* const types = await client.loopnet.reference.propertyTypes();
|
|
10886
|
+
* ```
|
|
10887
|
+
*/
|
|
10888
|
+
declare class ReferenceClient {
|
|
10889
|
+
private readonly client;
|
|
10890
|
+
constructor(client: BaseClient);
|
|
10891
|
+
/**
|
|
10892
|
+
* List LoopNet coverage markets (us, ca, uk, fr, es).
|
|
10893
|
+
*
|
|
10894
|
+
* Free — costs 0 credits.
|
|
10895
|
+
*
|
|
10896
|
+
* @returns Markets response with all supported coverage markets.
|
|
10897
|
+
*/
|
|
10898
|
+
markets(): Promise<MarketsResponse>;
|
|
10899
|
+
/**
|
|
10900
|
+
* List LoopNet property-type facets (Office, Retail, Industrial, …).
|
|
10901
|
+
*
|
|
10902
|
+
* Free — costs 0 credits.
|
|
10903
|
+
*
|
|
10904
|
+
* @returns Property-types response with all searchable property-type slugs.
|
|
10905
|
+
*/
|
|
10906
|
+
propertyTypes(): Promise<PropertyTypesResponse>;
|
|
10907
|
+
}
|
|
10908
|
+
|
|
10909
|
+
/**
|
|
10910
|
+
* LoopNet API client.
|
|
10911
|
+
*
|
|
10912
|
+
* Provides access to all LoopNet API endpoints through specialized sub-clients.
|
|
10913
|
+
*/
|
|
10914
|
+
|
|
10915
|
+
/**
|
|
10916
|
+
* LoopNet API client with access to all LoopNet endpoints.
|
|
10917
|
+
*
|
|
10918
|
+
* Provides sub-clients for different resource types:
|
|
10919
|
+
* - `search` - For-lease / for-sale / auction commercial-listing search
|
|
10920
|
+
* - `listings` - Listing detail (by listing id)
|
|
10921
|
+
* - `brokers` - Broker profile and their active listings
|
|
10922
|
+
* - `reference` - Reference data (markets, property types)
|
|
10923
|
+
*
|
|
10924
|
+
* @example
|
|
10925
|
+
* ```typescript
|
|
10926
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
10927
|
+
*
|
|
10928
|
+
* // Search listings
|
|
10929
|
+
* const results = await client.loopnet.search.search({ location: "Houston, TX" });
|
|
10930
|
+
*
|
|
10931
|
+
* // Get listing detail
|
|
10932
|
+
* const detail = await client.loopnet.listings.get("12345678");
|
|
10933
|
+
*
|
|
10934
|
+
* // Get a broker profile
|
|
10935
|
+
* const broker = await client.loopnet.brokers.get("jane-doe", "w7x2k9");
|
|
10936
|
+
*
|
|
10937
|
+
* // Reference data
|
|
10938
|
+
* const markets = await client.loopnet.reference.markets();
|
|
10939
|
+
* ```
|
|
10940
|
+
*/
|
|
10941
|
+
declare class LoopNetClient {
|
|
10942
|
+
/** Client for for-lease / for-sale / auction commercial-listing search */
|
|
10943
|
+
readonly search: SearchClient;
|
|
10944
|
+
/** Client for listing detail (by listing id) */
|
|
10945
|
+
readonly listings: ListingsClient;
|
|
10946
|
+
/** Client for broker profile and their active listings */
|
|
10947
|
+
readonly brokers: BrokersClient;
|
|
10948
|
+
/** Client for reference data (markets, property types) */
|
|
10949
|
+
readonly reference: ReferenceClient;
|
|
10950
|
+
/**
|
|
10951
|
+
* Create a new LoopNet client.
|
|
10952
|
+
*
|
|
10953
|
+
* @param client - The base HTTP client for making requests.
|
|
10954
|
+
*/
|
|
10955
|
+
constructor(client: BaseClient);
|
|
10956
|
+
}
|
|
10957
|
+
|
|
10067
10958
|
/**
|
|
10068
10959
|
* Main ScrapeBadger client.
|
|
10069
10960
|
*
|
|
@@ -10130,6 +11021,10 @@ declare class ScrapeBadger {
|
|
|
10130
11021
|
readonly leboncoin: LeboncoinClient;
|
|
10131
11022
|
/** Zillow scraper API client — 5 endpoints (search, property, agent, autocomplete, markets) */
|
|
10132
11023
|
readonly zillow: ZillowClient;
|
|
11024
|
+
/** Immobiliare scraper API client — 8 endpoints across 4 markets (it, es, gr, lu) */
|
|
11025
|
+
readonly immobiliare: ImmobiliareClient;
|
|
11026
|
+
/** LoopNet scraper API client — commercial real estate across US/CA/UK/FR/ES (search, listing, broker, markets, property types) */
|
|
11027
|
+
readonly loopnet: LoopNetClient;
|
|
10133
11028
|
/**
|
|
10134
11029
|
* Create a new ScrapeBadger client.
|
|
10135
11030
|
*
|
|
@@ -10158,4 +11053,4 @@ declare class ScrapeBadger {
|
|
|
10158
11053
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
10159
11054
|
}
|
|
10160
11055
|
|
|
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 };
|
|
11056
|
+
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$8 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, 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$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$5 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 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$a 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 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$2 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 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 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$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$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$3 as RealtorReferenceClient, type School$1 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$9 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$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$7 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$6 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$9 as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$9 as VintedReferenceClient, SearchClient$b as VintedSearchClient, type VintedSearchParams, type SearchResponse$8 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$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$4 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 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$1 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School 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 };
|