firecrawl 1.25.3 → 1.25.4

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.
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: "1.25.3",
38
+ version: "1.25.4",
39
39
  description: "JavaScript SDK for Firecrawl API",
40
40
  main: "dist/index.js",
41
41
  types: "dist/index.d.ts",
package/dist/index.d.cts CHANGED
@@ -159,6 +159,7 @@ interface ScrapeParams<LLMSchema extends zt.ZodSchema = any, ActionsSchema exten
159
159
  prompt?: string;
160
160
  schema?: any;
161
161
  modes?: ("json" | "git-diff")[];
162
+ tag?: string | null;
162
163
  };
163
164
  actions?: ActionsSchema;
164
165
  agent?: AgentOptions;
package/dist/index.d.ts CHANGED
@@ -159,6 +159,7 @@ interface ScrapeParams<LLMSchema extends zt.ZodSchema = any, ActionsSchema exten
159
159
  prompt?: string;
160
160
  schema?: any;
161
161
  modes?: ("json" | "git-diff")[];
162
+ tag?: string | null;
162
163
  };
163
164
  actions?: ActionsSchema;
164
165
  agent?: AgentOptions;
package/dist/index.js CHANGED
@@ -29,7 +29,7 @@ var FirecrawlApp = class {
29
29
  }
30
30
  async getVersion() {
31
31
  try {
32
- const packageJson = await import("./package-Y5V6L2WQ.js");
32
+ const packageJson = await import("./package-SG22PRGT.js");
33
33
  return packageJson.default.version;
34
34
  } catch (error) {
35
35
  console.error("Error getting version:", error);
@@ -1,6 +1,6 @@
1
1
  // package.json
2
2
  var name = "@mendable/firecrawl-js";
3
- var version = "1.25.3";
3
+ var version = "1.25.4";
4
4
  var description = "JavaScript SDK for Firecrawl API";
5
5
  var main = "dist/index.js";
6
6
  var types = "dist/index.d.ts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.25.3",
3
+ "version": "1.25.4",
4
4
  "description": "JavaScript SDK for Firecrawl API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -166,6 +166,7 @@ export interface ScrapeParams<LLMSchema extends zt.ZodSchema = any, ActionsSchem
166
166
  prompt?: string;
167
167
  schema?: any;
168
168
  modes?: ("json" | "git-diff")[];
169
+ tag?: string | null;
169
170
  }
170
171
  actions?: ActionsSchema;
171
172
  agent?: AgentOptions;