From a8458768eb4eb4482d4efc99a27d41d4544cbb46 Mon Sep 17 00:00:00 2001 From: apify-service-account Date: Mon, 13 Apr 2026 12:21:48 +0000 Subject: [PATCH 1/2] [TODO]: update generated models from apify-docs PR #2423 --- src/apify_client/_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apify_client/_models.py b/src/apify_client/_models.py index 69d88036..b51ec856 100644 --- a/src/apify_client/_models.py +++ b/src/apify_client/_models.py @@ -2308,7 +2308,7 @@ class RequestUserData(BaseModel): """ Optional label for categorizing the request. """ - image: Annotated[AnyUrl | None, Field(examples=['https://picserver1.eu'])] = None + image: Annotated[str | None, Field(examples=['https://picserver1.eu'])] = None """ Optional image URL associated with the request. """ @@ -2335,7 +2335,7 @@ class RequestBase(BaseModel): """ The number of times this request has been retried. """ - loaded_url: Annotated[AnyUrl | None, Field(alias='loadedUrl', examples=['https://apify.com/jobs'])] = None + loaded_url: Annotated[str | None, Field(alias='loadedUrl', examples=['https://apify.com/jobs'])] = None """ The final URL that was loaded, after redirects (if any). """ From b16d35e08aa288f620a7bd3dab042e457ba84dc8 Mon Sep 17 00:00:00 2001 From: apify-service-account Date: Mon, 13 Apr 2026 14:41:07 +0000 Subject: [PATCH 2/2] [TODO]: update generated models from apify-docs PR #2423 --- src/apify_client/_models.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/apify_client/_models.py b/src/apify_client/_models.py index b51ec856..5ba924ea 100644 --- a/src/apify_client/_models.py +++ b/src/apify_client/_models.py @@ -2304,14 +2304,6 @@ class RequestUserData(BaseModel): extra='allow', populate_by_name=True, ) - label: Annotated[str | None, Field(examples=['DETAIL'])] = None - """ - Optional label for categorizing the request. - """ - image: Annotated[str | None, Field(examples=['https://picserver1.eu'])] = None - """ - Optional image URL associated with the request. - """ @docs_group('Models')