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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc48fdfecc01e4811b2634c740ffab0787e03f99001a401014a3e98b0e63f627
4
- data.tar.gz: ad7b3330c7e5f0934c58747ad2748b737783b90d4ccbf732d6f60924543bf45d
3
+ metadata.gz: 641011f5718ad4fecf09861e420a819375e7c64749e4e9e917df7e8074ac40d9
4
+ data.tar.gz: 83a88e47d5d6ee4fc9fc58ff6c13aa4f5d9bcee2617301d5b32f0a794b831616
5
5
  SHA512:
6
- metadata.gz: 75d9dde872641f95f313555ee32c842295c1a4afd150e1158b256821cf5a61f21078c80003b96ef86bce189c8909de1053bbad00a53907b5c191368b1af94444
7
- data.tar.gz: 87b0802113b459ead84ea99a1b3a3aa989c26bf1c55b98dd567e7a2e669a38f52a9205a0924b5c1824e8078f61ab472d2f12a471dabfd7a86b445892914c061e
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Firecrawl
4
- VERSION = "1.10.0"
4
+ VERSION = "1.11.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.10.0
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-06-30 00:00:00.000000000 Z
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.