firecrawl 1.9.4 → 1.9.5

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
@@ -230,6 +230,7 @@ interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
230
230
  schema?: LLMSchema;
231
231
  systemPrompt?: string;
232
232
  allowExternalLinks?: boolean;
233
+ includeSubdomains?: boolean;
233
234
  }
234
235
  /**
235
236
  * Response interface for extracting information from URLs.
package/dist/index.d.ts CHANGED
@@ -230,6 +230,7 @@ interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
230
230
  schema?: LLMSchema;
231
231
  systemPrompt?: string;
232
232
  allowExternalLinks?: boolean;
233
+ includeSubdomains?: boolean;
233
234
  }
234
235
  /**
235
236
  * Response interface for extracting information from URLs.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.9.4",
3
+ "version": "1.9.5",
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
@@ -247,6 +247,7 @@ export interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
247
247
  schema?: LLMSchema;
248
248
  systemPrompt?: string;
249
249
  allowExternalLinks?: boolean;
250
+ includeSubdomains?: boolean;
250
251
  }
251
252
 
252
253
  /**