scrapebadger 0.19.0 → 0.21.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 +403 -16
- package/dist/index.d.ts +403 -16
- package/dist/index.js +170 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +170 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3652,7 +3652,7 @@ interface Listing$2 {
|
|
|
3652
3652
|
open_house_end_at: string | null;
|
|
3653
3653
|
open_house_text: string | null;
|
|
3654
3654
|
}
|
|
3655
|
-
interface Address$
|
|
3655
|
+
interface Address$3 {
|
|
3656
3656
|
street_address: string | null;
|
|
3657
3657
|
unit_number: string | null;
|
|
3658
3658
|
city: string | null;
|
|
@@ -3680,7 +3680,7 @@ interface TaxHistoryEvent$1 {
|
|
|
3680
3680
|
assessment_land: number | null;
|
|
3681
3681
|
assessment_improvement: number | null;
|
|
3682
3682
|
}
|
|
3683
|
-
interface School$
|
|
3683
|
+
interface School$3 {
|
|
3684
3684
|
name: string | null;
|
|
3685
3685
|
rating: number | null;
|
|
3686
3686
|
grades: string | null;
|
|
@@ -3737,7 +3737,7 @@ interface Property$2 {
|
|
|
3737
3737
|
style: string | null;
|
|
3738
3738
|
latitude: number | null;
|
|
3739
3739
|
longitude: number | null;
|
|
3740
|
-
address: Address$
|
|
3740
|
+
address: Address$3 | null;
|
|
3741
3741
|
time_zone: string | null;
|
|
3742
3742
|
apn: string | null;
|
|
3743
3743
|
county: string | null;
|
|
@@ -3755,7 +3755,7 @@ interface Property$2 {
|
|
|
3755
3755
|
listing_broker_phone: string | null;
|
|
3756
3756
|
price_history: PriceHistoryEvent$1[];
|
|
3757
3757
|
tax_history: TaxHistoryEvent$1[];
|
|
3758
|
-
schools: School$
|
|
3758
|
+
schools: School$3[];
|
|
3759
3759
|
amenities: AmenityGroup[];
|
|
3760
3760
|
scraped_utc: number | null;
|
|
3761
3761
|
scraped_at: string | null;
|
|
@@ -6566,6 +6566,10 @@ interface SearchResult$1 {
|
|
|
6566
6566
|
location: string | null;
|
|
6567
6567
|
returns: string | null;
|
|
6568
6568
|
sold_count: number | null;
|
|
6569
|
+
/** Sale date text as rendered by eBay, e.g. "2 Jul 2026" (completed/sold cards; localized on non-English markets) */
|
|
6570
|
+
sold_date: string | null;
|
|
6571
|
+
/** Best-effort ISO date, e.g. "2026-07-02"; null when the market's format isn't English */
|
|
6572
|
+
sold_date_at: string | null;
|
|
6569
6573
|
watchers: number | null;
|
|
6570
6574
|
coupon: string | null;
|
|
6571
6575
|
rating: number | null;
|
|
@@ -6626,9 +6630,11 @@ interface Item {
|
|
|
6626
6630
|
time_left: string | null;
|
|
6627
6631
|
/** Auctions: the current high bid (mirrors `price`); null for non-auctions */
|
|
6628
6632
|
current_bid: EbayPrice | null;
|
|
6629
|
-
/**
|
|
6633
|
+
/** Listing has closed (sold / ended), any buying format */
|
|
6634
|
+
is_ended: boolean;
|
|
6635
|
+
/** Listing end: auction close / sold time, Unix timestamp (float seconds); null for active fixed-price listings */
|
|
6630
6636
|
end_time_utc: number | null;
|
|
6631
|
-
/**
|
|
6637
|
+
/** Listing end: auction close / sold time, ISO-8601 Z string; null for active fixed-price listings */
|
|
6632
6638
|
end_time_at: string | null;
|
|
6633
6639
|
/** BIN price: fixed-price listings (== price) or auction-with-Buy-It-Now; null for pure auctions */
|
|
6634
6640
|
buy_it_now_price: EbayPrice | null;
|
|
@@ -8714,7 +8720,7 @@ interface Coordinate {
|
|
|
8714
8720
|
lon?: number | null;
|
|
8715
8721
|
}
|
|
8716
8722
|
/** A postal address with an optional coordinate. */
|
|
8717
|
-
interface Address$
|
|
8723
|
+
interface Address$2 {
|
|
8718
8724
|
line?: string | null;
|
|
8719
8725
|
city?: string | null;
|
|
8720
8726
|
state?: string | null;
|
|
@@ -8748,7 +8754,7 @@ interface Office {
|
|
|
8748
8754
|
href?: string | null;
|
|
8749
8755
|
logo?: string | null;
|
|
8750
8756
|
phones?: Phone[];
|
|
8751
|
-
address?: Address$
|
|
8757
|
+
address?: Address$2 | null;
|
|
8752
8758
|
}
|
|
8753
8759
|
/** A listing agent. */
|
|
8754
8760
|
interface Agent$2 {
|
|
@@ -8778,7 +8784,7 @@ interface OpenHouse$1 {
|
|
|
8778
8784
|
href?: string | null;
|
|
8779
8785
|
}
|
|
8780
8786
|
/** A nearby school. */
|
|
8781
|
-
interface School$
|
|
8787
|
+
interface School$2 {
|
|
8782
8788
|
name?: string | null;
|
|
8783
8789
|
rating?: number | null;
|
|
8784
8790
|
education_levels?: string[];
|
|
@@ -8861,7 +8867,7 @@ interface Property$1 {
|
|
|
8861
8867
|
garage?: number | null;
|
|
8862
8868
|
rooms?: number | null;
|
|
8863
8869
|
parking_spaces?: number | null;
|
|
8864
|
-
address?: Address$
|
|
8870
|
+
address?: Address$2 | null;
|
|
8865
8871
|
description_text?: string | null;
|
|
8866
8872
|
primary_photo?: string | null;
|
|
8867
8873
|
photo_count?: number | null;
|
|
@@ -8886,7 +8892,7 @@ interface PropertyDetail extends Property$1 {
|
|
|
8886
8892
|
amenities?: string[];
|
|
8887
8893
|
tax_history?: TaxRecord[];
|
|
8888
8894
|
price_history?: PriceEvent[];
|
|
8889
|
-
schools?: School$
|
|
8895
|
+
schools?: School$2[];
|
|
8890
8896
|
estimates?: Estimate[];
|
|
8891
8897
|
}
|
|
8892
8898
|
/** A single location suggestion. */
|
|
@@ -9795,7 +9801,7 @@ interface Listing$1 {
|
|
|
9795
9801
|
photos?: string[];
|
|
9796
9802
|
}
|
|
9797
9803
|
/** A property's structured address. */
|
|
9798
|
-
interface Address {
|
|
9804
|
+
interface Address$1 {
|
|
9799
9805
|
street_address?: string | null;
|
|
9800
9806
|
city?: string | null;
|
|
9801
9807
|
state?: string | null;
|
|
@@ -9854,7 +9860,7 @@ interface TaxHistoryEvent {
|
|
|
9854
9860
|
tax_increase_rate?: number | null;
|
|
9855
9861
|
}
|
|
9856
9862
|
/** A nearby / assigned school. */
|
|
9857
|
-
interface School {
|
|
9863
|
+
interface School$1 {
|
|
9858
9864
|
name?: string | null;
|
|
9859
9865
|
rating?: number | null;
|
|
9860
9866
|
grades?: string | null;
|
|
@@ -10122,13 +10128,13 @@ interface Property {
|
|
|
10122
10128
|
promotion_headline?: string | null;
|
|
10123
10129
|
promotion_description?: string | null;
|
|
10124
10130
|
has_promotion?: boolean | null;
|
|
10125
|
-
address?: Address | null;
|
|
10131
|
+
address?: Address$1 | null;
|
|
10126
10132
|
home_facts?: HomeFacts | null;
|
|
10127
10133
|
agent?: AgentAttribution | null;
|
|
10128
10134
|
mortgage_rates?: MortgageRates | null;
|
|
10129
10135
|
price_history?: PriceHistoryEvent[];
|
|
10130
10136
|
tax_history?: TaxHistoryEvent[];
|
|
10131
|
-
schools?: School[];
|
|
10137
|
+
schools?: School$1[];
|
|
10132
10138
|
photos?: Photo$1[];
|
|
10133
10139
|
open_house_schedule?: OpenHouse[];
|
|
10134
10140
|
nearby_cities?: NearbyRegion[];
|
|
@@ -11637,6 +11643,385 @@ declare class DepopClient {
|
|
|
11637
11643
|
listMarkets(): Promise<DepopMarketsResponse>;
|
|
11638
11644
|
}
|
|
11639
11645
|
|
|
11646
|
+
/**
|
|
11647
|
+
* TypeScript types for LinkedIn API responses.
|
|
11648
|
+
*
|
|
11649
|
+
* These interfaces mirror the backend `linkedin_scraper` response schema
|
|
11650
|
+
* field-for-field. Keys are snake_case exactly as the backend serialises
|
|
11651
|
+
* them (`job_id`, `company_url`, `posted_relative`); optional / nullable
|
|
11652
|
+
* backend fields are typed as `Type | null` or left `?`-optional.
|
|
11653
|
+
*
|
|
11654
|
+
* All data comes from LinkedIn's public, logged-out surface: the
|
|
11655
|
+
* `/jobs-guest/...` guest APIs for jobs, and the SSR public pages (JSON-LD +
|
|
11656
|
+
* og:* meta) for profiles, companies, schools, posts, and courses. Requests
|
|
11657
|
+
* are localised by a `country` residential-proxy param.
|
|
11658
|
+
*/
|
|
11659
|
+
/** One job posting as it appears in a guest search result list. */
|
|
11660
|
+
interface JobCard {
|
|
11661
|
+
job_id: string;
|
|
11662
|
+
title?: string | null;
|
|
11663
|
+
job_url?: string | null;
|
|
11664
|
+
company?: string | null;
|
|
11665
|
+
company_url?: string | null;
|
|
11666
|
+
company_logo?: string | null;
|
|
11667
|
+
location?: string | null;
|
|
11668
|
+
/** ISO date (from the `<time datetime=...>` attr). */
|
|
11669
|
+
posted_at?: string | null;
|
|
11670
|
+
/** e.g. "2 days ago". */
|
|
11671
|
+
posted_relative?: string | null;
|
|
11672
|
+
/** Posted < 24h (LinkedIn's `--new` listdate variant). */
|
|
11673
|
+
is_new: boolean;
|
|
11674
|
+
/** e.g. "Actively Hiring", "Medical insurance". */
|
|
11675
|
+
benefits: string[];
|
|
11676
|
+
}
|
|
11677
|
+
/** Result-set metadata for a paginated jobs listing. */
|
|
11678
|
+
interface JobsSearchMeta {
|
|
11679
|
+
result_count: number;
|
|
11680
|
+
start: number;
|
|
11681
|
+
has_more: boolean;
|
|
11682
|
+
}
|
|
11683
|
+
/** Full detail for one job posting (guest `jobPosting/{id}` fragment). */
|
|
11684
|
+
interface JobDetail {
|
|
11685
|
+
job_id: string;
|
|
11686
|
+
title?: string | null;
|
|
11687
|
+
job_url?: string | null;
|
|
11688
|
+
company?: string | null;
|
|
11689
|
+
company_url?: string | null;
|
|
11690
|
+
company_logo?: string | null;
|
|
11691
|
+
location?: string | null;
|
|
11692
|
+
posted_relative?: string | null;
|
|
11693
|
+
/** e.g. "Over 200 applicants". */
|
|
11694
|
+
applicants?: string | null;
|
|
11695
|
+
applicants_count?: number | null;
|
|
11696
|
+
description_html?: string | null;
|
|
11697
|
+
description_text?: string | null;
|
|
11698
|
+
/** Raw display, e.g. "$150,000.00/yr - $220,000.00/yr". */
|
|
11699
|
+
salary?: string | null;
|
|
11700
|
+
seniority_level?: string | null;
|
|
11701
|
+
employment_type?: string | null;
|
|
11702
|
+
job_functions: string[];
|
|
11703
|
+
industries: string[];
|
|
11704
|
+
/** External apply link when present. */
|
|
11705
|
+
apply_url?: string | null;
|
|
11706
|
+
}
|
|
11707
|
+
/** A current/past role from the public JSON-LD `worksFor`. */
|
|
11708
|
+
interface ProfileExperience {
|
|
11709
|
+
title?: string | null;
|
|
11710
|
+
company?: string | null;
|
|
11711
|
+
company_url?: string | null;
|
|
11712
|
+
start_year?: number | null;
|
|
11713
|
+
end_year?: number | null;
|
|
11714
|
+
}
|
|
11715
|
+
/** A school from the public JSON-LD `alumniOf`. */
|
|
11716
|
+
interface ProfileEducation {
|
|
11717
|
+
school?: string | null;
|
|
11718
|
+
school_url?: string | null;
|
|
11719
|
+
start_year?: number | null;
|
|
11720
|
+
end_year?: number | null;
|
|
11721
|
+
}
|
|
11722
|
+
/** A public LinkedIn profile (JSON-LD `Person` + og/top-card subset). */
|
|
11723
|
+
interface Profile {
|
|
11724
|
+
public_id: string;
|
|
11725
|
+
linkedin_url: string;
|
|
11726
|
+
name?: string | null;
|
|
11727
|
+
headline?: string | null;
|
|
11728
|
+
location?: string | null;
|
|
11729
|
+
country?: string | null;
|
|
11730
|
+
about?: string | null;
|
|
11731
|
+
image?: string | null;
|
|
11732
|
+
follower_count?: number | null;
|
|
11733
|
+
job_titles: string[];
|
|
11734
|
+
current_company?: string | null;
|
|
11735
|
+
current_company_url?: string | null;
|
|
11736
|
+
experience: ProfileExperience[];
|
|
11737
|
+
education: ProfileEducation[];
|
|
11738
|
+
languages: string[];
|
|
11739
|
+
awards: string[];
|
|
11740
|
+
}
|
|
11741
|
+
interface Address {
|
|
11742
|
+
street?: string | null;
|
|
11743
|
+
city?: string | null;
|
|
11744
|
+
region?: string | null;
|
|
11745
|
+
postal_code?: string | null;
|
|
11746
|
+
country?: string | null;
|
|
11747
|
+
}
|
|
11748
|
+
/** A public company page (JSON-LD `Organization` + about-us module). */
|
|
11749
|
+
interface Company {
|
|
11750
|
+
universal_name: string;
|
|
11751
|
+
linkedin_url: string;
|
|
11752
|
+
name?: string | null;
|
|
11753
|
+
description?: string | null;
|
|
11754
|
+
website?: string | null;
|
|
11755
|
+
industry?: string | null;
|
|
11756
|
+
/** e.g. "10,001+ employees". */
|
|
11757
|
+
company_size?: string | null;
|
|
11758
|
+
/** e.g. "Public Company". */
|
|
11759
|
+
company_type?: string | null;
|
|
11760
|
+
headquarters?: string | null;
|
|
11761
|
+
founded?: number | null;
|
|
11762
|
+
specialties: string[];
|
|
11763
|
+
employee_count?: number | null;
|
|
11764
|
+
follower_count?: number | null;
|
|
11765
|
+
logo?: string | null;
|
|
11766
|
+
address?: Address | null;
|
|
11767
|
+
}
|
|
11768
|
+
/** A public school page (JSON-LD `Organization`). */
|
|
11769
|
+
interface School {
|
|
11770
|
+
universal_name: string;
|
|
11771
|
+
linkedin_url: string;
|
|
11772
|
+
name?: string | null;
|
|
11773
|
+
description?: string | null;
|
|
11774
|
+
website?: string | null;
|
|
11775
|
+
follower_count?: number | null;
|
|
11776
|
+
student_alumni_count?: number | null;
|
|
11777
|
+
logo?: string | null;
|
|
11778
|
+
address?: Address | null;
|
|
11779
|
+
}
|
|
11780
|
+
interface PostComment {
|
|
11781
|
+
author?: string | null;
|
|
11782
|
+
author_url?: string | null;
|
|
11783
|
+
text?: string | null;
|
|
11784
|
+
published_at?: string | null;
|
|
11785
|
+
like_count?: number | null;
|
|
11786
|
+
}
|
|
11787
|
+
/** A public post: an article (`/pulse/`) or an activity share (`/posts/`). */
|
|
11788
|
+
interface Post {
|
|
11789
|
+
post_id: string;
|
|
11790
|
+
url?: string | null;
|
|
11791
|
+
/** "article" | "social". */
|
|
11792
|
+
type?: string | null;
|
|
11793
|
+
author_name?: string | null;
|
|
11794
|
+
author_url?: string | null;
|
|
11795
|
+
title?: string | null;
|
|
11796
|
+
text?: string | null;
|
|
11797
|
+
published_at?: string | null;
|
|
11798
|
+
like_count?: number | null;
|
|
11799
|
+
comment_count?: number | null;
|
|
11800
|
+
comments: PostComment[];
|
|
11801
|
+
}
|
|
11802
|
+
interface CourseInstructor {
|
|
11803
|
+
name?: string | null;
|
|
11804
|
+
job_title?: string | null;
|
|
11805
|
+
url?: string | null;
|
|
11806
|
+
}
|
|
11807
|
+
/** A public LinkedIn Learning course (JSON-LD `Course`). */
|
|
11808
|
+
interface LearningCourse {
|
|
11809
|
+
slug: string;
|
|
11810
|
+
url: string;
|
|
11811
|
+
name?: string | null;
|
|
11812
|
+
description?: string | null;
|
|
11813
|
+
provider?: string | null;
|
|
11814
|
+
/** ISO-8601 duration, e.g. "PT3H41M22S". */
|
|
11815
|
+
workload?: string | null;
|
|
11816
|
+
rating_value?: string | null;
|
|
11817
|
+
rating_count?: number | null;
|
|
11818
|
+
instructors: CourseInstructor[];
|
|
11819
|
+
}
|
|
11820
|
+
interface GeoSuggestion {
|
|
11821
|
+
id: string;
|
|
11822
|
+
display_name?: string | null;
|
|
11823
|
+
/** GEO | COMPANY. */
|
|
11824
|
+
type?: string | null;
|
|
11825
|
+
}
|
|
11826
|
+
interface LinkedInJobsSearchResponse {
|
|
11827
|
+
jobs: JobCard[];
|
|
11828
|
+
meta: JobsSearchMeta;
|
|
11829
|
+
}
|
|
11830
|
+
interface LinkedInGeoSuggestResponse {
|
|
11831
|
+
query: string;
|
|
11832
|
+
type: string;
|
|
11833
|
+
suggestions: GeoSuggestion[];
|
|
11834
|
+
}
|
|
11835
|
+
/** LinkedIn scraper health payload. */
|
|
11836
|
+
interface LinkedInHealthResponse {
|
|
11837
|
+
status: string;
|
|
11838
|
+
service: string;
|
|
11839
|
+
version?: string;
|
|
11840
|
+
products?: string[];
|
|
11841
|
+
}
|
|
11842
|
+
/** Options for the /jobs/search endpoint (all optional). */
|
|
11843
|
+
interface LinkedInJobsSearchParams {
|
|
11844
|
+
/** Job title / keywords. */
|
|
11845
|
+
keywords?: string;
|
|
11846
|
+
/** Location text, e.g. "New York". */
|
|
11847
|
+
location?: string;
|
|
11848
|
+
/** LinkedIn geo id (overrides `location`). */
|
|
11849
|
+
geoId?: string;
|
|
11850
|
+
/** Restrict to a company (numeric id). */
|
|
11851
|
+
companyId?: string;
|
|
11852
|
+
/** Date-posted filter. */
|
|
11853
|
+
datePosted?: string;
|
|
11854
|
+
/** Experience-level filter. */
|
|
11855
|
+
experience?: string;
|
|
11856
|
+
/** Job-type filter. */
|
|
11857
|
+
jobType?: string;
|
|
11858
|
+
/** Workplace filter (on-site | remote | hybrid). */
|
|
11859
|
+
workplace?: string;
|
|
11860
|
+
/** relevant | recent. */
|
|
11861
|
+
sort?: string;
|
|
11862
|
+
/** Pagination offset (0, 25, 50, ...). Default: 0. */
|
|
11863
|
+
start?: number;
|
|
11864
|
+
/** Residential proxy country. Default: "us". */
|
|
11865
|
+
country?: string;
|
|
11866
|
+
}
|
|
11867
|
+
/** Options for the /companies/{companyId}/jobs endpoint. */
|
|
11868
|
+
interface LinkedInCompanyJobsParams {
|
|
11869
|
+
/** Pagination offset (0, 25, 50, ...). Default: 0. */
|
|
11870
|
+
start?: number;
|
|
11871
|
+
/** Residential proxy country. Default: "us". */
|
|
11872
|
+
country?: string;
|
|
11873
|
+
}
|
|
11874
|
+
/** Options for the single-resource endpoints (job, company, school, profile,
|
|
11875
|
+
* post, article, course). */
|
|
11876
|
+
interface LinkedInCountryParams {
|
|
11877
|
+
/** Residential proxy country. Default: "us". */
|
|
11878
|
+
country?: string;
|
|
11879
|
+
}
|
|
11880
|
+
|
|
11881
|
+
/**
|
|
11882
|
+
* LinkedIn API client.
|
|
11883
|
+
*
|
|
11884
|
+
* LinkedIn endpoints cover the public, logged-out surface: guest job search +
|
|
11885
|
+
* detail + company jobs, public company / school / profile pages, public
|
|
11886
|
+
* posts / articles, LinkedIn Learning courses, and a geo/company typeahead.
|
|
11887
|
+
* Requests are localised by a `country` residential-proxy param.
|
|
11888
|
+
*
|
|
11889
|
+
* Company/school/profile/post/course data is SSR-rendered, so those calls take
|
|
11890
|
+
* a few seconds to return; the guest job APIs are faster HTML fragments.
|
|
11891
|
+
*/
|
|
11892
|
+
|
|
11893
|
+
/**
|
|
11894
|
+
* Client for all LinkedIn API operations.
|
|
11895
|
+
*
|
|
11896
|
+
* @example
|
|
11897
|
+
* ```typescript
|
|
11898
|
+
* const client = new ScrapeBadger({ apiKey: "key" });
|
|
11899
|
+
*
|
|
11900
|
+
* // Search jobs
|
|
11901
|
+
* const results = await client.linkedin.jobsSearch({ keywords: "python", location: "New York" });
|
|
11902
|
+
* for (const job of results.jobs) {
|
|
11903
|
+
* console.log(`${job.title} — ${job.company}`);
|
|
11904
|
+
* }
|
|
11905
|
+
*
|
|
11906
|
+
* // Single job detail
|
|
11907
|
+
* const job = await client.linkedin.getJob("3901234567");
|
|
11908
|
+
*
|
|
11909
|
+
* // Company / school / profile
|
|
11910
|
+
* const company = await client.linkedin.getCompany("microsoft");
|
|
11911
|
+
* const school = await client.linkedin.getSchool("stanford-university");
|
|
11912
|
+
* const profile = await client.linkedin.getProfile("williamhgates");
|
|
11913
|
+
*
|
|
11914
|
+
* // Posts, articles, courses
|
|
11915
|
+
* const post = await client.linkedin.getPost("some-post-slug");
|
|
11916
|
+
* const course = await client.linkedin.getCourse("learning-python");
|
|
11917
|
+
*
|
|
11918
|
+
* // Geo / company typeahead
|
|
11919
|
+
* const geo = await client.linkedin.geoSuggest("London");
|
|
11920
|
+
* ```
|
|
11921
|
+
*/
|
|
11922
|
+
declare class LinkedInClient {
|
|
11923
|
+
private readonly client;
|
|
11924
|
+
constructor(client: BaseClient);
|
|
11925
|
+
/**
|
|
11926
|
+
* Search LinkedIn jobs (guest search API).
|
|
11927
|
+
*
|
|
11928
|
+
* @param options - Optional parameters (keywords, location, geoId, companyId,
|
|
11929
|
+
* datePosted, experience, jobType, workplace, sort, start, country).
|
|
11930
|
+
* @returns Jobs search response with matching job cards and pagination meta.
|
|
11931
|
+
* @throws AuthenticationError - If the API key is invalid.
|
|
11932
|
+
* @throws ValidationError - If the parameters are invalid.
|
|
11933
|
+
*/
|
|
11934
|
+
jobsSearch(options?: LinkedInJobsSearchParams): Promise<LinkedInJobsSearchResponse>;
|
|
11935
|
+
/**
|
|
11936
|
+
* Get full detail for one LinkedIn job posting.
|
|
11937
|
+
*
|
|
11938
|
+
* @param jobId - The numeric LinkedIn job id.
|
|
11939
|
+
* @param options - Optional parameters (country).
|
|
11940
|
+
* @returns Full job detail.
|
|
11941
|
+
* @throws NotFoundError - If the job doesn't exist.
|
|
11942
|
+
*/
|
|
11943
|
+
getJob(jobId: string, options?: LinkedInCountryParams): Promise<JobDetail>;
|
|
11944
|
+
/**
|
|
11945
|
+
* Get a company's job postings.
|
|
11946
|
+
*
|
|
11947
|
+
* @param companyId - The numeric LinkedIn company id.
|
|
11948
|
+
* @param options - Optional parameters (start, country).
|
|
11949
|
+
* @returns Jobs search response with the company's job cards and pagination meta.
|
|
11950
|
+
* @throws NotFoundError - If the company doesn't exist.
|
|
11951
|
+
*/
|
|
11952
|
+
companyJobs(companyId: string, options?: LinkedInCompanyJobsParams): Promise<LinkedInJobsSearchResponse>;
|
|
11953
|
+
/**
|
|
11954
|
+
* Get a public LinkedIn company page.
|
|
11955
|
+
*
|
|
11956
|
+
* @param universalName - The company's universal name (URL slug).
|
|
11957
|
+
* @param options - Optional parameters (country).
|
|
11958
|
+
* @returns Company profile.
|
|
11959
|
+
* @throws NotFoundError - If the company doesn't exist.
|
|
11960
|
+
*/
|
|
11961
|
+
getCompany(universalName: string, options?: LinkedInCountryParams): Promise<Company>;
|
|
11962
|
+
/**
|
|
11963
|
+
* Get a public LinkedIn school page.
|
|
11964
|
+
*
|
|
11965
|
+
* @param universalName - The school's universal name (URL slug).
|
|
11966
|
+
* @param options - Optional parameters (country).
|
|
11967
|
+
* @returns School profile.
|
|
11968
|
+
* @throws NotFoundError - If the school doesn't exist.
|
|
11969
|
+
*/
|
|
11970
|
+
getSchool(universalName: string, options?: LinkedInCountryParams): Promise<School>;
|
|
11971
|
+
/**
|
|
11972
|
+
* Get a public LinkedIn profile.
|
|
11973
|
+
*
|
|
11974
|
+
* @param publicId - The profile's public id (URL slug).
|
|
11975
|
+
* @param options - Optional parameters (country).
|
|
11976
|
+
* @returns Public profile.
|
|
11977
|
+
* @throws NotFoundError - If the profile doesn't exist.
|
|
11978
|
+
*/
|
|
11979
|
+
getProfile(publicId: string, options?: LinkedInCountryParams): Promise<Profile>;
|
|
11980
|
+
/**
|
|
11981
|
+
* Get a public LinkedIn post (activity share).
|
|
11982
|
+
*
|
|
11983
|
+
* @param postSlug - The post slug (last URL segment).
|
|
11984
|
+
* @param options - Optional parameters (country).
|
|
11985
|
+
* @returns Post detail.
|
|
11986
|
+
* @throws NotFoundError - If the post doesn't exist.
|
|
11987
|
+
*/
|
|
11988
|
+
getPost(postSlug: string, options?: LinkedInCountryParams): Promise<Post>;
|
|
11989
|
+
/**
|
|
11990
|
+
* Get a public LinkedIn article (`/pulse/`).
|
|
11991
|
+
*
|
|
11992
|
+
* @param articleSlug - The article slug (last URL segment).
|
|
11993
|
+
* @param options - Optional parameters (country).
|
|
11994
|
+
* @returns Article detail (Post shape).
|
|
11995
|
+
* @throws NotFoundError - If the article doesn't exist.
|
|
11996
|
+
*/
|
|
11997
|
+
getArticle(articleSlug: string, options?: LinkedInCountryParams): Promise<Post>;
|
|
11998
|
+
/**
|
|
11999
|
+
* Get a public LinkedIn Learning course.
|
|
12000
|
+
*
|
|
12001
|
+
* @param courseSlug - The course slug (last URL segment).
|
|
12002
|
+
* @param options - Optional parameters (country).
|
|
12003
|
+
* @returns Course detail.
|
|
12004
|
+
* @throws NotFoundError - If the course doesn't exist.
|
|
12005
|
+
*/
|
|
12006
|
+
getCourse(courseSlug: string, options?: LinkedInCountryParams): Promise<LearningCourse>;
|
|
12007
|
+
/**
|
|
12008
|
+
* Suggest geo / company ids for a query (typeahead).
|
|
12009
|
+
*
|
|
12010
|
+
* @param query - Location or company name, e.g. "London".
|
|
12011
|
+
* @param type - "geo" | "company" (default: "geo").
|
|
12012
|
+
* @returns Geo-suggest response with matching suggestions.
|
|
12013
|
+
*/
|
|
12014
|
+
geoSuggest(query: string, type?: string): Promise<LinkedInGeoSuggestResponse>;
|
|
12015
|
+
/**
|
|
12016
|
+
* LinkedIn scraper health check.
|
|
12017
|
+
*
|
|
12018
|
+
* Free — this endpoint costs no credits.
|
|
12019
|
+
*
|
|
12020
|
+
* @returns Health payload (status, service, version, products).
|
|
12021
|
+
*/
|
|
12022
|
+
health(): Promise<LinkedInHealthResponse>;
|
|
12023
|
+
}
|
|
12024
|
+
|
|
11640
12025
|
/**
|
|
11641
12026
|
* Main ScrapeBadger client.
|
|
11642
12027
|
*
|
|
@@ -11711,6 +12096,8 @@ declare class ScrapeBadger {
|
|
|
11711
12096
|
readonly loopnet: LoopNetClient;
|
|
11712
12097
|
/** Depop scraper API client — search, product, user, user products, markets (www.depop.com, 10 markets) */
|
|
11713
12098
|
readonly depop: DepopClient;
|
|
12099
|
+
/** LinkedIn scraper API client — 11 no-auth endpoints (jobs, company, school, profile, post, article, learning, geo) */
|
|
12100
|
+
readonly linkedin: LinkedInClient;
|
|
11714
12101
|
/**
|
|
11715
12102
|
* Create a new ScrapeBadger client.
|
|
11716
12103
|
*
|
|
@@ -11739,4 +12126,4 @@ declare class ScrapeBadger {
|
|
|
11739
12126
|
constructor(config?: Partial<ScrapeBadgerConfig>);
|
|
11740
12127
|
}
|
|
11741
12128
|
|
|
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 };
|
|
12129
|
+
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 Address as LinkedInAddress, LinkedInClient, type Company as LinkedInCompany, type LinkedInCompanyJobsParams, type LinkedInCountryParams, type CourseInstructor as LinkedInCourseInstructor, type LinkedInGeoSuggestResponse, type GeoSuggestion as LinkedInGeoSuggestion, type LinkedInHealthResponse, type JobCard as LinkedInJobCard, type JobDetail as LinkedInJobDetail, type JobsSearchMeta as LinkedInJobsSearchMeta, type LinkedInJobsSearchParams, type LinkedInJobsSearchResponse, type LearningCourse as LinkedInLearningCourse, type Post as LinkedInPost, type PostComment as LinkedInPostComment, type Profile as LinkedInProfile, type ProfileEducation as LinkedInProfileEducation, type ProfileExperience as LinkedInProfileExperience, type School as LinkedInSchool, type Broker as LoopNetBroker, type LoopNetBrokerParams, type BrokerProfile as LoopNetBrokerProfile, type BrokerResponse as LoopNetBrokerResponse, BrokersClient as LoopNetBrokersClient, LoopNetClient, type ListingCard as LoopNetListingCard, type ListingDetail as LoopNetListingDetail, type LoopNetListingParams, type ListingResponse as LoopNetListingResponse, type LoopNetListingType, ListingsClient as LoopNetListingsClient, type LoopNetMarket, type MarketInfo as LoopNetMarketInfo, type MarketsResponse as LoopNetMarketsResponse, type Pagination as LoopNetPagination, type LoopNetPriceType, type PropertyTypeInfo as LoopNetPropertyTypeInfo, type PropertyTypesResponse as LoopNetPropertyTypesResponse, ReferenceClient as LoopNetReferenceClient, SearchClient as LoopNetSearchClient, type LoopNetSearchParams, type SearchResponse as LoopNetSearchResponse, type Space as LoopNetSpace, type MapsPhotosParams, type MapsPlaceParams, type MapsPostsParams, type MapsReviewsParams, type MapsSearchParams, type NewsSearchParams, type NewsTopicsParams, type NewsTrendingParams, type PatentsDetailParams, type PatentsSearchParams, type PopularSubredditsResponse, type PostCommentsResponse, type PostDetailResponse, type PostDuplicatesResponse, type ProductsDetailParams, type Address$2 as RealtorAddress, type Agent$2 as RealtorAgent, type RealtorAutocompleteOptions, type AutocompleteResponse$1 as RealtorAutocompleteResponse, RealtorClient, type Coordinate as RealtorCoordinate, type DetailGroup as RealtorDetailGroup, type Estimate as RealtorEstimate, type Flags as RealtorFlags, type RealtorMarket, type MarketInfo$2 as RealtorMarketInfo, type MarketsResponse$4 as RealtorMarketsResponse, type Office as RealtorOffice, type OpenHouse$1 as RealtorOpenHouse, type Phone as RealtorPhone, type Photo$2 as RealtorPhoto, type PriceEvent as RealtorPriceEvent, PropertiesClient$1 as RealtorPropertiesClient, type Property$1 as RealtorProperty, type PropertyDetail as RealtorPropertyDetail, type RealtorPropertyOptions, ReferenceClient$3 as RealtorReferenceClient, type School$2 as RealtorSchool, SearchClient$3 as RealtorSearchClient, type RealtorSearchOptions, type SearchResponse$4 as RealtorSearchResponse, type RealtorSort, type RealtorStatus, type Suggestion$1 as RealtorSuggestion, type TaxRecord as RealtorTaxRecord, type RedditAward, RedditClient, type RedditComment, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$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$3 as RedfinAddress, type Agent$3 as RedfinAgent, type RedfinAgentParams, type AgentResponse$1 as RedfinAgentResponse, type AgentReview$1 as RedfinAgentReview, type AmenityGroup as RedfinAmenityGroup, type AutocompleteResponse$5 as RedfinAutocompleteResponse, type AutocompleteResult$1 as RedfinAutocompleteResult, RedfinClient, type DataSource as RedfinDataSource, type RedfinHomeType, type LatLong$1 as RedfinLatLong, type Listing$2 as RedfinListing, type MapBounds$1 as RedfinMapBounds, type MarketInfo$6 as RedfinMarketInfo, type MarketsResponse$9 as RedfinMarketsResponse, type Pagination$4 as RedfinPagination, type Photo$3 as RedfinPhoto, type PriceHistoryEvent$1 as RedfinPriceHistoryEvent, type Property$2 as RedfinProperty, type RedfinPropertyParams, type PropertyResponse$1 as RedfinPropertyResponse, type RegionSelection$1 as RedfinRegionSelection, type Sash as RedfinSash, type School$3 as RedfinSchool, type SearchMedian as RedfinSearchMedian, type RedfinSearchParams, type SearchResponse$8 as RedfinSearchResponse, type RedfinSort, type TaxHistoryEvent$1 as RedfinTaxHistoryEvent, type ScholarAuthorCitationParams, type ScholarAuthorParams, type ScholarCiteParams, type ScholarProfilesParams, type ScholarSearchParams, ScrapeBadger, ScrapeBadgerConfig, type ScrapeOptions, type ScrapeResult, type SearchPostsResponse, type SearchSubredditsResponse, type SearchUsersResponse, type ShopeeCategoriesParams, type ShopeeCategoryItemsParams, type CategoryNode as ShopeeCategoryNode, type CategoryTree as ShopeeCategoryTree, ShopeeClient, type ShopeeMarket, type MarketsResponse$7 as ShopeeMarketsResponse, type ShopeeProduct, type ProductAttribute as ShopeeProductAttribute, type ProductImage as ShopeeProductImage, type ProductModel as ShopeeProductModel, type ShopeeProductParams, ProductsClient as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$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$1 as ZillowAddress, type Agent$1 as ZillowAgent, type AgentAttribution as ZillowAgentAttribution, AgentClient as ZillowAgentClient, type AgentLicense as ZillowAgentLicense, type ZillowAgentOptions, type AgentResponse as ZillowAgentResponse, type AgentReview as ZillowAgentReview, type AutocompleteResponse as ZillowAutocompleteResponse, type AutocompleteResult as ZillowAutocompleteResult, ZillowClient, type HomeFacts as ZillowHomeFacts, type LatLong as ZillowLatLong, type Listing$1 as ZillowListing, type ListingSubType as ZillowListingSubType, type MapBounds as ZillowMapBounds, type MarketInfo$1 as ZillowMarketInfo, type MarketsResponse$2 as ZillowMarketsResponse, type MortgageRate as ZillowMortgageRate, type MortgageRates as ZillowMortgageRates, type NearbyRegion as ZillowNearbyRegion, type OpenHouse as ZillowOpenHouse, type Pagination$1 as ZillowPagination, type PastSale as ZillowPastSale, type Photo$1 as ZillowPhoto, type PriceHistoryEvent as ZillowPriceHistoryEvent, PropertiesClient as ZillowPropertiesClient, type Property as ZillowProperty, type PropertyResponse as ZillowPropertyResponse, ReferenceClient$1 as ZillowReferenceClient, type RegionSelection as ZillowRegionSelection, type School$1 as ZillowSchool, SearchClient$1 as ZillowSearchClient, type ZillowSearchOptions, type SearchResponse$2 as ZillowSearchResponse, type ZillowSort, type ZillowStatus, type TaxHistoryEvent as ZillowTaxHistoryEvent, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };
|