diff --git a/README.md b/README.md index 5102077a..8ff3e605 100644 --- a/README.md +++ b/README.md @@ -1570,7 +1570,7 @@ https://docs.apify.com/api/v2#/reference/actors/run-collection/get-list-of-runs | [options.limit] | number | | [options.offset] | number | | [options.desc] | boolean | -| [options.status] | boolean | +| [options.status] | string | * * * diff --git a/src/interceptors.ts b/src/interceptors.ts index 16d85c88..37c9168e 100644 --- a/src/interceptors.ts +++ b/src/interceptors.ts @@ -20,7 +20,7 @@ export class InvalidResponseBodyError extends Error { response: AxiosResponse; - override cause: Error; + declare cause: Error; constructor(response: AxiosResponse, cause: Error) { super(`Response body could not be parsed.\nCause:${cause.message}`);