We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 016a1bd commit edce4d0Copy full SHA for edce4d0
2 files changed
src/openinflation_dataclass/__init__.py
@@ -1,6 +1,6 @@
1
"""Pydantic models for products, categories, and retail geolocation."""
2
3
-__version__ = "0.1.5"
+__version__ = "0.1.6"
4
5
from .card import Card, MetaData, WholesalePrice
6
from .geolocation import AdministrativeUnit, RetailUnit, Schedule
src/openinflation_dataclass/geolocation.py
@@ -54,6 +54,9 @@ class RetailUnit(NetworkModel):
54
schedule_saturday: Schedule | None = None
55
schedule_sunday: Schedule | None = None
56
temporarily_closed: bool | None = None
57
+ rating: float | None = None
58
+ reviews_count: int | None = None
59
+ open_date: str | None = None
60
longitude: float | None = None
61
latitude: float | None = None
62
administrative_unit: AdministrativeUnit | None = None
0 commit comments