scrapebadger 0.35.0 → 0.37.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
@@ -1,5 +1,5 @@
1
- import { B as BaseClient, T as TwitterClient, S as ScrapeBadgerConfig } from './index-ZD3sVCjc.cjs';
2
- export { e as AccountRestrictedError, a3 as ApiResponse, $ as Article, A as AuthenticationError, aj as BillingLog, ak as BillingLogList, a2 as Broadcast, j as CommunitiesClient, K as Community, F as CommunityBanner, O as CommunityMember, a0 as CommunityNote, J as CommunityRule, q as CommunityTweetType, C as ConflictError, al as ConnectOptions, ab as ConnectedEvent, a8 as CreateMonitorParams, ah as DeliveryLog, ai as DeliveryLogList, ae as ErrorEvent, ao as FilterRuleCreate, at as FilterRuleDeliveryLog, au as FilterRuleDeliveryLogListResponse, ar as FilterRuleListResponse, aq as FilterRulePricingTier, av as FilterRulePricingTiersResponse, an as FilterRuleResponse, am as FilterRuleStatus, ap as FilterRuleUpdate, as as FilterRuleValidateResponse, G as GeoClient, l as GeoSearchOptions, H as Hashtag, I as InsufficientCreditsError, g as IteratorOptions, E as List, a4 as ListResponse, L as ListsClient, Y as Location, M as Media, a5 as MonitorStatus, N as NotFoundError, P as PaginatedResponse, f as PaginationOptions, ac as PingEvent, _ as Place, Z as PlaceTrends, s as Poll, r as PollOption, Q as QueryType, b as RateLimitError, R as ResolvedConfig, a as ScrapeBadgerError, c as ServerError, a1 as Space, o as SpacesClient, m as StreamClient, n as StreamEmitter, af as StreamEvent, ag as StreamEventType, a6 as StreamMonitor, a7 as StreamMonitorList, aa as StreamTweet, d as TimeoutError, X as Trend, p as TrendCategory, k as TrendsClient, x as Tweet, ad as TweetEvent, w as TweetPlace, i as TweetsClient, a9 as UpdateMonitorParams, t as Url, y as User, z as UserAbout, D as UserIds, u as UserMention, U as UsersClient, V as ValidationError, W as WebSocketStreamError, h as collectAll, v as verifyWebhookSignature } from './index-ZD3sVCjc.cjs';
1
+ import { B as BaseClient, T as TwitterClient, S as ScrapeBadgerConfig } from './index-Dz6kHfFt.cjs';
2
+ export { e as AccountRestrictedError, a3 as ApiResponse, $ as Article, A as AuthenticationError, aj as BillingLog, ak as BillingLogList, a2 as Broadcast, j as CommunitiesClient, K as Community, F as CommunityBanner, O as CommunityMember, a0 as CommunityNote, J as CommunityRule, q as CommunityTweetType, C as ConflictError, al as ConnectOptions, ab as ConnectedEvent, a8 as CreateMonitorParams, ah as DeliveryLog, ai as DeliveryLogList, ae as ErrorEvent, ao as FilterRuleCreate, at as FilterRuleDeliveryLog, au as FilterRuleDeliveryLogListResponse, ar as FilterRuleListResponse, aq as FilterRulePricingTier, av as FilterRulePricingTiersResponse, an as FilterRuleResponse, am as FilterRuleStatus, ap as FilterRuleUpdate, as as FilterRuleValidateResponse, G as GeoClient, l as GeoSearchOptions, H as Hashtag, I as InsufficientCreditsError, g as IteratorOptions, E as List, a4 as ListResponse, L as ListsClient, Y as Location, M as Media, a5 as MonitorStatus, N as NotFoundError, P as PaginatedResponse, f as PaginationOptions, ac as PingEvent, _ as Place, Z as PlaceTrends, s as Poll, r as PollOption, Q as QueryType, b as RateLimitError, R as ResolvedConfig, a as ScrapeBadgerError, c as ServerError, a1 as Space, o as SpacesClient, m as StreamClient, n as StreamEmitter, af as StreamEvent, ag as StreamEventType, a6 as StreamMonitor, a7 as StreamMonitorList, aa as StreamTweet, d as TimeoutError, X as Trend, p as TrendCategory, k as TrendsClient, x as Tweet, ad as TweetEvent, w as TweetPlace, i as TweetsClient, a9 as UpdateMonitorParams, t as Url, y as User, z as UserAbout, D as UserIds, u as UserMention, U as UsersClient, V as ValidationError, W as WebSocketStreamError, h as collectAll, v as verifyWebhookSignature } from './index-Dz6kHfFt.cjs';
3
3
  import 'node:events';
