Skip to content

Commit 03c666a

Browse files
committed
Fix
1 parent dfeb550 commit 03c666a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/apify_client/_models.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# generated by datamodel-codegen:
22
# filename: openapi.json
3-
# timestamp: 2025-12-26T10:41:32+00:00
3+
# timestamp: 2025-12-28T20:02:06+00:00
44

55
from __future__ import annotations
66

77
from enum import Enum, IntEnum
88
from typing import Annotated, Any, Literal
99

10-
from pydantic import AwareDatetime, BaseModel, Field
10+
from pydantic import AwareDatetime, BaseModel, ConfigDict, Field
1111

1212

1313
class PaginationResponse(BaseModel):
@@ -1623,6 +1623,9 @@ class BatchOperationResponse(BaseModel):
16231623

16241624

16251625
class UserData(BaseModel):
1626+
model_config = ConfigDict(
1627+
extra='allow',
1628+
)
16261629
label: Annotated[str | None, Field(examples=['DETAIL'])] = None
16271630
image: Annotated[str | None, Field(examples=['https://picserver1.eu'])] = None
16281631

0 commit comments

Comments
 (0)