Skip to content

Commit edce4d0

Browse files
committed
rating and open date for store
1 parent 016a1bd commit edce4d0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/openinflation_dataclass/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Pydantic models for products, categories, and retail geolocation."""
22

3-
__version__ = "0.1.5"
3+
__version__ = "0.1.6"
44

55
from .card import Card, MetaData, WholesalePrice
66
from .geolocation import AdministrativeUnit, RetailUnit, Schedule

src/openinflation_dataclass/geolocation.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ class RetailUnit(NetworkModel):
5454
schedule_saturday: Schedule | None = None
5555
schedule_sunday: Schedule | None = None
5656
temporarily_closed: bool | None = None
57+
rating: float | None = None
58+
reviews_count: int | None = None
59+
open_date: str | None = None
5760
longitude: float | None = None
5861
latitude: float | None = None
5962
administrative_unit: AdministrativeUnit | None = None

0 commit comments

Comments
 (0)