-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.ts
More file actions
47 lines (44 loc) · 1011 Bytes
/
index.ts
File metadata and controls
47 lines (44 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
console.warn(
"[scrapegraph-js] WARNING: This version (1.x) is deprecated and will no longer receive updates. " +
"Please upgrade to scrapegraph-js v2 for the latest features, bug fixes, and API v2 support. " +
"See the migration guide: https://docs.scrapegraphai.com/transition-from-v1-to-v2",
);
export {
smartScraper,
searchScraper,
markdownify,
scrape,
crawl,
agenticScraper,
generateSchema,
sitemap,
getCredits,
checkHealth,
history,
} from "./scrapegraphai.js";
export type {
AgenticScraperParams,
AgenticScraperResponse,
ApiResult,
CrawlParams,
CrawlPage,
CrawlResponse,
CreditsResponse,
GenerateSchemaParams,
GenerateSchemaResponse,
HealthResponse,
HistoryEntry,
HistoryParams,
HistoryResponse,
MarkdownifyParams,
MarkdownifyResponse,
ScrapeParams,
ScrapeResponse,
SearchScraperParams,
SearchScraperResponse,
SitemapParams,
SitemapResponse,
SmartScraperParams,
SmartScraperResponse,
} from "./types/index.js";
export { HISTORY_SERVICES } from "./types/index.js";