diff --git a/src/apify_client/_literals.py b/src/apify_client/_literals.py index 28462a67..438c9247 100644 --- a/src/apify_client/_literals.py +++ b/src/apify_client/_literals.py @@ -149,6 +149,7 @@ 'expired-conference-token', 'failed-to-charge-user', 'final-invoice-negative', + 'full-permission-actor-not-approved', 'github-branch-empty', 'github-issue-already-exists', 'github-public-key-not-found', @@ -320,6 +321,7 @@ 'requested-dataset-view-does-not-exist', 'resume-token-expired', 'run-failed', + 'run-input-body-not-valid-json', 'run-timeout-exceeded', 'russia-is-evil', 'same-user', diff --git a/src/apify_client/_models.py b/src/apify_client/_models.py index a8a29fa5..2300a1bf 100644 --- a/src/apify_client/_models.py +++ b/src/apify_client/_models.py @@ -3033,27 +3033,6 @@ class TestWebhookResponse(BaseModel): data: WebhookDispatch -@docs_group('Models') -class UnknownBuildTagError(BaseModel): - model_config = ConfigDict( - extra='allow', - populate_by_name=True, - ) - error: UnknownBuildTagErrorDetail | None = None - - -@docs_group('Models') -class UnknownBuildTagErrorDetail(ErrorDetail): - model_config = ConfigDict( - extra='allow', - populate_by_name=True, - ) - type: Annotated[Literal['unknown-build-tag'], Field(title='ErrorType')] = 'unknown-build-tag' - """ - Machine-processable error type identifier. - """ - - @docs_group('Models') class UnlockRequestsResponse(BaseModel): """Response containing the result of unlocking requests."""