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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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
|
|
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
|
|
229
|
+
prompt?: string;
|
|
230
230
|
schema?: LLMSchema;
|
|
231
231
|
systemPrompt?: string;
|
|
232
232
|
allowExternalLinks?: boolean;
|
package/package.json
CHANGED
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
|
|
246
|
+
prompt?: string;
|
|
247
247
|
schema?: LLMSchema;
|
|
248
248
|
systemPrompt?: string;
|
|
249
249
|
allowExternalLinks?: boolean;
|