4
4
 
5
5
  /**
@@ -150,6 +150,7 @@ interface DetectResult {
150
150
  * ```
151
151
  */
152
152
  declare class WebClient {
153
+ private readonly _gen;
153
154
  private readonly client;
154
155
  constructor(client: BaseClient);
155
156
  /**
@@ -190,6 +191,16 @@ declare class WebClient {
190
191
  * @returns Detection results including identified anti-bot and captcha systems
191
192
  */
192
193
  detect(url: string, options?: DetectOptions): Promise<DetectResult>;
194
+ /** Submit batch scraping job. Generated from the OpenAPI spec; returns the raw response object. */
195
+ submitBatchScrapingJob(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
196
+ /** Get batch job status. Generated from the OpenAPI spec; returns the raw response object. */
197
+ getBatchJobStatus(jobId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
198
+ /** Extract structured data. Generated from the OpenAPI spec; returns the raw response object. */
199
+ extractStructuredData(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
200
+ /** Take a screenshot. Generated from the OpenAPI spec; returns the raw response object. */
201
+ takeAScreenshot(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
202
+ /** Poll an auto-unblock discovery job. Generated from the OpenAPI spec; returns the raw response object. */
203
+ pollAnAutoUnblockDiscoveryJob(jobId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
193
204
  }
194
205
 
195
206
  /**
@@ -2141,6 +2152,7 @@ declare class VideosClient$2 {
2141
2152
  * ```
2142
2153
  */
2143
2154
  declare class GoogleClient {
2155
+ private readonly _gen;
2144
2156
  /** Google Web Search (SERP) — with optional deferred AI Overview follow-up. */
2145
2157
  readonly search: SearchClient$g;
2146
2158
  /** Google Maps — places, reviews, photos, posts. */
@@ -2178,6 +2190,66 @@ declare class GoogleClient {
2178
2190
  /** Google Products — immersive product detail. */
2179
2191
  readonly products: ProductsClient$3;
2180
2192
  constructor(client: BaseClient);
2193
+ /** Google AI Overview (inline SERP block). Generated from the OpenAPI spec; returns the raw response object. */
2194
+ googleAiOverviewInlineSerpBlock(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2195
+ /** Google Flights calendar — cheapest fare per date. Generated from the OpenAPI spec; returns the raw response object. */
2196
+ googleFlightsCalendarCheapestFarePerDate(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2197
+ }
2198
+
2199
+ /**
2200
+ * Google-Play API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
2201
+ */
2202
+
2203
+ /** Client for all Google-Play API operations. (Generated from the OpenAPI spec.) */
2204
+ declare class GooglePlayClient {
2205
+ private readonly client;
2206
+ constructor(client: BaseClient);
2207
+ /** Get app detail. Generated from the OpenAPI spec; returns the raw response object. */
2208
+ getAppDetail(appId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2209
+ /** Get app permissions. Generated from the OpenAPI spec; returns the raw response object. */
2210
+ getAppPermissions(appId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2211
+ /** Get app reviews. Generated from the OpenAPI spec; returns the raw response object. */
2212
+ getAppReviews(appId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2213
+ /** Get similar apps. Generated from the OpenAPI spec; returns the raw response object. */
2214
+ getSimilarApps(appId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2215
+ /** List categories. Generated from the OpenAPI spec; returns the raw response object. */
2216
+ listCategories(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2217
+ /** Browse a category. Generated from the OpenAPI spec; returns the raw response object. */
2218
+ browseACategory(categoryId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2219
+ /** Top charts. Generated from the OpenAPI spec; returns the raw response object. */
2220
+ topCharts(collection: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2221
+ /** Get developer apps. Generated from the OpenAPI spec; returns the raw response object. */
2222
+ getDeveloperApps(developer: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2223
+ /** List markets. Generated from the OpenAPI spec; returns the raw response object. */
2224
+ listMarkets(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2225
+ /** Search apps. Generated from the OpenAPI spec; returns the raw response object. */
2226
+ searchApps(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2227
+ }
2228
+
2229
+ /**
2230
+ * Idealista API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
2231
+ */
2232
+
2233
+ /** Client for all Idealista API operations. (Generated from the OpenAPI spec.) */
2234
+ declare class IdealistaClient {
2235
+ private readonly client;
2236
+ constructor(client: BaseClient);
2237
+ /** Agency by phone. Generated from the OpenAPI spec; returns the raw response object. */
2238
+ agencyByPhone(phone: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2239
+ /** Agency profile + listings. Generated from the OpenAPI spec; returns the raw response object. */
2240
+ agencyProfileListings(shortName: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2241
+ /** List markets. Generated from the OpenAPI spec; returns the raw response object. */
2242
+ listMarkets(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2243
+ /** Get property detail. Generated from the OpenAPI spec; returns the raw response object. */
2244
+ getPropertyDetail(propertyCode: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2245
+ /** Get listing engagement stats. Generated from the OpenAPI spec; returns the raw response object. */
2246
+ getListingEngagementStats(propertyCode: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2247
+ /** Search listings. Generated from the OpenAPI spec; returns the raw response object. */
2248
+ searchListings(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2249
+ /** Search all (beats result cap). Generated from the OpenAPI spec; returns the raw response object. */
2250
+ searchAllBeatsResultCap(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2251
+ /** Resolve locations. Generated from the OpenAPI spec; returns the raw response object. */
2252
+ resolveLocations(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
2181
2253
  }
2182
2254
 
2183
2255
  /**
@@ -3793,6 +3865,32 @@ declare class ApartmentsClient {
3793
3865
  * rent.
3794
3866
  */
3795
3867
  getProperty(url?: string, params?: ApartmentsPropertyParams): Promise<Property$3>;
3868
+ /** Get property detail by slug + id. Generated from the OpenAPI spec; returns the raw response object. */
3869
+ getPropertyDetailBySlugId(slug: string, propertyId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3870
+ }
3871
+
3872
+ /**
3873
+ * App-Store API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
3874
+ */
3875
+
3876
+ /** Client for all App-Store API operations. (Generated from the OpenAPI spec.) */
3877
+ declare class AppStoreClient {
3878
+ private readonly client;
3879
+ constructor(client: BaseClient);
3880
+ /** Get app detail. Generated from the OpenAPI spec; returns the raw response object. */
3881
+ getAppDetail(appId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3882
+ /** Get app reviews. Generated from the OpenAPI spec; returns the raw response object. */
3883
+ getAppReviews(appId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3884
+ /** Top charts. Generated from the OpenAPI spec; returns the raw response object. */
3885
+ topCharts(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3886
+ /** Get developer apps. Generated from the OpenAPI spec; returns the raw response object. */
3887
+ getDeveloperApps(artistId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3888
+ /** List genres. Generated from the OpenAPI spec; returns the raw response object. */
3889
+ listGenres(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3890
+ /** List markets. Generated from the OpenAPI spec; returns the raw response object. */
3891
+ listMarkets(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3892
+ /** Search apps. Generated from the OpenAPI spec; returns the raw response object. */
3893
+ searchApps(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
3796
3894
  }
3797
3895
 
3798
3896
  /**
@@ -4325,6 +4423,7 @@ declare class AudioClient {
4325
4423
  * ```
4326
4424
  */
4327
4425
  declare class InstagramClient {
4426
+ private readonly _gen;
4328
4427
  /** Client for user operations (profile, posts, followers, stories, highlights) */
4329
4428
  readonly users: UsersClient$1;
4330
4429
  /** Client for media operations (detail, comments, replies, likers, oEmbed) */
@@ -4343,6 +4442,8 @@ declare class InstagramClient {
4343
4442
  * @param client - The base HTTP client for making requests.
4344
4443
  */
4345
4444
  constructor(client: BaseClient);
4445
+ /** Get location. Generated from the OpenAPI spec; returns the raw response object. */
4446
+ getLocation(locationPk: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4346
4447
  }
4347
4448
 
4348
4449
  /**
@@ -4746,6 +4847,7 @@ interface RedfinAgentParams {
4746
4847
  * ```
4747
4848
  */
4748
4849
  declare class RedfinClient {
4850
+ private readonly _gen;
4749
4851
  private readonly client;
4750
4852
  constructor(client: BaseClient);
4751
4853
  /**
@@ -4794,6 +4896,42 @@ declare class RedfinClient {
4794
4896
  * @returns Markets response with all supported markets.
4795
4897
  */
4796
4898
  listMarkets(): Promise<MarketsResponse$9>;
4899
+ /** Get property detail. Generated from the OpenAPI spec; returns the raw response object. */
4900
+ getPropertyDetail(propertyId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4901
+ }
4902
+
4903
+ /**
4904
+ * Account API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
4905
+ */
4906
+
4907
+ /** Client for all Account API operations. (Generated from the OpenAPI spec.) */
4908
+ declare class AccountClient {
4909
+ private readonly client;
4910
+ constructor(client: BaseClient);
4911
+ /** Get account info. Generated from the OpenAPI spec; returns the raw response object. */
4912
+ getAccountInfo(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4913
+ }
4914
+
4915
+ /**
4916
+ * Airbnb API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
4917
+ */
4918
+
4919
+ /** Client for all Airbnb API operations. (Generated from the OpenAPI spec.) */
4920
+ declare class AirbnbClient {
4921
+ private readonly client;
4922
+ constructor(client: BaseClient);
4923
+ /** Search experiences. Generated from the OpenAPI spec; returns the raw response object. */
4924
+ searchExperiences(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4925
+ /** Get experience detail. Generated from the OpenAPI spec; returns the raw response object. */
4926
+ getExperienceDetail(experienceId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4927
+ /** Get listing detail. Generated from the OpenAPI spec; returns the raw response object. */
4928
+ getListingDetail(roomId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4929
+ /** Get availability calendar. Generated from the OpenAPI spec; returns the raw response object. */
4930
+ getAvailabilityCalendar(roomId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4931
+ /** Get listing reviews. Generated from the OpenAPI spec; returns the raw response object. */
4932
+ getListingReviews(roomId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4933
+ /** Search stays. Generated from the OpenAPI spec; returns the raw response object. */
4934
+ searchStays(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
4797
4935
  }
4798
4936
 
4799
4937
  /**
@@ -6654,6 +6792,23 @@ interface TikTokAd {
6654
6792
  /** epoch ms */
6655
6793
  last_shown_date?: number | null;
6656
6794
  videos: TikTokAdVideo[];
6795
+ /** ad caption / creative title */
6796
+ title?: string | null;
6797
+ /** e.g. "10K-100K" */
6798
+ estimated_audience?: string | null;
6799
+ impression?: number | null;
6800
+ /** spend bracket when disclosed (often empty) */
6801
+ spent?: string | null;
6802
+ /** e.g. "Reach", "Traffic" */
6803
+ advertising_objective?: string | null;
6804
+ /** e.g. "Learn more" (populated on detail) */
6805
+ call_to_action?: string | null;
6806
+ /** ad landing page (populated on detail) */
6807
+ external_url?: string | null;
6808
+ show_mode?: number | null;
6809
+ sor_audit_status?: string | null;
6810
+ rejection_info?: Record<string, unknown> | null;
6811
+ image_urls: string[];
6657
6812
  }
6658
6813
  interface AdLibraryPage {
6659
6814
  has_more: boolean;
@@ -6668,6 +6823,78 @@ interface AdLibrarySearchResponse {
6668
6823
  pagination: AdLibraryPage;
6669
6824
  region: string;
6670
6825
  }
6826
+ /** The advertiser behind an ad (from the ad-detail response). */
6827
+ interface AdAdvertiser {
6828
+ name?: string | null;
6829
+ /** advertiser business id — feeds ads/search?advertiser_id= */
6830
+ adv_biz_ids?: string | null;
6831
+ registry_location?: string | null;
6832
+ sponsor?: string | null;
6833
+ /** linked TikTok account, when disclosed */
6834
+ tt_user?: Record<string, unknown> | null;
6835
+ }
6836
+ /** One age/gender impression bucket within a region. */
6837
+ interface AdTargetingBreakdown {
6838
+ age?: string | null;
6839
+ gender?: string | null;
6840
+ /** bracketed range, e.g. "0-1K", "2K" */
6841
+ impressions?: string | null;
6842
+ }
6843
+ /** Per-region impression totals with age/gender breakdowns. */
6844
+ interface AdTargetingRegion {
6845
+ region?: string | null;
6846
+ impressions?: string | null;
6847
+ breakdowns: AdTargetingBreakdown[];
6848
+ }
6849
+ /** Location targeting + the only place real impression numbers live. */
6850
+ interface AdTargetingLocation {
6851
+ total_region?: number | null;
6852
+ total_impressions?: string | null;
6853
+ data: AdTargetingRegion[];
6854
+ }
6855
+ /** Targeting + impression breakdown disclosed for an ad (EU-DSA). */
6856
+ interface AdTargeting {
6857
+ location?: AdTargetingLocation | null;
6858
+ /** per-region flag dicts (dynamic bucket keys) */
6859
+ age: Record<string, unknown>[];
6860
+ gender: Record<string, unknown>[];
6861
+ target_audience_size?: string | null;
6862
+ audience?: string | null;
6863
+ /** comma-joined string, e.g. "Home Design, Education" */
6864
+ interest?: string | null;
6865
+ video_interactions?: string | null;
6866
+ creator_interactions?: string | null;
6867
+ countries: string[];
6868
+ cities: string[];
6869
+ provinces: string[];
6870
+ languages: string[];
6871
+ device_models: string[];
6872
+ operating_systems: string[];
6873
+ high_spending_power?: string | null;
6874
+ audience_exclude?: string | null;
6875
+ }
6876
+ /** Response from the /ads/{ad_id} endpoint. */
6877
+ interface AdDetailResponse {
6878
+ ad: TikTokAd;
6879
+ advertiser: AdAdvertiser;
6880
+ targeting: AdTargeting;
6881
+ display_mode?: string | null;
6882
+ region: string;
6883
+ }
6884
+ /** One advertiser match from the advertiser lookup. */
6885
+ interface AdvertiserSuggestion {
6886
+ name?: string | null;
6887
+ /** advertiser business id (upstream field: `ids`) */
6888
+ id?: string | null;
6889
+ }
6890
+ /** Response from the /ads/advertisers endpoint. */
6891
+ interface AdvertiserSearchResponse {
6892
+ advertisers: AdvertiserSuggestion[];
6893
+ /** ad_keyword suggestions, when present */
6894
+ keywords: string[];
6895
+ query: string;
6896
+ region: string;
6897
+ }
6671
6898
  interface RegionInfo {
6672
6899
  code: string;
6673
6900
  country_code: string;
@@ -6813,6 +7040,20 @@ interface TikTokAdSearchParams {
6813
7040
  /** Number of items to return (1-50) */
6814
7041
  count?: number;
6815
7042
  }
7043
+ /** Options for the advertiser lookup endpoint. */
7044
+ interface TikTokAdvertiserSearchParams {
7045
+ /** Advertiser name (or partial) to look up */
7046
+ query: string;
7047
+ /** EU region code (the Ad Library is EU-only, default "DE") */
7048
+ region?: string;
7049
+ /** Max suggestions (1-50, default 10) */
7050
+ count?: number;
7051
+ }
7052
+ /** Options for the ad-detail endpoint. */
7053
+ interface TikTokAdDetailParams {
7054
+ /** EU region code (the Ad Library is EU-only, default "DE") */
7055
+ region?: string;
7056
+ }
6816
7057
 
6817
7058
  /**
6818
7059
  * TikTok Users API client.
@@ -7176,6 +7417,25 @@ declare class AdsClient$1 {
7176
7417
  * @returns The ad-library search response with ads and pagination.
7177
7418
  */
7178
7419
  search(params?: TikTokAdSearchParams): Promise<AdLibrarySearchResponse>;
7420
+ /**
7421
+ * Look up advertiser business ids by name.
7422
+ *
7423
+ * Feed the returned `id` into {@link search} as `advertiser_id` to list all of an
7424
+ * advertiser's ads. Matching is on the legal entity name, so a brand may appear under
7425
+ * several legal entities.
7426
+ *
7427
+ * @param params - `query` (required), plus optional `region` and `count`.
7428
+ * @returns Matching advertisers, each with a business `id`.
7429
+ */
7430
+ searchAdvertisers(params: TikTokAdvertiserSearchParams): Promise<AdvertiserSearchResponse>;
7431
+ /**
7432
+ * Get a single ad's advertiser, creatives, and full targeting/impression breakdown.
7433
+ *
7434
+ * @param adId - Ad id from a {@link search} result.
7435
+ * @param params - Optional `region` (EU-only, default "DE").
7436
+ * @returns The ad, its advertiser, and per-region age/gender impression targeting.
7437
+ */
7438
+ getDetail(adId: string, params?: TikTokAdDetailParams): Promise<AdDetailResponse>;
7179
7439
  }
7180
7440
 
7181
7441
  /**
@@ -7257,6 +7517,7 @@ declare class ReferenceClient$c {
7257
7517
  * ```
7258
7518
  */
7259
7519
  declare class TikTokClient {
7520
+ private readonly _gen;
7260
7521
  /** Client for profiles, videos, followers, following, liked, reposts */
7261
7522
  readonly users: UsersClient;
7262
7523
  /** Client for video detail, comments, replies, related, transcript, oEmbed */
@@ -7279,6 +7540,10 @@ declare class TikTokClient {
7279
7540
  * @param client - The base HTTP client for making requests.
7280
7541
  */
7281
7542
  constructor(client: BaseClient);
7543
+ /** Search TikTok advertisers. Generated from the OpenAPI spec; returns the raw response object. */
7544
+ searchTiktokAdvertisers(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
7545
+ /** Get TikTok ad detail. Generated from the OpenAPI spec; returns the raw response object. */
7546
+ getTiktokAdDetail(adId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
7282
7547
  }
7283
7548
 
7284
7549
  /**
@@ -8037,6 +8302,64 @@ declare class EbayClient {
8037
8302
  constructor(client: BaseClient);
8038
8303
  }
8039
8304
 
8305
+ /**
8306
+ * Facebook API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
8307
+ */
8308
+
8309
+ /** Client for all Facebook API operations. (Generated from the OpenAPI spec.) */
8310
+ declare class FacebookClient {
8311
+ private readonly client;
8312
+ constructor(client: BaseClient);
8313
+ /** Search advertiser pages. Generated from the OpenAPI spec; returns the raw response object. */
8314
+ searchAdvertiserPages(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8315
+ /** Get advertiser page info. Generated from the OpenAPI spec; returns the raw response object. */
8316
+ getAdvertiserPageInfo(pageId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8317
+ /** Search the Ad Library. Generated from the OpenAPI spec; returns the raw response object. */
8318
+ searchTheAdLibrary(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8319
+ /** Get an ad. Generated from the OpenAPI spec; returns the raw response object. */
8320
+ getAnAd(adArchiveId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8321
+ /** Get group detail. Generated from the OpenAPI spec; returns the raw response object. */
8322
+ getGroupDetail(groupId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8323
+ /** Get group posts. Generated from the OpenAPI spec; returns the raw response object. */
8324
+ getGroupPosts(groupId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8325
+ /** List categories. Generated from the OpenAPI spec; returns the raw response object. */
8326
+ listCategories(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8327
+ /** Browse a Marketplace category. Generated from the OpenAPI spec; returns the raw response object. */
8328
+ browseAMarketplaceCategory(category: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8329
+ /** Get a Marketplace item. Generated from the OpenAPI spec; returns the raw response object. */
8330
+ getAMarketplaceItem(itemId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8331
+ /** List locations. Generated from the OpenAPI spec; returns the raw response object. */
8332
+ listLocations(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8333
+ /** Search Marketplace. Generated from the OpenAPI spec; returns the raw response object. */
8334
+ searchMarketplace(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8335
+ /** Get page detail. Generated from the OpenAPI spec; returns the raw response object. */
8336
+ getPageDetail(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8337
+ /** Get page posts. Generated from the OpenAPI spec; returns the raw response object. */
8338
+ getPagePosts(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8339
+ /** Get post detail. Generated from the OpenAPI spec; returns the raw response object. */
8340
+ getPostDetail(postId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8341
+ /** Get post comments. Generated from the OpenAPI spec; returns the raw response object. */
8342
+ getPostComments(postId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8343
+ /** Get profile detail. Generated from the OpenAPI spec; returns the raw response object. */
8344
+ getProfileDetail(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8345
+ /** Get profile posts. Generated from the OpenAPI spec; returns the raw response object. */
8346
+ getProfilePosts(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8347
+ /** Search everything. Generated from the OpenAPI spec; returns the raw response object. */
8348
+ searchEverything(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8349
+ /** Search events. Generated from the OpenAPI spec; returns the raw response object. */
8350
+ searchEvents(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8351
+ /** Search groups. Generated from the OpenAPI spec; returns the raw response object. */
8352
+ searchGroups(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8353
+ /** Search Pages. Generated from the OpenAPI spec; returns the raw response object. */
8354
+ searchPages(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8355
+ /** Search people. Generated from the OpenAPI spec; returns the raw response object. */
8356
+ searchPeople(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8357
+ /** Search places. Generated from the OpenAPI spec; returns the raw response object. */
8358
+ searchPlaces(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8359
+ /** Search posts. Generated from the OpenAPI spec; returns the raw response object. */
8360
+ searchPosts(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
8361
+ }
8362
+
8040
8363
  /**
8041
8364
  * TypeScript types for the Walmart API.
8042
8365
  *
@@ -13846,6 +14169,7 @@ declare class ReferenceClient$2 {
13846
14169
  * ```
13847
14170
  */
13848
14171
  declare class ZillowClient {
14172
+ private readonly _gen;
13849
14173
  /** Client for property search and location autocomplete */
13850
14174
  readonly search: SearchClient$1;
13851
14175
  /** Client for full property detail */
@@ -13860,6 +14184,8 @@ declare class ZillowClient {
13860
14184
  * @param client - The base HTTP client for making requests.
13861
14185
  */
13862
14186
  constructor(client: BaseClient);
14187
+ /** Get property detail by URL. Generated from the OpenAPI spec; returns the raw response object. */
14188
+ getPropertyDetailByUrl(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
13863
14189
  }
13864
14190
 
13865
14191
  /**
@@ -14753,6 +15079,24 @@ declare class LoopNetClient {
14753
15079
  constructor(client: BaseClient);
14754
15080
  }
14755
15081
 
15082
+ /**
15083
+ * Perplexity API client. // --- BEGIN generated by sdk/codegen/facade — do not edit ---
15084
+ */
15085
+
15086
+ /** Client for all Perplexity API operations. (Generated from the OpenAPI spec.) */
15087
+ declare class PerplexityClient {
15088
+ private readonly client;
15089
+ constructor(client: BaseClient);
15090
+ /** Ask Perplexity a question. Generated from the OpenAPI spec; returns the raw response object. */
15091
+ askPerplexityAQuestion(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
15092
+ /** Ask Perplexity a question (POST). Generated from the OpenAPI spec; returns the raw response object. */
15093
+ askPerplexityAQuestionPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
15094
+ /** Measure a brand's visibility in a Perplexity answer. Generated from the OpenAPI spec; returns the raw response object. */
15095
+ measureABrandSVisibilityInAPerplexityAnswer(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
15096
+ /** Measure a brand's visibility in a Perplexity answer (POST). Generated from the OpenAPI spec; returns the raw response object. */
15097
+ measureABrandSVisibilityInAPerplexityAnswerPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
15098
+ }
15099
+
14756
15100
  /**
14757
15101
  * TypeScript types for Depop API responses.
14758
15102
  *
@@ -14928,6 +15272,7 @@ interface DepopUserProductsParams {
14928
15272
  * ```
14929
15273
  */
14930
15274
  declare class DepopClient {
15275
+ private readonly _gen;
14931
15276
  private readonly client;
14932
15277
  constructor(client: BaseClient);
14933
15278
  /**
@@ -14984,6 +15329,8 @@ declare class DepopClient {
14984
15329
  * @returns Markets response with all supported markets.
14985
15330
  */
14986
15331
  listMarkets(): Promise<DepopMarketsResponse>;
15332
+ /** Get product detail. Generated from the OpenAPI spec; returns the raw response object. */
15333
+ getProductDetail(productId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
14987
15334
  }
14988
15335
 
14989
15336
  /**
@@ -15767,6 +16114,7 @@ declare class ReferenceClient {
15767
16114
  * ```
15768
16115
  */
15769
16116
  declare class ChatGPTClient {
16117
+ private readonly _gen;
15770
16118
  /** Client for asking ChatGPT a question */
15771
16119
  readonly ask: AskClient$1;
15772
16120
  /** Client for AEO/GEO brand-visibility analysis */
@@ -15779,6 +16127,10 @@ declare class ChatGPTClient {
15779
16127
  * @param client - The base HTTP client for making requests.
15780
16128
  */
15781
16129
  constructor(client: BaseClient);
16130
+ /** Ask ChatGPT a question (POST). Generated from the OpenAPI spec; returns the raw response object. */
16131
+ askChatgptAQuestionPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
16132
+ /** Measure a brand's visibility in a ChatGPT answer (POST). Generated from the OpenAPI spec; returns the raw response object. */
16133
+ measureABrandSVisibilityInAChatgptAnswerPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
15782
16134
  }
15783
16135
 
15784
16136
  /**
@@ -16094,6 +16446,7 @@ declare class BrandClient {
16094
16446
  * ```
16095
16447
  */
16096
16448
  declare class GeminiClient {
16449
+ private readonly _gen;
16097
16450
  /** Client for asking Gemini a question */
16098
16451
  readonly ask: AskClient;
16099
16452
  /** Client for AEO/GEO brand-visibility analysis */
@@ -16104,6 +16457,10 @@ declare class GeminiClient {
16104
16457
  * @param client - The base HTTP client for making requests.
16105
16458
  */
16106
16459
  constructor(client: BaseClient);
16460
+ /** Ask Gemini a question (POST). Generated from the OpenAPI spec; returns the raw response object. */
16461
+ askGeminiAQuestionPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
16462
+ /** Measure a brand's visibility in a Gemini answer (POST). Generated from the OpenAPI spec; returns the raw response object. */
16463
+ measureABrandSVisibilityInAGeminiAnswerPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
16107
16464
  }
16108
16465
 
16109
16466
  /**
@@ -16154,15 +16511,25 @@ declare class ScrapeBadger {
16154
16511
  readonly vinted: VintedClient;
16155
16512
  /** Google Scraper API client — 19 Google product APIs */
16156
16513
  readonly google: GoogleClient;
16514
+ /** Google_Play API client. (Generated from the OpenAPI spec.) */
16515
+ readonly google_play: GooglePlayClient;
16516
+ /** Idealista API client. (Generated from the OpenAPI spec.) */
16517
+ readonly idealista: IdealistaClient;
16157
16518
  /** Reddit scraper API client */
16158
16519
  readonly reddit: RedditClient;
16159
16520
  /** Apartments.com scraper API client — search + property with unit-level pricing (US) */
16160
16521
  readonly apartments: ApartmentsClient;
16522
+ /** App_Store API client. (Generated from the OpenAPI spec.) */
16523
+ readonly app_store: AppStoreClient;
16161
16524
  /** Instagram scraper API client — users, media, search, hashtags, locations, audio */
16162
16525
  readonly instagram: InstagramClient;
16163
16526
  /** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
16164
16527
  readonly redfin: RedfinClient;
16165
16528
  /** Amazon scraper API client — 14 endpoints */
16529
+ /** Account API client. (Generated from the OpenAPI spec.) */
16530
+ readonly account: AccountClient;
16531
+ /** Airbnb API client. (Generated from the OpenAPI spec.) */
16532
+ readonly airbnb: AirbnbClient;
16166
16533
  readonly amazon: AmazonClient;
16167
16534
  /** Shopee scraper API client — 6 endpoints across 11 markets */
16168
16535
  readonly shopee: ShopeeClient;
@@ -16170,6 +16537,8 @@ declare class ScrapeBadger {
16170
16537
  readonly tiktok: TikTokClient;
16171
16538
  /** eBay scraper API client — 12 endpoints across 18 markets */
16172
16539
  readonly ebay: EbayClient;
16540
+ /** Facebook API client. (Generated from the OpenAPI spec.) */
16541
+ readonly facebook: FacebookClient;
16173
16542
  /** Walmart scraper API client — 11 endpoints (walmart.com, US-only) */
16174
16543
  readonly walmart: WalmartClient;
16175
16544
  /** DuckDuckGo scraper API client — search, images, news, videos, autocomplete, instant, regions */
@@ -16194,6 +16563,8 @@ declare class ScrapeBadger {
16194
16563
  readonly immobiliare: ImmobiliareClient;
16195
16564
  /** LoopNet scraper API client — commercial real estate across US/CA/UK/FR/ES (search, listing, broker, markets, property types) */
16196
16565
  readonly loopnet: LoopNetClient;
16566
+ /** Perplexity API client. (Generated from the OpenAPI spec.) */
16567
+ readonly perplexity: PerplexityClient;
16197
16568
  /** Depop scraper API client — search, product, user, user products, markets (www.depop.com, 10 markets) */
16198
16569
  readonly depop: DepopClient;
16199
16570
  /** LinkedIn scraper API client — 11 no-auth endpoints (jobs, company, school, profile, post, article, learning, geo) */
@@ -16230,4 +16601,4 @@ declare class ScrapeBadger {
16230
16601
  constructor(config?: Partial<ScrapeBadgerConfig>);
16231
16602
  }
16232
16603
 
16233
- 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 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, 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 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 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$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 };
16604
+ 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 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, 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 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 };