scrapebadger 0.35.0 → 0.36.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-ZD3sVCjc.d.cts → index-Dz6kHfFt.d.cts} +17 -0
- package/dist/{index-ZD3sVCjc.d.ts → index-Dz6kHfFt.d.ts} +17 -0
- package/dist/index.d.cts +160 -2
- package/dist/index.d.ts +160 -2
- package/dist/index.js +597 -403
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +597 -403
- package/dist/index.mjs.map +1 -1
- package/dist/twitter/index.d.cts +1 -1
- package/dist/twitter/index.d.ts +1 -1
- package/dist/twitter/index.js +55 -0
- package/dist/twitter/index.js.map +1 -1
- package/dist/twitter/index.mjs +55 -0
- package/dist/twitter/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3111,6 +3111,7 @@ declare class SpacesClient {
|
|
|
3111
3111
|
* ```
|
|
3112
3112
|
*/
|
|
3113
3113
|
declare class TwitterClient {
|
|
3114
|
+
private readonly _gen;
|
|
3114
3115
|
/** Client for tweet operations */
|
|
3115
3116
|
readonly tweets: TweetsClient;
|
|
3116
3117
|
/** Client for user operations */
|
|
@@ -3133,6 +3134,22 @@ declare class TwitterClient {
|
|
|
3133
3134
|
* @param client - The base HTTP client for making requests.
|
|
3134
3135
|
*/
|
|
3135
3136
|
constructor(client: BaseClient);
|
|
3137
|
+
/** Delete filter rule. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3138
|
+
deleteFilterRule(ruleId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3139
|
+
/** Update filter rule. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3140
|
+
updateFilterRule(ruleId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3141
|
+
/** Delete stream monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3142
|
+
deleteStreamMonitor(monitorId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3143
|
+
/** Update stream monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3144
|
+
updateStreamMonitor(monitorId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3145
|
+
/** List webhooks. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3146
|
+
listWebhooks(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3147
|
+
/** Configure webhook on a monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3148
|
+
configureWebhookOnAMonitor(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3149
|
+
/** Test webhook delivery. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3150
|
+
testWebhookDelivery(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3151
|
+
/** Remove webhook from monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3152
|
+
removeWebhookFromMonitor(webhookId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3136
3153
|
}
|
|
3137
3154
|
|
|
3138
3155
|
export { type Article as $, AuthenticationError as A, BaseClient as B, ConflictError as C, type UserIds as D, type List as E, type CommunityBanner as F, GeoClient as G, type Hashtag as H, InsufficientCreditsError as I, type CommunityRule as J, type Community as K, ListsClient as L, type Media as M, NotFoundError as N, type CommunityMember as O, type PaginatedResponse as P, type QueryType as Q, type ResolvedConfig as R, type ScrapeBadgerConfig as S, TwitterClient as T, UsersClient as U, ValidationError as V, WebSocketStreamError as W, type Trend as X, type Location as Y, type PlaceTrends as Z, type Place as _, ScrapeBadgerError as a, type CommunityNote as a0, type Space as a1, type Broadcast as a2, type ApiResponse as a3, type ListResponse as a4, type MonitorStatus as a5, type StreamMonitor as a6, type StreamMonitorList as a7, type CreateMonitorParams as a8, type UpdateMonitorParams as a9, type StreamTweet as aa, type ConnectedEvent as ab, type PingEvent as ac, type TweetEvent as ad, type ErrorEvent as ae, type StreamEvent as af, type StreamEventType as ag, type DeliveryLog as ah, type DeliveryLogList as ai, type BillingLog as aj, type BillingLogList as ak, type ConnectOptions as al, type FilterRuleStatus as am, type FilterRuleResponse as an, type FilterRuleCreate as ao, type FilterRuleUpdate as ap, type FilterRulePricingTier as aq, type FilterRuleListResponse as ar, type FilterRuleValidateResponse as as, type FilterRuleDeliveryLog as at, type FilterRuleDeliveryLogListResponse as au, type FilterRulePricingTiersResponse as av, RateLimitError as b, ServerError as c, TimeoutError as d, AccountRestrictedError as e, type PaginationOptions as f, type IteratorOptions as g, collectAll as h, TweetsClient as i, CommunitiesClient as j, TrendsClient as k, type GeoSearchOptions as l, StreamClient as m, type StreamEmitter as n, SpacesClient as o, type TrendCategory as p, type CommunityTweetType as q, type PollOption as r, type Poll as s, type Url as t, type UserMention as u, verifyWebhookSignature as v, type TweetPlace as w, type Tweet as x, type User as y, type UserAbout as z };
|
|
@@ -3111,6 +3111,7 @@ declare class SpacesClient {
|
|
|
3111
3111
|
* ```
|
|
3112
3112
|
*/
|
|
3113
3113
|
declare class TwitterClient {
|
|
3114
|
+
private readonly _gen;
|
|
3114
3115
|
/** Client for tweet operations */
|
|
3115
3116
|
readonly tweets: TweetsClient;
|
|
3116
3117
|
/** Client for user operations */
|
|
@@ -3133,6 +3134,22 @@ declare class TwitterClient {
|
|
|
3133
3134
|
* @param client - The base HTTP client for making requests.
|
|
3134
3135
|
*/
|
|
3135
3136
|
constructor(client: BaseClient);
|
|
3137
|
+
/** Delete filter rule. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3138
|
+
deleteFilterRule(ruleId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3139
|
+
/** Update filter rule. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3140
|
+
updateFilterRule(ruleId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3141
|
+
/** Delete stream monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3142
|
+
deleteStreamMonitor(monitorId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3143
|
+
/** Update stream monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3144
|
+
updateStreamMonitor(monitorId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3145
|
+
/** List webhooks. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3146
|
+
listWebhooks(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3147
|
+
/** Configure webhook on a monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3148
|
+
configureWebhookOnAMonitor(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3149
|
+
/** Test webhook delivery. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3150
|
+
testWebhookDelivery(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3151
|
+
/** Remove webhook from monitor. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3152
|
+
removeWebhookFromMonitor(webhookId: string, body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3136
3153
|
}
|
|
3137
3154
|
|
|
3138
3155
|
export { type Article as $, AuthenticationError as A, BaseClient as B, ConflictError as C, type UserIds as D, type List as E, type CommunityBanner as F, GeoClient as G, type Hashtag as H, InsufficientCreditsError as I, type CommunityRule as J, type Community as K, ListsClient as L, type Media as M, NotFoundError as N, type CommunityMember as O, type PaginatedResponse as P, type QueryType as Q, type ResolvedConfig as R, type ScrapeBadgerConfig as S, TwitterClient as T, UsersClient as U, ValidationError as V, WebSocketStreamError as W, type Trend as X, type Location as Y, type PlaceTrends as Z, type Place as _, ScrapeBadgerError as a, type CommunityNote as a0, type Space as a1, type Broadcast as a2, type ApiResponse as a3, type ListResponse as a4, type MonitorStatus as a5, type StreamMonitor as a6, type StreamMonitorList as a7, type CreateMonitorParams as a8, type UpdateMonitorParams as a9, type StreamTweet as aa, type ConnectedEvent as ab, type PingEvent as ac, type TweetEvent as ad, type ErrorEvent as ae, type StreamEvent as af, type StreamEventType as ag, type DeliveryLog as ah, type DeliveryLogList as ai, type BillingLog as aj, type BillingLogList as ak, type ConnectOptions as al, type FilterRuleStatus as am, type FilterRuleResponse as an, type FilterRuleCreate as ao, type FilterRuleUpdate as ap, type FilterRulePricingTier as aq, type FilterRuleListResponse as ar, type FilterRuleValidateResponse as as, type FilterRuleDeliveryLog as at, type FilterRuleDeliveryLogListResponse as au, type FilterRulePricingTiersResponse as av, RateLimitError as b, ServerError as c, TimeoutError as d, AccountRestrictedError as e, type PaginationOptions as f, type IteratorOptions as g, collectAll as h, TweetsClient as i, CommunitiesClient as j, TrendsClient as k, type GeoSearchOptions as l, StreamClient as m, type StreamEmitter as n, SpacesClient as o, type TrendCategory as p, type CommunityTweetType as q, type PollOption as r, type Poll as s, type Url as t, type UserMention as u, verifyWebhookSignature as v, type TweetPlace as w, type Tweet as x, type User as y, type UserAbout as z };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BaseClient, T as TwitterClient, S as ScrapeBadgerConfig } from './index-
|
|
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-
|
|
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,36 @@ 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
|
+
* Idealista API client. // --- generated by sdk/codegen/facade — do not edit ---
|
|
2201
|
+
*/
|
|
2202
|
+
|
|
2203
|
+
/** Client for all Idealista API operations. (Generated from the OpenAPI spec.) */
|
|
2204
|
+
declare class IdealistaClient {
|
|
2205
|
+
private readonly client;
|
|
2206
|
+
constructor(client: BaseClient);
|
|
2207
|
+
/** Agency by phone. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2208
|
+
agencyByPhone(phone: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2209
|
+
/** Agency profile + listings. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2210
|
+
agencyProfileListings(shortName: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2211
|
+
/** List markets. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2212
|
+
listMarkets(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2213
|
+
/** Get property detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2214
|
+
getPropertyDetail(propertyCode: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2215
|
+
/** Get listing engagement stats. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2216
|
+
getListingEngagementStats(propertyCode: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2217
|
+
/** Search listings. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2218
|
+
searchListings(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2219
|
+
/** Search all (beats result cap). Generated from the OpenAPI spec; returns the raw response object. */
|
|
2220
|
+
searchAllBeatsResultCap(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2221
|
+
/** Resolve locations. Generated from the OpenAPI spec; returns the raw response object. */
|
|
2222
|
+
resolveLocations(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
2181
2223
|
}
|
|
2182
2224
|
|
|
2183
2225
|
/**
|
|
@@ -3793,6 +3835,8 @@ declare class ApartmentsClient {
|
|
|
3793
3835
|
* rent.
|
|
3794
3836
|
*/
|
|
3795
3837
|
getProperty(url?: string, params?: ApartmentsPropertyParams): Promise<Property$3>;
|
|
3838
|
+
/** Get property detail by slug + id. Generated from the OpenAPI spec; returns the raw response object. */
|
|
3839
|
+
getPropertyDetailBySlugId(slug: string, propertyId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
3796
3840
|
}
|
|
3797
3841
|
|
|
3798
3842
|
/**
|
|
@@ -4325,6 +4369,7 @@ declare class AudioClient {
|
|
|
4325
4369
|
* ```
|
|
4326
4370
|
*/
|
|
4327
4371
|
declare class InstagramClient {
|
|
4372
|
+
private readonly _gen;
|
|
4328
4373
|
/** Client for user operations (profile, posts, followers, stories, highlights) */
|
|
4329
4374
|
readonly users: UsersClient$1;
|
|
4330
4375
|
/** Client for media operations (detail, comments, replies, likers, oEmbed) */
|
|
@@ -4343,6 +4388,8 @@ declare class InstagramClient {
|
|
|
4343
4388
|
* @param client - The base HTTP client for making requests.
|
|
4344
4389
|
*/
|
|
4345
4390
|
constructor(client: BaseClient);
|
|
4391
|
+
/** Get location. Generated from the OpenAPI spec; returns the raw response object. */
|
|
4392
|
+
getLocation(locationPk: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
4346
4393
|
}
|
|
4347
4394
|
|
|
4348
4395
|
/**
|
|
@@ -4746,6 +4793,7 @@ interface RedfinAgentParams {
|
|
|
4746
4793
|
* ```
|
|
4747
4794
|
*/
|
|
4748
4795
|
declare class RedfinClient {
|
|
4796
|
+
private readonly _gen;
|
|
4749
4797
|
private readonly client;
|
|
4750
4798
|
constructor(client: BaseClient);
|
|
4751
4799
|
/**
|
|
@@ -4794,6 +4842,20 @@ declare class RedfinClient {
|
|
|
4794
4842
|
* @returns Markets response with all supported markets.
|
|
4795
4843
|
*/
|
|
4796
4844
|
listMarkets(): Promise<MarketsResponse$9>;
|
|
4845
|
+
/** Get property detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
4846
|
+
getPropertyDetail(propertyId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4849
|
+
/**
|
|
4850
|
+
* Account API client. // --- generated by sdk/codegen/facade — do not edit ---
|
|
4851
|
+
*/
|
|
4852
|
+
|
|
4853
|
+
/** Client for all Account API operations. (Generated from the OpenAPI spec.) */
|
|
4854
|
+
declare class AccountClient {
|
|
4855
|
+
private readonly client;
|
|
4856
|
+
constructor(client: BaseClient);
|
|
4857
|
+
/** Get account info. Generated from the OpenAPI spec; returns the raw response object. */
|
|
4858
|
+
getAccountInfo(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
4797
4859
|
}
|
|
4798
4860
|
|
|
4799
4861
|
/**
|
|
@@ -8037,6 +8099,60 @@ declare class EbayClient {
|
|
|
8037
8099
|
constructor(client: BaseClient);
|
|
8038
8100
|
}
|
|
8039
8101
|
|
|
8102
|
+
/**
|
|
8103
|
+
* Facebook API client. // --- generated by sdk/codegen/facade — do not edit ---
|
|
8104
|
+
*/
|
|
8105
|
+
|
|
8106
|
+
/** Client for all Facebook API operations. (Generated from the OpenAPI spec.) */
|
|
8107
|
+
declare class FacebookClient {
|
|
8108
|
+
private readonly client;
|
|
8109
|
+
constructor(client: BaseClient);
|
|
8110
|
+
/** Search the Ad Library. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8111
|
+
searchTheAdLibrary(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8112
|
+
/** Get an ad. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8113
|
+
getAnAd(adArchiveId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8114
|
+
/** Get group detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8115
|
+
getGroupDetail(groupId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8116
|
+
/** Get group posts. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8117
|
+
getGroupPosts(groupId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8118
|
+
/** List categories. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8119
|
+
listCategories(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8120
|
+
/** Browse a Marketplace category. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8121
|
+
browseAMarketplaceCategory(category: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8122
|
+
/** Get a Marketplace item. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8123
|
+
getAMarketplaceItem(itemId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8124
|
+
/** List locations. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8125
|
+
listLocations(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8126
|
+
/** Search Marketplace. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8127
|
+
searchMarketplace(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8128
|
+
/** Get page detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8129
|
+
getPageDetail(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8130
|
+
/** Get page posts. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8131
|
+
getPagePosts(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8132
|
+
/** Get post detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8133
|
+
getPostDetail(postId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8134
|
+
/** Get post comments. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8135
|
+
getPostComments(postId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8136
|
+
/** Get profile detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8137
|
+
getProfileDetail(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8138
|
+
/** Get profile posts. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8139
|
+
getProfilePosts(identifier: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8140
|
+
/** Search everything. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8141
|
+
searchEverything(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8142
|
+
/** Search events. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8143
|
+
searchEvents(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8144
|
+
/** Search groups. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8145
|
+
searchGroups(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8146
|
+
/** Search Pages. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8147
|
+
searchPages(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8148
|
+
/** Search people. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8149
|
+
searchPeople(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8150
|
+
/** Search places. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8151
|
+
searchPlaces(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8152
|
+
/** Search posts. Generated from the OpenAPI spec; returns the raw response object. */
|
|
8153
|
+
searchPosts(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
8154
|
+
}
|
|
8155
|
+
|
|
8040
8156
|
/**
|
|
8041
8157
|
* TypeScript types for the Walmart API.
|
|
8042
8158
|
*
|
|
@@ -13846,6 +13962,7 @@ declare class ReferenceClient$2 {
|
|
|
13846
13962
|
* ```
|
|
13847
13963
|
*/
|
|
13848
13964
|
declare class ZillowClient {
|
|
13965
|
+
private readonly _gen;
|
|
13849
13966
|
/** Client for property search and location autocomplete */
|
|
13850
13967
|
readonly search: SearchClient$1;
|
|
13851
13968
|
/** Client for full property detail */
|
|
@@ -13860,6 +13977,8 @@ declare class ZillowClient {
|
|
|
13860
13977
|
* @param client - The base HTTP client for making requests.
|
|
13861
13978
|
*/
|
|
13862
13979
|
constructor(client: BaseClient);
|
|
13980
|
+
/** Get property detail by URL. Generated from the OpenAPI spec; returns the raw response object. */
|
|
13981
|
+
getPropertyDetailByUrl(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
13863
13982
|
}
|
|
13864
13983
|
|
|
13865
13984
|
/**
|
|
@@ -14753,6 +14872,24 @@ declare class LoopNetClient {
|
|
|
14753
14872
|
constructor(client: BaseClient);
|
|
14754
14873
|
}
|
|
14755
14874
|
|
|
14875
|
+
/**
|
|
14876
|
+
* Perplexity API client. // --- generated by sdk/codegen/facade — do not edit ---
|
|
14877
|
+
*/
|
|
14878
|
+
|
|
14879
|
+
/** Client for all Perplexity API operations. (Generated from the OpenAPI spec.) */
|
|
14880
|
+
declare class PerplexityClient {
|
|
14881
|
+
private readonly client;
|
|
14882
|
+
constructor(client: BaseClient);
|
|
14883
|
+
/** Ask Perplexity a question. Generated from the OpenAPI spec; returns the raw response object. */
|
|
14884
|
+
askPerplexityAQuestion(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
14885
|
+
/** Ask Perplexity a question (POST). Generated from the OpenAPI spec; returns the raw response object. */
|
|
14886
|
+
askPerplexityAQuestionPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
14887
|
+
/** Measure a brand's visibility in a Perplexity answer. Generated from the OpenAPI spec; returns the raw response object. */
|
|
14888
|
+
measureABrandSVisibilityInAPerplexityAnswer(params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
14889
|
+
/** Measure a brand's visibility in a Perplexity answer (POST). Generated from the OpenAPI spec; returns the raw response object. */
|
|
14890
|
+
measureABrandSVisibilityInAPerplexityAnswerPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
14891
|
+
}
|
|
14892
|
+
|
|
14756
14893
|
/**
|
|
14757
14894
|
* TypeScript types for Depop API responses.
|
|
14758
14895
|
*
|
|
@@ -14928,6 +15065,7 @@ interface DepopUserProductsParams {
|
|
|
14928
15065
|
* ```
|
|
14929
15066
|
*/
|
|
14930
15067
|
declare class DepopClient {
|
|
15068
|
+
private readonly _gen;
|
|
14931
15069
|
private readonly client;
|
|
14932
15070
|
constructor(client: BaseClient);
|
|
14933
15071
|
/**
|
|
@@ -14984,6 +15122,8 @@ declare class DepopClient {
|
|
|
14984
15122
|
* @returns Markets response with all supported markets.
|
|
14985
15123
|
*/
|
|
14986
15124
|
listMarkets(): Promise<DepopMarketsResponse>;
|
|
15125
|
+
/** Get product detail. Generated from the OpenAPI spec; returns the raw response object. */
|
|
15126
|
+
getProductDetail(productId: string, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
14987
15127
|
}
|
|
14988
15128
|
|
|
14989
15129
|
/**
|
|
@@ -15767,6 +15907,7 @@ declare class ReferenceClient {
|
|
|
15767
15907
|
* ```
|
|
15768
15908
|
*/
|
|
15769
15909
|
declare class ChatGPTClient {
|
|
15910
|
+
private readonly _gen;
|
|
15770
15911
|
/** Client for asking ChatGPT a question */
|
|
15771
15912
|
readonly ask: AskClient$1;
|
|
15772
15913
|
/** Client for AEO/GEO brand-visibility analysis */
|
|
@@ -15779,6 +15920,10 @@ declare class ChatGPTClient {
|
|
|
15779
15920
|
* @param client - The base HTTP client for making requests.
|
|
15780
15921
|
*/
|
|
15781
15922
|
constructor(client: BaseClient);
|
|
15923
|
+
/** Ask ChatGPT a question (POST). Generated from the OpenAPI spec; returns the raw response object. */
|
|
15924
|
+
askChatgptAQuestionPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
15925
|
+
/** Measure a brand's visibility in a ChatGPT answer (POST). Generated from the OpenAPI spec; returns the raw response object. */
|
|
15926
|
+
measureABrandSVisibilityInAChatgptAnswerPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
15782
15927
|
}
|
|
15783
15928
|
|
|
15784
15929
|
/**
|
|
@@ -16094,6 +16239,7 @@ declare class BrandClient {
|
|
|
16094
16239
|
* ```
|
|
16095
16240
|
*/
|
|
16096
16241
|
declare class GeminiClient {
|
|
16242
|
+
private readonly _gen;
|
|
16097
16243
|
/** Client for asking Gemini a question */
|
|
16098
16244
|
readonly ask: AskClient;
|
|
16099
16245
|
/** Client for AEO/GEO brand-visibility analysis */
|
|
@@ -16104,6 +16250,10 @@ declare class GeminiClient {
|
|
|
16104
16250
|
* @param client - The base HTTP client for making requests.
|
|
16105
16251
|
*/
|
|
16106
16252
|
constructor(client: BaseClient);
|
|
16253
|
+
/** Ask Gemini a question (POST). Generated from the OpenAPI spec; returns the raw response object. */
|
|
16254
|
+
askGeminiAQuestionPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
16255
|
+
/** Measure a brand's visibility in a Gemini answer (POST). Generated from the OpenAPI spec; returns the raw response object. */
|
|
16256
|
+
measureABrandSVisibilityInAGeminiAnswerPost(body?: unknown, params?: Record<string, string | number | boolean | undefined>): Promise<Record<string, unknown>>;
|
|
16107
16257
|
}
|
|
16108
16258
|
|
|
16109
16259
|
/**
|
|
@@ -16154,6 +16304,8 @@ declare class ScrapeBadger {
|
|
|
16154
16304
|
readonly vinted: VintedClient;
|
|
16155
16305
|
/** Google Scraper API client — 19 Google product APIs */
|
|
16156
16306
|
readonly google: GoogleClient;
|
|
16307
|
+
/** Idealista API client. (Generated from the OpenAPI spec.) */
|
|
16308
|
+
readonly idealista: IdealistaClient;
|
|
16157
16309
|
/** Reddit scraper API client */
|
|
16158
16310
|
readonly reddit: RedditClient;
|
|
16159
16311
|
/** Apartments.com scraper API client — search + property with unit-level pricing (US) */
|
|
@@ -16163,6 +16315,8 @@ declare class ScrapeBadger {
|
|
|
16163
16315
|
/** Redfin scraper API client — search, property, agent, autocomplete, markets (redfin.com, US) */
|
|
16164
16316
|
readonly redfin: RedfinClient;
|
|
16165
16317
|
/** Amazon scraper API client — 14 endpoints */
|
|
16318
|
+
/** Account API client. (Generated from the OpenAPI spec.) */
|
|
16319
|
+
readonly account: AccountClient;
|
|
16166
16320
|
readonly amazon: AmazonClient;
|
|
16167
16321
|
/** Shopee scraper API client — 6 endpoints across 11 markets */
|
|
16168
16322
|
readonly shopee: ShopeeClient;
|
|
@@ -16170,6 +16324,8 @@ declare class ScrapeBadger {
|
|
|
16170
16324
|
readonly tiktok: TikTokClient;
|
|
16171
16325
|
/** eBay scraper API client — 12 endpoints across 18 markets */
|
|
16172
16326
|
readonly ebay: EbayClient;
|
|
16327
|
+
/** Facebook API client. (Generated from the OpenAPI spec.) */
|
|
16328
|
+
readonly facebook: FacebookClient;
|
|
16173
16329
|
/** Walmart scraper API client — 11 endpoints (walmart.com, US-only) */
|
|
16174
16330
|
readonly walmart: WalmartClient;
|
|
16175
16331
|
/** DuckDuckGo scraper API client — search, images, news, videos, autocomplete, instant, regions */
|
|
@@ -16194,6 +16350,8 @@ declare class ScrapeBadger {
|
|
|
16194
16350
|
readonly immobiliare: ImmobiliareClient;
|
|
16195
16351
|
/** LoopNet scraper API client — commercial real estate across US/CA/UK/FR/ES (search, listing, broker, markets, property types) */
|
|
16196
16352
|
readonly loopnet: LoopNetClient;
|
|
16353
|
+
/** Perplexity API client. (Generated from the OpenAPI spec.) */
|
|
16354
|
+
readonly perplexity: PerplexityClient;
|
|
16197
16355
|
/** Depop scraper API client — search, product, user, user products, markets (www.depop.com, 10 markets) */
|
|
16198
16356
|
readonly depop: DepopClient;
|
|
16199
16357
|
/** LinkedIn scraper API client — 11 no-auth endpoints (jobs, company, school, profile, post, article, learning, geo) */
|