Skip to content

Commit 4d8125e

Browse files
authored
fix: actorPermissionLevel was missing in ActorCollectionCreateOptions (#940)
The field is missing in type, but is supported in the API.
1 parent f1f4d8d commit 4d8125e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/resource_clients/actor_collection.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import ow from 'ow';
22

3+
import type { ACTOR_PERMISSION_LEVEL } from '@apify/consts';
4+
35
import type { ApiClientSubResourceOptions } from '../base/api_client';
46
import { ResourceCollectionClient } from '../base/resource_collection_client';
57
import type { PaginatedIterator, PaginatedList, PaginationOptions } from '../utils';
@@ -127,4 +129,5 @@ export interface ActorCollectionCreateOptions {
127129
actorStandby?: ActorStandby & {
128130
isEnabled: boolean;
129131
};
132+
actorPermissionLevel?: ACTOR_PERMISSION_LEVEL;
130133
}

0 commit comments

Comments
 (0)