scrapebadger 0.16.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.cts +1026 -107
- package/dist/index.d.ts +1026 -107
- package/dist/index.js +239 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +234 -1
- 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$9 {
|
|
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$a {
|
|
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$9>;
|
|
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$a>;
|
|
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) */
|
|
@@ -3519,6 +3519,457 @@ declare class RedditClient {
|
|
|
3519
3519
|
constructor(client: BaseClient);
|
|
3520
3520
|
}
|
|
3521
3521
|
|
|
3522
|
+
/**
|
|
3523
|
+
* TypeScript types for Redfin API responses.
|
|
3524
|
+
*
|
|
3525
|
+
* These interfaces mirror the backend `redfin_scraper` response schema
|
|
3526
|
+
* field-for-field. Optional / nullable backend fields are typed as
|
|
3527
|
+
* `Type | null`; list fields default to `[]` and are typed as arrays.
|
|
3528
|
+
*
|
|
3529
|
+
* Redfin is a single-domain, single-locale target (redfin.com, USD, en-US
|
|
3530
|
+
* behind a US residential IP), so there is no market/currency dimension on
|
|
3531
|
+
* these types. Every datetime field ships in BOTH `*_utc` (Unix float
|
|
3532
|
+
* seconds) and `*_at` (ISO-8601 Z string).
|
|
3533
|
+
*/
|
|
3534
|
+
interface LatLong$1 {
|
|
3535
|
+
latitude: number | null;
|
|
3536
|
+
longitude: number | null;
|
|
3537
|
+
}
|
|
3538
|
+
interface Pagination$4 {
|
|
3539
|
+
current_page: number;
|
|
3540
|
+
per_page: number | null;
|
|
3541
|
+
total_results: number | null;
|
|
3542
|
+
}
|
|
3543
|
+
/** Map bounding box a search covers. */
|
|
3544
|
+
interface MapBounds$1 {
|
|
3545
|
+
north: number | null;
|
|
3546
|
+
east: number | null;
|
|
3547
|
+
south: number | null;
|
|
3548
|
+
west: number | null;
|
|
3549
|
+
}
|
|
3550
|
+
/** The geocoded region a search resolved to (name + centre point). */
|
|
3551
|
+
interface RegionSelection$1 {
|
|
3552
|
+
name: string | null;
|
|
3553
|
+
display_name: string | null;
|
|
3554
|
+
type: string | null;
|
|
3555
|
+
latitude: number | null;
|
|
3556
|
+
longitude: number | null;
|
|
3557
|
+
}
|
|
3558
|
+
/** Median stats over the result set. */
|
|
3559
|
+
interface SearchMedian {
|
|
3560
|
+
price: number | null;
|
|
3561
|
+
sqft: number | null;
|
|
3562
|
+
price_per_sqft: number | null;
|
|
3563
|
+
dom: number | null;
|
|
3564
|
+
beds: number | null;
|
|
3565
|
+
baths: number | null;
|
|
3566
|
+
}
|
|
3567
|
+
/** MLS attribution. */
|
|
3568
|
+
interface DataSource {
|
|
3569
|
+
id: number | null;
|
|
3570
|
+
name: string | null;
|
|
3571
|
+
description: string | null;
|
|
3572
|
+
}
|
|
3573
|
+
/** A listing badge — "Open House", "New", "3D Tour"… */
|
|
3574
|
+
interface Sash {
|
|
3575
|
+
type_id: number | null;
|
|
3576
|
+
name: string | null;
|
|
3577
|
+
color: string | null;
|
|
3578
|
+
text: string | null;
|
|
3579
|
+
}
|
|
3580
|
+
/** A supported coverage region (for /markets). */
|
|
3581
|
+
interface MarketInfo$6 {
|
|
3582
|
+
code: string;
|
|
3583
|
+
country: string;
|
|
3584
|
+
currency: string;
|
|
3585
|
+
locale: string;
|
|
3586
|
+
name: string;
|
|
3587
|
+
domain: string;
|
|
3588
|
+
}
|
|
3589
|
+
/** One Redfin GIS search card. */
|
|
3590
|
+
interface Listing$2 {
|
|
3591
|
+
position: number;
|
|
3592
|
+
property_id: number | null;
|
|
3593
|
+
listing_id: number | null;
|
|
3594
|
+
building_id: number | null;
|
|
3595
|
+
url: string | null;
|
|
3596
|
+
mls_id: string | null;
|
|
3597
|
+
mls_status: string | null;
|
|
3598
|
+
search_status: number | null;
|
|
3599
|
+
property_type: number | null;
|
|
3600
|
+
ui_property_type: number | null;
|
|
3601
|
+
listing_type: number | null;
|
|
3602
|
+
is_redfin: boolean | null;
|
|
3603
|
+
is_new_construction: boolean | null;
|
|
3604
|
+
is_hot: boolean | null;
|
|
3605
|
+
price: number | null;
|
|
3606
|
+
price_per_sqft: number | null;
|
|
3607
|
+
hoa: number | null;
|
|
3608
|
+
is_hoa_frequency_known: boolean | null;
|
|
3609
|
+
beds: number | null;
|
|
3610
|
+
baths: number | null;
|
|
3611
|
+
full_baths: number | null;
|
|
3612
|
+
partial_baths: number | null;
|
|
3613
|
+
sqft: number | null;
|
|
3614
|
+
lot_size: number | null;
|
|
3615
|
+
stories: number | null;
|
|
3616
|
+
year_built: number | null;
|
|
3617
|
+
parking_spaces: number | null;
|
|
3618
|
+
street_line: string | null;
|
|
3619
|
+
unit_number: string | null;
|
|
3620
|
+
city: string | null;
|
|
3621
|
+
state: string | null;
|
|
3622
|
+
zip: string | null;
|
|
3623
|
+
country_code: string | null;
|
|
3624
|
+
neighborhood: string | null;
|
|
3625
|
+
latitude: number | null;
|
|
3626
|
+
longitude: number | null;
|
|
3627
|
+
show_address_on_map: boolean | null;
|
|
3628
|
+
days_on_market: number | null;
|
|
3629
|
+
time_on_redfin_ms: number | null;
|
|
3630
|
+
time_zone: string | null;
|
|
3631
|
+
sold_date_utc: number | null;
|
|
3632
|
+
sold_date_at: string | null;
|
|
3633
|
+
listing_agent_name: string | null;
|
|
3634
|
+
listing_agent_id: number | null;
|
|
3635
|
+
listing_broker_name: string | null;
|
|
3636
|
+
listing_broker_is_redfin: boolean | null;
|
|
3637
|
+
listing_remarks: string | null;
|
|
3638
|
+
key_facts: string[];
|
|
3639
|
+
listing_tags: string[];
|
|
3640
|
+
hotness_message: string | null;
|
|
3641
|
+
sashes: Sash[];
|
|
3642
|
+
num_pictures: number | null;
|
|
3643
|
+
photo_format: string | null;
|
|
3644
|
+
primary_photo: string | null;
|
|
3645
|
+
has_virtual_tour: boolean | null;
|
|
3646
|
+
has_video_tour: boolean | null;
|
|
3647
|
+
has_3d_tour: boolean | null;
|
|
3648
|
+
tour_url: string | null;
|
|
3649
|
+
open_house_start_utc: number | null;
|
|
3650
|
+
open_house_start_at: string | null;
|
|
3651
|
+
open_house_end_utc: number | null;
|
|
3652
|
+
open_house_end_at: string | null;
|
|
3653
|
+
open_house_text: string | null;
|
|
3654
|
+
}
|
|
3655
|
+
interface Address$2 {
|
|
3656
|
+
street_address: string | null;
|
|
3657
|
+
unit_number: string | null;
|
|
3658
|
+
city: string | null;
|
|
3659
|
+
state: string | null;
|
|
3660
|
+
zip: string | null;
|
|
3661
|
+
county: string | null;
|
|
3662
|
+
neighborhood: string | null;
|
|
3663
|
+
country_code: string | null;
|
|
3664
|
+
}
|
|
3665
|
+
interface PriceHistoryEvent$1 {
|
|
3666
|
+
date: string | null;
|
|
3667
|
+
date_utc: number | null;
|
|
3668
|
+
date_at: string | null;
|
|
3669
|
+
event: string | null;
|
|
3670
|
+
price: number | null;
|
|
3671
|
+
price_per_sqft: number | null;
|
|
3672
|
+
source: string | null;
|
|
3673
|
+
source_id: string | null;
|
|
3674
|
+
mls_status: string | null;
|
|
3675
|
+
}
|
|
3676
|
+
interface TaxHistoryEvent$1 {
|
|
3677
|
+
year: number | null;
|
|
3678
|
+
tax: number | null;
|
|
3679
|
+
assessment_total: number | null;
|
|
3680
|
+
assessment_land: number | null;
|
|
3681
|
+
assessment_improvement: number | null;
|
|
3682
|
+
}
|
|
3683
|
+
interface School$2 {
|
|
3684
|
+
name: string | null;
|
|
3685
|
+
rating: number | null;
|
|
3686
|
+
grades: string | null;
|
|
3687
|
+
level: string | null;
|
|
3688
|
+
type: string | null;
|
|
3689
|
+
distance: number | null;
|
|
3690
|
+
num_students: number | null;
|
|
3691
|
+
url: string | null;
|
|
3692
|
+
}
|
|
3693
|
+
interface Photo$3 {
|
|
3694
|
+
url: string | null;
|
|
3695
|
+
caption: string | null;
|
|
3696
|
+
}
|
|
3697
|
+
/** One `amenitiesInfo` super-group → group → referenceName/content. */
|
|
3698
|
+
interface AmenityGroup {
|
|
3699
|
+
title: string | null;
|
|
3700
|
+
items: Record<string, unknown>[];
|
|
3701
|
+
}
|
|
3702
|
+
/** Full Redfin property detail. */
|
|
3703
|
+
interface Property$2 {
|
|
3704
|
+
property_id: number;
|
|
3705
|
+
listing_id: number | null;
|
|
3706
|
+
url: string | null;
|
|
3707
|
+
mls_id: string | null;
|
|
3708
|
+
mls_status: string | null;
|
|
3709
|
+
property_type: string | null;
|
|
3710
|
+
ui_property_type: number | null;
|
|
3711
|
+
listing_type: number | null;
|
|
3712
|
+
is_redfin: boolean | null;
|
|
3713
|
+
is_new_construction: boolean | null;
|
|
3714
|
+
price: number | null;
|
|
3715
|
+
price_per_sqft: number | null;
|
|
3716
|
+
list_price: number | null;
|
|
3717
|
+
sold_price: number | null;
|
|
3718
|
+
last_sold_date_utc: number | null;
|
|
3719
|
+
last_sold_date_at: string | null;
|
|
3720
|
+
redfin_estimate: number | null;
|
|
3721
|
+
rent_estimate: number | null;
|
|
3722
|
+
hoa_fee: number | null;
|
|
3723
|
+
hoa_frequency: string | null;
|
|
3724
|
+
tax_annual: number | null;
|
|
3725
|
+
beds: number | null;
|
|
3726
|
+
baths: number | null;
|
|
3727
|
+
full_baths: number | null;
|
|
3728
|
+
partial_baths: number | null;
|
|
3729
|
+
sqft: number | null;
|
|
3730
|
+
lot_sqft: number | null;
|
|
3731
|
+
stories: number | null;
|
|
3732
|
+
year_built: number | null;
|
|
3733
|
+
year_renovated: number | null;
|
|
3734
|
+
days_on_market: number | null;
|
|
3735
|
+
parking_spaces: number | null;
|
|
3736
|
+
parking_type: string | null;
|
|
3737
|
+
style: string | null;
|
|
3738
|
+
latitude: number | null;
|
|
3739
|
+
longitude: number | null;
|
|
3740
|
+
address: Address$2 | null;
|
|
3741
|
+
time_zone: string | null;
|
|
3742
|
+
apn: string | null;
|
|
3743
|
+
county: string | null;
|
|
3744
|
+
description: string | null;
|
|
3745
|
+
key_facts: string[];
|
|
3746
|
+
listing_tags: string[];
|
|
3747
|
+
photos: Photo$3[];
|
|
3748
|
+
num_photos: number | null;
|
|
3749
|
+
has_3d_tour: boolean | null;
|
|
3750
|
+
has_video_tour: boolean | null;
|
|
3751
|
+
tour_url: string | null;
|
|
3752
|
+
listing_agent_name: string | null;
|
|
3753
|
+
listing_agent_id: number | null;
|
|
3754
|
+
listing_broker_name: string | null;
|
|
3755
|
+
listing_broker_phone: string | null;
|
|
3756
|
+
price_history: PriceHistoryEvent$1[];
|
|
3757
|
+
tax_history: TaxHistoryEvent$1[];
|
|
3758
|
+
schools: School$2[];
|
|
3759
|
+
amenities: AmenityGroup[];
|
|
3760
|
+
scraped_utc: number | null;
|
|
3761
|
+
scraped_at: string | null;
|
|
3762
|
+
}
|
|
3763
|
+
interface AgentReview$1 {
|
|
3764
|
+
rating: number | null;
|
|
3765
|
+
comment: string | null;
|
|
3766
|
+
date: string | null;
|
|
3767
|
+
reviewer_name: string | null;
|
|
3768
|
+
reviewer_type: string | null;
|
|
3769
|
+
}
|
|
3770
|
+
/** A Redfin real-estate agent profile. */
|
|
3771
|
+
interface Agent$3 {
|
|
3772
|
+
agent_id: string | null;
|
|
3773
|
+
name: string | null;
|
|
3774
|
+
url: string | null;
|
|
3775
|
+
profile_photo: string | null;
|
|
3776
|
+
title: string | null;
|
|
3777
|
+
is_redfin_agent: boolean | null;
|
|
3778
|
+
phone: string | null;
|
|
3779
|
+
email: string | null;
|
|
3780
|
+
brokerage: string | null;
|
|
3781
|
+
bio: string | null;
|
|
3782
|
+
rating: number | null;
|
|
3783
|
+
review_count: number | null;
|
|
3784
|
+
deals_last_year: number | null;
|
|
3785
|
+
total_deals: number | null;
|
|
3786
|
+
price_range_min: number | null;
|
|
3787
|
+
price_range_max: number | null;
|
|
3788
|
+
years_experience: number | null;
|
|
3789
|
+
service_areas: string[];
|
|
3790
|
+
specialties: string[];
|
|
3791
|
+
languages: string[];
|
|
3792
|
+
reviews: AgentReview$1[];
|
|
3793
|
+
listings: Listing$2[];
|
|
3794
|
+
scraped_utc: number | null;
|
|
3795
|
+
scraped_at: string | null;
|
|
3796
|
+
}
|
|
3797
|
+
/** A geocoded place suggestion for a search term (name + centre + bbox). */
|
|
3798
|
+
interface AutocompleteResult$1 {
|
|
3799
|
+
name: string | null;
|
|
3800
|
+
display_name: string | null;
|
|
3801
|
+
type: string | null;
|
|
3802
|
+
latitude: number | null;
|
|
3803
|
+
longitude: number | null;
|
|
3804
|
+
north: number | null;
|
|
3805
|
+
south: number | null;
|
|
3806
|
+
east: number | null;
|
|
3807
|
+
west: number | null;
|
|
3808
|
+
}
|
|
3809
|
+
interface SearchResponse$8 {
|
|
3810
|
+
location: string | null;
|
|
3811
|
+
status: string;
|
|
3812
|
+
results: Listing$2[];
|
|
3813
|
+
total_results: number;
|
|
3814
|
+
region: RegionSelection$1 | null;
|
|
3815
|
+
map_bounds: MapBounds$1 | null;
|
|
3816
|
+
search_median: SearchMedian | null;
|
|
3817
|
+
data_sources: DataSource[];
|
|
3818
|
+
pagination: Pagination$4;
|
|
3819
|
+
scraped_utc: number | null;
|
|
3820
|
+
scraped_at: string | null;
|
|
3821
|
+
}
|
|
3822
|
+
interface PropertyResponse$1 {
|
|
3823
|
+
property: Property$2;
|
|
3824
|
+
}
|
|
3825
|
+
interface AgentResponse$1 {
|
|
3826
|
+
agent: Agent$3;
|
|
3827
|
+
}
|
|
3828
|
+
interface AutocompleteResponse$5 {
|
|
3829
|
+
query: string;
|
|
3830
|
+
results: AutocompleteResult$1[];
|
|
3831
|
+
}
|
|
3832
|
+
interface MarketsResponse$9 {
|
|
3833
|
+
markets: MarketInfo$6[];
|
|
3834
|
+
}
|
|
3835
|
+
/** Sort field for the /search endpoint. */
|
|
3836
|
+
type RedfinSort = "relevant" | "newest" | "price_low_to_high" | "price_high_to_low" | "square_feet" | "lot_size" | "price_per_sqft" | "beds" | "baths";
|
|
3837
|
+
/** Home type filter for the /search endpoint. */
|
|
3838
|
+
type RedfinHomeType = "house" | "condo" | "townhouse" | "multi_family" | "land" | "other" | "mobile" | "coop";
|
|
3839
|
+
/** Options for the /search endpoint (for-sale only). */
|
|
3840
|
+
interface RedfinSearchParams {
|
|
3841
|
+
/** Page number (1-20, default: 1) */
|
|
3842
|
+
page?: number;
|
|
3843
|
+
/** Sort order */
|
|
3844
|
+
sort?: RedfinSort;
|
|
3845
|
+
/** Minimum price filter */
|
|
3846
|
+
price_min?: number;
|
|
3847
|
+
/** Maximum price filter */
|
|
3848
|
+
price_max?: number;
|
|
3849
|
+
/** Minimum number of bedrooms */
|
|
3850
|
+
beds_min?: number;
|
|
3851
|
+
/** Minimum number of bathrooms */
|
|
3852
|
+
baths_min?: number;
|
|
3853
|
+
/** Home type filter */
|
|
3854
|
+
home_type?: RedfinHomeType;
|
|
3855
|
+
/** Minimum living area (square feet) */
|
|
3856
|
+
sqft_min?: number;
|
|
3857
|
+
/** Maximum living area (square feet) */
|
|
3858
|
+
sqft_max?: number;
|
|
3859
|
+
/** Minimum lot size (square feet) */
|
|
3860
|
+
lot_min?: number;
|
|
3861
|
+
/** Maximum lot size (square feet) */
|
|
3862
|
+
lot_max?: number;
|
|
3863
|
+
/** Minimum year built */
|
|
3864
|
+
year_built_min?: number;
|
|
3865
|
+
/** Maximum year built */
|
|
3866
|
+
year_built_max?: number;
|
|
3867
|
+
/** Maximum days on market */
|
|
3868
|
+
max_days_on_market?: number;
|
|
3869
|
+
/** North map bound. Optional bbox override. */
|
|
3870
|
+
north?: number;
|
|
3871
|
+
/** South map bound */
|
|
3872
|
+
south?: number;
|
|
3873
|
+
/** East map bound */
|
|
3874
|
+
east?: number;
|
|
3875
|
+
/** West map bound */
|
|
3876
|
+
west?: number;
|
|
3877
|
+
}
|
|
3878
|
+
/** Options for the /property endpoint. */
|
|
3879
|
+
interface RedfinPropertyParams {
|
|
3880
|
+
/** Full Redfin home URL — alternative to the propertyId positional arg */
|
|
3881
|
+
url?: string;
|
|
3882
|
+
}
|
|
3883
|
+
/** Options for the /agent endpoint. */
|
|
3884
|
+
interface RedfinAgentParams {
|
|
3885
|
+
/** Full Redfin agent profile URL — alternative to the agentId positional arg */
|
|
3886
|
+
url?: string;
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
/**
|
|
3890
|
+
* Redfin API client.
|
|
3891
|
+
*
|
|
3892
|
+
* Redfin endpoints: search (for-sale listings), getProperty (full
|
|
3893
|
+
* single-listing detail, by propertyId or URL), getAgent (agent profile +
|
|
3894
|
+
* listings, by agentId or URL), autocomplete (location suggestions), and
|
|
3895
|
+
* listMarkets. Single market: redfin.com (US, USD, en-US).
|
|
3896
|
+
*/
|
|
3897
|
+
|
|
3898
|
+
/**
|
|
3899
|
+
* Client for all Redfin API operations.
|
|
3900
|
+
*
|
|
3901
|
+
* @example
|
|
3902
|
+
* ```typescript
|
|
3903
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
3904
|
+
*
|
|
3905
|
+
* // Search for-sale listings
|
|
3906
|
+
* const results = await client.redfin.search("Austin, TX");
|
|
3907
|
+
* for (const listing of results.results) {
|
|
3908
|
+
* console.log(`${listing.position}. ${listing.street_line} — ${listing.price}`);
|
|
3909
|
+
* }
|
|
3910
|
+
*
|
|
3911
|
+
* // Full single-listing detail
|
|
3912
|
+
* const detail = await client.redfin.getProperty("12345678");
|
|
3913
|
+
* console.log(detail.property.price);
|
|
3914
|
+
*
|
|
3915
|
+
* // Agent profile
|
|
3916
|
+
* const agent = await client.redfin.getAgent("jane-doe");
|
|
3917
|
+
*
|
|
3918
|
+
* // Supported markets
|
|
3919
|
+
* const markets = await client.redfin.listMarkets();
|
|
3920
|
+
* ```
|
|
3921
|
+
*/
|
|
3922
|
+
declare class RedfinClient {
|
|
3923
|
+
private readonly client;
|
|
3924
|
+
constructor(client: BaseClient);
|
|
3925
|
+
/**
|
|
3926
|
+
* Search Redfin for for-sale properties.
|
|
3927
|
+
*
|
|
3928
|
+
* @param location - City/state, ZIP, address or neighborhood (required).
|
|
3929
|
+
* @param options - Optional parameters (page, sort, price/beds/baths/sqft/lot
|
|
3930
|
+
* filters, year built, max days on market, bbox override).
|
|
3931
|
+
* @returns Search response with matching listings, map bounds, and pagination.
|
|
3932
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
3933
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
3934
|
+
*/
|
|
3935
|
+
search(location: string, options?: RedfinSearchParams): Promise<SearchResponse$8>;
|
|
3936
|
+
/**
|
|
3937
|
+
* Get a single Redfin property's full detail by id or URL.
|
|
3938
|
+
*
|
|
3939
|
+
* Provide either `propertyId` or `options.url`.
|
|
3940
|
+
*
|
|
3941
|
+
* @param propertyId - The Redfin property id.
|
|
3942
|
+
* @param options - Optional parameters (url).
|
|
3943
|
+
* @returns Property detail response.
|
|
3944
|
+
* @throws NotFoundError - If the property doesn't exist.
|
|
3945
|
+
*/
|
|
3946
|
+
getProperty(propertyId?: string, options?: RedfinPropertyParams): Promise<PropertyResponse$1>;
|
|
3947
|
+
/**
|
|
3948
|
+
* Get a Redfin agent's profile and their active listings.
|
|
3949
|
+
*
|
|
3950
|
+
* Provide either `agentId` or `options.url`.
|
|
3951
|
+
*
|
|
3952
|
+
* @param agentId - The Redfin agent slug.
|
|
3953
|
+
* @param options - Optional parameters (url).
|
|
3954
|
+
* @returns Agent profile response with the agent and their listings.
|
|
3955
|
+
* @throws NotFoundError - If the agent doesn't exist.
|
|
3956
|
+
*/
|
|
3957
|
+
getAgent(agentId?: string, options?: RedfinAgentParams): Promise<AgentResponse$1>;
|
|
3958
|
+
/**
|
|
3959
|
+
* Resolve a search term to Redfin locations.
|
|
3960
|
+
*
|
|
3961
|
+
* @param query - Partial location — city, ZIP, address, or neighborhood.
|
|
3962
|
+
* @returns Autocomplete response with location suggestions.
|
|
3963
|
+
*/
|
|
3964
|
+
autocomplete(query: string): Promise<AutocompleteResponse$5>;
|
|
3965
|
+
/**
|
|
3966
|
+
* Get all supported Redfin coverage markets.
|
|
3967
|
+
*
|
|
3968
|
+
* @returns Markets response with all supported markets.
|
|
3969
|
+
*/
|
|
3970
|
+
listMarkets(): Promise<MarketsResponse$9>;
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3522
3973
|
/**
|
|
3523
3974
|
* TypeScript types for Amazon API responses.
|
|
3524
3975
|
*
|
|
@@ -3543,7 +3994,7 @@ interface AmazonPrice {
|
|
|
3543
3994
|
/**
|
|
3544
3995
|
* Page-number pagination (Amazon listings use 1-based page numbers).
|
|
3545
3996
|
*/
|
|
3546
|
-
interface Pagination$
|
|
3997
|
+
interface Pagination$3 {
|
|
3547
3998
|
/** Current page number (1-indexed) */
|
|
3548
3999
|
current_page: number;
|
|
3549
4000
|
/** Total number of pages, if known */
|
|
@@ -3554,7 +4005,7 @@ interface Pagination$2 {
|
|
|
3554
4005
|
/**
|
|
3555
4006
|
* A single supported marketplace (for /markets).
|
|
3556
4007
|
*/
|
|
3557
|
-
interface MarketInfo$
|
|
4008
|
+
interface MarketInfo$5 {
|
|
3558
4009
|
/** Market code (e.g. "US", "UK", "DE") */
|
|
3559
4010
|
code: string;
|
|
3560
4011
|
/** Amazon domain suffix (e.g. "com", "co.uk") */
|
|
@@ -3900,11 +4351,11 @@ interface AutocompleteSuggestion$1 {
|
|
|
3900
4351
|
alias: string | null;
|
|
3901
4352
|
}
|
|
3902
4353
|
/** Response from the /search endpoint. */
|
|
3903
|
-
interface SearchResponse$
|
|
4354
|
+
interface SearchResponse$7 {
|
|
3904
4355
|
query: string;
|
|
3905
4356
|
domain: string;
|
|
3906
4357
|
results: SearchResult$3[];
|
|
3907
|
-
pagination: Pagination$
|
|
4358
|
+
pagination: Pagination$3;
|
|
3908
4359
|
scraped_utc: number | null;
|
|
3909
4360
|
scraped_at: string | null;
|
|
3910
4361
|
}
|
|
@@ -3931,7 +4382,7 @@ interface ReviewsResponse$1 {
|
|
|
3931
4382
|
rating: number | null;
|
|
3932
4383
|
ratings_total: number | null;
|
|
3933
4384
|
rating_breakdown: RatingBreakdown$1 | null;
|
|
3934
|
-
pagination: Pagination$
|
|
4385
|
+
pagination: Pagination$3;
|
|
3935
4386
|
scraped_utc: number | null;
|
|
3936
4387
|
scraped_at: string | null;
|
|
3937
4388
|
}
|
|
@@ -3940,7 +4391,7 @@ interface BestsellersResponse {
|
|
|
3940
4391
|
domain: string;
|
|
3941
4392
|
category: string | null;
|
|
3942
4393
|
bestsellers: Bestseller[];
|
|
3943
|
-
pagination: Pagination$
|
|
4394
|
+
pagination: Pagination$3;
|
|
3944
4395
|
scraped_utc: number | null;
|
|
3945
4396
|
scraped_at: string | null;
|
|
3946
4397
|
}
|
|
@@ -3949,7 +4400,7 @@ interface NewReleasesResponse {
|
|
|
3949
4400
|
domain: string;
|
|
3950
4401
|
category: string | null;
|
|
3951
4402
|
new_releases: Bestseller[];
|
|
3952
|
-
pagination: Pagination$
|
|
4403
|
+
pagination: Pagination$3;
|
|
3953
4404
|
scraped_utc: number | null;
|
|
3954
4405
|
scraped_at: string | null;
|
|
3955
4406
|
}
|
|
@@ -3958,7 +4409,7 @@ interface DealsResponse {
|
|
|
3958
4409
|
domain: string;
|
|
3959
4410
|
category: string | null;
|
|
3960
4411
|
deals: Deal[];
|
|
3961
|
-
pagination: Pagination$
|
|
4412
|
+
pagination: Pagination$3;
|
|
3962
4413
|
scraped_utc: number | null;
|
|
3963
4414
|
scraped_at: string | null;
|
|
3964
4415
|
}
|
|
@@ -3967,7 +4418,7 @@ interface CategoryResponse$1 {
|
|
|
3967
4418
|
domain: string;
|
|
3968
4419
|
node: string;
|
|
3969
4420
|
results: SearchResult$3[];
|
|
3970
|
-
pagination: Pagination$
|
|
4421
|
+
pagination: Pagination$3;
|
|
3971
4422
|
scraped_utc: number | null;
|
|
3972
4423
|
scraped_at: string | null;
|
|
3973
4424
|
}
|
|
@@ -3981,7 +4432,7 @@ interface SellerProductsResponse {
|
|
|
3981
4432
|
domain: string;
|
|
3982
4433
|
seller_id: string;
|
|
3983
4434
|
products: SearchResult$3[];
|
|
3984
|
-
pagination: Pagination$
|
|
4435
|
+
pagination: Pagination$3;
|
|
3985
4436
|
scraped_utc: number | null;
|
|
3986
4437
|
scraped_at: string | null;
|
|
3987
4438
|
}
|
|
@@ -3990,7 +4441,7 @@ interface SellerFeedbackResponse$1 {
|
|
|
3990
4441
|
domain: string;
|
|
3991
4442
|
seller_id: string;
|
|
3992
4443
|
feedback: SellerFeedbackEntry[];
|
|
3993
|
-
pagination: Pagination$
|
|
4444
|
+
pagination: Pagination$3;
|
|
3994
4445
|
scraped_utc: number | null;
|
|
3995
4446
|
scraped_at: string | null;
|
|
3996
4447
|
}
|
|
@@ -4001,8 +4452,8 @@ interface AutocompleteResponse$4 {
|
|
|
4001
4452
|
suggestions: AutocompleteSuggestion$1[];
|
|
4002
4453
|
}
|
|
4003
4454
|
/** Response from the /markets endpoint. */
|
|
4004
|
-
interface MarketsResponse$
|
|
4005
|
-
markets: MarketInfo$
|
|
4455
|
+
interface MarketsResponse$8 {
|
|
4456
|
+
markets: MarketInfo$5[];
|
|
4006
4457
|
}
|
|
4007
4458
|
/** Response from the /categories endpoint. */
|
|
4008
4459
|
interface CategoriesResponse$3 {
|
|
@@ -4128,7 +4579,7 @@ interface AmazonAutocompleteParams {
|
|
|
4128
4579
|
* const suggestions = await client.amazon.search.autocomplete("lapt");
|
|
4129
4580
|
* ```
|
|
4130
4581
|
*/
|
|
4131
|
-
declare class SearchClient$
|
|
4582
|
+
declare class SearchClient$8 {
|
|
4132
4583
|
private readonly client;
|
|
4133
4584
|
constructor(client: BaseClient);
|
|
4134
4585
|
/**
|
|
@@ -4139,7 +4590,7 @@ declare class SearchClient$7 {
|
|
|
4139
4590
|
* @throws AuthenticationError - If the API key is invalid.
|
|
4140
4591
|
* @throws ValidationError - If the parameters are invalid.
|
|
4141
4592
|
*/
|
|
4142
|
-
search(params: AmazonSearchParams): Promise<SearchResponse$
|
|
4593
|
+
search(params: AmazonSearchParams): Promise<SearchResponse$7>;
|
|
4143
4594
|
/**
|
|
4144
4595
|
* Get Amazon keyword autocomplete suggestions.
|
|
4145
4596
|
*
|
|
@@ -4221,7 +4672,7 @@ declare class ProductsClient$1 {
|
|
|
4221
4672
|
* }
|
|
4222
4673
|
* ```
|
|
4223
4674
|
*/
|
|
4224
|
-
declare class ListingsClient {
|
|
4675
|
+
declare class ListingsClient$1 {
|
|
4225
4676
|
private readonly client;
|
|
4226
4677
|
constructor(client: BaseClient);
|
|
4227
4678
|
/**
|
|
@@ -4324,7 +4775,7 @@ declare class SellersClient$2 {
|
|
|
4324
4775
|
* const categories = await client.amazon.reference.categories();
|
|
4325
4776
|
* ```
|
|
4326
4777
|
*/
|
|
4327
|
-
declare class ReferenceClient$
|
|
4778
|
+
declare class ReferenceClient$8 {
|
|
4328
4779
|
private readonly client;
|
|
4329
4780
|
constructor(client: BaseClient);
|
|
4330
4781
|
/**
|
|
@@ -4332,7 +4783,7 @@ declare class ReferenceClient$7 {
|
|
|
4332
4783
|
*
|
|
4333
4784
|
* @returns Markets response with all supported marketplaces.
|
|
4334
4785
|
*/
|
|
4335
|
-
markets(): Promise<MarketsResponse$
|
|
4786
|
+
markets(): Promise<MarketsResponse$8>;
|
|
4336
4787
|
/**
|
|
4337
4788
|
* Get the reference department / category aliases.
|
|
4338
4789
|
*
|
|
@@ -4379,15 +4830,15 @@ declare class ReferenceClient$7 {
|
|
|
4379
4830
|
*/
|
|
4380
4831
|
declare class AmazonClient {
|
|
4381
4832
|
/** Client for keyword search and autocomplete */
|
|
4382
|
-
readonly search: SearchClient$
|
|
4833
|
+
readonly search: SearchClient$8;
|
|
4383
4834
|
/** Client for product detail, offers, and reviews */
|
|
4384
4835
|
readonly products: ProductsClient$1;
|
|
4385
4836
|
/** Client for bestsellers, new releases, deals, and category browse */
|
|
4386
|
-
readonly listings: ListingsClient;
|
|
4837
|
+
readonly listings: ListingsClient$1;
|
|
4387
4838
|
/** Client for seller profile, products, and feedback */
|
|
4388
4839
|
readonly sellers: SellersClient$2;
|
|
4389
4840
|
/** Client for reference data (markets, categories) */
|
|
4390
|
-
readonly reference: ReferenceClient$
|
|
4841
|
+
readonly reference: ReferenceClient$8;
|
|
4391
4842
|
/**
|
|
4392
4843
|
* Create a new Amazon client.
|
|
4393
4844
|
*
|
|
@@ -4604,7 +5055,7 @@ interface ShopeeMarket {
|
|
|
4604
5055
|
/**
|
|
4605
5056
|
* Response from the /v1/shopee/markets endpoint.
|
|
4606
5057
|
*/
|
|
4607
|
-
interface MarketsResponse$
|
|
5058
|
+
interface MarketsResponse$7 {
|
|
4608
5059
|
markets: ShopeeMarket[];
|
|
4609
5060
|
}
|
|
4610
5061
|
/** Parameters for searching Shopee products. */
|
|
@@ -4679,7 +5130,7 @@ interface ShopeeCategoriesParams {
|
|
|
4679
5130
|
* const cat = await client.shopee.search.categoryItems(100001, { market: "sg" });
|
|
4680
5131
|
* ```
|
|
4681
5132
|
*/
|
|
4682
|
-
declare class SearchClient$
|
|
5133
|
+
declare class SearchClient$7 {
|
|
4683
5134
|
private readonly client;
|
|
4684
5135
|
constructor(client: BaseClient);
|
|
4685
5136
|
/**
|
|
@@ -4802,7 +5253,7 @@ declare class ReviewsClient {
|
|
|
4802
5253
|
* }
|
|
4803
5254
|
* ```
|
|
4804
5255
|
*/
|
|
4805
|
-
declare class ReferenceClient$
|
|
5256
|
+
declare class ReferenceClient$7 {
|
|
4806
5257
|
private readonly client;
|
|
4807
5258
|
constructor(client: BaseClient);
|
|
4808
5259
|
/**
|
|
@@ -4810,7 +5261,7 @@ declare class ReferenceClient$6 {
|
|
|
4810
5261
|
*
|
|
4811
5262
|
* @returns Markets response with all supported Shopee markets (0 credits).
|
|
4812
5263
|
*/
|
|
4813
|
-
markets(): Promise<MarketsResponse$
|
|
5264
|
+
markets(): Promise<MarketsResponse$7>;
|
|
4814
5265
|
/**
|
|
4815
5266
|
* Get the full category tree for a Shopee market.
|
|
4816
5267
|
*
|
|
@@ -4862,13 +5313,13 @@ declare class ReferenceClient$6 {
|
|
|
4862
5313
|
*/
|
|
4863
5314
|
declare class ShopeeClient {
|
|
4864
5315
|
/** Client for keyword search and category-item listing */
|
|
4865
|
-
readonly search: SearchClient$
|
|
5316
|
+
readonly search: SearchClient$7;
|
|
4866
5317
|
/** Client for full product detail pages */
|
|
4867
5318
|
readonly products: ProductsClient;
|
|
4868
5319
|
/** Client for product reviews and rating summaries */
|
|
4869
5320
|
readonly reviews: ReviewsClient;
|
|
4870
5321
|
/** Client for reference data (markets, category tree) */
|
|
4871
|
-
readonly reference: ReferenceClient$
|
|
5322
|
+
readonly reference: ReferenceClient$7;
|
|
4872
5323
|
/**
|
|
4873
5324
|
* Create a new Shopee client.
|
|
4874
5325
|
*
|
|
@@ -5714,7 +6165,7 @@ declare class VideosClient$1 {
|
|
|
5714
6165
|
* const users = await client.tiktok.search.users({ query: "skincare" });
|
|
5715
6166
|
* ```
|
|
5716
6167
|
*/
|
|
5717
|
-
declare class SearchClient$
|
|
6168
|
+
declare class SearchClient$6 {
|
|
5718
6169
|
private readonly client;
|
|
5719
6170
|
constructor(client: BaseClient);
|
|
5720
6171
|
/**
|
|
@@ -5920,7 +6371,7 @@ declare class AdsClient$1 {
|
|
|
5920
6371
|
* }
|
|
5921
6372
|
* ```
|
|
5922
6373
|
*/
|
|
5923
|
-
declare class ReferenceClient$
|
|
6374
|
+
declare class ReferenceClient$6 {
|
|
5924
6375
|
private readonly client;
|
|
5925
6376
|
constructor(client: BaseClient);
|
|
5926
6377
|
/**
|
|
@@ -5985,7 +6436,7 @@ declare class TikTokClient {
|
|
|
5985
6436
|
/** Client for video detail, comments, replies, related, transcript, oEmbed */
|
|
5986
6437
|
readonly videos: VideosClient$1;
|
|
5987
6438
|
/** Client for keyword search across videos, users, and hashtags */
|
|
5988
|
-
readonly search: SearchClient$
|
|
6439
|
+
readonly search: SearchClient$6;
|
|
5989
6440
|
/** Client for sound/music detail and videos using a sound */
|
|
5990
6441
|
readonly music: MusicClient$1;
|
|
5991
6442
|
/** Client for hashtag detail and tagged videos */
|
|
@@ -5995,7 +6446,7 @@ declare class TikTokClient {
|
|
|
5995
6446
|
/** Client for the Commercial Content Library (ad transparency) */
|
|
5996
6447
|
readonly ads: AdsClient$1;
|
|
5997
6448
|
/** Client for reference data (regions) and service health */
|
|
5998
|
-
readonly reference: ReferenceClient$
|
|
6449
|
+
readonly reference: ReferenceClient$6;
|
|
5999
6450
|
/**
|
|
6000
6451
|
* Create a new TikTok client.
|
|
6001
6452
|
*
|
|
@@ -6028,7 +6479,7 @@ interface EbayPrice {
|
|
|
6028
6479
|
/**
|
|
6029
6480
|
* Page-number pagination (eBay listings use 1-based `_pgn` numbers).
|
|
6030
6481
|
*/
|
|
6031
|
-
interface Pagination$
|
|
6482
|
+
interface Pagination$2 {
|
|
6032
6483
|
/** Current page number (1-indexed) */
|
|
6033
6484
|
current_page: number;
|
|
6034
6485
|
/** Results per page, if known */
|
|
@@ -6041,7 +6492,7 @@ interface Pagination$1 {
|
|
|
6041
6492
|
/**
|
|
6042
6493
|
* A single supported marketplace (for /markets).
|
|
6043
6494
|
*/
|
|
6044
|
-
interface MarketInfo$
|
|
6495
|
+
interface MarketInfo$4 {
|
|
6045
6496
|
/** Market code (e.g. "US", "GB", "DE") */
|
|
6046
6497
|
code: string;
|
|
6047
6498
|
/** eBay domain suffix (e.g. "com", "co.uk") */
|
|
@@ -6279,14 +6730,14 @@ interface AutocompleteSuggestion {
|
|
|
6279
6730
|
value: string;
|
|
6280
6731
|
}
|
|
6281
6732
|
/** Response from the /search and /completed endpoints. */
|
|
6282
|
-
interface SearchResponse$
|
|
6733
|
+
interface SearchResponse$6 {
|
|
6283
6734
|
query: string | null;
|
|
6284
6735
|
domain: string;
|
|
6285
6736
|
category_id: string | null;
|
|
6286
6737
|
sold: boolean;
|
|
6287
6738
|
results: SearchResult$1[];
|
|
6288
6739
|
facets: Record<string, string[]>;
|
|
6289
|
-
pagination: Pagination$
|
|
6740
|
+
pagination: Pagination$2;
|
|
6290
6741
|
scraped_utc: number | null;
|
|
6291
6742
|
scraped_at: string | null;
|
|
6292
6743
|
}
|
|
@@ -6305,7 +6756,7 @@ interface SellerItemsResponse {
|
|
|
6305
6756
|
domain: string;
|
|
6306
6757
|
username: string;
|
|
6307
6758
|
results: SearchResult$1[];
|
|
6308
|
-
pagination: Pagination$
|
|
6759
|
+
pagination: Pagination$2;
|
|
6309
6760
|
scraped_utc: number | null;
|
|
6310
6761
|
scraped_at: string | null;
|
|
6311
6762
|
}
|
|
@@ -6314,7 +6765,7 @@ interface SellerFeedbackResponse {
|
|
|
6314
6765
|
domain: string;
|
|
6315
6766
|
username: string;
|
|
6316
6767
|
feedback: FeedbackEntry[];
|
|
6317
|
-
pagination: Pagination$
|
|
6768
|
+
pagination: Pagination$2;
|
|
6318
6769
|
scraped_utc: number | null;
|
|
6319
6770
|
scraped_at: string | null;
|
|
6320
6771
|
}
|
|
@@ -6327,7 +6778,7 @@ interface ReviewsResponse {
|
|
|
6327
6778
|
ratings_total: number | null;
|
|
6328
6779
|
histogram: RatingHistogram | null;
|
|
6329
6780
|
reviews: Review[];
|
|
6330
|
-
pagination: Pagination$
|
|
6781
|
+
pagination: Pagination$2;
|
|
6331
6782
|
scraped_utc: number | null;
|
|
6332
6783
|
scraped_at: string | null;
|
|
6333
6784
|
}
|
|
@@ -6337,7 +6788,7 @@ interface CategoryResponse {
|
|
|
6337
6788
|
category_id: string;
|
|
6338
6789
|
results: SearchResult$1[];
|
|
6339
6790
|
facets: Record<string, string[]>;
|
|
6340
|
-
pagination: Pagination$
|
|
6791
|
+
pagination: Pagination$2;
|
|
6341
6792
|
scraped_utc: number | null;
|
|
6342
6793
|
scraped_at: string | null;
|
|
6343
6794
|
}
|
|
@@ -6348,8 +6799,8 @@ interface AutocompleteResponse$3 {
|
|
|
6348
6799
|
suggestions: AutocompleteSuggestion[];
|
|
6349
6800
|
}
|
|
6350
6801
|
/** Response from the /markets endpoint. */
|
|
6351
|
-
interface MarketsResponse$
|
|
6352
|
-
markets: MarketInfo$
|
|
6802
|
+
interface MarketsResponse$6 {
|
|
6803
|
+
markets: MarketInfo$4[];
|
|
6353
6804
|
}
|
|
6354
6805
|
/** Response from the /categories endpoint. */
|
|
6355
6806
|
interface CategoriesResponse$2 {
|
|
@@ -6489,7 +6940,7 @@ interface EbayAutocompleteParams {
|
|
|
6489
6940
|
* const suggestions = await client.ebay.search.autocomplete("ipho");
|
|
6490
6941
|
* ```
|
|
6491
6942
|
*/
|
|
6492
|
-
declare class SearchClient$
|
|
6943
|
+
declare class SearchClient$5 {
|
|
6493
6944
|
private readonly client;
|
|
6494
6945
|
constructor(client: BaseClient);
|
|
6495
6946
|
/**
|
|
@@ -6500,14 +6951,14 @@ declare class SearchClient$4 {
|
|
|
6500
6951
|
* @throws AuthenticationError - If the API key is invalid.
|
|
6501
6952
|
* @throws ValidationError - If the parameters are invalid.
|
|
6502
6953
|
*/
|
|
6503
|
-
search(params: EbaySearchParams): Promise<SearchResponse$
|
|
6954
|
+
search(params: EbaySearchParams): Promise<SearchResponse$6>;
|
|
6504
6955
|
/**
|
|
6505
6956
|
* Search completed / sold listings — eBay's sold-price history.
|
|
6506
6957
|
*
|
|
6507
6958
|
* @param params - Search parameters including query, filters, and pagination.
|
|
6508
6959
|
* @returns Search results (with `sold: true`), facets, and pagination.
|
|
6509
6960
|
*/
|
|
6510
|
-
completed(params: EbayCompletedParams): Promise<SearchResponse$
|
|
6961
|
+
completed(params: EbayCompletedParams): Promise<SearchResponse$6>;
|
|
6511
6962
|
/**
|
|
6512
6963
|
* Get eBay keyword autocomplete suggestions.
|
|
6513
6964
|
*
|
|
@@ -6670,7 +7121,7 @@ declare class CategoriesClient {
|
|
|
6670
7121
|
* }
|
|
6671
7122
|
* ```
|
|
6672
7123
|
*/
|
|
6673
|
-
declare class ReferenceClient$
|
|
7124
|
+
declare class ReferenceClient$5 {
|
|
6674
7125
|
private readonly client;
|
|
6675
7126
|
constructor(client: BaseClient);
|
|
6676
7127
|
/**
|
|
@@ -6678,7 +7129,7 @@ declare class ReferenceClient$4 {
|
|
|
6678
7129
|
*
|
|
6679
7130
|
* @returns Markets response with all supported marketplaces.
|
|
6680
7131
|
*/
|
|
6681
|
-
markets(): Promise<MarketsResponse$
|
|
7132
|
+
markets(): Promise<MarketsResponse$6>;
|
|
6682
7133
|
}
|
|
6683
7134
|
|
|
6684
7135
|
/**
|
|
@@ -6725,7 +7176,7 @@ declare class ReferenceClient$4 {
|
|
|
6725
7176
|
*/
|
|
6726
7177
|
declare class EbayClient {
|
|
6727
7178
|
/** Client for active search, completed/sold search, and autocomplete */
|
|
6728
|
-
readonly search: SearchClient$
|
|
7179
|
+
readonly search: SearchClient$5;
|
|
6729
7180
|
/** Client for item detail and catalog product reviews */
|
|
6730
7181
|
readonly items: ItemsClient;
|
|
6731
7182
|
/** Client for seller profile, items, and feedback */
|
|
@@ -6733,7 +7184,7 @@ declare class EbayClient {
|
|
|
6733
7184
|
/** Client for category browse and the reference category list */
|
|
6734
7185
|
readonly categories: CategoriesClient;
|
|
6735
7186
|
/** Client for reference data (markets) */
|
|
6736
|
-
readonly reference: ReferenceClient$
|
|
7187
|
+
readonly reference: ReferenceClient$5;
|
|
6737
7188
|
/**
|
|
6738
7189
|
* Create a new eBay client.
|
|
6739
7190
|
*
|
|
@@ -7228,7 +7679,7 @@ interface SearchChip {
|
|
|
7228
7679
|
/**
|
|
7229
7680
|
* A page of search results.
|
|
7230
7681
|
*/
|
|
7231
|
-
interface SearchResponse$
|
|
7682
|
+
interface SearchResponse$5 {
|
|
7232
7683
|
query: string | null;
|
|
7233
7684
|
results: SearchResult[];
|
|
7234
7685
|
total_results: number | null;
|
|
@@ -7466,7 +7917,7 @@ interface RegionsResponse$1 {
|
|
|
7466
7917
|
/**
|
|
7467
7918
|
* A single geo-targeted scraper market (for /markets).
|
|
7468
7919
|
*/
|
|
7469
|
-
interface MarketInfo$
|
|
7920
|
+
interface MarketInfo$3 {
|
|
7470
7921
|
/** Content region code (e.g. "US") */
|
|
7471
7922
|
gl: string;
|
|
7472
7923
|
/** UI language code (e.g. "en") */
|
|
@@ -7477,8 +7928,8 @@ interface MarketInfo$2 {
|
|
|
7477
7928
|
/**
|
|
7478
7929
|
* Response from the /markets endpoint.
|
|
7479
7930
|
*/
|
|
7480
|
-
interface MarketsResponse$
|
|
7481
|
-
markets: MarketInfo$
|
|
7931
|
+
interface MarketsResponse$5 {
|
|
7932
|
+
markets: MarketInfo$3[];
|
|
7482
7933
|
}
|
|
7483
7934
|
/** Result-type filter for search. */
|
|
7484
7935
|
type YoutubeSearchType = "video" | "channel" | "playlist" | "movie" | "all";
|
|
@@ -7668,7 +8119,7 @@ interface YoutubeCategoriesParams {
|
|
|
7668
8119
|
* const suggestions = await client.youtube.search.autocomplete("lofi");
|
|
7669
8120
|
* ```
|
|
7670
8121
|
*/
|
|
7671
|
-
declare class SearchClient$
|
|
8122
|
+
declare class SearchClient$4 {
|
|
7672
8123
|
private readonly client;
|
|
7673
8124
|
constructor(client: BaseClient);
|
|
7674
8125
|
/**
|
|
@@ -7679,7 +8130,7 @@ declare class SearchClient$3 {
|
|
|
7679
8130
|
* @throws AuthenticationError - If the API key is invalid.
|
|
7680
8131
|
* @throws ValidationError - If the parameters are invalid.
|
|
7681
8132
|
*/
|
|
7682
|
-
search(params: YoutubeSearchParams): Promise<SearchResponse$
|
|
8133
|
+
search(params: YoutubeSearchParams): Promise<SearchResponse$5>;
|
|
7683
8134
|
/**
|
|
7684
8135
|
* Get YouTube keyword autocomplete suggestions.
|
|
7685
8136
|
*
|
|
@@ -7893,7 +8344,7 @@ declare class ChannelsClient {
|
|
|
7893
8344
|
* @param options - The required query plus optional continuation and region.
|
|
7894
8345
|
* @returns A page of search results scoped to the channel.
|
|
7895
8346
|
*/
|
|
7896
|
-
search(channelId: string, options: YoutubeChannelSearchParams): Promise<SearchResponse$
|
|
8347
|
+
search(channelId: string, options: YoutubeChannelSearchParams): Promise<SearchResponse$5>;
|
|
7897
8348
|
/**
|
|
7898
8349
|
* Resolve a @handle or URL to canonical YouTube ids.
|
|
7899
8350
|
*
|
|
@@ -8120,7 +8571,7 @@ declare class MusicClient {
|
|
|
8120
8571
|
* @param params - The required query plus optional continuation and region.
|
|
8121
8572
|
* @returns A page of search results with a continuation token.
|
|
8122
8573
|
*/
|
|
8123
|
-
search(params: YoutubeMusicSearchParams): Promise<SearchResponse$
|
|
8574
|
+
search(params: YoutubeMusicSearchParams): Promise<SearchResponse$5>;
|
|
8124
8575
|
}
|
|
8125
8576
|
|
|
8126
8577
|
/**
|
|
@@ -8143,7 +8594,7 @@ declare class MusicClient {
|
|
|
8143
8594
|
* const markets = await client.youtube.reference.markets();
|
|
8144
8595
|
* ```
|
|
8145
8596
|
*/
|
|
8146
|
-
declare class ReferenceClient$
|
|
8597
|
+
declare class ReferenceClient$4 {
|
|
8147
8598
|
private readonly client;
|
|
8148
8599
|
constructor(client: BaseClient);
|
|
8149
8600
|
/**
|
|
@@ -8170,7 +8621,7 @@ declare class ReferenceClient$3 {
|
|
|
8170
8621
|
*
|
|
8171
8622
|
* @returns The supported scraper markets.
|
|
8172
8623
|
*/
|
|
8173
|
-
markets(): Promise<MarketsResponse$
|
|
8624
|
+
markets(): Promise<MarketsResponse$5>;
|
|
8174
8625
|
}
|
|
8175
8626
|
|
|
8176
8627
|
/**
|
|
@@ -8221,7 +8672,7 @@ declare class ReferenceClient$3 {
|
|
|
8221
8672
|
*/
|
|
8222
8673
|
declare class YoutubeClient {
|
|
8223
8674
|
/** Client for full-matrix search and keyword autocomplete */
|
|
8224
|
-
readonly search: SearchClient$
|
|
8675
|
+
readonly search: SearchClient$4;
|
|
8225
8676
|
/** Client for video detail, comments, transcript, captions, streams, live chat, batch, and oEmbed */
|
|
8226
8677
|
readonly videos: VideosClient;
|
|
8227
8678
|
/** Client for channel detail, tab feeds, about, subscriber count, search, and resolve */
|
|
@@ -8237,7 +8688,7 @@ declare class YoutubeClient {
|
|
|
8237
8688
|
/** Client for YouTube Music search */
|
|
8238
8689
|
readonly music: MusicClient;
|
|
8239
8690
|
/** Client for reference data (categories, languages, regions, markets) */
|
|
8240
|
-
readonly reference: ReferenceClient$
|
|
8691
|
+
readonly reference: ReferenceClient$4;
|
|
8241
8692
|
/**
|
|
8242
8693
|
* Create a new YouTube client.
|
|
8243
8694
|
*
|
|
@@ -8453,7 +8904,7 @@ interface Suggestion$1 {
|
|
|
8453
8904
|
market?: string | null;
|
|
8454
8905
|
}
|
|
8455
8906
|
/** A single supported market (for /markets). */
|
|
8456
|
-
interface MarketInfo$
|
|
8907
|
+
interface MarketInfo$2 {
|
|
8457
8908
|
code: string;
|
|
8458
8909
|
domain: string;
|
|
8459
8910
|
country: string;
|
|
@@ -8468,7 +8919,7 @@ interface AutocompleteResponse$1 {
|
|
|
8468
8919
|
suggestions: Suggestion$1[];
|
|
8469
8920
|
}
|
|
8470
8921
|
/** Response from the /search endpoint. */
|
|
8471
|
-
interface SearchResponse$
|
|
8922
|
+
interface SearchResponse$4 {
|
|
8472
8923
|
market: string;
|
|
8473
8924
|
country: string;
|
|
8474
8925
|
total: number;
|
|
@@ -8478,8 +8929,8 @@ interface SearchResponse$3 {
|
|
|
8478
8929
|
results: Property$1[];
|
|
8479
8930
|
}
|
|
8480
8931
|
/** Response from the /markets endpoint. */
|
|
8481
|
-
interface MarketsResponse$
|
|
8482
|
-
markets: MarketInfo$
|
|
8932
|
+
interface MarketsResponse$4 {
|
|
8933
|
+
markets: MarketInfo$2[];
|
|
8483
8934
|
}
|
|
8484
8935
|
/** Supported market codes. */
|
|
8485
8936
|
type RealtorMarket = "us" | "ca";
|
|
@@ -8556,7 +9007,7 @@ interface RealtorPropertyOptions {
|
|
|
8556
9007
|
* const suggestions = await client.realtor.search.autocomplete("Miami");
|
|
8557
9008
|
* ```
|
|
8558
9009
|
*/
|
|
8559
|
-
declare class SearchClient$
|
|
9010
|
+
declare class SearchClient$3 {
|
|
8560
9011
|
private readonly client;
|
|
8561
9012
|
constructor(client: BaseClient);
|
|
8562
9013
|
/**
|
|
@@ -8569,7 +9020,7 @@ declare class SearchClient$2 {
|
|
|
8569
9020
|
* @throws AuthenticationError - If the API key is invalid.
|
|
8570
9021
|
* @throws ValidationError - If the parameters are invalid.
|
|
8571
9022
|
*/
|
|
8572
|
-
search(location?: string, options?: RealtorSearchOptions): Promise<SearchResponse$
|
|
9023
|
+
search(location?: string, options?: RealtorSearchOptions): Promise<SearchResponse$4>;
|
|
8573
9024
|
/**
|
|
8574
9025
|
* Get location autocomplete suggestions.
|
|
8575
9026
|
*
|
|
@@ -8630,7 +9081,7 @@ declare class PropertiesClient$1 {
|
|
|
8630
9081
|
* }
|
|
8631
9082
|
* ```
|
|
8632
9083
|
*/
|
|
8633
|
-
declare class ReferenceClient$
|
|
9084
|
+
declare class ReferenceClient$3 {
|
|
8634
9085
|
private readonly client;
|
|
8635
9086
|
constructor(client: BaseClient);
|
|
8636
9087
|
/**
|
|
@@ -8638,7 +9089,7 @@ declare class ReferenceClient$2 {
|
|
|
8638
9089
|
*
|
|
8639
9090
|
* @returns Markets response with all supported markets.
|
|
8640
9091
|
*/
|
|
8641
|
-
listMarkets(): Promise<MarketsResponse$
|
|
9092
|
+
listMarkets(): Promise<MarketsResponse$4>;
|
|
8642
9093
|
}
|
|
8643
9094
|
|
|
8644
9095
|
/**
|
|
@@ -8676,11 +9127,11 @@ declare class ReferenceClient$2 {
|
|
|
8676
9127
|
*/
|
|
8677
9128
|
declare class RealtorClient {
|
|
8678
9129
|
/** Client for property search and location autocomplete */
|
|
8679
|
-
readonly search: SearchClient$
|
|
9130
|
+
readonly search: SearchClient$3;
|
|
8680
9131
|
/** Client for full property detail */
|
|
8681
9132
|
readonly properties: PropertiesClient$1;
|
|
8682
9133
|
/** Client for reference data (markets) */
|
|
8683
|
-
readonly reference: ReferenceClient$
|
|
9134
|
+
readonly reference: ReferenceClient$3;
|
|
8684
9135
|
/**
|
|
8685
9136
|
* Create a new Realtor client.
|
|
8686
9137
|
*
|
|
@@ -8873,7 +9324,7 @@ interface LocationSuggestion {
|
|
|
8873
9324
|
lng: number | null;
|
|
8874
9325
|
}
|
|
8875
9326
|
/** Response from the /search endpoint. */
|
|
8876
|
-
interface SearchResponse$
|
|
9327
|
+
interface SearchResponse$3 {
|
|
8877
9328
|
ads: Ad[];
|
|
8878
9329
|
total: number | null;
|
|
8879
9330
|
total_all: number | null;
|
|
@@ -8925,7 +9376,7 @@ interface LocationSearchResponse {
|
|
|
8925
9376
|
suggestions: LocationSuggestion[];
|
|
8926
9377
|
}
|
|
8927
9378
|
/** Response from the /markets endpoint. */
|
|
8928
|
-
interface MarketsResponse$
|
|
9379
|
+
interface MarketsResponse$3 {
|
|
8929
9380
|
markets: Record<string, unknown>[];
|
|
8930
9381
|
}
|
|
8931
9382
|
/** Seller-type filter for search. */
|
|
@@ -9001,7 +9452,7 @@ interface LeboncoinDepartmentsParams {
|
|
|
9001
9452
|
* }
|
|
9002
9453
|
* ```
|
|
9003
9454
|
*/
|
|
9004
|
-
declare class SearchClient$
|
|
9455
|
+
declare class SearchClient$2 {
|
|
9005
9456
|
private readonly client;
|
|
9006
9457
|
constructor(client: BaseClient);
|
|
9007
9458
|
/**
|
|
@@ -9015,7 +9466,7 @@ declare class SearchClient$1 {
|
|
|
9015
9466
|
* @throws AuthenticationError - If the API key is invalid.
|
|
9016
9467
|
* @throws ValidationError - If the parameters are invalid.
|
|
9017
9468
|
*/
|
|
9018
|
-
search(params?: LeboncoinSearchParams): Promise<SearchResponse$
|
|
9469
|
+
search(params?: LeboncoinSearchParams): Promise<SearchResponse$3>;
|
|
9019
9470
|
}
|
|
9020
9471
|
|
|
9021
9472
|
/**
|
|
@@ -9123,7 +9574,7 @@ declare class SellersClient {
|
|
|
9123
9574
|
* const { markets } = await client.leboncoin.reference.markets();
|
|
9124
9575
|
* ```
|
|
9125
9576
|
*/
|
|
9126
|
-
declare class ReferenceClient$
|
|
9577
|
+
declare class ReferenceClient$2 {
|
|
9127
9578
|
private readonly client;
|
|
9128
9579
|
constructor(client: BaseClient);
|
|
9129
9580
|
/**
|
|
@@ -9157,7 +9608,7 @@ declare class ReferenceClient$1 {
|
|
|
9157
9608
|
*
|
|
9158
9609
|
* @returns Markets response.
|
|
9159
9610
|
*/
|
|
9160
|
-
markets(): Promise<MarketsResponse$
|
|
9611
|
+
markets(): Promise<MarketsResponse$3>;
|
|
9161
9612
|
}
|
|
9162
9613
|
|
|
9163
9614
|
/**
|
|
@@ -9200,13 +9651,13 @@ declare class ReferenceClient$1 {
|
|
|
9200
9651
|
*/
|
|
9201
9652
|
declare class LeboncoinClient {
|
|
9202
9653
|
/** Client for ad search */
|
|
9203
|
-
readonly search: SearchClient$
|
|
9654
|
+
readonly search: SearchClient$2;
|
|
9204
9655
|
/** Client for ad detail and similar ads */
|
|
9205
9656
|
readonly ads: AdsClient;
|
|
9206
9657
|
/** Client for seller profile and listings */
|
|
9207
9658
|
readonly sellers: SellersClient;
|
|
9208
9659
|
/** Client for reference data (categories, regions, departments, locations, markets) */
|
|
9209
|
-
readonly reference: ReferenceClient$
|
|
9660
|
+
readonly reference: ReferenceClient$2;
|
|
9210
9661
|
/**
|
|
9211
9662
|
* Create a new Leboncoin client.
|
|
9212
9663
|
*
|
|
@@ -9244,7 +9695,7 @@ interface Photo$1 {
|
|
|
9244
9695
|
sources?: Record<string, unknown>[];
|
|
9245
9696
|
}
|
|
9246
9697
|
/** Page-number pagination (Zillow search returns ~40 results per page). */
|
|
9247
|
-
interface Pagination {
|
|
9698
|
+
interface Pagination$1 {
|
|
9248
9699
|
current_page?: number;
|
|
9249
9700
|
per_page?: number | null;
|
|
9250
9701
|
total_pages?: number | null;
|
|
@@ -9272,7 +9723,7 @@ interface NearbyRegion {
|
|
|
9272
9723
|
url?: string | null;
|
|
9273
9724
|
}
|
|
9274
9725
|
/** A supported coverage region (for /markets). */
|
|
9275
|
-
interface MarketInfo {
|
|
9726
|
+
interface MarketInfo$1 {
|
|
9276
9727
|
code: string;
|
|
9277
9728
|
country: string;
|
|
9278
9729
|
currency: string;
|
|
@@ -9781,14 +10232,14 @@ interface AutocompleteResult {
|
|
|
9781
10232
|
metro_id?: number | null;
|
|
9782
10233
|
}
|
|
9783
10234
|
/** Response from the /search endpoint. */
|
|
9784
|
-
interface SearchResponse$
|
|
10235
|
+
interface SearchResponse$2 {
|
|
9785
10236
|
location?: string | null;
|
|
9786
10237
|
status: string;
|
|
9787
10238
|
results: Listing$1[];
|
|
9788
10239
|
map_results_count: number;
|
|
9789
10240
|
region?: RegionSelection | null;
|
|
9790
10241
|
map_bounds?: MapBounds | null;
|
|
9791
|
-
pagination: Pagination;
|
|
10242
|
+
pagination: Pagination$1;
|
|
9792
10243
|
scraped_utc?: number | null;
|
|
9793
10244
|
scraped_at?: string | null;
|
|
9794
10245
|
}
|
|
@@ -9806,8 +10257,8 @@ interface AutocompleteResponse {
|
|
|
9806
10257
|
results: AutocompleteResult[];
|
|
9807
10258
|
}
|
|
9808
10259
|
/** Response from the /markets endpoint. */
|
|
9809
|
-
interface MarketsResponse$
|
|
9810
|
-
markets: MarketInfo[];
|
|
10260
|
+
interface MarketsResponse$2 {
|
|
10261
|
+
markets: MarketInfo$1[];
|
|
9811
10262
|
}
|
|
9812
10263
|
/** Listing status filter. */
|
|
9813
10264
|
type ZillowStatus = "for_sale" | "for_rent" | "sold";
|
|
@@ -9887,7 +10338,7 @@ interface ZillowAgentOptions {
|
|
|
9887
10338
|
* const suggestions = await client.zillow.search.autocomplete("Miami");
|
|
9888
10339
|
* ```
|
|
9889
10340
|
*/
|
|
9890
|
-
declare class SearchClient {
|
|
10341
|
+
declare class SearchClient$1 {
|
|
9891
10342
|
private readonly client;
|
|
9892
10343
|
constructor(client: BaseClient);
|
|
9893
10344
|
/**
|
|
@@ -9903,7 +10354,7 @@ declare class SearchClient {
|
|
|
9903
10354
|
* @throws AuthenticationError - If the API key is invalid.
|
|
9904
10355
|
* @throws ValidationError - If the parameters are invalid.
|
|
9905
10356
|
*/
|
|
9906
|
-
search(location: string, options?: ZillowSearchOptions): Promise<SearchResponse$
|
|
10357
|
+
search(location: string, options?: ZillowSearchOptions): Promise<SearchResponse$2>;
|
|
9907
10358
|
/**
|
|
9908
10359
|
* Resolve a search term to Zillow regions/addresses (regionId, lat/lng).
|
|
9909
10360
|
*
|
|
@@ -9998,7 +10449,7 @@ declare class AgentClient {
|
|
|
9998
10449
|
* }
|
|
9999
10450
|
* ```
|
|
10000
10451
|
*/
|
|
10001
|
-
declare class ReferenceClient {
|
|
10452
|
+
declare class ReferenceClient$1 {
|
|
10002
10453
|
private readonly client;
|
|
10003
10454
|
constructor(client: BaseClient);
|
|
10004
10455
|
/**
|
|
@@ -10006,7 +10457,7 @@ declare class ReferenceClient {
|
|
|
10006
10457
|
*
|
|
10007
10458
|
* @returns Markets response with all supported markets.
|
|
10008
10459
|
*/
|
|
10009
|
-
listMarkets(): Promise<MarketsResponse$
|
|
10460
|
+
listMarkets(): Promise<MarketsResponse$2>;
|
|
10010
10461
|
}
|
|
10011
10462
|
|
|
10012
10463
|
/**
|
|
@@ -10049,13 +10500,13 @@ declare class ReferenceClient {
|
|
|
10049
10500
|
*/
|
|
10050
10501
|
declare class ZillowClient {
|
|
10051
10502
|
/** Client for property search and location autocomplete */
|
|
10052
|
-
readonly search: SearchClient;
|
|
10503
|
+
readonly search: SearchClient$1;
|
|
10053
10504
|
/** Client for full property detail */
|
|
10054
10505
|
readonly properties: PropertiesClient;
|
|
10055
10506
|
/** Client for agent profile + listings */
|
|
10056
10507
|
readonly agent: AgentClient;
|
|
10057
10508
|
/** Client for reference data (markets) */
|
|
10058
|
-
readonly reference: ReferenceClient;
|
|
10509
|
+
readonly reference: ReferenceClient$1;
|
|
10059
10510
|
/**
|
|
10060
10511
|
* Create a new Zillow client.
|
|
10061
10512
|
*
|
|
@@ -10268,7 +10719,7 @@ interface SuggestResponse {
|
|
|
10268
10719
|
market: string;
|
|
10269
10720
|
}
|
|
10270
10721
|
/** Response for /search. */
|
|
10271
|
-
interface SearchResponse {
|
|
10722
|
+
interface SearchResponse$1 {
|
|
10272
10723
|
listings: Listing[];
|
|
10273
10724
|
count: number | null;
|
|
10274
10725
|
total_ads: number | null;
|
|
@@ -10296,7 +10747,7 @@ interface PriceStatsResponse {
|
|
|
10296
10747
|
market: string;
|
|
10297
10748
|
}
|
|
10298
10749
|
/** Response for /markets (a bare array of markets). */
|
|
10299
|
-
type MarketsResponse = Market[];
|
|
10750
|
+
type MarketsResponse$1 = Market[];
|
|
10300
10751
|
/** Response for /reference (filter enums accepted by /search). */
|
|
10301
10752
|
interface ReferenceResponse {
|
|
10302
10753
|
contracts: string[];
|
|
@@ -10441,7 +10892,7 @@ declare class ImmobiliareClient {
|
|
|
10441
10892
|
* @throws AuthenticationError - If the API key is invalid.
|
|
10442
10893
|
* @throws ValidationError - If the parameters are invalid.
|
|
10443
10894
|
*/
|
|
10444
|
-
search(options?: ImmobiliareSearchParams): Promise<SearchResponse>;
|
|
10895
|
+
search(options?: ImmobiliareSearchParams): Promise<SearchResponse$1>;
|
|
10445
10896
|
/**
|
|
10446
10897
|
* Get the full detail for a single Immobiliare listing.
|
|
10447
10898
|
*
|
|
@@ -10482,7 +10933,7 @@ declare class ImmobiliareClient {
|
|
|
10482
10933
|
* @returns A bare array of supported markets (code, domain, country,
|
|
10483
10934
|
* locale, currency, name).
|
|
10484
10935
|
*/
|
|
10485
|
-
markets(): Promise<MarketsResponse>;
|
|
10936
|
+
markets(): Promise<MarketsResponse$1>;
|
|
10486
10937
|
/**
|
|
10487
10938
|
* Get the filter enums accepted by {@link search}.
|
|
10488
10939
|
*
|
|
@@ -10491,6 +10942,470 @@ declare class ImmobiliareClient {
|
|
|
10491
10942
|
reference(): Promise<ReferenceResponse>;
|
|
10492
10943
|
}
|
|
10493
10944
|
|
|
10945
|
+
/**
|
|
10946
|
+
* TypeScript types for LoopNet API responses.
|
|
10947
|
+
*
|
|
10948
|
+
* These interfaces mirror the backend `loopnet_scraper` response schema
|
|
10949
|
+
* field-for-field. Optional / nullable backend fields are typed as
|
|
10950
|
+
* `Type | null`; backend list fields default to `[]` and are typed as arrays.
|
|
10951
|
+
* Every datetime field ships in BOTH `*_utc` (number) and `*_at` (string) form.
|
|
10952
|
+
*
|
|
10953
|
+
* LoopNet is multi-market (us/ca/uk/fr/es); every search response carries
|
|
10954
|
+
* `market` + `currency` so a caller can tell CAD from GBP.
|
|
10955
|
+
*/
|
|
10956
|
+
/** A LoopNet broker/agent attributed to a listing or profile. */
|
|
10957
|
+
interface Broker {
|
|
10958
|
+
name: string | null;
|
|
10959
|
+
company: string | null;
|
|
10960
|
+
title: string | null;
|
|
10961
|
+
phone: string | null;
|
|
10962
|
+
email: string | null;
|
|
10963
|
+
photo: string | null;
|
|
10964
|
+
url: string | null;
|
|
10965
|
+
broker_id: string | null;
|
|
10966
|
+
city: string | null;
|
|
10967
|
+
region: string | null;
|
|
10968
|
+
}
|
|
10969
|
+
/** One leasable space / unit within a listing (lease listings). */
|
|
10970
|
+
interface Space {
|
|
10971
|
+
name: string | null;
|
|
10972
|
+
space_use: string | null;
|
|
10973
|
+
size_sqft: number | null;
|
|
10974
|
+
size_text: string | null;
|
|
10975
|
+
rent_text: string | null;
|
|
10976
|
+
rent_per_sqft: number | null;
|
|
10977
|
+
/** "/SF/YR", "/SF/MO", "/MO" */
|
|
10978
|
+
rent_period: string | null;
|
|
10979
|
+
term: string | null;
|
|
10980
|
+
condition: string | null;
|
|
10981
|
+
available_date: string | null;
|
|
10982
|
+
floor: string | null;
|
|
10983
|
+
}
|
|
10984
|
+
/** A supported coverage market (for /markets). */
|
|
10985
|
+
interface MarketInfo {
|
|
10986
|
+
code: string;
|
|
10987
|
+
domain: string;
|
|
10988
|
+
country: string;
|
|
10989
|
+
currency: string;
|
|
10990
|
+
locale: string;
|
|
10991
|
+
name: string;
|
|
10992
|
+
}
|
|
10993
|
+
/** A LoopNet property-type facet (for /property-types). */
|
|
10994
|
+
interface PropertyTypeInfo {
|
|
10995
|
+
slug: string;
|
|
10996
|
+
name: string;
|
|
10997
|
+
}
|
|
10998
|
+
/** Page-number pagination (LoopNet returns ~25 cards per page, caps ~500). */
|
|
10999
|
+
interface Pagination {
|
|
11000
|
+
current_page: number;
|
|
11001
|
+
per_page: number | null;
|
|
11002
|
+
total_pages: number | null;
|
|
11003
|
+
total_results: number | null;
|
|
11004
|
+
}
|
|
11005
|
+
/** One LoopNet search result card (search / broker listings). */
|
|
11006
|
+
interface ListingCard {
|
|
11007
|
+
position: number;
|
|
11008
|
+
listing_id: string | null;
|
|
11009
|
+
property_id: string | null;
|
|
11010
|
+
url: string | null;
|
|
11011
|
+
/** for-lease | for-sale | auction */
|
|
11012
|
+
listing_type: string | null;
|
|
11013
|
+
/** Office, Retail, Industrial … */
|
|
11014
|
+
property_type: string | null;
|
|
11015
|
+
property_type_id: string | null;
|
|
11016
|
+
space_use: string | null;
|
|
11017
|
+
status: string | null;
|
|
11018
|
+
status_id: string | null;
|
|
11019
|
+
exposure_level: string | null;
|
|
11020
|
+
is_auction: boolean | null;
|
|
11021
|
+
title: string | null;
|
|
11022
|
+
subtitle: string | null;
|
|
11023
|
+
description: string | null;
|
|
11024
|
+
/** LoopNet "N Star" building rating */
|
|
11025
|
+
building_rating: number | null;
|
|
11026
|
+
year_built: number | null;
|
|
11027
|
+
/** "$41.40 /SF/YR", "$2,500,000" */
|
|
11028
|
+
price_text: string | null;
|
|
11029
|
+
price: number | null;
|
|
11030
|
+
price_currency: string | null;
|
|
11031
|
+
/** "/SF/YR", "/SF/MO", null for sale */
|
|
11032
|
+
price_period: string | null;
|
|
11033
|
+
/** "901 - 15,746 SF" */
|
|
11034
|
+
size_text: string | null;
|
|
11035
|
+
size_min_sqft: number | null;
|
|
11036
|
+
size_max_sqft: number | null;
|
|
11037
|
+
address: string | null;
|
|
11038
|
+
city: string | null;
|
|
11039
|
+
state: string | null;
|
|
11040
|
+
zip: string | null;
|
|
11041
|
+
county: string | null;
|
|
11042
|
+
country: string | null;
|
|
11043
|
+
market_id: string | null;
|
|
11044
|
+
latitude: number | null;
|
|
11045
|
+
longitude: number | null;
|
|
11046
|
+
thumbnail: string | null;
|
|
11047
|
+
has_virtual_tour: boolean | null;
|
|
11048
|
+
page_rank: number | null;
|
|
11049
|
+
position_rank: number | null;
|
|
11050
|
+
brokers: Broker[];
|
|
11051
|
+
}
|
|
11052
|
+
/** Full LoopNet listing detail (JSON-LD RealEstateListing + DOM facts). */
|
|
11053
|
+
interface ListingDetail {
|
|
11054
|
+
listing_id: string | null;
|
|
11055
|
+
property_id: string | null;
|
|
11056
|
+
url: string | null;
|
|
11057
|
+
market: string | null;
|
|
11058
|
+
country: string | null;
|
|
11059
|
+
/** for-lease | for-sale | auction */
|
|
11060
|
+
listing_type: string | null;
|
|
11061
|
+
/** "For Lease" / "For Sale" */
|
|
11062
|
+
transaction_type: string | null;
|
|
11063
|
+
name: string | null;
|
|
11064
|
+
title: string | null;
|
|
11065
|
+
subtitle: string | null;
|
|
11066
|
+
description: string | null;
|
|
11067
|
+
highlights: string[];
|
|
11068
|
+
price_text: string | null;
|
|
11069
|
+
price: number | null;
|
|
11070
|
+
price_currency: string | null;
|
|
11071
|
+
price_period: string | null;
|
|
11072
|
+
rental_rate_text: string | null;
|
|
11073
|
+
cap_rate: number | null;
|
|
11074
|
+
noi: string | null;
|
|
11075
|
+
price_per_sqft: number | null;
|
|
11076
|
+
property_type: string | null;
|
|
11077
|
+
property_sub_type: string | null;
|
|
11078
|
+
building_class: string | null;
|
|
11079
|
+
building_size_sqft: number | null;
|
|
11080
|
+
building_size_text: string | null;
|
|
11081
|
+
rentable_building_area: string | null;
|
|
11082
|
+
total_space_available: string | null;
|
|
11083
|
+
total_space_available_sqft: number | null;
|
|
11084
|
+
min_divisible: string | null;
|
|
11085
|
+
max_contiguous: string | null;
|
|
11086
|
+
typical_floor_size: string | null;
|
|
11087
|
+
building_height: string | null;
|
|
11088
|
+
ceiling_height: string | null;
|
|
11089
|
+
year_built: number | null;
|
|
11090
|
+
year_built_renovated: string | null;
|
|
11091
|
+
building_rating: number | null;
|
|
11092
|
+
lot_size_text: string | null;
|
|
11093
|
+
lot_size_acres: number | null;
|
|
11094
|
+
units: number | null;
|
|
11095
|
+
stories: number | null;
|
|
11096
|
+
percent_leased: string | null;
|
|
11097
|
+
tenancy: string | null;
|
|
11098
|
+
zoning: string | null;
|
|
11099
|
+
parcel_id: string | null;
|
|
11100
|
+
parking: string | null;
|
|
11101
|
+
walk_score: number | null;
|
|
11102
|
+
amenities: string[];
|
|
11103
|
+
address: string | null;
|
|
11104
|
+
city: string | null;
|
|
11105
|
+
state: string | null;
|
|
11106
|
+
zip: string | null;
|
|
11107
|
+
county: string | null;
|
|
11108
|
+
latitude: number | null;
|
|
11109
|
+
longitude: number | null;
|
|
11110
|
+
images: string[];
|
|
11111
|
+
photo_count: number | null;
|
|
11112
|
+
videos: string[];
|
|
11113
|
+
documents: string[];
|
|
11114
|
+
has_virtual_tour: boolean | null;
|
|
11115
|
+
spaces: Space[];
|
|
11116
|
+
brokers: Broker[];
|
|
11117
|
+
/** Every additionalProperty name/value pair LoopNet ships, verbatim */
|
|
11118
|
+
additional_facts: {
|
|
11119
|
+
name: string;
|
|
11120
|
+
value: string;
|
|
11121
|
+
}[];
|
|
11122
|
+
date_posted_utc: number | null;
|
|
11123
|
+
date_posted_at: string | null;
|
|
11124
|
+
date_updated_utc: number | null;
|
|
11125
|
+
date_updated_at: string | null;
|
|
11126
|
+
scraped_utc: number | null;
|
|
11127
|
+
scraped_at: string | null;
|
|
11128
|
+
}
|
|
11129
|
+
/** A LoopNet broker/professional profile with their listings. */
|
|
11130
|
+
interface BrokerProfile {
|
|
11131
|
+
broker_id: string | null;
|
|
11132
|
+
name: string | null;
|
|
11133
|
+
company: string | null;
|
|
11134
|
+
title: string | null;
|
|
11135
|
+
phone: string | null;
|
|
11136
|
+
email: string | null;
|
|
11137
|
+
photo: string | null;
|
|
11138
|
+
url: string | null;
|
|
11139
|
+
bio: string | null;
|
|
11140
|
+
address: string | null;
|
|
11141
|
+
city: string | null;
|
|
11142
|
+
state: string | null;
|
|
11143
|
+
license_number: string | null;
|
|
11144
|
+
specialties: string[];
|
|
11145
|
+
listing_count: number | null;
|
|
11146
|
+
listings: ListingCard[];
|
|
11147
|
+
scraped_utc: number | null;
|
|
11148
|
+
scraped_at: string | null;
|
|
11149
|
+
}
|
|
11150
|
+
/** Response from the /search endpoint. */
|
|
11151
|
+
interface SearchResponse {
|
|
11152
|
+
market: string;
|
|
11153
|
+
country: string;
|
|
11154
|
+
currency: string;
|
|
11155
|
+
listing_type: string;
|
|
11156
|
+
property_type: string | null;
|
|
11157
|
+
location: string | null;
|
|
11158
|
+
results: ListingCard[];
|
|
11159
|
+
pagination: Pagination;
|
|
11160
|
+
scraped_utc: number | null;
|
|
11161
|
+
scraped_at: string | null;
|
|
11162
|
+
}
|
|
11163
|
+
/** Response from the /listings/{listing_id} endpoint. */
|
|
11164
|
+
interface ListingResponse {
|
|
11165
|
+
listing: ListingDetail;
|
|
11166
|
+
}
|
|
11167
|
+
/** Response from the /brokers/{slug}/{broker_id} endpoint. */
|
|
11168
|
+
interface BrokerResponse {
|
|
11169
|
+
broker: BrokerProfile;
|
|
11170
|
+
}
|
|
11171
|
+
/** Response from the /markets endpoint. */
|
|
11172
|
+
interface MarketsResponse {
|
|
11173
|
+
markets: MarketInfo[];
|
|
11174
|
+
}
|
|
11175
|
+
/** Response from the /property-types endpoint. */
|
|
11176
|
+
interface PropertyTypesResponse {
|
|
11177
|
+
property_types: PropertyTypeInfo[];
|
|
11178
|
+
}
|
|
11179
|
+
/** Coverage market for LoopNet requests. */
|
|
11180
|
+
type LoopNetMarket = "us" | "ca" | "uk" | "fr" | "es";
|
|
11181
|
+
/** Listing-type filter for listing search. */
|
|
11182
|
+
type LoopNetListingType = "for-lease" | "for-sale" | "auctions";
|
|
11183
|
+
/** What min_price/max_price apply to. */
|
|
11184
|
+
type LoopNetPriceType = "unit" | "sf" | "acre";
|
|
11185
|
+
/** Parameters for the listing search endpoint. */
|
|
11186
|
+
interface LoopNetSearchParams {
|
|
11187
|
+
/** Location — "Houston, TX", ZIP, state code, or "usa" (required) */
|
|
11188
|
+
location: string;
|
|
11189
|
+
/** Coverage market (default: "us") */
|
|
11190
|
+
market?: LoopNetMarket;
|
|
11191
|
+
/** Listing type (default: "for-lease") */
|
|
11192
|
+
listing_type?: LoopNetListingType;
|
|
11193
|
+
/** Property-type slug from /property-types (default: all) */
|
|
11194
|
+
property_type?: string;
|
|
11195
|
+
/** Page number (1-20; LoopNet caps ~500 results) */
|
|
11196
|
+
page?: number;
|
|
11197
|
+
/** Minimum price filter */
|
|
11198
|
+
min_price?: number;
|
|
11199
|
+
/** Maximum price filter */
|
|
11200
|
+
max_price?: number;
|
|
11201
|
+
/** What min/max price apply to */
|
|
11202
|
+
price_type?: LoopNetPriceType;
|
|
11203
|
+
/** Minimum size (square feet) */
|
|
11204
|
+
min_size?: number;
|
|
11205
|
+
/** Maximum size (square feet) */
|
|
11206
|
+
max_size?: number;
|
|
11207
|
+
}
|
|
11208
|
+
|
|
11209
|
+
/**
|
|
11210
|
+
* LoopNet Search API client.
|
|
11211
|
+
*
|
|
11212
|
+
* Provides commercial-listing search for for-lease / for-sale / auction
|
|
11213
|
+
* listings across 5 markets (us, ca, uk, fr, es).
|
|
11214
|
+
*/
|
|
11215
|
+
|
|
11216
|
+
/**
|
|
11217
|
+
* Client for the LoopNet listing search endpoint.
|
|
11218
|
+
*
|
|
11219
|
+
* @example
|
|
11220
|
+
* ```typescript
|
|
11221
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11222
|
+
*
|
|
11223
|
+
* const results = await client.loopnet.search.search({ location: "Houston, TX" });
|
|
11224
|
+
* for (const listing of results.results) {
|
|
11225
|
+
* console.log(`${listing.position}. ${listing.address} — ${listing.price_text}`);
|
|
11226
|
+
* }
|
|
11227
|
+
* ```
|
|
11228
|
+
*/
|
|
11229
|
+
declare class SearchClient {
|
|
11230
|
+
private readonly client;
|
|
11231
|
+
constructor(client: BaseClient);
|
|
11232
|
+
/**
|
|
11233
|
+
* Search LoopNet for for-lease / for-sale / auction commercial listings.
|
|
11234
|
+
*
|
|
11235
|
+
* Costs 10 credits.
|
|
11236
|
+
*
|
|
11237
|
+
* @param params - Search parameters including location, filters, and pagination.
|
|
11238
|
+
* @returns Search results with listing cards and pagination metadata.
|
|
11239
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
11240
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
11241
|
+
*/
|
|
11242
|
+
search(params: LoopNetSearchParams): Promise<SearchResponse>;
|
|
11243
|
+
}
|
|
11244
|
+
|
|
11245
|
+
/**
|
|
11246
|
+
* LoopNet Listings API client.
|
|
11247
|
+
*
|
|
11248
|
+
* Provides full listing detail lookup by listing id.
|
|
11249
|
+
*/
|
|
11250
|
+
|
|
11251
|
+
/** Options for the listing detail endpoint. */
|
|
11252
|
+
interface LoopNetListingParams {
|
|
11253
|
+
/** Coverage market (default: "us") */
|
|
11254
|
+
market?: LoopNetMarket;
|
|
11255
|
+
}
|
|
11256
|
+
/**
|
|
11257
|
+
* Client for the LoopNet listing detail endpoint.
|
|
11258
|
+
*
|
|
11259
|
+
* @example
|
|
11260
|
+
* ```typescript
|
|
11261
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11262
|
+
*
|
|
11263
|
+
* const detail = await client.loopnet.listings.get("12345678");
|
|
11264
|
+
* console.log(detail.listing.address, detail.listing.price_text);
|
|
11265
|
+
* ```
|
|
11266
|
+
*/
|
|
11267
|
+
declare class ListingsClient {
|
|
11268
|
+
private readonly client;
|
|
11269
|
+
constructor(client: BaseClient);
|
|
11270
|
+
/**
|
|
11271
|
+
* Get a single LoopNet listing's full detail by listing id.
|
|
11272
|
+
*
|
|
11273
|
+
* Costs 12 credits.
|
|
11274
|
+
*
|
|
11275
|
+
* @param listingId - The LoopNet listing id.
|
|
11276
|
+
* @param params - Optional market selector.
|
|
11277
|
+
* @returns Listing detail response.
|
|
11278
|
+
* @throws NotFoundError - If the listing doesn't exist.
|
|
11279
|
+
*/
|
|
11280
|
+
get(listingId: string, params?: LoopNetListingParams): Promise<ListingResponse>;
|
|
11281
|
+
}
|
|
11282
|
+
|
|
11283
|
+
/**
|
|
11284
|
+
* LoopNet Brokers API client.
|
|
11285
|
+
*
|
|
11286
|
+
* Provides a commercial broker's profile and their active listings.
|
|
11287
|
+
*/
|
|
11288
|
+
|
|
11289
|
+
/** Options for the broker profile endpoint. */
|
|
11290
|
+
interface LoopNetBrokerParams {
|
|
11291
|
+
/** Coverage market (default: "us") */
|
|
11292
|
+
market?: LoopNetMarket;
|
|
11293
|
+
}
|
|
11294
|
+
/**
|
|
11295
|
+
* Client for the LoopNet broker profile endpoint.
|
|
11296
|
+
*
|
|
11297
|
+
* @example
|
|
11298
|
+
* ```typescript
|
|
11299
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11300
|
+
*
|
|
11301
|
+
* const profile = await client.loopnet.brokers.get("jane-doe", "w7x2k9");
|
|
11302
|
+
* console.log(profile.broker.name, profile.broker.listing_count);
|
|
11303
|
+
* ```
|
|
11304
|
+
*/
|
|
11305
|
+
declare class BrokersClient {
|
|
11306
|
+
private readonly client;
|
|
11307
|
+
constructor(client: BaseClient);
|
|
11308
|
+
/**
|
|
11309
|
+
* Get a LoopNet broker's profile and their active listings.
|
|
11310
|
+
*
|
|
11311
|
+
* Costs 8 credits.
|
|
11312
|
+
*
|
|
11313
|
+
* @param slug - The broker's profile URL slug.
|
|
11314
|
+
* @param brokerId - The LoopNet broker id.
|
|
11315
|
+
* @param params - Optional market selector.
|
|
11316
|
+
* @returns Broker profile response with the broker and their listings.
|
|
11317
|
+
* @throws NotFoundError - If the broker doesn't exist.
|
|
11318
|
+
*/
|
|
11319
|
+
get(slug: string, brokerId: string, params?: LoopNetBrokerParams): Promise<BrokerResponse>;
|
|
11320
|
+
}
|
|
11321
|
+
|
|
11322
|
+
/**
|
|
11323
|
+
* LoopNet Reference Data API client.
|
|
11324
|
+
*
|
|
11325
|
+
* Provides the static coverage-market and property-type lists.
|
|
11326
|
+
*/
|
|
11327
|
+
|
|
11328
|
+
/**
|
|
11329
|
+
* Client for LoopNet reference endpoints (markets, property types).
|
|
11330
|
+
*
|
|
11331
|
+
* @example
|
|
11332
|
+
* ```typescript
|
|
11333
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11334
|
+
*
|
|
11335
|
+
* const markets = await client.loopnet.reference.markets();
|
|
11336
|
+
* const types = await client.loopnet.reference.propertyTypes();
|
|
11337
|
+
* ```
|
|
11338
|
+
*/
|
|
11339
|
+
declare class ReferenceClient {
|
|
11340
|
+
private readonly client;
|
|
11341
|
+
constructor(client: BaseClient);
|
|
11342
|
+
/**
|
|
11343
|
+
* List LoopNet coverage markets (us, ca, uk, fr, es).
|
|
11344
|
+
*
|
|
11345
|
+
* Free — costs 0 credits.
|
|
11346
|
+
*
|
|
11347
|
+
* @returns Markets response with all supported coverage markets.
|
|
11348
|
+
*/
|
|
11349
|
+
markets(): Promise<MarketsResponse>;
|
|
11350
|
+
/**
|
|
11351
|
+
* List LoopNet property-type facets (Office, Retail, Industrial, …).
|
|
11352
|
+
*
|
|
11353
|
+
* Free — costs 0 credits.
|
|
11354
|
+
*
|
|
11355
|
+
* @returns Property-types response with all searchable property-type slugs.
|
|
11356
|
+
*/
|
|
11357
|
+
propertyTypes(): Promise<PropertyTypesResponse>;
|
|
11358
|
+
}
|
|
11359
|
+
|
|
11360
|
+
/**
|
|
11361
|
+
* LoopNet API client.
|
|
11362
|
+
*
|
|
11363
|
+
* Provides access to all LoopNet API endpoints through specialized sub-clients.
|
|
11364
|
+
*/
|
|
11365
|
+
|
|
11366
|
+
/**
|
|
11367
|
+
* LoopNet API client with access to all LoopNet endpoints.
|
|
11368
|
+
*
|
|
11369
|
+
* Provides sub-clients for different resource types:
|
|
11370
|
+
* - `search` - For-lease / for-sale / auction commercial-listing search
|
|
11371
|
+
* - `listings` - Listing detail (by listing id)
|
|
11372
|
+
* - `brokers` - Broker profile and their active listings
|
|
11373
|
+
* - `reference` - Reference data (markets, property types)
|
|
11374
|
+
*
|
|
11375
|
+
* @example
|
|
11376
|
+
* ```typescript
|
|
11377
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11378
|
+
*
|
|
11379
|
+
* // Search listings
|
|
11380
|
+
* const results = await client.loopnet.search.search({ location: "Houston, TX" });
|
|
11381
|
+
*
|
|
11382
|
+
* // Get listing detail
|
|
11383
|
+
* const detail = await client.loopnet.listings.get("12345678");
|
|
11384
|
+
*
|
|
11385
|
+
* // Get a broker profile
|
|
11386
|
+
* const broker = await client.loopnet.brokers.get("jane-doe", "w7x2k9");
|
|
11387
|
+
*
|
|
11388
|
+
* // Reference data
|
|
11389
|
+
* const markets = await client.loopnet.reference.markets();
|
|
11390
|
+
* ```
|
|
11391
|
+
*/
|
|
11392
|
+
declare class LoopNetClient {
|
|
11393
|
+
/** Client for for-lease / for-sale / auction commercial-listing search */
|
|
11394
|
+
readonly search: SearchClient;
|
|
11395
|
+
/** Client for listing detail (by listing id) */
|
|
11396
|
+
readonly listings: ListingsClient;
|
|
11397
|
+
/** Client for broker profile and their active listings */
|
|
11398
|
+
readonly brokers: BrokersClient;
|
|
11399
|
+
/** Client for reference data (markets, property types) */
|
|
11400
|
+
readonly reference: ReferenceClient;
|
|
11401
|
+
/**
|
|
11402
|
+
* Create a new LoopNet client.
|
|
11403
|
+
*
|
|
11404
|
+
* @param client - The base HTTP client for making requests.
|
|
11405
|
+
*/
|
|
11406
|
+
constructor(client: BaseClient);
|
|
11407
|
+
}
|
|
11408
|
+
|
|
10494
11409
|
/**
|
|
10495
11410
|
* Main ScrapeBadger client.
|
|
10496
11411
|
*
|
|
@@ -10541,6 +11456,8 @@ declare class ScrapeBadger {
|
|
|
10541
11456
|
readonly google: GoogleClient;
|
|
10542
11457
|
/** Reddit scraper API client */
|
|
10543
11458
|
readonly reddit: RedditClient;
|
|
11459
|
+
/** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
|
|
11460
|
+
readonly redfin: RedfinClient;
|
|
10544
11461
|
/** Amazon scraper API client — 14 endpoints */
|
|
10545
11462
|
readonly amazon: AmazonClient;
|
|
10546
11463
|
/** Shopee scraper API client — 6 endpoints across 11 markets */
|
|
@@ -10559,6 +11476,8 @@ declare class ScrapeBadger {
|
|
|
10559
11476
|
readonly zillow: ZillowClient;
|
|
10560
11477
|
/** Immobiliare scraper API client — 8 endpoints across 4 markets (it, es, gr, lu) */
|
|
10561
11478
|
readonly immobiliare: ImmobiliareClient;
|
|
11479
|
+
/** LoopNet scraper API client — commercial real estate across US/CA/UK/FR/ES (search, listing, broker, markets, property types) */
|
|
11480
|
+
readonly loopnet: LoopNetClient;
|
|
10562
11481
|
/**
|
|
10563
11482
|
* Create a new ScrapeBadger client.
|
|
10564
11483
|
*
|
|
@@ -10587,4 +11506,4 @@ declare class ScrapeBadger {
|
|
|
10587
11506
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
10588
11507
|
}
|
|
10589
11508
|
|
|
10590
|
-
export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 as AmazonCategoryResponse, AmazonClient, type Coupon as AmazonCoupon, type Deal as AmazonDeal, type AmazonDealsParams, type DealsResponse as AmazonDealsResponse, type Delivery as AmazonDelivery, type FeedbackWindow as AmazonFeedbackWindow, ListingsClient as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$4 as AmazonMarketInfo, type MarketsResponse$7 as AmazonMarketsResponse, type NewReleasesResponse as AmazonNewReleasesResponse, type Offer as AmazonOffer, type OfferCondition as AmazonOfferCondition, type OfferDelivery as AmazonOfferDelivery, type OfferSeller as AmazonOfferSeller, type AmazonOffersParams, type OffersResponse as AmazonOffersResponse, type Pagination$2 as AmazonPagination, type AmazonPrice, type Product as AmazonProduct, type ProductBadges as AmazonProductBadges, type ProductDeal as AmazonProductDeal, type ProductDetailResponse as AmazonProductDetailResponse, type AmazonProductParams, type ProductVariant as AmazonProductVariant, ProductsClient$1 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$7 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$7 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$6 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$2 as AmazonSellersClient, type AutocompleteParams, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$3 as EbayMarketInfo, type MarketsResponse$5 as EbayMarketsResponse, type Pagination$1 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$4 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$4 as EbaySearchClient, type EbaySearchParams, type SearchResponse$5 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$1 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$2 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$9 as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$2 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$1 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$1 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$2 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type Address$1 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$1 as RealtorMarketInfo, type MarketsResponse$3 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$2 as RealtorReferenceClient, type School$1 as RealtorSchool, SearchClient$2 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$3 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$8 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$1 as RedditUsersClient, type RedditWikiPage, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$6 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$6 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$6 as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$5 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$5 as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$8 as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$8 as VintedReferenceClient, SearchClient$a as VintedSearchClient, type VintedSearchParams, type SearchResponse$7 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$2 as VintedUsersClient, WebClient, type WikiPageResponse, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$2 as YoutubeMarketInfo, type MarketsResponse$4 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$3 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$3 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$4 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo as ZillowMarketInfo, type MarketsResponse$1 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School as ZillowSchool, SearchClient as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$1 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|
|
11509
|
+
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 Address$2 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$2 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$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$a as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$9 as VintedReferenceClient, SearchClient$b as VintedSearchClient, type VintedSearchParams, type SearchResponse$9 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 };
|