Skip to content

Commit 18d45f0

Browse files
committed
Version bumps and adjustments
1 parent dfe5921 commit 18d45f0

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

components/firecrawl/actions/crawl-url/crawl-url.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "firecrawl-crawl-url",
66
name: "Crawl URL",
77
description: "Crawls a given URL and returns the contents of sub-pages. [See the documentation](https://docs.firecrawl.dev/api-reference/endpoint/crawl-post)",
8-
version: "0.0.1",
8+
version: "1.0.0",
99
type: "action",
1010
props: {
1111
firecrawl,
@@ -68,8 +68,7 @@ export default {
6868
firecrawl,
6969
"additionalOptions",
7070
],
71-
description:
72-
"Additional parameters to send in the request. [https://docs.firecrawl.dev/api-reference/endpoint/crawl-post) for available parameters. Values will be parsed as JSON where applicable.",
71+
description: "Additional parameters to send in the request. [https://docs.firecrawl.dev/api-reference/endpoint/crawl-post) for available parameters. Values will be parsed as JSON where applicable.",
7372
},
7473
},
7574
async run({ $ }) {

components/firecrawl/actions/get-crawl-status/get-crawl-status.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import firecrawl from "../../firecrawl.app.mjs";
22

33
export default {
44
key: "firecrawl-get-crawl-status",
5-
name: "Get Crawl Status",
5+
name: "Get Crawl Data",
66
description: "Obtains the status and data from a previous crawl operation. [See the documentation](https://docs.firecrawl.dev/api-reference/endpoint/crawl-get)",
77
version: "0.0.2",
88
type: "action",

components/firecrawl/actions/scrape-page/scrape-page.mjs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ export default {
2626
optional: true,
2727
},
2828
onlyMainContent: {
29-
propDefinition: [
30-
firecrawl,
31-
"onlyMainContent",
32-
],
29+
type: "boolean",
30+
label: "Only Main Content",
31+
description: "Only return the main content of the page, excluding headers, navs, footers, etc.",
32+
optional: true,
3333
},
3434
includeTags: {
3535
type: "string[]",
@@ -44,16 +44,16 @@ export default {
4444
optional: true,
4545
},
4646
headers: {
47-
propDefinition: [
48-
firecrawl,
49-
"headers",
50-
],
47+
type: "object",
48+
label: "Headers",
49+
description: "Headers to send with the request. Can be used to send cookies, user-agent, etc.",
50+
optional: true,
5151
},
5252
waitFor: {
53-
propDefinition: [
54-
firecrawl,
55-
"waitFor",
56-
],
53+
type: "integer",
54+
label: "Wait For",
55+
description: "Specify a delay in milliseconds before fetching the content, allowing the page sufficient time to load.",
56+
optional: true,
5757
},
5858
mobile: {
5959
type: "boolean",

components/firecrawl/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/firecrawl",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "Pipedream FireCrawl Components",
55
"main": "firecrawl.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)