@mendable/firecrawl-js 4.20.1 → 4.21.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.
@@ -8,7 +8,7 @@ var require_package = __commonJS({
8
8
  "package.json"(exports, module) {
9
9
  module.exports = {
10
10
  name: "@mendable/firecrawl-js",
11
- version: "4.20.1",
11
+ version: "4.21.0",
12
12
  description: "JavaScript SDK for Firecrawl API",
13
13
  main: "dist/index.js",
14
14
  types: "dist/index.d.ts",
package/dist/index.cjs CHANGED
@@ -35,7 +35,7 @@ var require_package = __commonJS({
35
35
  "package.json"(exports2, module2) {
36
36
  module2.exports = {
37
37
  name: "@mendable/firecrawl-js",
38
- version: "4.20.1",
38
+ version: "4.21.0",
39
39
  description: "JavaScript SDK for Firecrawl API",
40
40
  main: "dist/index.js",
41
41
  types: "dist/index.d.ts",
@@ -625,11 +625,17 @@ function prepareSearchPayload(req) {
625
625
  throw new Error("limit must be positive");
626
626
  if (req.timeout != null && req.timeout <= 0)
627
627
  throw new Error("timeout must be positive");
628
+ if (req.includeDomains?.length && req.excludeDomains?.length)
629
+ throw new Error(
630
+ "includeDomains and excludeDomains cannot both be specified"
631
+ );
628
632
  const payload = {
629
633
  query: req.query
630
634
  };
631
635
  if (req.sources) payload.sources = req.sources;
632
636
  if (req.categories) payload.categories = req.categories;
637
+ if (req.includeDomains) payload.includeDomains = req.includeDomains;
638
+ if (req.excludeDomains) payload.excludeDomains = req.excludeDomains;
633
639
  if (req.limit != null) payload.limit = req.limit;
634
640
  if (req.tbs != null) payload.tbs = req.tbs;
635
641
  if (req.location != null) payload.location = req.location;
package/dist/index.d.cts CHANGED
@@ -395,6 +395,8 @@ interface SearchRequest {
395
395
  type: 'web' | 'news' | 'images';
396
396
  }>;
397
397
  categories?: Array<'github' | 'research' | 'pdf' | CategoryOption>;
398
+ includeDomains?: string[];
399
+ excludeDomains?: string[];
398
400
  limit?: number;
399
401
  tbs?: string;
400
402
  location?: string;
package/dist/index.d.ts CHANGED
@@ -395,6 +395,8 @@ interface SearchRequest {
395
395
  type: 'web' | 'news' | 'images';
396
396
  }>;
397
397
  categories?: Array<'github' | 'research' | 'pdf' | CategoryOption>;
398
+ includeDomains?: string[];
399
+ excludeDomains?: string[];
398
400
  limit?: number;
399
401
  tbs?: string;
400
402
  location?: string;
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_package
3
- } from "./chunk-OVLAEYRZ.js";
3
+ } from "./chunk-R625SBJY.js";
4
4
 
5
5
  // src/v2/utils/httpClient.ts
6
6
  import axios from "axios";
@@ -501,11 +501,17 @@ function prepareSearchPayload(req) {
501
501
  throw new Error("limit must be positive");
502
502
  if (req.timeout != null && req.timeout <= 0)
503
503
  throw new Error("timeout must be positive");
504
+ if (req.includeDomains?.length && req.excludeDomains?.length)
505
+ throw new Error(
506
+ "includeDomains and excludeDomains cannot both be specified"
507
+ );
504
508
  const payload = {
505
509
  query: req.query
506
510
  };
507
511
  if (req.sources) payload.sources = req.sources;
508
512
  if (req.categories) payload.categories = req.categories;
513
+ if (req.includeDomains) payload.includeDomains = req.includeDomains;
514
+ if (req.excludeDomains) payload.excludeDomains = req.excludeDomains;
509
515
  if (req.limit != null) payload.limit = req.limit;
510
516
  if (req.tbs != null) payload.tbs = req.tbs;
511
517
  if (req.location != null) payload.location = req.location;
@@ -1803,7 +1809,7 @@ var FirecrawlApp = class {
1803
1809
  if (typeof process !== "undefined" && process.env && process.env.npm_package_version) {
1804
1810
  return process.env.npm_package_version;
1805
1811
  }
1806
- const packageJson = await import("./package-4Q7WA3UI.js");
1812
+ const packageJson = await import("./package-MRLSD24T.js");
1807
1813
  return packageJson.default.version;
1808
1814
  } catch (error) {
1809
1815
  const isTest = typeof process !== "undefined" && (process.env.JEST_WORKER_ID != null || false);
@@ -1,4 +1,4 @@
1
1
  import {
2
2
  require_package
3
- } from "./chunk-OVLAEYRZ.js";
3
+ } from "./chunk-R625SBJY.js";
4
4
  export default require_package();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mendable/firecrawl-js",
3
- "version": "4.20.1",
3
+ "version": "4.21.0",
4
4
  "description": "JavaScript SDK for Firecrawl API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,11 +20,17 @@ function prepareSearchPayload(req: SearchRequest): Record<string, unknown> {
20
20
  throw new Error("limit must be positive");
21
21
  if (req.timeout != null && req.timeout <= 0)
22
22
  throw new Error("timeout must be positive");
23
+ if (req.includeDomains?.length && req.excludeDomains?.length)
24
+ throw new Error(
25
+ "includeDomains and excludeDomains cannot both be specified",
26
+ );
23
27
  const payload: Record<string, unknown> = {
24
28
  query: req.query,
25
29
  };
26
30
  if (req.sources) payload.sources = req.sources;
27
31
  if (req.categories) payload.categories = req.categories;
32
+ if (req.includeDomains) payload.includeDomains = req.includeDomains;
33
+ if (req.excludeDomains) payload.excludeDomains = req.excludeDomains;
28
34
  if (req.limit != null) payload.limit = req.limit;
29
35
  if (req.tbs != null) payload.tbs = req.tbs;
30
36
  if (req.location != null) payload.location = req.location;
package/src/v2/types.ts CHANGED
@@ -508,6 +508,8 @@ export interface SearchRequest {
508
508
  'web' | 'news' | 'images' | { type: 'web' | 'news' | 'images' }
509
509
  >;
510
510
  categories?: Array<'github' | 'research' | 'pdf' | CategoryOption>;
511
+ includeDomains?: string[];
512
+ excludeDomains?: string[];
511
513
  limit?: number;
512
514
  tbs?: string;
513
515
  location?: string;