firecrawl 1.9.6 → 1.9.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
@@ -226,7 +226,7 @@ interface MapResponse {
226
226
  * Defines options for extracting information from URLs.
227
227
  */
228
228
  interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
229
- prompt: string;
229
+ prompt?: string;
230
230
  schema?: LLMSchema;
231
231
  systemPrompt?: string;
232
232
  allowExternalLinks?: boolean;
package/dist/index.d.ts CHANGED
@@ -226,7 +226,7 @@ interface MapResponse {
226
226
  * Defines options for extracting information from URLs.
227
227
  */
228
228
  interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
229
- prompt: string;
229
+ prompt?: string;
230
230
  schema?: LLMSchema;
231
231
  systemPrompt?: string;
232
232
  allowExternalLinks?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.9.6",
3
+ "version": "1.9.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
@@ -243,7 +243,7 @@ export interface MapResponse {
243
243
  * Defines options for extracting information from URLs.
244
244
  */
245
245
  export interface ExtractParams<LLMSchema extends zt.ZodSchema = any> {
246
- prompt: string;
246
+ prompt?: string;
247
247
  schema?: LLMSchema;
248
248
  systemPrompt?: string;
249
249
  allowExternalLinks?: boolean;