Skip to content

Commit 513e41c

Browse files
authored
feat: expose actorPermissionLevel in Actor client (#809)
Exposes the `actorPermissionLevel` in Actor client to be align it with the API since the feature is publicly released already.
1 parent afd30c1 commit 513e41c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/resource_clients/actor.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,8 @@ export interface Actor {
489489
actorStandby?: ActorStandby & {
490490
isEnabled: boolean;
491491
};
492+
/** Permission level of the Actor on Apify platform */
493+
actorPermissionLevel: ACTOR_PERMISSION_LEVEL;
492494
}
493495

494496
/**
@@ -563,6 +565,7 @@ export type ActorUpdateOptions = Partial<
563565
| 'categories'
564566
| 'defaultRunOptions'
565567
| 'actorStandby'
568+
| 'actorPermissionLevel'
566569
>
567570
>;
568571

0 commit comments

Comments
 (0)