Skip to content

Commit 8423e95

Browse files
committed
2.12.1: fix typing of is_customer_notified
1 parent 469bf1f commit 8423e95

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# PyMagento Changelog
22

3+
## 2.12.1 (2025/12/08)
4+
5+
* Fix the typing of `OrderStatusHistory.is_customer_notified`
6+
37
## 2.12.0 (2025/12/08)
48

59
* Add more type aliases for `MagentoEntity`: `Attribute`, `AttributeSet`, `Cart`, `StockItem`, `StockStatus`. This does

magento/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ class OrderStatusHistory(TypedDict):
299299
created_at: str
300300
entity_id: int
301301
entity_name: str
302-
is_customer_notified: Union[str, None]
302+
is_customer_notified: Union[int, None]
303303
is_visible_on_front: int
304304
parent_id: int
305305
status: str

magento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.12.0"
1+
__version__ = "2.12.1"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pymagento"
3-
version = "2.12.0"
3+
version = "2.12.1"
44
description = "Python client for the Magento 2 API"
55
authors = ["Bixoto <tech@bixoto.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)