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-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 +374 -3
- package/dist/index.d.ts +374 -3
- package/dist/index.js +783 -403
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +783 -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 +56 -0
- package/dist/twitter/index.js.map +1 -1
- package/dist/twitter/index.mjs +56 -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 };
|