Andrei
Andrei
I can confirm that changing `declare module '../../context'` to `declare module 'hono'` solved the issue. Will create a PR now.
Seems to be working, thanks!
Just encountered this issue myself. Any ETA on fix?
@nickscamara @mogery hi! Any updates on the related PR's #611 and #614? Looking forward to get going on this one.
@mogery hi again! I ended up cooking up something big, starting with the `CrawlWatcher`: - Added ESLint with basic rules and Prettier with the default config - Restructured the code...
> Will talk with Nick today on whether we need to retain v0 tests for FirecrawlApp or if only v1 tests need to be ported. Please do:) Let me know...
> We've already done a major bump on `js-sdk` to `1.x.x` for v1. Got it. Does this mean that `0.x` version of the SDK is for v0 API and `1.x`...
@mogery hi! Sorry for a delayed response, was doing some travels. So since both v0 and v1 support is needed, the optimal solution would be to have 2 separate classes...
> `uhdici.request` is faster than `fetch`, would it make sense to use `undici`? Haven't heard about it being faster than fetch. I guess that depends on the runtime you're running...
Another thing to consider: dropping `axios` dependency cause it's huge-[13,7kb](https://bundlephobia.com/package/[email protected]) Instead use global fetch if it's available, if not `require` the isomorphic fetch or something like that. Similar to how...