f3-data-models 0.3.4__py3-none-any.whl → 0.3.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
f3_data_models/models.py
CHANGED
@@ -566,8 +566,8 @@ class Event(Base):
|
|
566
566
|
highlight (bool): Whether the event is highlighted. Default is False.
|
567
567
|
start_date (date): The start date of the event.
|
568
568
|
end_date (Optional[date]): The end date of the event.
|
569
|
-
start_time (Optional[
|
570
|
-
end_time (Optional[
|
569
|
+
start_time (Optional[str]): The start time of the event. Format is 'HHMM', 24-hour time, timezone naive.
|
570
|
+
end_time (Optional[str]): The end time of the event. Format is 'HHMM', 24-hour time, timezone naive.
|
571
571
|
day_of_week (Optional[Day_Of_Week]): The day of the week of the event.
|
572
572
|
name (str): The name of the event.
|
573
573
|
description (Optional[text]): A description of the event.
|
@@ -606,8 +606,8 @@ class Event(Base):
|
|
606
606
|
highlight: Mapped[bool] = mapped_column(Boolean, default=False)
|
607
607
|
start_date: Mapped[date]
|
608
608
|
end_date: Mapped[Optional[date]]
|
609
|
-
start_time: Mapped[Optional[
|
610
|
-
end_time: Mapped[Optional[
|
609
|
+
start_time: Mapped[Optional[str]]
|
610
|
+
end_time: Mapped[Optional[str]]
|
611
611
|
day_of_week: Mapped[Optional[Day_Of_Week]]
|
612
612
|
name: Mapped[str]
|
613
613
|
description: Mapped[Optional[text]]
|
@@ -1066,8 +1066,8 @@ class UpdateRequest(Base):
|
|
1066
1066
|
event_highlight (Optional[bool]): Whether the event is highlighted.
|
1067
1067
|
event_start_date (Optional[date]): The start date of the event.
|
1068
1068
|
event_end_date (Optional[date]): The end date of the event.
|
1069
|
-
event_start_time (Optional[
|
1070
|
-
event_end_time (Optional[
|
1069
|
+
event_start_time (Optional[str]): The start time of the event. Format is 'HHMM', 24-hour time, timezone naive.
|
1070
|
+
event_end_time (Optional[str]): The end time of the event. Format is 'HHMM', 24-hour time, timezone naive.
|
1071
1071
|
event_day_of_week (Optional[Day_Of_Week]): The day of the week of the event.
|
1072
1072
|
event_name (str): The name of the event.
|
1073
1073
|
event_description (Optional[text]): A description of the event.
|
@@ -1113,8 +1113,8 @@ class UpdateRequest(Base):
|
|
1113
1113
|
event_highlight: Mapped[Optional[bool]]
|
1114
1114
|
event_start_date: Mapped[Optional[date]]
|
1115
1115
|
event_end_date: Mapped[Optional[date]]
|
1116
|
-
event_start_time: Mapped[Optional[
|
1117
|
-
event_end_time: Mapped[Optional[
|
1116
|
+
event_start_time: Mapped[Optional[str]]
|
1117
|
+
event_end_time: Mapped[Optional[str]]
|
1118
1118
|
event_day_of_week: Mapped[Optional[Day_Of_Week]]
|
1119
1119
|
event_name: Mapped[str]
|
1120
1120
|
event_description: Mapped[Optional[text]]
|
@@ -0,0 +1,6 @@
|
|
1
|
+
f3_data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
f3_data_models/models.py,sha256=SLOXwM2BMnlGTwkVZfG3fM9hoksvPkcFRqzpEI4bm2Y,44293
|
3
|
+
f3_data_models/utils.py,sha256=1hdZ2tvMiNibNZvwt0dx4PhPCw_pJGg1mG2cCvwc6CI,8857
|
4
|
+
f3_data_models-0.3.5.dist-info/METADATA,sha256=L2i2GhGM0d1ueb9uQuHNqPJs_X1NbuJKdLD6jaKp6RM,2716
|
5
|
+
f3_data_models-0.3.5.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
6
|
+
f3_data_models-0.3.5.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
f3_data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
f3_data_models/models.py,sha256=D69gDYemd_FizWzsNIixbIi3GbynaOQNaFqnN528ewA,44155
|
3
|
-
f3_data_models/utils.py,sha256=1hdZ2tvMiNibNZvwt0dx4PhPCw_pJGg1mG2cCvwc6CI,8857
|
4
|
-
f3_data_models-0.3.4.dist-info/METADATA,sha256=1LRVeZ8juPzvBJ3VffsuD86h878FM4gi4FnDnTJpnJo,2716
|
5
|
-
f3_data_models-0.3.4.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
6
|
-
f3_data_models-0.3.4.dist-info/RECORD,,
|
File without changes
|