firecrawl 1.5.0 → 1.5.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
@@ -88,10 +88,10 @@ type Action = {
88
88
  type: "screenshot";
89
89
  fullPage?: boolean;
90
90
  } | {
91
- type: "typeText";
91
+ type: "write";
92
92
  text: string;
93
93
  } | {
94
- type: "pressKey";
94
+ type: "press";
95
95
  key: string;
96
96
  } | {
97
97
  type: "scroll";
package/dist/index.d.ts CHANGED
@@ -88,10 +88,10 @@ type Action = {
88
88
  type: "screenshot";
89
89
  fullPage?: boolean;
90
90
  } | {
91
- type: "typeText";
91
+ type: "write";
92
92
  text: string;
93
93
  } | {
94
- type: "pressKey";
94
+ type: "press";
95
95
  key: string;
96
96
  } | {
97
97
  type: "scroll";
package/dump.rdb CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl",
3
- "version": "1.5.0",
3
+ "version": "1.5.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
@@ -94,10 +94,10 @@ export type Action = {
94
94
  type: "screenshot",
95
95
  fullPage?: boolean,
96
96
  } | {
97
- type: "typeText",
97
+ type: "write",
98
98
  text: string,
99
99
  } | {
100
- type: "pressKey",
100
+ type: "press",
101
101
  key: string,
102
102
  } | {
103
103
  type: "scroll",