@keystrokehq/scrapingant 0.1.0 → 0.1.3
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/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/extract-content-as-markdown.cjs +1 -1
- package/dist/actions/extract-content-as-markdown.cjs.map +1 -1
- package/dist/actions/extract-content-as-markdown.d.cts +34 -3
- package/dist/actions/extract-content-as-markdown.d.cts.map +1 -1
- package/dist/actions/extract-content-as-markdown.d.mts +34 -3
- package/dist/actions/extract-content-as-markdown.d.mts.map +1 -1
- package/dist/actions/extract-content-as-markdown.mjs +1 -1
- package/dist/actions/extract-content-as-markdown.mjs.map +1 -1
- package/dist/actions/extract-data-with-ai.cjs +1 -1
- package/dist/actions/extract-data-with-ai.cjs.map +1 -1
- package/dist/actions/extract-data-with-ai.d.cts +25 -3
- package/dist/actions/extract-data-with-ai.d.cts.map +1 -1
- package/dist/actions/extract-data-with-ai.d.mts +25 -3
- package/dist/actions/extract-data-with-ai.d.mts.map +1 -1
- package/dist/actions/extract-data-with-ai.mjs +1 -1
- package/dist/actions/extract-data-with-ai.mjs.map +1 -1
- package/dist/actions/get-api-credits-usage.cjs +6 -6
- package/dist/actions/get-api-credits-usage.cjs.map +1 -1
- package/dist/actions/get-api-credits-usage.d.cts +9 -3
- package/dist/actions/get-api-credits-usage.d.cts.map +1 -1
- package/dist/actions/get-api-credits-usage.d.mts +9 -3
- package/dist/actions/get-api-credits-usage.d.mts.map +1 -1
- package/dist/actions/get-api-credits-usage.mjs +6 -6
- package/dist/actions/get-api-credits-usage.mjs.map +1 -1
- package/dist/actions/scrape-web-page.cjs +1 -1
- package/dist/actions/scrape-web-page.cjs.map +1 -1
- package/dist/actions/scrape-web-page.d.cts +42 -3
- package/dist/actions/scrape-web-page.d.cts.map +1 -1
- package/dist/actions/scrape-web-page.d.mts +42 -3
- package/dist/actions/scrape-web-page.d.mts.map +1 -1
- package/dist/actions/scrape-web-page.mjs +1 -1
- package/dist/actions/scrape-web-page.mjs.map +1 -1
- package/dist/actions/scrape-webpage-post.cjs +1 -1
- package/dist/actions/scrape-webpage-post.cjs.map +1 -1
- package/dist/actions/scrape-webpage-post.d.cts +44 -3
- package/dist/actions/scrape-webpage-post.d.cts.map +1 -1
- package/dist/actions/scrape-webpage-post.d.mts +44 -3
- package/dist/actions/scrape-webpage-post.d.mts.map +1 -1
- package/dist/actions/scrape-webpage-post.mjs +1 -1
- package/dist/actions/scrape-webpage-post.mjs.map +1 -1
- package/dist/actions/scrape-webpage-put.cjs +1 -1
- package/dist/actions/scrape-webpage-put.cjs.map +1 -1
- package/dist/actions/scrape-webpage-put.d.cts +46 -3
- package/dist/actions/scrape-webpage-put.d.cts.map +1 -1
- package/dist/actions/scrape-webpage-put.d.mts +46 -3
- package/dist/actions/scrape-webpage-put.d.mts.map +1 -1
- package/dist/actions/scrape-webpage-put.mjs +1 -1
- package/dist/actions/scrape-webpage-put.mjs.map +1 -1
- package/dist/actions/scrape-with-extended-json-output.cjs +15 -15
- package/dist/actions/scrape-with-extended-json-output.cjs.map +1 -1
- package/dist/actions/scrape-with-extended-json-output.d.cts +45 -3
- package/dist/actions/scrape-with-extended-json-output.d.cts.map +1 -1
- package/dist/actions/scrape-with-extended-json-output.d.mts +45 -3
- package/dist/actions/scrape-with-extended-json-output.d.mts.map +1 -1
- package/dist/actions/scrape-with-extended-json-output.mjs +15 -15
- package/dist/actions/scrape-with-extended-json-output.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,9 +1,51 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/scrape-with-extended-json-output.d.ts
|
|
4
|
-
declare const ScrapingantScrapeWithExtendedJsonOutputInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const ScrapingantScrapeWithExtendedJsonOutputInput: z.ZodObject<{
|
|
5
|
+
url: z.ZodString;
|
|
6
|
+
browser: z.ZodOptional<z.ZodBoolean>;
|
|
7
|
+
cookies: z.ZodOptional<z.ZodString>;
|
|
8
|
+
timeout: z.ZodOptional<z.ZodNumber>;
|
|
9
|
+
proxy_type: z.ZodOptional<z.ZodString>;
|
|
10
|
+
proxy_country: z.ZodOptional<z.ZodString>;
|
|
11
|
+
wait_for_selector: z.ZodOptional<z.ZodString>;
|
|
12
|
+
return_page_source: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
declare const ScrapingantScrapeWithExtendedJsonOutputOutput: z.ZodObject<{
|
|
15
|
+
html: z.ZodNullable<z.ZodString>;
|
|
16
|
+
text: z.ZodNullable<z.ZodString>;
|
|
17
|
+
xhrs: z.ZodArray<z.ZodObject<{
|
|
18
|
+
url: z.ZodNullable<z.ZodString>;
|
|
19
|
+
body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
method: z.ZodNullable<z.ZodString>;
|
|
21
|
+
status: z.ZodNullable<z.ZodNumber>;
|
|
22
|
+
headers: z.ZodArray<z.ZodObject<{
|
|
23
|
+
name: z.ZodNullable<z.ZodString>;
|
|
24
|
+
value: z.ZodNullable<z.ZodString>;
|
|
25
|
+
}, z.core.$loose>>;
|
|
26
|
+
request_body: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
+
}, z.core.$loose>>;
|
|
28
|
+
cookies: z.ZodNullable<z.ZodString>;
|
|
29
|
+
headers: z.ZodArray<z.ZodObject<{
|
|
30
|
+
name: z.ZodNullable<z.ZodString>;
|
|
31
|
+
value: z.ZodNullable<z.ZodString>;
|
|
32
|
+
}, z.core.$loose>>;
|
|
33
|
+
iframes: z.ZodArray<z.ZodObject<{
|
|
34
|
+
src: z.ZodNullable<z.ZodString>;
|
|
35
|
+
html: z.ZodNullable<z.ZodString>;
|
|
36
|
+
}, z.core.$loose>>;
|
|
37
|
+
status_code: z.ZodNullable<z.ZodNumber>;
|
|
38
|
+
}, z.core.$loose>;
|
|
39
|
+
declare const scrapingantScrapeWithExtendedJsonOutput: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
40
|
+
url: string;
|
|
41
|
+
browser?: boolean | undefined;
|
|
42
|
+
cookies?: string | undefined;
|
|
43
|
+
timeout?: number | undefined;
|
|
44
|
+
proxy_type?: string | undefined;
|
|
45
|
+
proxy_country?: string | undefined;
|
|
46
|
+
wait_for_selector?: string | undefined;
|
|
47
|
+
return_page_source?: boolean | undefined;
|
|
48
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
49
|
//#endregion
|
|
8
50
|
export { scrapingantScrapeWithExtendedJsonOutput };
|
|
9
51
|
//# sourceMappingURL=scrape-with-extended-json-output.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scrape-with-extended-json-output.d.mts","names":[],"sources":["../../src/actions/scrape-with-extended-json-output.ts"],"mappings":";;;cAIa,4CAAA,
|
|
1
|
+
{"version":3,"file":"scrape-with-extended-json-output.d.mts","names":[],"sources":["../../src/actions/scrape-with-extended-json-output.ts"],"mappings":";;;cAIa,4CAAA,EAA4C,CAAA,CAAA,SAAA;;;;;;;;;;cA0B5C,6CAAA,EAA6C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cAU7C,uCAAA,gCAAuC,wBAAA"}
|
|
@@ -12,35 +12,35 @@ const ScrapingantScrapeWithExtendedJsonOutputInput = z.object({
|
|
|
12
12
|
return_page_source: z.boolean().describe("When True, returns the raw HTML from the server without JavaScript rendering. Useful for faster scraping when JS execution is not needed.").optional()
|
|
13
13
|
});
|
|
14
14
|
const ScrapingantScrapeWithExtendedJsonOutput_HeaderItemSchema = z.object({
|
|
15
|
-
name: z.string(),
|
|
16
|
-
value: z.string()
|
|
17
|
-
});
|
|
15
|
+
name: z.string().nullable(),
|
|
16
|
+
value: z.string().nullable()
|
|
17
|
+
}).passthrough();
|
|
18
18
|
const ScrapingantScrapeWithExtendedJsonOutput_XhrItemSchema = z.object({
|
|
19
|
-
url: z.string(),
|
|
19
|
+
url: z.string().nullable(),
|
|
20
20
|
body: z.string().nullable().optional(),
|
|
21
|
-
method: z.string(),
|
|
22
|
-
status: z.number().int(),
|
|
21
|
+
method: z.string().nullable(),
|
|
22
|
+
status: z.number().int().nullable(),
|
|
23
23
|
headers: z.array(ScrapingantScrapeWithExtendedJsonOutput_HeaderItemSchema),
|
|
24
24
|
request_body: z.string().nullable().optional()
|
|
25
|
-
});
|
|
25
|
+
}).passthrough();
|
|
26
26
|
const ScrapingantScrapeWithExtendedJsonOutput_IframeItemSchema = z.object({
|
|
27
|
-
src: z.string(),
|
|
28
|
-
html: z.string()
|
|
29
|
-
});
|
|
27
|
+
src: z.string().nullable(),
|
|
28
|
+
html: z.string().nullable()
|
|
29
|
+
}).passthrough();
|
|
30
30
|
const scrapingantScrapeWithExtendedJsonOutput = action("SCRAPINGANT_SCRAPE_WITH_EXTENDED_JSON_OUTPUT", {
|
|
31
31
|
slug: "scrapingant-scrape-with-extended-json-output",
|
|
32
32
|
name: "Scrape with Extended JSON Output",
|
|
33
33
|
description: "Scrapes a web page and returns comprehensive data including HTML content, plain text, cookies, HTTP headers, XHR/Fetch requests, and iframe content. This tool uses ScrapingAnt's extended endpoint which provides much richer data than standard scraping: - Full HTML and extracted plain text content - All cookies and HTTP response headers from the target page - Captured XHR/Fetch API requests made by the page (useful for finding hidden APIs) - Content from embedded iframes Best used when you need more than just the HTML - such as analyzing cookies, headers, or JavaScript API calls made by a page. For simple HTML scraping, consider using the basic scrape tool instead for lower API credit usage.",
|
|
34
34
|
input: ScrapingantScrapeWithExtendedJsonOutputInput,
|
|
35
35
|
output: z.object({
|
|
36
|
-
html: z.string().describe("The full HTML content of the scraped web page, including all rendered content."),
|
|
37
|
-
text: z.string().describe("Plain text content extracted from the web page with HTML tags stripped."),
|
|
36
|
+
html: z.string().describe("The full HTML content of the scraped web page, including all rendered content.").nullable(),
|
|
37
|
+
text: z.string().describe("Plain text content extracted from the web page with HTML tags stripped.").nullable(),
|
|
38
38
|
xhrs: z.array(ScrapingantScrapeWithExtendedJsonOutput_XhrItemSchema).describe("XHR and Fetch requests made by the web page during rendering (only available when browser=True). Useful for capturing API calls made by JavaScript."),
|
|
39
|
-
cookies: z.string().describe("Cookies set by the target web page during the request (format: 'name=value; name2=value2')."),
|
|
39
|
+
cookies: z.string().describe("Cookies set by the target web page during the request (format: 'name=value; name2=value2').").nullable(),
|
|
40
40
|
headers: z.array(ScrapingantScrapeWithExtendedJsonOutput_HeaderItemSchema).describe("HTTP response headers from the target web page as name-value pairs."),
|
|
41
41
|
iframes: z.array(ScrapingantScrapeWithExtendedJsonOutput_IframeItemSchema).describe("Content of iframes embedded in the web page (only available when browser=True)."),
|
|
42
|
-
status_code: z.number().int().describe("The HTTP status code returned by the target web page (e.g., 200 for success, 404 for not found).")
|
|
43
|
-
})
|
|
42
|
+
status_code: z.number().int().describe("The HTTP status code returned by the target web page (e.g., 200 for success, 404 for not found).").nullable()
|
|
43
|
+
}).passthrough()
|
|
44
44
|
});
|
|
45
45
|
//#endregion
|
|
46
46
|
export { scrapingantScrapeWithExtendedJsonOutput };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scrape-with-extended-json-output.mjs","names":[],"sources":["../../src/actions/scrape-with-extended-json-output.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ScrapingantScrapeWithExtendedJsonOutputInput
|
|
1
|
+
{"version":3,"file":"scrape-with-extended-json-output.mjs","names":[],"sources":["../../src/actions/scrape-with-extended-json-output.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ScrapingantScrapeWithExtendedJsonOutputInput = z.object({\n url: z.string().describe(\"The full URL of the web page to scrape (must include protocol, e.g., https://).\"),\n browser: z.boolean().describe(\"Enable or disable headless browser rendering. When True (default), JavaScript is executed and dynamic content is loaded. Set to False for faster scraping of static pages.\").optional(),\n cookies: z.string().describe(\"Custom cookies to send with the request. Format: 'name1=value1; name2=value2'.\").optional(),\n timeout: z.number().int().describe(\"Maximum time in seconds to wait for the page to load. Must be between 5 and 60. Default is 60 seconds.\").optional(),\n proxy_type: z.string().describe(\"Type of proxy to use: 'datacenter' (faster, cheaper) or 'residential' (better for anti-bot sites). Default is 'datacenter'.\").optional(),\n proxy_country: z.string().describe(\"Two-letter country code (ISO 3166-1 alpha-2) for geographic proxy location (e.g., 'US', 'GB', 'DE').\").optional(),\n wait_for_selector: z.string().describe(\"CSS selector to wait for before returning the page content. Useful for pages with dynamic content that loads after initial page load.\").optional(),\n return_page_source: z.boolean().describe(\"When True, returns the raw HTML from the server without JavaScript rendering. Useful for faster scraping when JS execution is not needed.\").optional(),\n});\nconst ScrapingantScrapeWithExtendedJsonOutput_HeaderItemSchema = z.object({\n name: z.string().nullable(),\n value: z.string().nullable(),\n}).passthrough();\nconst ScrapingantScrapeWithExtendedJsonOutput_XhrItemSchema = z.object({\n url: z.string().nullable(),\n body: z.string().nullable().optional(),\n method: z.string().nullable(),\n status: z.number().int().nullable(),\n headers: z.array(ScrapingantScrapeWithExtendedJsonOutput_HeaderItemSchema),\n request_body: z.string().nullable().optional(),\n}).passthrough();\nconst ScrapingantScrapeWithExtendedJsonOutput_IframeItemSchema = z.object({\n src: z.string().nullable(),\n html: z.string().nullable(),\n}).passthrough();\nexport const ScrapingantScrapeWithExtendedJsonOutputOutput = z.object({\n html: z.string().describe(\"The full HTML content of the scraped web page, including all rendered content.\").nullable(),\n text: z.string().describe(\"Plain text content extracted from the web page with HTML tags stripped.\").nullable(),\n xhrs: z.array(ScrapingantScrapeWithExtendedJsonOutput_XhrItemSchema).describe(\"XHR and Fetch requests made by the web page during rendering (only available when browser=True). Useful for capturing API calls made by JavaScript.\"),\n cookies: z.string().describe(\"Cookies set by the target web page during the request (format: 'name=value; name2=value2').\").nullable(),\n headers: z.array(ScrapingantScrapeWithExtendedJsonOutput_HeaderItemSchema).describe(\"HTTP response headers from the target web page as name-value pairs.\"),\n iframes: z.array(ScrapingantScrapeWithExtendedJsonOutput_IframeItemSchema).describe(\"Content of iframes embedded in the web page (only available when browser=True).\"),\n status_code: z.number().int().describe(\"The HTTP status code returned by the target web page (e.g., 200 for success, 404 for not found).\").nullable(),\n}).passthrough();\n\nexport const scrapingantScrapeWithExtendedJsonOutput = action(\"SCRAPINGANT_SCRAPE_WITH_EXTENDED_JSON_OUTPUT\", {\n slug: \"scrapingant-scrape-with-extended-json-output\",\n name: \"Scrape with Extended JSON Output\",\n description: \"Scrapes a web page and returns comprehensive data including HTML content, plain text, cookies, HTTP headers, XHR/Fetch requests, and iframe content. This tool uses ScrapingAnt's extended endpoint which provides much richer data than standard scraping: - Full HTML and extracted plain text content - All cookies and HTTP response headers from the target page - Captured XHR/Fetch API requests made by the page (useful for finding hidden APIs) - Content from embedded iframes Best used when you need more than just the HTML - such as analyzing cookies, headers, or JavaScript API calls made by a page. For simple HTML scraping, consider using the basic scrape tool instead for lower API credit usage.\",\n input: ScrapingantScrapeWithExtendedJsonOutputInput,\n output: ScrapingantScrapeWithExtendedJsonOutputOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+CAA+C,EAAE,OAAO;CACnE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF;CAC1G,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,4KAA4K,CAAC,CAAC,SAAS;CACrN,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CACxH,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS;CACtJ,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;CACxK,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CACpJ,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,SAAS;CACzL,oBAAoB,EAAE,QAAQ,CAAC,CAAC,SAAS,2IAA2I,CAAC,CAAC,SAAS;AACjM,CAAC;AACD,MAAM,2DAA2D,EAAE,OAAO;CACxE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS;CAC1B,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS;AAC7B,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,wDAAwD,EAAE,OAAO;CACrE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS;CACzB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrC,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS;CAC5B,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS;CAClC,SAAS,EAAE,MAAM,wDAAwD;CACzE,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/C,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,2DAA2D,EAAE,OAAO;CACxE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS;CACzB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS;AAC5B,CAAC,CAAC,CAAC,YAAY;AAWf,MAAa,0CAA0C,OAAO,gDAAgD;CAC5G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAf2D,EAAE,OAAO;EACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;EACrH,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yEAAyE,CAAC,CAAC,SAAS;EAC9G,MAAM,EAAE,MAAM,qDAAqD,CAAC,CAAC,SAAS,qJAAqJ;EACnO,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6FAA6F,CAAC,CAAC,SAAS;EACrI,SAAS,EAAE,MAAM,wDAAwD,CAAC,CAAC,SAAS,qEAAqE;EACzJ,SAAS,EAAE,MAAM,wDAAwD,CAAC,CAAC,SAAS,iFAAiF;EACrK,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kGAAkG,CAAC,CAAC,SAAS;CACtJ,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const scrapingantCatalog = {
|
|
|
7
7
|
"category": "AI Web Scraping",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/scrapingant",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "ScrapingAnt API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your ScrapingAnt API key, obtainable from your user dashboard."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.scrapingantCatalog = scrapingantCatalog;
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const scrapingantCatalog = {\n \"slug\": \"scrapingant\",\n \"name\": \"Scrapingant\",\n \"description\": \"ScrapingAnt is a web scraping API service that enables data extraction from websites through headless Chrome browsers, rotating proxies, CAPTCHA/Cloudflare bypass, LLM-ready markdown output, and AI-powered structured data extraction.\",\n \"category\": \"AI Web Scraping\",\n \"logo\": \"https://logos.composio.dev/api/scrapingant\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const scrapingantCatalog = {\n \"slug\": \"scrapingant\",\n \"name\": \"Scrapingant\",\n \"description\": \"ScrapingAnt is a web scraping API service that enables data extraction from websites through headless Chrome browsers, rotating proxies, CAPTCHA/Cloudflare bypass, LLM-ready markdown output, and AI-powered structured data extraction.\",\n \"category\": \"AI Web Scraping\",\n \"logo\": \"https://logos.composio.dev/api/scrapingant\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"ScrapingAnt API Key\",\n \"secret\": true,\n \"description\": \"Your ScrapingAnt API key, obtainable from your user dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,14 @@ declare const scrapingantCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/scrapingant";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "ScrapingAnt API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your ScrapingAnt API key, obtainable from your user dashboard.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { scrapingantCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const scrapingantCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/scrapingant";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "ScrapingAnt API Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "Your ScrapingAnt API key, obtainable from your user dashboard.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { scrapingantCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const scrapingantCatalog = {
|
|
|
7
7
|
"category": "AI Web Scraping",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/scrapingant",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "ScrapingAnt API Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "Your ScrapingAnt API key, obtainable from your user dashboard."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { scrapingantCatalog };
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const scrapingantCatalog = {\n \"slug\": \"scrapingant\",\n \"name\": \"Scrapingant\",\n \"description\": \"ScrapingAnt is a web scraping API service that enables data extraction from websites through headless Chrome browsers, rotating proxies, CAPTCHA/Cloudflare bypass, LLM-ready markdown output, and AI-powered structured data extraction.\",\n \"category\": \"AI Web Scraping\",\n \"logo\": \"https://logos.composio.dev/api/scrapingant\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const scrapingantCatalog = {\n \"slug\": \"scrapingant\",\n \"name\": \"Scrapingant\",\n \"description\": \"ScrapingAnt is a web scraping API service that enables data extraction from websites through headless Chrome browsers, rotating proxies, CAPTCHA/Cloudflare bypass, LLM-ready markdown output, and AI-powered structured data extraction.\",\n \"category\": \"AI Web Scraping\",\n \"logo\": \"https://logos.composio.dev/api/scrapingant\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"ScrapingAnt API Key\",\n \"secret\": true,\n \"description\": \"Your ScrapingAnt API key, obtainable from your user dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/scrapingant",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|