diff --git a/src/resource_clients/actor.ts b/src/resource_clients/actor.ts index bd6d46c8..c73b1086 100644 --- a/src/resource_clients/actor.ts +++ b/src/resource_clients/actor.ts @@ -489,6 +489,8 @@ export interface Actor { actorStandby?: ActorStandby & { isEnabled: boolean; }; + /** Permission level of the Actor on Apify platform */ + actorPermissionLevel: ACTOR_PERMISSION_LEVEL; } /** @@ -563,6 +565,7 @@ export type ActorUpdateOptions = Partial< | 'categories' | 'defaultRunOptions' | 'actorStandby' + | 'actorPermissionLevel' > >;