Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions src/apify_client/_literals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion src/apify_client/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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
Expand Down
Loading