firecrawl 2.4.0__tar.gz → 2.4.1__tar.gz
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.
Potentially problematic release.
This version of firecrawl might be problematic. Click here for more details.
- {firecrawl-2.4.0 → firecrawl-2.4.1}/PKG-INFO +1 -1
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl/__init__.py +1 -1
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl/firecrawl.py +4 -3
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl.egg-info/PKG-INFO +1 -1
- {firecrawl-2.4.0 → firecrawl-2.4.1}/LICENSE +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/README.md +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl/__tests__/e2e_withAuth/__init__.py +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl/__tests__/e2e_withAuth/test.py +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl/__tests__/v1/e2e_withAuth/__init__.py +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl/__tests__/v1/e2e_withAuth/test.py +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl.egg-info/SOURCES.txt +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl.egg-info/dependency_links.txt +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl.egg-info/requires.txt +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/firecrawl.egg-info/top_level.txt +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/pyproject.toml +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/setup.cfg +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/setup.py +0 -0
- {firecrawl-2.4.0 → firecrawl-2.4.1}/tests/test_change_tracking.py +0 -0
|
@@ -210,6 +210,7 @@ class ScrapeParams(ScrapeOptions):
|
|
|
210
210
|
jsonOptions: Optional[JsonConfig] = None
|
|
211
211
|
actions: Optional[List[Union[WaitAction, ScreenshotAction, ClickAction, WriteAction, PressAction, ScrollAction, ScrapeAction, ExecuteJavascriptAction]]] = None
|
|
212
212
|
agent: Optional[AgentOptions] = None
|
|
213
|
+
webhook: Optional[WebhookConfig] = None
|
|
213
214
|
|
|
214
215
|
class ScrapeResponse(FirecrawlDocument[T], Generic[T]):
|
|
215
216
|
"""Response from scraping operations."""
|
|
@@ -2432,15 +2433,15 @@ class FirecrawlApp:
|
|
|
2432
2433
|
"batch_scrape_urls": {"formats", "headers", "include_tags", "exclude_tags", "only_main_content",
|
|
2433
2434
|
"wait_for", "timeout", "location", "mobile", "skip_tls_verification",
|
|
2434
2435
|
"remove_base64_images", "block_ads", "proxy", "extract", "json_options",
|
|
2435
|
-
"actions", "agent"},
|
|
2436
|
+
"actions", "agent", "webhook"},
|
|
2436
2437
|
"async_batch_scrape_urls": {"formats", "headers", "include_tags", "exclude_tags", "only_main_content",
|
|
2437
2438
|
"wait_for", "timeout", "location", "mobile", "skip_tls_verification",
|
|
2438
2439
|
"remove_base64_images", "block_ads", "proxy", "extract", "json_options",
|
|
2439
|
-
"actions", "agent"},
|
|
2440
|
+
"actions", "agent", "webhook"},
|
|
2440
2441
|
"batch_scrape_urls_and_watch": {"formats", "headers", "include_tags", "exclude_tags", "only_main_content",
|
|
2441
2442
|
"wait_for", "timeout", "location", "mobile", "skip_tls_verification",
|
|
2442
2443
|
"remove_base64_images", "block_ads", "proxy", "extract", "json_options",
|
|
2443
|
-
"actions", "agent"}
|
|
2444
|
+
"actions", "agent", "webhook"}
|
|
2444
2445
|
}
|
|
2445
2446
|
|
|
2446
2447
|
# Get allowed parameters for this method
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|