We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfaa66a commit 861c9e7Copy full SHA for 861c9e7
2 files changed
packages/sdks/js-ts/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "deepcrawl",
3
- "version": "0.2.1",
+ "version": "0.2.2",
4
"description": "JavaScript/TypeScript SDK for DeepCrawl API - A powerful web scraping and crawling service",
5
"main": "./dist/index.js",
6
"module": "./dist/index.mjs",
packages/sdks/js-ts/src/deepcrawl.ts
@@ -277,6 +277,11 @@ export class DeepcrawlApp {
277
...extractedHeaders,
278
};
279
},
280
+ /**
281
+ * @note
282
+ * SDK clients CANNOT pass custom AbortSignals over HTTP (impossible to serialize)
283
+ * Our timeout protection works regardless of client behavior
284
+ */
285
fetch: async (request, init) =>
286
fetchImpl(request, {
287
...init,
0 commit comments