Matt Stephens
Matt Stephens
closes #1485 Adds `requestHandlerTimeoutSecs` and `requestTimeoutSecs` options to a request to allow for request-specific timeouts. If these optional parameters aren't provided in `RequestOptions`, the crawler will fallback to the timeouts...
relates to #1528
closes #1523 Allows the entirety of the dataset's contents to be saved to a key-value store under a custom key, and with a custom `contentType`.
Currently, the type definition for `TaskFunction` looks like this: ```ts type TaskFunction = (...args: any[]) => Awaitable; ``` Though this works, it is problematic because only certain basic data types...
Currently, the following code is in the runner for services: ```TypeScript // ! temp - enable catching errors in the __initializeService // ! hook. This is only temporary because the...
We've got commented out a type named `Acceptable`, which encompasses all values that can be send via `parentPort.postMessage` and `worker.postMessage` without hitting a runtime error. Instead of `any`, this type...
This is the PR for the `v0.4.7` branch where all latest code changes to appear in the next version should be based off of.
When initializing a service, it would maybe be nice to be able to provide initialization arguments like this: ```TypeScript api.launchService({ args: { foo: 'bar' } }); ``` Then, these arguments...
There are some typos, misspellings, and strange sentences in the docs. Mostly the result of writing them while sleepy. These should be patched up.