@mendable/firecrawl-js 1.15.0 → 1.15.1

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
@@ -119,7 +119,7 @@ interface ScrapeParams<LLMSchema extends zt.ZodSchema = any, ActionsSchema exten
119
119
  schema?: LLMSchema;
120
120
  systemPrompt?: string;
121
121
  };
122
- json?: {
122
+ jsonOptions?: {
123
123
  prompt?: string;
124
124
  schema?: LLMSchema;
125
125
  systemPrompt?: string;
package/dist/index.d.ts CHANGED
@@ -119,7 +119,7 @@ interface ScrapeParams<LLMSchema extends zt.ZodSchema = any, ActionsSchema exten
119
119
  schema?: LLMSchema;
120
120
  systemPrompt?: string;
121
121
  };
122
- json?: {
122
+ jsonOptions?: {
123
123
  prompt?: string;
124
124
  schema?: LLMSchema;
125
125
  systemPrompt?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mendable/firecrawl-js",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
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
@@ -127,7 +127,7 @@ export interface ScrapeParams<LLMSchema extends zt.ZodSchema = any, ActionsSchem
127
127
  schema?: LLMSchema;
128
128
  systemPrompt?: string;
129
129
  };
130
- json?:{
130
+ jsonOptions?:{
131
131
  prompt?: string;
132
132
  schema?: LLMSchema;
133
133
  systemPrompt?: string;