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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 364810a7f7627c43f70a5d9f008f3a3fc0bcfb2f655a780190d93f8b577de1bf
4
- data.tar.gz: 8191bc44441edd5d9abe7671cfc9851388058be954684cc92ddf0e37cf7e3669
3
+ metadata.gz: 59aa1dc0e0c084f3d22bde746233487c5e177fb5a97205e7592293ea09693186
4
+ data.tar.gz: 23d5dc83ba44948071cec72436f7884d89a26e3dfeb6d78146b5629a926cafab
5
5
  SHA512:
6
- metadata.gz: 83d1e41c97ec1abb35b8d14cb0d7003b1a8a3aadbd99ff0526c088e52b75405a80b7dda5b6cb8e6e7ea9edcaa1e519d13e8b5884dcd04880cdb24b4f7a7346d6
7
- data.tar.gz: 057e47a4e06af5dc218413fd574aa7b6f22a09e3ec3878efe2d3cc4d6ef0dbdbd6b2db28ab11b48fbb7385d7b6b76d58f452b04c0698468e3597c5e08af50c58
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Firecrawl
4
- VERSION = "1.5.0"
4
+ VERSION = "1.6.0"
5
5
  end
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.5.0
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-12 00:00:00.000000000 Z
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.