firecrawl-sdk 1.16.0 → 1.17.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/client.rb +4 -0
- 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: d4692141ed256c6cf62171578f7bfdbb852ddb915a60b48ba520a73ecc8885b1
|
|
4
|
+
data.tar.gz: ff206e069d080e13598824ff3faa7eaf86b89b2cacbc051cd53aa861b20d1977
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83a86911be8bfd5b9736bbfbe610c40934b31a9e6da25de714972be4399c9374421955e2b0ef5e41b6a15c0829c3c3ff30dbc1004a75c9a6210182f0df620399
|
|
7
|
+
data.tar.gz: 9ca272944fc87bf14462b30e0f7f99239a1253ca11c88c1d7393469f52491362e0a72f7c5e354467e0f154c1e780aa08732e162fdc2345832ffe0d4779f98bc9
|
data/lib/firecrawl/client.rb
CHANGED
|
@@ -129,6 +129,10 @@ module Firecrawl
|
|
|
129
129
|
|
|
130
130
|
# Search GitHub research content.
|
|
131
131
|
#
|
|
132
|
+
# @deprecated Stops responding after 2026-11-03. Use the developer index at
|
|
133
|
+
# GET or POST /v2/search/developer, which this SDK does not wrap yet, so
|
|
134
|
+
# call it directly. It does not carry over the score breakdown or the
|
|
135
|
+
# web fallback results.
|
|
132
136
|
# @param query_text [String] GitHub query
|
|
133
137
|
# @param options [Hash] optional query parameters
|
|
134
138
|
# @return [Hash]
|
|
@@ -5,7 +5,7 @@ module Firecrawl
|
|
|
5
5
|
# Options for a web search request.
|
|
6
6
|
class SearchOptions
|
|
7
7
|
FIELDS = %i[
|
|
8
|
-
sources categories include_domains exclude_domains limit tbs location
|
|
8
|
+
sources categories include_domains exclude_domains limit tbs location country
|
|
9
9
|
ignore_invalid_urls timeout highlights scrape_options integration enterprise
|
|
10
10
|
].freeze
|
|
11
11
|
|
|
@@ -24,6 +24,7 @@ module Firecrawl
|
|
|
24
24
|
"limit" => limit,
|
|
25
25
|
"tbs" => tbs,
|
|
26
26
|
"location" => location,
|
|
27
|
+
"country" => country,
|
|
27
28
|
"ignoreInvalidURLs" => ignore_invalid_urls,
|
|
28
29
|
"timeout" => timeout,
|
|
29
30
|
"highlights" => highlights,
|
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.17.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-08
|
|
11
|
+
date: 2026-09-08 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.
|