32992834ee
- Xiaohongshu search via local MCP service (opt-in, zero impact if service not running) - Reddit public JSON fallback (works with zero API keys) - Reddit priority: ScrapeCreators -> OpenAI -> public fallback - Updated env.py: Reddit always available via public fallback Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
838 B
TypeScript
11 lines
838 B
TypeScript
import type { AbstractConstructor, Mixin, TwitterClientBase } from './twitter-client-base.js';
|
|
import type { TimelineFetchOptions, TimelinePaginationOptions } from './twitter-client-timelines.js';
|
|
import type { ListsResult, SearchResult } from './twitter-client-types.js';
|
|
export interface TwitterClientListMethods {
|
|
getOwnedLists(count?: number): Promise<ListsResult>;
|
|
getListMemberships(count?: number): Promise<ListsResult>;
|
|
getListTimeline(listId: string, count?: number, options?: TimelineFetchOptions): Promise<SearchResult>;
|
|
getAllListTimeline(listId: string, options?: TimelinePaginationOptions): Promise<SearchResult>;
|
|
}
|
|
export declare function withLists<TBase extends AbstractConstructor<TwitterClientBase>>(Base: TBase): Mixin<TBase, TwitterClientListMethods>;
|
|
//# sourceMappingURL=twitter-client-lists.d.ts.map
|