Skip to content

Commit 9d54ee1

Browse files
committed
fix: change typings for RunCollection
1 parent aaefb62 commit 9d54ee1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/resource_clients/run_collection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ACT_JOB_STATUSES } from '@apify/consts';
22
import ow from 'ow';
3-
import { ApiClientSubResourceOptions } from '../base/api_client';
3+
import { ApiClientOptionsWithOptionalResourcePath } from '../base/api_client';
44
import { ResourceCollectionClient } from '../base/resource_collection_client';
55
import { PaginatedList } from '../utils';
66
import { ActorRunListItem } from './actor';
@@ -9,7 +9,7 @@ export class RunCollectionClient extends ResourceCollectionClient {
99
/**
1010
* @hidden
1111
*/
12-
constructor(options: ApiClientSubResourceOptions) {
12+
constructor(options: ApiClientOptionsWithOptionalResourcePath) {
1313
super({
1414
resourcePath: 'runs',
1515
...options,

0 commit comments

Comments
 (0)