@crawlee/core 3.16.1-beta.44 → 3.16.1-beta.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/core",
3
- "version": "3.16.1-beta.44",
3
+ "version": "3.16.1-beta.46",
4
4
  "description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
5
5
  "engines": {
6
6
  "node": ">=16.0.0"
@@ -59,9 +59,9 @@
59
59
  "@apify/pseudo_url": "^2.0.30",
60
60
  "@apify/timeout": "^0.3.0",
61
61
  "@apify/utilities": "^2.7.10",
62
- "@crawlee/memory-storage": "3.16.1-beta.44",
63
- "@crawlee/types": "3.16.1-beta.44",
64
- "@crawlee/utils": "3.16.1-beta.44",
62
+ "@crawlee/memory-storage": "3.16.1-beta.46",
63
+ "@crawlee/types": "3.16.1-beta.46",
64
+ "@crawlee/utils": "3.16.1-beta.46",
65
65
  "@sapphire/async-queue": "^1.5.1",
66
66
  "@vladfrangu/async_event_emitter": "^2.2.2",
67
67
  "csv-stringify": "^6.2.0",
@@ -83,5 +83,5 @@
83
83
  }
84
84
  }
85
85
  },
86
- "gitHead": "4604175f852c0bc6b320e12ccf9a60f13c554aeb"
86
+ "gitHead": "409ac13b725bbadd58b6d741306e6a1827eb5853"
87
87
  }
@@ -314,7 +314,7 @@ export declare class Dataset<Data extends Dictionary = Dictionary> {
314
314
  * If the dataset is empty, reduce will return undefined.
315
315
  *
316
316
  * @param iteratee
317
- * @param memo Unset parameter, neccesary to be able to pass options
317
+ * @param memo Unset parameter, necessary to be able to pass options
318
318
  * @param [options] An object containing extra options for `reduce()`
319
319
  */
320
320
  reduce(iteratee: DatasetReducer<Data, Data>, memo: undefined, options: DatasetIteratorOptions): Promise<Data | undefined>;