scrapebadger 0.43.0 → 0.44.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 CHANGED
@@ -13570,6 +13570,18 @@ interface MarketInfo$1 {
13570
13570
  * Merges the search `listResult` top-level with its richer
13571
13571
  * `hdpData.homeInfo` sub-object.
13572
13572
  */
13573
+ /**
13574
+ * A building card's per-bedroom rent rollup.
13575
+ *
13576
+ * Kept as rendered text ("$2,015+") because a card advertises a starting price
13577
+ * with a qualifier, not a resolvable single number.
13578
+ */
13579
+ interface UnitSummary {
13580
+ beds?: string | null;
13581
+ price_text?: string | null;
13582
+ price_min?: number | null;
13583
+ room_for_rent?: boolean | null;
13584
+ }
13573
13585
  interface Listing$1 {
13574
13586
  position: number;
13575
13587
  zpid?: string | null;
@@ -13626,6 +13638,11 @@ interface Listing$1 {
13626
13638
  open_house_start?: string | null;
13627
13639
  open_house_end?: string | null;
13628
13640
  photos?: string[];
13641
+ is_building?: boolean | null;
13642
+ building_name?: string | null;
13643
+ lot_id?: string | null;
13644
+ units_available?: number | null;
13645
+ unit_summaries?: UnitSummary[];
13629
13646
  }
13630
13647
  /** A property's structured address. */
13631
13648
  interface Address$1 {
@@ -14076,10 +14093,116 @@ interface SearchResponse$2 {
14076
14093
  scraped_utc?: number | null;
14077
14094
  scraped_at?: string | null;
14078
14095
  }
14096
+ /**
14097
+ * One rentable unit inside a multifamily floor plan.
14098
+ *
14099
+ * `price` is the total monthly leasing price Zillow advertises; `base_rent`
14100
+ * excludes the mandatory monthly fees, which are carried separately. Which of
14101
+ * the two the building headlines is `list_price_includes_required_fees`.
14102
+ */
14103
+ interface BuildingUnit {
14104
+ unit_number?: string | null;
14105
+ zpid?: string | null;
14106
+ beds?: number | null;
14107
+ baths?: number | null;
14108
+ sqft?: number | null;
14109
+ price?: number | null;
14110
+ base_rent?: number | null;
14111
+ required_monthly_fee_min?: number | null;
14112
+ required_monthly_fee_max?: number | null;
14113
+ list_price_includes_required_fees?: boolean | null;
14114
+ available_from_utc?: number | null;
14115
+ available_from_at?: string | null;
14116
+ allowed_pets?: string[];
14117
+ }
14118
+ /** A floor-plan model, which groups one or more units of the same layout. */
14119
+ interface BuildingFloorPlan {
14120
+ name?: string | null;
14121
+ beds?: number | null;
14122
+ baths?: number | null;
14123
+ sqft?: number | null;
14124
+ price_min?: number | null;
14125
+ price_max?: number | null;
14126
+ base_rent_min?: number | null;
14127
+ base_rent_max?: number | null;
14128
+ required_monthly_fee_min?: number | null;
14129
+ required_monthly_fee_max?: number | null;
14130
+ available_from_utc?: number | null;
14131
+ available_from_at?: string | null;
14132
+ lease_term?: string | null;
14133
+ description?: string | null;
14134
+ photos?: string[];
14135
+ units?: BuildingUnit[];
14136
+ units_available?: number;
14137
+ }
14138
+ /**
14139
+ * A Zillow multifamily building (an apartment community, not a home).
14140
+ *
14141
+ * Zillow serves multi-unit rentals on `/apartments/...` and `/b/...` pages,
14142
+ * which the property endpoint cannot read.
14143
+ */
14144
+ interface Building {
14145
+ url?: string | null;
14146
+ lot_id?: string | null;
14147
+ zpid?: string | null;
14148
+ name?: string | null;
14149
+ building_type?: string | null;
14150
+ home_types?: string[];
14151
+ provider_listing_id?: string | null;
14152
+ street_address?: string | null;
14153
+ full_address?: string | null;
14154
+ city?: string | null;
14155
+ state?: string | null;
14156
+ zipcode?: string | null;
14157
+ county?: string | null;
14158
+ country?: string | null;
14159
+ neighborhood?: string | null;
14160
+ latitude?: number | null;
14161
+ longitude?: number | null;
14162
+ time_zone?: string | null;
14163
+ phone?: string | null;
14164
+ contact_name?: string | null;
14165
+ rental_applications_accepted?: string | null;
14166
+ currency?: string | null;
14167
+ rent_min?: number | null;
14168
+ rent_max?: number | null;
14169
+ base_rent_min?: number | null;
14170
+ base_rent_max?: number | null;
14171
+ list_price_includes_required_fees?: boolean | null;
14172
+ units_available?: number | null;
14173
+ unit_count?: number | null;
14174
+ description?: string | null;
14175
+ building_details?: string[];
14176
+ amenities?: string[];
14177
+ unit_features?: string[];
14178
+ policies?: string[];
14179
+ special_features?: string[];
14180
+ special_offers?: string[];
14181
+ office_hours?: string[];
14182
+ allowed_pets?: string[];
14183
+ walk_score?: number | null;
14184
+ transit_score?: number | null;
14185
+ bike_score?: number | null;
14186
+ is_waitlisted?: boolean | null;
14187
+ is_low_income?: boolean | null;
14188
+ is_senior_housing?: boolean | null;
14189
+ is_student_housing?: boolean | null;
14190
+ floor_plans?: BuildingFloorPlan[];
14191
+ /** Every unit across every floor plan — the shape most rent-comp callers want. */
14192
+ units?: BuildingUnit[];
14193
+ schools?: School$1[];
14194
+ photos?: Photo$1[];
14195
+ scraped_utc?: number | null;
14196
+ scraped_at?: string | null;
14197
+ }
14079
14198
  /** Response from the /property endpoints. */
14080
14199
  interface PropertyResponse {
14081
14200
  property: Property;
14082
14201
  }
14202
+ /** Response from the /building endpoint. */
14203
+ interface BuildingResponse {
14204
+ building: Building;
14205
+ }
14083
14206
  /** Response from the /agent endpoint. */
14084
14207
  interface AgentResponse {
14085
14208
  agent: Agent$1;
@@ -14204,7 +14327,7 @@ declare class SearchClient$1 {
14204
14327
  */
14205
14328
 
14206
14329
  /**
14207
- * Client for the zillow property detail endpoint.
14330
+ * Client for the zillow property- and building-detail endpoints.
14208
14331
  *
14209
14332
  * @example
14210
14333
  * ```typescript
@@ -14212,6 +14335,11 @@ declare class SearchClient$1 {
14212
14335
  *
14213
14336
  * const { property } = await client.zillow.properties.getProperty("2078029085");
14214
14337
  * console.log(property.street_address, property.price);
14338
+ *
14339
+ * const { building } = await client.zillow.properties.getBuilding(
14340
+ * "https://www.zillow.com/apartments/kansas-city-mo/brookside-51/CkBJqt/",
14341
+ * );
14342
+ * console.log(building.name, building.rent_min, building.units?.length);
14215
14343
  * ```
14216
14344
  */
14217
14345
  declare class PropertiesClient {
@@ -14228,6 +14356,23 @@ declare class PropertiesClient {
14228
14356
  * @throws NotFoundError - If the property doesn't exist.
14229
14357
  */
14230
14358
  getProperty(zpid: string): Promise<PropertyResponse>;
14359
+ /**
14360
+ * Get a Zillow multifamily building (apartment community) by its URL.
14361
+ *
14362
+ * Zillow serves multi-unit rentals on `/apartments/...` and `/b/...` pages,
14363
+ * which {@link getProperty} cannot read. Pass the `detail_url` of a search
14364
+ * result whose `home_type` is `"BUILDING"`.
14365
+ *
14366
+ * Returns floor plans and every available unit with rent, base rent,
14367
+ * required monthly fees, sqft, beds/baths and move-in date, plus amenities,
14368
+ * unit features, policies, special offers, office hours, pet policy,
14369
+ * schools, photos and walk/transit/bike scores.
14370
+ *
14371
+ * @param url - Full Zillow building URL.
14372
+ * @returns Building detail wrapped in `{ building }`.
14373
+ * @throws NotFoundError - If the building doesn't exist.
14374
+ */
14375
+ getBuilding(url: string): Promise<BuildingResponse>;
14231
14376
  }
14232
14377
 
14233
14378
  /**
@@ -16545,9 +16690,12 @@ declare class AskClient {
16545
16690
  * @param params.prompt - The prompt to send (max 4096 characters).
16546
16691
  * @param params.country - ISO-3166 alpha-2 egress country (default: "US").
16547
16692
  * @param params.web_search - "auto", "force", or "off" (default: "auto").
16548
- * @param params.image_url - Public image URL to attach; Gemini answers about
16549
- * the picture. It will NOT generate one anonymous gemini.google.com requires a login
16550
- * for that. Allow 90-150s for an image ask.
16693
+ * @param params.image_url - NOT SUPPORTED; returns 422 and is never billed.
16694
+ * Signed-out Gemini accepts the upload and then refuses to answer about it
16695
+ * (PERMISSION_DENIED from its own generate call), so the API fails fast
16696
+ * rather than charging for a request that cannot succeed. Use
16697
+ * `chatgpt.ask` for image input. Gemini will not generate one either —
16698
+ * anonymous gemini.google.com requires a login for that.
16551
16699
  * @returns The answer, its citations, and the full retrieved search set.
16552
16700
  *
16553
16701
  * @example
@@ -16814,4 +16962,4 @@ declare class ScrapeBadger {
16814
16962
  constructor(config?: Partial<ScrapeBadgerConfig>);
16815
16963
  }
16816
16964
 
16817
- 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$2 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$e as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$d 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$3 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, type BaiduAutocompleteResponse, BaiduClient, type BaiduImageResult, type BaiduImagesParams, type BaiduImagesResponse, type BaiduLanguage, type BaiduNewsParams, type BaiduNewsResponse, type BaiduNewsResult, type BaiduNewsSort, type BaiduOrganicResult, type BaiduRelatedSearch, type BaiduSearchParams, type BaiduSearchResponse, type BaiduSuggestion, type BingAd, type BingAutocompleteParams, type BingAutocompleteResponse, BingClient, type BingDeepLink, type BingFreshness, type BingImageResult, type BingImagesParams, type BingImagesResponse, type BingMarket, type BingMarketsResponse, MediaClient$1 as BingMediaClient, type BingNewsArticle, NewsClient$1 as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$8 as BingReferenceClient, type BingSafeSearch, SearchClient$7 as BingSearchClient, type BingSearchParams, type BingSearchResponse, type BingVideoResult, type BingVideosParams, type BingVideosResponse, AskClient$1 as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient$1 as ChatGPTBrandClient, type ChatGPTBrandVisibilityParams, type ChatGPTBrandVisibilityResponse, type ChatGPTCitation, ChatGPTClient, type ChatGPTCompetitorMention, type ChatGPTModel, type ChatGPTModelsParams, type ChatGPTModelsResponse, ReferenceClient as ChatGPTReferenceClient, type ChatGPTSearchResult, type ChatGPTWebSearchMode, 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 DuckDuckGoAbstract, type DuckDuckGoAutocompleteParams, type DuckDuckGoAutocompleteResponse, DuckDuckGoClient, type DuckDuckGoImageResult, type DuckDuckGoImagesParams, type DuckDuckGoImagesResponse, type DuckDuckGoInstantResponse, MediaClient$2 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$9 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$8 as DuckDuckGoSearchClient, type DuckDuckGoSearchParams, type DuckDuckGoSearchResponse, type DuckDuckGoSearchResult, type DuckDuckGoVideoResult, type DuckDuckGoVideosParams, type DuckDuckGoVideosResponse, 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 EbayLanguage, type EbayLocation, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$b as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, type EbaySearchByImageParams, SearchClient$a 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$2 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AskClient as GeminiAskClient, type GeminiAskParams, type GeminiAskResponse, BrandClient as GeminiBrandClient, type GeminiBrandVisibilityParams, type GeminiBrandVisibilityResponse, type GeminiCitation, GeminiClient, type GeminiCompetitorMention, type GeminiSearchResult, type GeminiWebSearchMode, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient$1 as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient$2 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$g 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 Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient$3 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$e as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, 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$3 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$1 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$4 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 RedditGalleryImage, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$f as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 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$1 as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$d as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$c 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 AdAdvertiser as TikTokAdAdvertiser, type TikTokAdDetailParams, type AdDetailResponse as TikTokAdDetailResponse, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type AdTargeting as TikTokAdTargeting, type AdTargetingBreakdown as TikTokAdTargetingBreakdown, type AdTargetingLocation as TikTokAdTargetingLocation, type AdTargetingRegion as TikTokAdTargetingRegion, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAdvertiserSearchParams, type AdvertiserSearchResponse as TikTokAdvertiserSearchResponse, type AdvertiserSuggestion as TikTokAdvertiserSuggestion, 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$c as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$b 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$f as VintedReferenceClient, SearchClient$h as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, type WalmartAutocompleteResponse, type WalmartBadge, type WalmartBreadcrumb, type WalmartCategoryParams, WalmartClient, type WalmartConditionOffer, type WalmartDealsParams, type WalmartEmbeddedSeller, type WalmartFulfillmentOption, type WalmartFulfillmentSummary, type WalmartImage, type WalmartLocationContext, type WalmartMarket, type WalmartMarketsResponse, type WalmartNameValue, type WalmartNutritionFacts, type WalmartPrice, type WalmartPriceInfo, type WalmartPriceRange, type WalmartProduct, ProductsClient as WalmartProductsClient, type WalmartPromotion, type WalmartRatingDistribution, type WalmartRaw, ReferenceClient$a as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$9 as WalmartSearchClient, type WalmartSearchItem, type WalmartSearchParams, type WalmartSearchResponse, type WalmartSeller, type WalmartSellerProductsParams, type WalmartSellerResponse, SellersClient$1 as WalmartSellersClient, type WalmartSortBy, type WalmartSpecificationGroup, type WalmartStore, type WalmartStoreHours, type WalmartStoreResponse, type WalmartStoreService, StoresClient as WalmartStoresClient, type WalmartSuggestion, type WalmartVariant, type WalmartVideo, type WalmartWarranty, WebClient, type WikiPageResponse, type YahooAd, type YahooAutocompleteParams, type YahooAutocompleteResponse, YahooClient, type YahooImageResult, type YahooImagesParams, type YahooImagesResponse, type YahooMarket, type YahooMarketsResponse, MediaClient as YahooMediaClient, type YahooNewsArticle, NewsClient as YahooNewsClient, type YahooNewsParams, type YahooNewsResponse, type YahooOrganicResult, ReferenceClient$7 as YahooReferenceClient, type YahooSafeSearch, SearchClient$6 as YahooSearchClient, type YahooSearchParams, type YahooSearchResponse, type YahooVideoResult, type YahooVideosParams, type YahooVideosResponse, YandexClient, type YandexImage, type YandexImageResult, ImagesClient as YandexImagesClient, type YandexImagesParams, type YandexImagesResponse, type YandexMarket, type YandexMarketsResponse, type YandexOrganicResult, type YandexOtherSize, type YandexPagination, type YandexRaw, ReferenceClient$6 as YandexReferenceClient, type YandexReverseImageResponse, type YandexReverseParams, type YandexReverseSite, SearchClient$5 as YandexSearchClient, type YandexSearchParams, type YandexSearchResponse, type YandexSimilarImage, type YandexSitelink, type YandexTag, 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$5 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$2 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 };
16965
+ 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$2 as AmazonProductsClient, type RatingBreakdown$1 as AmazonRatingBreakdown, ReferenceClient$e as AmazonReferenceClient, type RelatedProduct as AmazonRelatedProduct, type Review$1 as AmazonReview, type ReviewProfile as AmazonReviewProfile, type AmazonReviewsParams, type ReviewsResponse$1 as AmazonReviewsResponse, SearchClient$d 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$3 as AmazonSellersClient, ApartmentsClient, type FloorPlan as ApartmentsFloorPlan, type Property$3 as ApartmentsProperty, type ApartmentsPropertyParams, type School$4 as ApartmentsSchool, type ApartmentsSearchParams, type SearchResponse$9 as ApartmentsSearchResponse, type SearchResult$4 as ApartmentsSearchResult, type Unit as ApartmentsUnit, type AutocompleteParams, type BaiduAutocompleteResponse, BaiduClient, type BaiduImageResult, type BaiduImagesParams, type BaiduImagesResponse, type BaiduLanguage, type BaiduNewsParams, type BaiduNewsResponse, type BaiduNewsResult, type BaiduNewsSort, type BaiduOrganicResult, type BaiduRelatedSearch, type BaiduSearchParams, type BaiduSearchResponse, type BaiduSuggestion, type BingAd, type BingAutocompleteParams, type BingAutocompleteResponse, BingClient, type BingDeepLink, type BingFreshness, type BingImageResult, type BingImagesParams, type BingImagesResponse, type BingMarket, type BingMarketsResponse, MediaClient$1 as BingMediaClient, type BingNewsArticle, NewsClient$1 as BingNewsClient, type BingNewsParams, type BingNewsResponse, type BingOrganicResult, ReferenceClient$8 as BingReferenceClient, type BingSafeSearch, SearchClient$7 as BingSearchClient, type BingSearchParams, type BingSearchResponse, type BingVideoResult, type BingVideosParams, type BingVideosResponse, AskClient$1 as ChatGPTAskClient, type ChatGPTAskParams, type ChatGPTAskResponse, BrandClient$1 as ChatGPTBrandClient, type ChatGPTBrandVisibilityParams, type ChatGPTBrandVisibilityResponse, type ChatGPTCitation, ChatGPTClient, type ChatGPTCompetitorMention, type ChatGPTModel, type ChatGPTModelsParams, type ChatGPTModelsResponse, ReferenceClient as ChatGPTReferenceClient, type ChatGPTSearchResult, type ChatGPTWebSearchMode, 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 DuckDuckGoAbstract, type DuckDuckGoAutocompleteParams, type DuckDuckGoAutocompleteResponse, DuckDuckGoClient, type DuckDuckGoImageResult, type DuckDuckGoImagesParams, type DuckDuckGoImagesResponse, type DuckDuckGoInstantResponse, MediaClient$2 as DuckDuckGoMediaClient, type DuckDuckGoNewsParams, type DuckDuckGoNewsResponse, type DuckDuckGoNewsResult, type DuckDuckGoRaw, ReferenceClient$9 as DuckDuckGoReferenceClient, type DuckDuckGoRegion, type DuckDuckGoRegionsResponse, type DuckDuckGoRelatedTopic, SearchClient$8 as DuckDuckGoSearchClient, type DuckDuckGoSearchParams, type DuckDuckGoSearchResponse, type DuckDuckGoSearchResult, type DuckDuckGoVideoResult, type DuckDuckGoVideosParams, type DuckDuckGoVideosResponse, 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 EbayLanguage, type EbayLocation, type MarketInfo$4 as EbayMarketInfo, type MarketsResponse$6 as EbayMarketsResponse, type Pagination$2 as EbayPagination, type EbayPrice, type RatingHistogram as EbayRatingHistogram, ReferenceClient$b as EbayReferenceClient, type ReturnsPolicy as EbayReturnsPolicy, type Review as EbayReview, type EbayReviewsParams, type ReviewsResponse as EbayReviewsResponse, type EbaySearchByImageParams, SearchClient$a 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$2 as EbaySellersClient, type ShippingOption as EbayShippingOption, type EbaySortBy, type FinanceQuoteParams, type FlightsSearchParams, type FlightsSortBy, type FlightsStopsFilter, type FlightsTravelClass, type FlightsTripType, AskClient as GeminiAskClient, type GeminiAskParams, type GeminiAskResponse, BrandClient as GeminiBrandClient, type GeminiBrandVisibilityParams, type GeminiBrandVisibilityResponse, type GeminiCitation, GeminiClient, type GeminiCompetitorMention, type GeminiSearchResult, type GeminiWebSearchMode, AiModeClient as GoogleAiModeClient, AutocompleteClient as GoogleAutocompleteClient, GoogleClient, FinanceClient as GoogleFinanceClient, FlightsClient as GoogleFlightsClient, HotelsClient as GoogleHotelsClient, ImagesClient$1 as GoogleImagesClient, JobsClient as GoogleJobsClient, LensClient as GoogleLensClient, MapsClient as GoogleMapsClient, NewsClient$2 as GoogleNewsClient, PatentsClient as GooglePatentsClient, ProductsClient$3 as GoogleProductsClient, type GoogleResponse, ScholarClient as GoogleScholarClient, SearchClient$g 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 Audio as InstagramAudio, AudioClient as InstagramAudioClient, type BioLink as InstagramBioLink, InstagramClient, type Comment$1 as InstagramComment, type Hashtag as InstagramHashtag, HashtagsClient$1 as InstagramHashtagsClient, type Highlight as InstagramHighlight, type Location$2 as InstagramLocation, LocationsClient as InstagramLocationsClient, type Media as InstagramMedia, MediaClient$3 as InstagramMediaClient, type Oembed as InstagramOembed, type Paginated as InstagramPaginated, type Resource as InstagramResource, SearchClient$e as InstagramSearchClient, type SearchTopResponse as InstagramSearchTopResponse, type User as InstagramUser, type UserAbout as InstagramUserAbout, type UserShort as InstagramUserShort, UsersClient$1 as InstagramUsersClient, 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$3 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$1 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$4 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 RedditGalleryImage, type RedditModeratedSubreddit, type RedditPagination, type RedditPost, PostsClient as RedditPostsClient, type RedditRule, SearchClient$f as RedditSearchClient, type RedditSubreddit, SubredditsClient as RedditSubredditsClient, type RedditTrophy, type RedditUser, type UserProfileResponse as RedditUserProfileResponse, type RedditUserSubreddit, UsersClient$2 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$1 as ShopeeProductsClient, type RatingBreakdown as ShopeeRatingBreakdown, ReferenceClient$d as ShopeeReferenceClient, type ShopeeReview, type ReviewReply as ShopeeReviewReply, type ReviewSummary as ShopeeReviewSummary, ReviewsClient as ShopeeReviewsClient, type ShopeeReviewsParams, type ReviewsResult as ShopeeReviewsResult, SearchClient$c 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 AdAdvertiser as TikTokAdAdvertiser, type TikTokAdDetailParams, type AdDetailResponse as TikTokAdDetailResponse, type AdLibraryPage as TikTokAdLibraryPage, type AdLibrarySearchResponse as TikTokAdLibrarySearchResponse, type TikTokAdSearchParams, type AdTargeting as TikTokAdTargeting, type AdTargetingBreakdown as TikTokAdTargetingBreakdown, type AdTargetingLocation as TikTokAdTargetingLocation, type AdTargetingRegion as TikTokAdTargetingRegion, type TikTokAdVideo, AdsClient$1 as TikTokAdsClient, type TikTokAdvertiserSearchParams, type AdvertiserSearchResponse as TikTokAdvertiserSearchResponse, type AdvertiserSuggestion as TikTokAdvertiserSuggestion, 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$c as TikTokReferenceClient, type RegionInfo as TikTokRegionInfo, type RegionsResponse$2 as TikTokRegionsResponse, type TikTokRelatedParams, SearchClient$b 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$f as VintedReferenceClient, SearchClient$h as VintedSearchClient, type VintedSearchParams, type SearchResponse$a as VintedSearchResponse, type VintedSellerSummary, type VintedStatus, type StatusesResponse as VintedStatusesResponse, type UserItemsResponse as VintedUserItemsResponse, type VintedUserProfile, type UserProfileResponse$1 as VintedUserProfileResponse, type VintedUserSummary, UsersClient$3 as VintedUsersClient, type WalmartAutocompleteResponse, type WalmartBadge, type WalmartBreadcrumb, type WalmartCategoryParams, WalmartClient, type WalmartConditionOffer, type WalmartDealsParams, type WalmartEmbeddedSeller, type WalmartFulfillmentOption, type WalmartFulfillmentSummary, type WalmartImage, type WalmartLocationContext, type WalmartMarket, type WalmartMarketsResponse, type WalmartNameValue, type WalmartNutritionFacts, type WalmartPrice, type WalmartPriceInfo, type WalmartPriceRange, type WalmartProduct, ProductsClient as WalmartProductsClient, type WalmartPromotion, type WalmartRatingDistribution, type WalmartRaw, ReferenceClient$a as WalmartReferenceClient, type WalmartReturnPolicy, type WalmartReview, type WalmartReviewSort, type WalmartReviewsParams, type WalmartReviewsResponse, SearchClient$9 as WalmartSearchClient, type WalmartSearchItem, type WalmartSearchParams, type WalmartSearchResponse, type WalmartSeller, type WalmartSellerProductsParams, type WalmartSellerResponse, SellersClient$1 as WalmartSellersClient, type WalmartSortBy, type WalmartSpecificationGroup, type WalmartStore, type WalmartStoreHours, type WalmartStoreResponse, type WalmartStoreService, StoresClient as WalmartStoresClient, type WalmartSuggestion, type WalmartVariant, type WalmartVideo, type WalmartWarranty, WebClient, type WikiPageResponse, type YahooAd, type YahooAutocompleteParams, type YahooAutocompleteResponse, YahooClient, type YahooImageResult, type YahooImagesParams, type YahooImagesResponse, type YahooMarket, type YahooMarketsResponse, MediaClient as YahooMediaClient, type YahooNewsArticle, NewsClient as YahooNewsClient, type YahooNewsParams, type YahooNewsResponse, type YahooOrganicResult, ReferenceClient$7 as YahooReferenceClient, type YahooSafeSearch, SearchClient$6 as YahooSearchClient, type YahooSearchParams, type YahooSearchResponse, type YahooVideoResult, type YahooVideosParams, type YahooVideosResponse, YandexClient, type YandexImage, type YandexImageResult, ImagesClient as YandexImagesClient, type YandexImagesParams, type YandexImagesResponse, type YandexMarket, type YandexMarketsResponse, type YandexOrganicResult, type YandexOtherSize, type YandexPagination, type YandexRaw, ReferenceClient$6 as YandexReferenceClient, type YandexReverseImageResponse, type YandexReverseParams, type YandexReverseSite, SearchClient$5 as YandexSearchClient, type YandexSearchParams, type YandexSearchResponse, type YandexSimilarImage, type YandexSitelink, type YandexTag, 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$5 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, type Building as ZillowBuilding, type BuildingFloorPlan as ZillowBuildingFloorPlan, type BuildingResponse as ZillowBuildingResponse, type BuildingUnit as ZillowBuildingUnit, 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$2 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 UnitSummary as ZillowUnitSummary, type ZestimateHistoryPoint as ZillowZestimateHistoryPoint };