@apteva/integrations 0.3.42 → 0.3.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apteva/integrations",
3
- "version": "0.3.42",
3
+ "version": "0.3.43",
4
4
  "description": "Local integrations, connections, and webhooks for Apteva. Self-contained app templates, OAuth engine, and trigger provider.",
5
5
  "author": "Apteva <hello@apteva.com>",
6
6
  "license": "Elastic-2.0",
@@ -531,6 +531,76 @@
531
531
  },
532
532
  "required": ["id"]
533
533
  }
534
+ },
535
+ {
536
+ "name": "crawl_errors",
537
+ "description": "Retrieve per-page errors for a crawl job. Use after crawl_status reports failures or when total > completed, to see exactly which URLs failed and why.",
538
+ "method": "GET",
539
+ "path": "/crawl/{id}/errors",
540
+ "input_schema": {
541
+ "type": "object",
542
+ "properties": {
543
+ "id": {
544
+ "type": "string",
545
+ "description": "The crawl job id returned by firecrawl_crawl"
546
+ }
547
+ },
548
+ "required": ["id"]
549
+ }
550
+ },
551
+ {
552
+ "name": "batch_scrape_errors",
553
+ "description": "Retrieve per-URL errors for a batch scrape job. Use after batch_scrape_status reports failures.",
554
+ "method": "GET",
555
+ "path": "/batch/scrape/{id}/errors",
556
+ "input_schema": {
557
+ "type": "object",
558
+ "properties": {
559
+ "id": {
560
+ "type": "string",
561
+ "description": "The batch scrape job id returned by firecrawl_batch_scrape"
562
+ }
563
+ },
564
+ "required": ["id"]
565
+ }
566
+ },
567
+ {
568
+ "name": "crawl_active",
569
+ "description": "List all crawl jobs currently running for this account. No arguments. Useful for monitoring without needing to track job ids yourself.",
570
+ "method": "GET",
571
+ "path": "/crawl/active",
572
+ "input_schema": {
573
+ "type": "object",
574
+ "properties": {}
575
+ }
576
+ },
577
+ {
578
+ "name": "crawl_params_preview",
579
+ "description": "Preview what a crawl request would do — Firecrawl resolves the prompt/include/exclude/sitemap config into the actual normalized parameters and an estimated page count without spending credits. Use before launching expensive crawls.",
580
+ "method": "POST",
581
+ "path": "/crawl/params-preview",
582
+ "input_schema": {
583
+ "type": "object",
584
+ "properties": {
585
+ "url": {
586
+ "type": "string",
587
+ "description": "The starting URL to crawl"
588
+ },
589
+ "prompt": {
590
+ "type": "string",
591
+ "description": "Natural-language description of what to crawl"
592
+ },
593
+ "limit": { "type": "integer" },
594
+ "maxDiscoveryDepth": { "type": "integer" },
595
+ "includePaths": { "type": "array", "items": { "type": "string" } },
596
+ "excludePaths": { "type": "array", "items": { "type": "string" } },
597
+ "sitemap": { "type": "string", "enum": ["skip", "include", "only"] },
598
+ "crawlEntireDomain": { "type": "boolean" },
599
+ "allowSubdomains": { "type": "boolean" },
600
+ "allowExternalLinks": { "type": "boolean" }
601
+ },
602
+ "required": ["url"]
603
+ }
534
604
  }
535
605
  ]
536
606
  }