firecrawl 1.5.1 → 1.5.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.cjs +1 -1
- package/dist/index.js +1 -1
- package/dump.rdb +0 -0
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -111,7 +111,7 @@ var FirecrawlApp = class {
|
|
|
111
111
|
* @returns Throws an error advising to use version 0 of the API.
|
|
112
112
|
*/
|
|
113
113
|
async search(query, params) {
|
|
114
|
-
throw new Error("Search is not supported in v1, please
|
|
114
|
+
throw new Error("Search is not supported in v1, please downgrade Firecrawl to 0.0.36.");
|
|
115
115
|
}
|
|
116
116
|
/**
|
|
117
117
|
* Initiates a crawl job for a URL using the Firecrawl API.
|
package/dist/index.js
CHANGED
|
@@ -76,7 +76,7 @@ var FirecrawlApp = class {
|
|
|
76
76
|
* @returns Throws an error advising to use version 0 of the API.
|
|
77
77
|
*/
|
|
78
78
|
async search(query, params) {
|
|
79
|
-
throw new Error("Search is not supported in v1, please
|
|
79
|
+
throw new Error("Search is not supported in v1, please downgrade Firecrawl to 0.0.36.");
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
82
82
|
* Initiates a crawl job for a URL using the Firecrawl API.
|
package/dump.rdb
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -289,7 +289,7 @@ export default class FirecrawlApp {
|
|
|
289
289
|
query: string,
|
|
290
290
|
params?: any
|
|
291
291
|
): Promise<any> {
|
|
292
|
-
throw new Error("Search is not supported in v1, please
|
|
292
|
+
throw new Error("Search is not supported in v1, please downgrade Firecrawl to 0.0.36.");
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
/**
|