@mendable/firecrawl-js 1.15.1 → 1.15.2

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
@@ -61,6 +61,7 @@ interface FirecrawlDocument<T = any, ActionsSchema extends (ActionsResult | neve
61
61
  rawHtml?: string;
62
62
  links?: string[];
63
63
  extract?: T;
64
+ json?: T;
64
65
  screenshot?: string;
65
66
  metadata?: FirecrawlDocumentMetadata;
66
67
  actions: ActionsSchema;
package/dist/index.d.ts CHANGED
@@ -61,6 +61,7 @@ interface FirecrawlDocument<T = any, ActionsSchema extends (ActionsResult | neve
61
61
  rawHtml?: string;
62
62
  links?: string[];
63
63
  extract?: T;
64
+ json?: T;
64
65
  screenshot?: string;
65
66
  metadata?: FirecrawlDocumentMetadata;
66
67
  actions: ActionsSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mendable/firecrawl-js",
3
- "version": "1.15.1",
3
+ "version": "1.15.2",
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
@@ -65,6 +65,7 @@ export interface FirecrawlDocument<T = any, ActionsSchema extends (ActionsResult
65
65
  rawHtml?: string;
66
66
  links?: string[];
67
67
  extract?: T;
68
+ json?: T;
68
69
  screenshot?: string;
69
70
  metadata?: FirecrawlDocumentMetadata;
70
71
  actions: ActionsSchema;