scrapebadger 0.17.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +691 -5
- package/dist/index.d.ts +691 -5
- package/dist/index.js +200 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +199 -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
|
}
|
|
@@ -586,7 +586,7 @@ declare class SearchClient$b {
|
|
|
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
|
/**
|
|
@@ -819,7 +819,7 @@ declare class ReferenceClient$9 {
|
|
|
819
819
|
* }
|
|
820
820
|
* ```
|
|
821
821
|
*/
|
|
822
|
-
markets(): Promise<MarketsResponse$
|
|
822
|
+
markets(): Promise<MarketsResponse$a>;
|
|
823
823
|
}
|
|
824
824
|
|
|
825
825
|
/**
|
|
@@ -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
|
*
|
|
@@ -10955,6 +11406,237 @@ declare class LoopNetClient {
|
|
|
10955
11406
|
constructor(client: BaseClient);
|
|
10956
11407
|
}
|
|
10957
11408
|
|
|
11409
|
+
/**
|
|
11410
|
+
* TypeScript types for Depop API responses.
|
|
11411
|
+
*
|
|
11412
|
+
* These interfaces mirror the backend `depop_scraper` response schema
|
|
11413
|
+
* field-for-field. Keys are snake_case exactly as the backend serialises
|
|
11414
|
+
* them (`seller_username`, `original_price`, `is_sold`); optional / nullable
|
|
11415
|
+
* backend fields are typed as `Type | null` or left `?`-optional.
|
|
11416
|
+
*
|
|
11417
|
+
* Depop is a single-host target (www.depop.com) localised by a `market`
|
|
11418
|
+
* param → country + currency. Data is browser-rendered, so responses carry
|
|
11419
|
+
* the raw parsed cards/detail rather than an underlying JSON API shape.
|
|
11420
|
+
*/
|
|
11421
|
+
/** One Depop product card (search / user-products result element). */
|
|
11422
|
+
interface DepopCard {
|
|
11423
|
+
/** Product slug (last URL segment). */
|
|
11424
|
+
slug: string;
|
|
11425
|
+
/** Full product URL. */
|
|
11426
|
+
url: string;
|
|
11427
|
+
/** Seller's Depop username. */
|
|
11428
|
+
seller_username?: string;
|
|
11429
|
+
/** Brand name. */
|
|
11430
|
+
brand?: string;
|
|
11431
|
+
/** Item size label. */
|
|
11432
|
+
size?: string;
|
|
11433
|
+
/** Current price (as displayed). */
|
|
11434
|
+
price?: string;
|
|
11435
|
+
/** Original price before markdown. */
|
|
11436
|
+
original_price?: string;
|
|
11437
|
+
/** Currency code / symbol for the price. */
|
|
11438
|
+
currency?: string;
|
|
11439
|
+
/** Primary product image URL. */
|
|
11440
|
+
image?: string;
|
|
11441
|
+
/** Whether the item is marked sold. */
|
|
11442
|
+
is_sold: boolean;
|
|
11443
|
+
}
|
|
11444
|
+
/** Result-set metadata for a paginated listing. */
|
|
11445
|
+
interface SearchMeta {
|
|
11446
|
+
result_count: number;
|
|
11447
|
+
page: number;
|
|
11448
|
+
has_more: boolean;
|
|
11449
|
+
}
|
|
11450
|
+
/** A supported Depop market (for /markets). */
|
|
11451
|
+
interface DepopMarket {
|
|
11452
|
+
code: string;
|
|
11453
|
+
country_code: string;
|
|
11454
|
+
currency: string;
|
|
11455
|
+
name: string;
|
|
11456
|
+
}
|
|
11457
|
+
interface DepopSearchResponse {
|
|
11458
|
+
products: DepopCard[];
|
|
11459
|
+
meta: SearchMeta;
|
|
11460
|
+
market: string;
|
|
11461
|
+
query: string;
|
|
11462
|
+
}
|
|
11463
|
+
/** Full Depop product detail. */
|
|
11464
|
+
interface DepopProductDetail {
|
|
11465
|
+
id?: number;
|
|
11466
|
+
slug: string;
|
|
11467
|
+
title?: string | null;
|
|
11468
|
+
description?: string | null;
|
|
11469
|
+
brand?: string | null;
|
|
11470
|
+
condition?: string | null;
|
|
11471
|
+
price?: string | null;
|
|
11472
|
+
currency?: string | null;
|
|
11473
|
+
availability?: string | null;
|
|
11474
|
+
seller_username?: string | null;
|
|
11475
|
+
images: string[];
|
|
11476
|
+
url: string;
|
|
11477
|
+
}
|
|
11478
|
+
/** A Depop shop / seller profile. */
|
|
11479
|
+
interface DepopShopProfile {
|
|
11480
|
+
username: string;
|
|
11481
|
+
name?: string | null;
|
|
11482
|
+
description?: string | null;
|
|
11483
|
+
rating_value?: string | null;
|
|
11484
|
+
rating_count?: number | null;
|
|
11485
|
+
follower_count?: number | null;
|
|
11486
|
+
url: string;
|
|
11487
|
+
}
|
|
11488
|
+
interface DepopUserProductsResponse {
|
|
11489
|
+
username: string;
|
|
11490
|
+
products: DepopCard[];
|
|
11491
|
+
meta: SearchMeta;
|
|
11492
|
+
market: string;
|
|
11493
|
+
}
|
|
11494
|
+
interface DepopMarketsResponse {
|
|
11495
|
+
markets: DepopMarket[];
|
|
11496
|
+
}
|
|
11497
|
+
/** Options for the /search endpoint. */
|
|
11498
|
+
interface DepopSearchParams {
|
|
11499
|
+
/** Market code (default: "us"). Localises country + currency. */
|
|
11500
|
+
market?: string;
|
|
11501
|
+
/** Results per page (1-24, default: 24). */
|
|
11502
|
+
perPage?: number;
|
|
11503
|
+
/** Page number (default: 1). */
|
|
11504
|
+
page?: number;
|
|
11505
|
+
/** Minimum price filter. */
|
|
11506
|
+
priceMin?: number;
|
|
11507
|
+
/** Maximum price filter. */
|
|
11508
|
+
priceMax?: number;
|
|
11509
|
+
/** Brand filter(s). */
|
|
11510
|
+
brands?: string;
|
|
11511
|
+
/** Size filter(s). */
|
|
11512
|
+
sizes?: string;
|
|
11513
|
+
/** Colour filter(s). */
|
|
11514
|
+
colours?: string;
|
|
11515
|
+
/** Condition filter(s). */
|
|
11516
|
+
conditions?: string;
|
|
11517
|
+
/** Gender filter. */
|
|
11518
|
+
gender?: string;
|
|
11519
|
+
/** Sort order. */
|
|
11520
|
+
sort?: string;
|
|
11521
|
+
}
|
|
11522
|
+
/** Options for the /products/{slug} endpoint. */
|
|
11523
|
+
interface DepopProductParams {
|
|
11524
|
+
/** Market code (default: "us"). */
|
|
11525
|
+
market?: string;
|
|
11526
|
+
}
|
|
11527
|
+
/** Options for the /users/{username} endpoint. */
|
|
11528
|
+
interface DepopUserParams {
|
|
11529
|
+
/** Market code (default: "us"). */
|
|
11530
|
+
market?: string;
|
|
11531
|
+
}
|
|
11532
|
+
/** Options for the /users/{username}/products endpoint. */
|
|
11533
|
+
interface DepopUserProductsParams {
|
|
11534
|
+
/** Market code (default: "us"). */
|
|
11535
|
+
market?: string;
|
|
11536
|
+
/** Results per page (1-24, default: 24). */
|
|
11537
|
+
perPage?: number;
|
|
11538
|
+
/** Page number (default: 1). */
|
|
11539
|
+
page?: number;
|
|
11540
|
+
}
|
|
11541
|
+
|
|
11542
|
+
/**
|
|
11543
|
+
* Depop API client.
|
|
11544
|
+
*
|
|
11545
|
+
* Depop endpoints: search (product search), getProduct (full single-product
|
|
11546
|
+
* detail, by slug), getUser (shop / seller profile, by username),
|
|
11547
|
+
* getUserProducts (a seller's products), and listMarkets. Single host
|
|
11548
|
+
* (www.depop.com) localised by a `market` param → country + currency.
|
|
11549
|
+
*
|
|
11550
|
+
* Data is browser-rendered (cloakbrowser), so each call takes a few seconds
|
|
11551
|
+
* to return.
|
|
11552
|
+
*/
|
|
11553
|
+
|
|
11554
|
+
/**
|
|
11555
|
+
* Client for all Depop API operations.
|
|
11556
|
+
*
|
|
11557
|
+
* @example
|
|
11558
|
+
* ```typescript
|
|
11559
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11560
|
+
*
|
|
11561
|
+
* // Search products
|
|
11562
|
+
* const results = await client.depop.search("vintage denim jacket", { market: "gb" });
|
|
11563
|
+
* for (const product of results.products) {
|
|
11564
|
+
* console.log(`${product.brand} — ${product.price} ${product.currency}`);
|
|
11565
|
+
* }
|
|
11566
|
+
*
|
|
11567
|
+
* // Full single-product detail
|
|
11568
|
+
* const detail = await client.depop.getProduct("some-product-slug");
|
|
11569
|
+
* console.log(detail.title);
|
|
11570
|
+
*
|
|
11571
|
+
* // Shop profile
|
|
11572
|
+
* const shop = await client.depop.getUser("someseller");
|
|
11573
|
+
*
|
|
11574
|
+
* // A seller's products
|
|
11575
|
+
* const items = await client.depop.getUserProducts("someseller");
|
|
11576
|
+
*
|
|
11577
|
+
* // Supported markets
|
|
11578
|
+
* const markets = await client.depop.listMarkets();
|
|
11579
|
+
* ```
|
|
11580
|
+
*/
|
|
11581
|
+
declare class DepopClient {
|
|
11582
|
+
private readonly client;
|
|
11583
|
+
constructor(client: BaseClient);
|
|
11584
|
+
/**
|
|
11585
|
+
* Search Depop for products.
|
|
11586
|
+
*
|
|
11587
|
+
* Costs 10 credits.
|
|
11588
|
+
*
|
|
11589
|
+
* @param query - Search keywords (required).
|
|
11590
|
+
* @param options - Optional parameters (market, perPage, page, price/brand/
|
|
11591
|
+
* size/colour/condition/gender filters, sort).
|
|
11592
|
+
* @returns Search response with matching product cards and pagination meta.
|
|
11593
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
11594
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
11595
|
+
*/
|
|
11596
|
+
search(query: string, options?: DepopSearchParams): Promise<DepopSearchResponse>;
|
|
11597
|
+
/**
|
|
11598
|
+
* Get a single Depop product's full detail by slug.
|
|
11599
|
+
*
|
|
11600
|
+
* Costs 10 credits.
|
|
11601
|
+
*
|
|
11602
|
+
* @param slug - The Depop product slug.
|
|
11603
|
+
* @param options - Optional parameters (market).
|
|
11604
|
+
* @returns Full product detail.
|
|
11605
|
+
* @throws NotFoundError - If the product doesn't exist.
|
|
11606
|
+
*/
|
|
11607
|
+
getProduct(slug: string, options?: DepopProductParams): Promise<DepopProductDetail>;
|
|
11608
|
+
/**
|
|
11609
|
+
* Get a Depop shop / seller profile by username.
|
|
11610
|
+
*
|
|
11611
|
+
* Costs 10 credits.
|
|
11612
|
+
*
|
|
11613
|
+
* @param username - The Depop seller username.
|
|
11614
|
+
* @param options - Optional parameters (market).
|
|
11615
|
+
* @returns Shop profile.
|
|
11616
|
+
* @throws NotFoundError - If the user doesn't exist.
|
|
11617
|
+
*/
|
|
11618
|
+
getUser(username: string, options?: DepopUserParams): Promise<DepopShopProfile>;
|
|
11619
|
+
/**
|
|
11620
|
+
* Get a Depop seller's products.
|
|
11621
|
+
*
|
|
11622
|
+
* Costs 10 credits.
|
|
11623
|
+
*
|
|
11624
|
+
* @param username - The Depop seller username.
|
|
11625
|
+
* @param options - Optional parameters (market, perPage, page).
|
|
11626
|
+
* @returns User products response with product cards and pagination meta.
|
|
11627
|
+
* @throws NotFoundError - If the user doesn't exist.
|
|
11628
|
+
*/
|
|
11629
|
+
getUserProducts(username: string, options?: DepopUserProductsParams): Promise<DepopUserProductsResponse>;
|
|
11630
|
+
/**
|
|
11631
|
+
* Get all supported Depop markets.
|
|
11632
|
+
*
|
|
11633
|
+
* Free — this endpoint costs no credits.
|
|
11634
|
+
*
|
|
11635
|
+
* @returns Markets response with all supported markets.
|
|
11636
|
+
*/
|
|
11637
|
+
listMarkets(): Promise<DepopMarketsResponse>;
|
|
11638
|
+
}
|
|
11639
|
+
|
|
10958
11640
|
/**
|
|
10959
11641
|
* Main ScrapeBadger client.
|
|
10960
11642
|
*
|
|
@@ -11005,6 +11687,8 @@ declare class ScrapeBadger {
|
|
|
11005
11687
|
readonly google: GoogleClient;
|
|
11006
11688
|
/** Reddit scraper API client */
|
|
11007
11689
|
readonly reddit: RedditClient;
|
|
11690
|
+
/** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
|
|
11691
|
+
readonly redfin: RedfinClient;
|
|
11008
11692
|
/** Amazon scraper API client — 14 endpoints */
|
|
11009
11693
|
readonly amazon: AmazonClient;
|
|
11010
11694
|
/** Shopee scraper API client — 6 endpoints across 11 markets */
|
|
@@ -11025,6 +11709,8 @@ declare class ScrapeBadger {
|
|
|
11025
11709
|
readonly immobiliare: ImmobiliareClient;
|
|
11026
11710
|
/** LoopNet scraper API client — commercial real estate across US/CA/UK/FR/ES (search, listing, broker, markets, property types) */
|
|
11027
11711
|
readonly loopnet: LoopNetClient;
|
|
11712
|
+
/** Depop scraper API client — search, product, user, user products, markets (www.depop.com, 10 markets) */
|
|
11713
|
+
readonly depop: DepopClient;
|
|
11028
11714
|
/**
|
|
11029
11715
|
* Create a new ScrapeBadger client.
|
|
11030
11716
|
*
|
|
@@ -11053,4 +11739,4 @@ declare class ScrapeBadger {
|
|
|
11053
11739
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
11054
11740
|
}
|
|
11055
11741
|
|
|
11056
|
-
export { type AiListItem, type AiModeResponse, type AiModeSearchParams, type AiReference, type AiTableRow, type AiTextBlock, type AmazonAutocompleteParams, type AutocompleteResponse$4 as AmazonAutocompleteResponse, type AutocompleteSuggestion$1 as AmazonAutocompleteSuggestion, type Bestseller as AmazonBestseller, type BestsellersRankEntry as AmazonBestsellersRankEntry, type BestsellersResponse as AmazonBestsellersResponse, type Buybox as AmazonBuybox, type CategoriesResponse$3 as AmazonCategoriesResponse, type CategoryInfo$1 as AmazonCategoryInfo, type AmazonCategoryParams, type CategoryResponse$1 as AmazonCategoryResponse, AmazonClient, type Coupon as AmazonCoupon, type Deal as AmazonDeal, type AmazonDealsParams, type DealsResponse as AmazonDealsResponse, type Delivery as AmazonDelivery, type FeedbackWindow as AmazonFeedbackWindow, ListingsClient$1 as AmazonListingsClient, type AmazonListingsParams, type MarketInfo$5 as AmazonMarketInfo, type MarketsResponse$8 as AmazonMarketsResponse, type NewReleasesResponse as AmazonNewReleasesResponse, type Offer as AmazonOffer, type OfferCondition as AmazonOfferCondition, type OfferDelivery as AmazonOfferDelivery, type OfferSeller as AmazonOfferSeller, type AmazonOffersParams, type OffersResponse as AmazonOffersResponse, type Pagination$3 as AmazonPagination, type AmazonPrice, type Product as AmazonProduct, type ProductBadges as AmazonProductBadges, type ProductDeal as AmazonProductDeal, type ProductDetailResponse as AmazonProductDetailResponse, type AmazonProductParams, type ProductVariant as AmazonProductVariant, ProductsClient$1 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$8 as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$8 as AmazonSearchClient, type AmazonSearchParams, type SearchResponse$7 as AmazonSearchResponse, type SearchResult$3 as AmazonSearchResult, type Seller$2 as AmazonSeller, type SellerFeedbackEntry as AmazonSellerFeedbackEntry, type SellerFeedbackResponse$1 as AmazonSellerFeedbackResponse, type SellerFeedbackSummary as AmazonSellerFeedbackSummary, type AmazonSellerListParams, type AmazonSellerParams, type SellerProductsResponse as AmazonSellerProductsResponse, type SellerProfileResponse$1 as AmazonSellerProfileResponse, SellersClient$2 as AmazonSellersClient, type AutocompleteParams, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$5 as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, SearchClient$5 as EbaySearchClient, type EbaySearchParams, type SearchResponse$6 as EbaySearchResponse, type SearchResult$1 as EbaySearchResult, type Seller$1 as EbaySeller, type EbaySellerFeedbackParams, type SellerFeedbackResponse as EbaySellerFeedbackResponse, type EbaySellerItemsParams, type SellerItemsResponse as EbaySellerItemsResponse, type EbaySellerParams, type SellerProfileResponse as EbaySellerProfileResponse, SellersClient$1 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$2 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$a as GoogleSearchClient, type GoogleSearchParams, ShoppingClient as GoogleShoppingClient, ShortsClient$1 as GoogleShortsClient, TrendsClient as GoogleTrendsClient, VideosClient$2 as GoogleVideosClient, type HotelsDetailsParams, type HotelsSearchParams, type ImagesSearchParams, type Agency as ImmobiliareAgency, type AgencyAgent as ImmobiliareAgencyAgent, type ImmobiliareAgencyListingsParams, type AgencyListingsResponse as ImmobiliareAgencyListingsResponse, type ImmobiliareAgencyParams, type AgencyProfile as ImmobiliareAgencyProfile, type Agent as ImmobiliareAgent, type ImmobiliareAutocompleteParams, type ImmobiliareCategory, ImmobiliareClient, type ImmobiliareContract, type Feature as ImmobiliareFeature, type Listing as ImmobiliareListing, type ImmobiliareListingParams, type Location as ImmobiliareLocation, type Market as ImmobiliareMarket, type ImmobiliareMarketCode, type MarketsResponse$1 as ImmobiliareMarketsResponse, type Photo as ImmobiliarePhoto, type Price as ImmobiliarePrice, type ImmobiliarePriceStatsParams, type PriceStatsPoint as ImmobiliarePriceStatsPoint, type PriceStatsResponse as ImmobiliarePriceStatsResponse, type PropertyUnit as ImmobiliarePropertyUnit, type ReferenceResponse as ImmobiliareReferenceResponse, type RelatedSearch as ImmobiliareRelatedSearch, type ImmobiliareSearchParams, type SearchResponse$1 as ImmobiliareSearchResponse, type ImmobiliareSort, type SuggestResponse as ImmobiliareSuggestResponse, type Suggestion as ImmobiliareSuggestion, type JobsSearchParams, type Ad as LeboncoinAd, type AdResponse as LeboncoinAdResponse, type LeboncoinAdType, AdsClient as LeboncoinAdsClient, type Attribute as LeboncoinAttribute, type CategoriesResponse as LeboncoinCategoriesResponse, type Category as LeboncoinCategory, LeboncoinClient, type Department as LeboncoinDepartment, type LeboncoinDepartmentsParams, type DepartmentsResponse as LeboncoinDepartmentsResponse, type FeedbackScores as LeboncoinFeedbackScores, type Images as LeboncoinImages, type Location$1 as LeboncoinLocation, type LocationSearchResponse as LeboncoinLocationSearchResponse, type LocationSuggestion as LeboncoinLocationSuggestion, type MarketsResponse$3 as LeboncoinMarketsResponse, type Owner as LeboncoinOwner, type LeboncoinOwnerType, ReferenceClient$2 as LeboncoinReferenceClient, type Region as LeboncoinRegion, type RegionsResponse as LeboncoinRegionsResponse, SearchClient$2 as LeboncoinSearchClient, type LeboncoinSearchParams, type SearchResponse$3 as LeboncoinSearchResponse, type Seller as LeboncoinSeller, type LeboncoinSellerListingsParams, type SellerListingsResponse as LeboncoinSellerListingsResponse, type SellerResponse as LeboncoinSellerResponse, SellersClient as LeboncoinSellersClient, type LeboncoinSimilarParams, type SimilarResponse as LeboncoinSimilarResponse, type LeboncoinSortBy, type StoreRatingReview as LeboncoinStoreRatingReview, type LensSearchParams, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type Address$1 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$3 as RealtorReferenceClient, type School$1 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$9 as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$1 as RedditUsersClient, type RedditWikiPage, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$7 as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$7 as ShopeeSearchClient, type ShopeeSearchParams, type SearchResult$2 as ShopeeSearchResult, type ShoppingClickParams, type ShoppingOffersParams, type ShoppingProductParams, type ShoppingSearchParams, type ShortsSearchParams, type SubredditDetailResponse, type SubredditPostsResponse, type SubredditRulesResponse, type SubredditWikiPagesResponse, type TikTokAd, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAnchor, type TikTokAuthor, type TikTokChallenge, TikTokClient, type TikTokComment, type CommentListResponse as TikTokCommentListResponse, type TikTokCommentRepliesParams, type TikTokCommentsParams, type TikTokCursorPage, type TikTokEffectSticker, type TikTokHashtag, type TikTokHashtagParams, type HashtagResponse$1 as TikTokHashtagResponse, type HashtagSearchResponse as TikTokHashtagSearchResponse, HashtagsClient as TikTokHashtagsClient, type TikTokListVideosParams, type TikTokMusic, MusicClient$1 as TikTokMusicClient, type TikTokMusicParams, type MusicResponse as TikTokMusicResponse, type TikTokOEmbed, type TikTokOEmbedParams, type ProfileResponse as TikTokProfileResponse, ReferenceClient$6 as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$6 as TikTokSearchClient, type TikTokSearchParams, type TikTokStats, type TikTokSubtitle, type TikTokTextExtra, type TikTokTranscriptParams, type TranscriptResponse as TikTokTranscriptResponse, TrendingClient$1 as TikTokTrendingClient, type TikTokTrendingHashtag, type TrendingHashtagsResponse as TikTokTrendingHashtagsResponse, type TikTokTrendingParams, type TikTokTrendingSong, type TrendingSongsResponse as TikTokTrendingSongsResponse, type TikTokTrendingVideosParams, type TikTokUser, type TikTokUserListParams, type UserListResponse as TikTokUserListResponse, type TikTokUserParams, type UserSearchResponse as TikTokUserSearchResponse, type TikTokUserStats, UsersClient as TikTokUsersClient, type TikTokVideo, type TikTokVideoControl, type VideoListResponse as TikTokVideoListResponse, type TikTokVideoMeta, type TikTokVideoParams, type VideoResponse as TikTokVideoResponse, type TikTokVideoStatus, VideosClient$1 as TikTokVideosClient, type TrendingPostsResponse, type TrendsAutocompleteParams, type TrendsInterestParams, type TrendsRegionsParams, type TrendsRelatedParams, type TrendsTrendingParams, TwitterClient, type UserCommentsResponse, type UserModeratedResponse, type UserPostsResponse, type UserTrophiesResponse, type VideosSearchParams, type VintedBrand, type BrandsResponse as VintedBrandsResponse, VintedClient, type VintedColor, type ColorsResponse as VintedColorsResponse, type VintedItemDetail, type ItemDetailResponse$1 as VintedItemDetailResponse, type VintedItemSummary, ItemsClient$1 as VintedItemsClient, type VintedMarket, type MarketsResponse$9 as VintedMarketsResponse, type VintedPagination, type VintedPhoto, type VintedPrice, ReferenceClient$9 as VintedReferenceClient, SearchClient$b as VintedSearchClient, type VintedSearchParams, type SearchResponse$8 as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$2 as VintedUsersClient, WebClient, type WikiPageResponse, type AudioTrack as YoutubeAudioTrack, type YoutubeAutocompleteParams, type AutocompleteResponse$2 as YoutubeAutocompleteResponse, type YoutubeBatchParams, type BatchResponse as YoutubeBatchResponse, type CaptionTrack as YoutubeCaptionTrack, type YoutubeCaptionsParams, type CaptionsResponse as YoutubeCaptionsResponse, type YoutubeCategoriesParams, type CategoriesResponse$1 as YoutubeCategoriesResponse, type Channel as YoutubeChannel, type ChannelAbout as YoutubeChannelAbout, type ChannelLink as YoutubeChannelLink, type YoutubeChannelParams, type YoutubeChannelSearchParams, type YoutubeChannelTabParams, type ChannelTabResponse as YoutubeChannelTabResponse, type ChannelVideosResponse as YoutubeChannelVideosResponse, ChannelsClient as YoutubeChannelsClient, type Chapter as YoutubeChapter, YoutubeClient, type Comment as YoutubeComment, type YoutubeCommentSort, type YoutubeCommentsParams, type CommentsResponse as YoutubeCommentsResponse, CommunityClient as YoutubeCommunityClient, type CommunityPost as YoutubeCommunityPost, type CommunityResponse as YoutubeCommunityResponse, type YoutubeDuration, type Format as YoutubeFormat, type YoutubeHashtagParams, type HashtagResponse as YoutubeHashtagResponse, type HeatMarker as YoutubeHeatMarker, type YoutubeHomeParams, type HomeResponse as YoutubeHomeResponse, type LanguagesResponse as YoutubeLanguagesResponse, type LiveChatMessage as YoutubeLiveChatMessage, type YoutubeLiveChatParams, type LiveChatResponse as YoutubeLiveChatResponse, type LiveStreamingDetails as YoutubeLiveStreamingDetails, type MarketInfo$3 as YoutubeMarketInfo, type MarketsResponse$5 as YoutubeMarketsResponse, MusicClient as YoutubeMusicClient, type YoutubeMusicSearchParams, type OEmbed as YoutubeOEmbed, type YoutubeOEmbedParams, type Playlist as YoutubePlaylist, type PlaylistItem as YoutubePlaylistItem, type YoutubePlaylistItemsParams, type PlaylistItemsResponse as YoutubePlaylistItemsResponse, type YoutubePlaylistParams, PlaylistsClient as YoutubePlaylistsClient, type PollChoice as YoutubePollChoice, type YoutubePostCommentsParams, type YoutubePostParams, ReferenceClient$4 as YoutubeReferenceClient, type ReferenceRow as YoutubeReferenceRow, type YoutubeRegionParams, type RegionRestriction as YoutubeRegionRestriction, type RegionsResponse$1 as YoutubeRegionsResponse, type YoutubeRelatedParams, type RelatedResponse as YoutubeRelatedResponse, type YoutubeRepliesParams, type RepliesResponse as YoutubeRepliesResponse, type YoutubeResolveParams, type ResolveResult as YoutubeResolveResult, type SearchChip as YoutubeSearchChip, SearchClient$4 as YoutubeSearchClient, type YoutubeSearchParams, type SearchResponse$5 as YoutubeSearchResponse, type SearchResult as YoutubeSearchResult, type YoutubeSearchSort, type YoutubeSearchType, type ShoppingResult as YoutubeShoppingResult, type Short as YoutubeShort, type YoutubeShortParams, type YoutubeShortsBySoundParams, ShortsClient as YoutubeShortsClient, type StreamingData as YoutubeStreamingData, type YoutubeStreamsClient, type YoutubeStreamsParams, type SubscriberCount as YoutubeSubscriberCount, type Thumbnail as YoutubeThumbnail, type Transcript as YoutubeTranscript, type YoutubeTranscriptParams, type TranscriptSegment as YoutubeTranscriptSegment, TrendingClient as YoutubeTrendingClient, type TrendingItem as YoutubeTrendingItem, type YoutubeTrendingParams, type TrendingResponse as YoutubeTrendingResponse, type YoutubeTrendingShortsParams, type YoutubeTrendingType, type YoutubeUploadDate, type Video as YoutubeVideo, type YoutubeVideoParams, VideosClient as YoutubeVideosClient, type Address as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$1 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|
|
11742
|
+
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 DepopCard, DepopClient, type DepopMarket, type DepopMarketsResponse, type DepopProductDetail, type DepopProductParams, type SearchMeta as DepopSearchMeta, type DepopSearchParams, type DepopSearchResponse, type DepopShopProfile, type DepopUserParams, type DepopUserProductsParams, type DepopUserProductsResponse, type DetectOptions, type DetectResult, type DomainPostsResponse, type EbayAutocompleteParams, type AutocompleteResponse$3 as EbayAutocompleteResponse, type AutocompleteSuggestion as EbayAutocompleteSuggestion, type EbayBuyingFormat, CategoriesClient as EbayCategoriesClient, type CategoriesResponse$2 as EbayCategoriesResponse, type CategoryInfo as EbayCategoryInfo, type EbayCategoryParams, type CategoryResponse as EbayCategoryResponse, EbayClient, type EbayCompletedParams, type EbayCondition, type FeedbackBreakdown as EbayFeedbackBreakdown, type FeedbackEntry as EbayFeedbackEntry, type Image as EbayImage, type Item as EbayItem, type ItemDetailResponse as EbayItemDetailResponse, type EbayItemParams, type ItemSeller as EbayItemSeller, ItemsClient as EbayItemsClient, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$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 };
|