@mendable/firecrawl-js 1.15.6 → 1.15.7

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.d.cts CHANGED
@@ -238,6 +238,7 @@ interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
238
238
  schema?: LLMSchema | object;
239
239
  systemPrompt?: string;
240
240
  allowExternalLinks?: boolean;
241
+ enableWebSearch?: boolean;
241
242
  includeSubdomains?: boolean;
242
243
  origin?: string;
243
244
  }
package/dist/index.d.ts CHANGED
@@ -238,6 +238,7 @@ interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
238
238
  schema?: LLMSchema | object;
239
239
  systemPrompt?: string;
240
240
  allowExternalLinks?: boolean;
241
+ enableWebSearch?: boolean;
241
242
  includeSubdomains?: boolean;
242
243
  origin?: string;
243
244
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mendable/firecrawl-js",
3
- "version": "1.15.6",
3
+ "version": "1.15.7",
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
@@ -256,6 +256,7 @@ export interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
256
256
  schema?: LLMSchema | object;
257
257
  systemPrompt?: string;
258
258
  allowExternalLinks?: boolean;
259
+ enableWebSearch?: boolean;
259
260
  includeSubdomains?: boolean;
260
261
  origin?: string;
261
262
  }