Description
CrawlersApi.crawlersList() has its return type typed as AxiosPromise<void> but it actually returns data (an array of crawlers).
// api.ts line 23255
crawlersList(organization: string, project: string, options?: RawAxiosRequestConfig): AxiosPromise<void>
This forces consumers to cast response.data as any to use the actual response.
Expected
The method should return a properly typed response (e.g. AxiosPromise<CrawlersListResponse> or similar) matching the actual API response shape.
Version
v4.12.0