diff --git a/pyproject.toml b/pyproject.toml index 5a25d73a..36332152 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -258,7 +258,7 @@ keep_model_order = true # workflow committing nothing unless the models changed. A local regeneration that only moves this line is that # same case - drop it rather than committing it alone. [tool.apify.openapi-spec] -version = "v2-2026-08-24T085852Z" +version = "v2-2026-08-27T071624Z" [tool.uv] # Minimal defense against supply-chain atatcks. diff --git a/src/apify_client/_literals.py b/src/apify_client/_literals.py index d85ae033..676ef340 100644 --- a/src/apify_client/_literals.py +++ b/src/apify_client/_literals.py @@ -99,6 +99,7 @@ 'cannot-override-paid-actor-trial', 'cannot-permanently-delete-subscription', 'cannot-publish-actor', + 'cannot-publish-actor-task', 'cannot-reduce-last-full-token', 'cannot-reimburse-more-than-original-charge', 'cannot-reimburse-non-rental-charge', diff --git a/src/apify_client/_models.py b/src/apify_client/_models.py index f585509b..3f98579f 100644 --- a/src/apify_client/_models.py +++ b/src/apify_client/_models.py @@ -295,6 +295,7 @@ class ActorNotice(Enum): NONE = 'NONE' RESIDENTIAL_PROXY_REQUIRED = 'RESIDENTIAL_PROXY_REQUIRED' UNDER_MAINTENANCE = 'UNDER_MAINTENANCE' + NONE_TYPE_NONE = None @docs_group('Models') @@ -3437,7 +3438,7 @@ class StoreListActor(BaseModel): description: Annotated[str | None, Field(examples=['My public actor!'])] = None categories: Annotated[list[str] | None, Field(examples=[['MARKETING', 'LEAD_GENERATION']])] = None notice: ActorNotice | None = None - picture_url: Annotated[AnyUrl | None, Field(examples=['https://...'])] = None + picture_url: Annotated[str | None, Field(examples=['https://...'])] = None user_picture_url: Annotated[AnyUrl | None, Field(examples=['https://...'])] = None url: Annotated[AnyUrl | None, Field(examples=['https://...'])] = None stats: ActorStats