firecrawl-sdk 1.10.0 → 1.11.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/agent_options.rb +2 -1
- data/lib/firecrawl/models/map_options.rb +2 -1
- data/lib/firecrawl/models/parse_options.rb +2 -1
- data/lib/firecrawl/models/scrape_options.rb +2 -1
- data/lib/firecrawl/models/search_options.rb +2 -1
- 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: 641011f5718ad4fecf09861e420a819375e7c64749e4e9e917df7e8074ac40d9
|
|
4
|
+
data.tar.gz: 83a88e47d5d6ee4fc9fc58ff6c13aa4f5d9bcee2617301d5b32f0a794b831616
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77b5914d46ba55d1648118c6f2a3bf0a172e53fe674ef670cc3dd58de128b4766b43b7f420c7998b721d1b2fda156d938c9514758bdc34a2c2e9175a094b8ec7
|
|
7
|
+
data.tar.gz: e3bf73d11c0be846bede682d52da8c5349b436e9654f9c921b29dc010f291d21662e16187a4d7845f934bc5818ca4d357824e39ff08b3e1f93b5b44fd5d81b10
|
|
@@ -6,7 +6,7 @@ module Firecrawl
|
|
|
6
6
|
class AgentOptions
|
|
7
7
|
FIELDS = %i[
|
|
8
8
|
urls prompt schema integration max_credits
|
|
9
|
-
strict_constrain_to_urls model webhook
|
|
9
|
+
strict_constrain_to_urls model webhook audit_metadata
|
|
10
10
|
].freeze
|
|
11
11
|
|
|
12
12
|
attr_reader(*FIELDS)
|
|
@@ -26,6 +26,7 @@ module Firecrawl
|
|
|
26
26
|
"strictConstrainToURLs" => strict_constrain_to_urls,
|
|
27
27
|
"model" => model,
|
|
28
28
|
"webhook" => webhook.is_a?(Hash) ? webhook : webhook&.to_h,
|
|
29
|
+
"auditMetadata" => audit_metadata,
|
|
29
30
|
}.compact
|
|
30
31
|
end
|
|
31
32
|
end
|
|
@@ -6,7 +6,7 @@ module Firecrawl
|
|
|
6
6
|
class MapOptions
|
|
7
7
|
FIELDS = %i[
|
|
8
8
|
search sitemap include_subdomains ignore_query_parameters
|
|
9
|
-
limit timeout integration location
|
|
9
|
+
limit timeout integration location audit_metadata
|
|
10
10
|
].freeze
|
|
11
11
|
|
|
12
12
|
attr_reader(*FIELDS)
|
|
@@ -25,6 +25,7 @@ module Firecrawl
|
|
|
25
25
|
"timeout" => timeout,
|
|
26
26
|
"integration" => integration,
|
|
27
27
|
"location" => location.is_a?(Hash) ? location : location&.to_h,
|
|
28
|
+
"auditMetadata" => audit_metadata,
|
|
28
29
|
}.compact
|
|
29
30
|
end
|
|
30
31
|
end
|
|
@@ -13,7 +13,7 @@ module Firecrawl
|
|
|
13
13
|
FIELDS = %i[
|
|
14
14
|
formats headers include_tags exclude_tags only_main_content
|
|
15
15
|
timeout parsers skip_tls_verification remove_base64_images
|
|
16
|
-
block_ads proxy integration redact_pii json_options
|
|
16
|
+
block_ads proxy integration redact_pii json_options audit_metadata
|
|
17
17
|
].freeze
|
|
18
18
|
|
|
19
19
|
attr_reader(*FIELDS)
|
|
@@ -40,6 +40,7 @@ module Firecrawl
|
|
|
40
40
|
"integration" => integration,
|
|
41
41
|
"redactPII" => redact_pii,
|
|
42
42
|
"jsonOptions" => json_options.is_a?(Hash) ? json_options : json_options&.to_h,
|
|
43
|
+
"auditMetadata" => audit_metadata,
|
|
43
44
|
}.compact
|
|
44
45
|
end
|
|
45
46
|
|
|
@@ -8,7 +8,7 @@ module Firecrawl
|
|
|
8
8
|
formats headers include_tags exclude_tags only_main_content
|
|
9
9
|
timeout wait_for mobile parsers actions location
|
|
10
10
|
skip_tls_verification remove_base64_images block_ads proxy
|
|
11
|
-
max_age store_in_cache lockdown redact_pii integration
|
|
11
|
+
max_age store_in_cache lockdown redact_pii integration audit_metadata
|
|
12
12
|
].freeze
|
|
13
13
|
|
|
14
14
|
attr_reader(*FIELDS)
|
|
@@ -40,6 +40,7 @@ module Firecrawl
|
|
|
40
40
|
"lockdown" => lockdown,
|
|
41
41
|
"redactPII" => redact_pii,
|
|
42
42
|
"integration" => integration,
|
|
43
|
+
"auditMetadata" => audit_metadata,
|
|
43
44
|
}.compact
|
|
44
45
|
end
|
|
45
46
|
|
|
@@ -6,7 +6,7 @@ module Firecrawl
|
|
|
6
6
|
class SearchOptions
|
|
7
7
|
FIELDS = %i[
|
|
8
8
|
sources categories include_domains exclude_domains limit tbs location
|
|
9
|
-
ignore_invalid_urls timeout scrape_options integration enterprise
|
|
9
|
+
ignore_invalid_urls timeout highlights scrape_options integration enterprise
|
|
10
10
|
].freeze
|
|
11
11
|
|
|
12
12
|
attr_reader(*FIELDS)
|
|
@@ -26,6 +26,7 @@ module Firecrawl
|
|
|
26
26
|
"location" => location,
|
|
27
27
|
"ignoreInvalidURLs" => ignore_invalid_urls,
|
|
28
28
|
"timeout" => timeout,
|
|
29
|
+
"highlights" => highlights,
|
|
29
30
|
"scrapeOptions" => scrape_options&.to_h,
|
|
30
31
|
"integration" => integration,
|
|
31
32
|
# Enterprise search options. Use ["zdr"] for end-to-end Zero Data
|
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.11.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-
|
|
11
|
+
date: 2026-07-27 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.
|