firecrawl-cli 1.18.1 → 1.18.4
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/README.md +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -553,6 +553,13 @@ firecrawl monitor create --name "Product pages" \
|
|
|
553
553
|
--schedule "every 30 minutes" \
|
|
554
554
|
--scrape-urls https://example.com/pricing,https://example.com/docs,https://example.com/changelog
|
|
555
555
|
|
|
556
|
+
firecrawl monitor create --name "Docs webhook" \
|
|
557
|
+
--goal "Notify me when docs content changes" \
|
|
558
|
+
--schedule "every 30 minutes" \
|
|
559
|
+
--page https://example.com/docs \
|
|
560
|
+
--webhook-url https://example.com/webhook \
|
|
561
|
+
--webhook-events monitor.page,monitor.check.completed
|
|
562
|
+
|
|
556
563
|
firecrawl monitor list --limit 20
|
|
557
564
|
firecrawl monitor run <monitorId>
|
|
558
565
|
firecrawl monitor checks <monitorId>
|
package/package.json
CHANGED