firecrawl-sdk 1.5.0 → 1.6.0
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.
- checksums.yaml +4 -4
- data/lib/firecrawl/models/monitor.rb +13 -0
- data/lib/firecrawl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59aa1dc0e0c084f3d22bde746233487c5e177fb5a97205e7592293ea09693186
|
|
4
|
+
data.tar.gz: 23d5dc83ba44948071cec72436f7884d89a26e3dfeb6d78146b5629a926cafab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48b0949050c3d64916e08f581bb0ab7ca8221ac73c90eda84d746908806c0efadb5aacbf6dc558a6a81c03a7ef3a4aa3389557b1728d57cf38a107e1bccdec56
|
|
7
|
+
data.tar.gz: af9ed88ed1aa79d2ec2615417ca4ac0428bf28d7607d260514d2ba94f8cb2ea9b8f2e0b3ab5d4628edddfbea73094b99fb7cc7ac8fca4e3be89f384b59439405
|
|
@@ -55,6 +55,19 @@ module Firecrawl
|
|
|
55
55
|
end
|
|
56
56
|
end
|
|
57
57
|
|
|
58
|
+
# A monitor check with paginated page results inlined.
|
|
59
|
+
#
|
|
60
|
+
# Each entry in {#pages} is a {Hash} with the standard monitor page
|
|
61
|
+
# fields (id, targetId, url, status, previousScrapeId,
|
|
62
|
+
# currentScrapeId, statusCode, error, metadata, createdAt) plus:
|
|
63
|
+
#
|
|
64
|
+
# * +"diff"+ – when the page changed. A hash with +"text"+ (markdown
|
|
65
|
+
# unified diff) and/or +"json"+ (parseDiff AST for markdown
|
|
66
|
+
# monitors, or a per-field +{ "previous", "current" }+ map for
|
|
67
|
+
# JSON-extraction monitors).
|
|
68
|
+
# * +"snapshot"+ – present on JSON / mixed-mode monitors. A hash
|
|
69
|
+
# with a +"json"+ key holding the current JSON extraction at this
|
|
70
|
+
# run.
|
|
58
71
|
class MonitorCheckDetail < MonitorCheck
|
|
59
72
|
attr_accessor :pages, :next_url
|
|
60
73
|
|
data/lib/firecrawl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: firecrawl-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Firecrawl
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A type-safe Ruby client for the Firecrawl v2 API. Supports scraping,
|
|
14
14
|
crawling, batch scraping, URL mapping, web search, and AI agent operations.
|