Skip to content

Commit 60cd592

Browse files
fix: add missing ListCustomersResponse attributes@
1 parent 2319648 commit 60cd592

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

autumn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .aio.client import AsyncClient as Autumn
99

1010
__title__ = "autumn"
11-
__version__ = "2.4.0"
11+
__version__ = "2.4.1"
1212
__license__ = "MIT"
1313
__author__ = "justanotherbyte"
1414
__copyright__ = "Copyright 2025 justanotherbyte"

autumn/models/response.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,7 @@ class ListProductResponse(BaseModel):
106106
list: List[Product]
107107

108108
class ListCustomerResponse(BaseModel):
109-
list: List[Customer]
109+
list: List[Customer]
110+
total: int
111+
limit: int
112+
offset: int

0 commit comments

Comments
 (0)