You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CrawlersApi.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -505,7 +505,7 @@ Name | Type | Description | Notes
505
505
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**urls** | **List[str]** | URLs to crawl | [optional]
8
+
**urls** | **List[str]** | Optional URLs to crawl (overrides crawler's default URL configuration). If not provided, the crawler will use its configured URLs or perform a full crawl. | [optional]
Copy file name to clipboardExpand all lines: quantcdn/models/crawlers_run_request.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ class CrawlersRunRequest(BaseModel):
26
26
"""
27
27
CrawlersRunRequest
28
28
"""# noqa: E501
29
-
urls: Optional[List[StrictStr]] =Field(default=None, description="URLs to crawl")
29
+
urls: Optional[List[StrictStr]] =Field(default=None, description="Optional URLs to crawl (overrides crawler's default URL configuration). If not provided, the crawler will use its configured URLs or perform a full crawl.")
0 commit comments