f3-data-models 0.2.1__tar.gz → 0.2.2__tar.gz
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-0.2.1 → f3_data_models-0.2.2}/PKG-INFO +1 -1
- {f3_data_models-0.2.1 → f3_data_models-0.2.2}/f3_data_models/models.py +4 -0
- {f3_data_models-0.2.1 → f3_data_models-0.2.2}/pyproject.toml +1 -1
- {f3_data_models-0.2.1 → f3_data_models-0.2.2}/README.md +0 -0
- {f3_data_models-0.2.1 → f3_data_models-0.2.2}/f3_data_models/__init__.py +0 -0
- {f3_data_models-0.2.1 → f3_data_models-0.2.2}/f3_data_models/utils.py +0 -0
@@ -487,6 +487,7 @@ class Location(Base):
|
|
487
487
|
name (str): The name of the location.
|
488
488
|
description (Optional[text]): A description of the location.
|
489
489
|
is_active (bool): Whether the location is active.
|
490
|
+
email (Optional[str]): A contact email address associated with the location.
|
490
491
|
lat (Optional[float]): The latitude of the location.
|
491
492
|
lon (Optional[float]): The longitude of the location.
|
492
493
|
address_street (Optional[str]): The street address of the location.
|
@@ -506,6 +507,7 @@ class Location(Base):
|
|
506
507
|
name: Mapped[str]
|
507
508
|
description: Mapped[Optional[text]]
|
508
509
|
is_active: Mapped[bool]
|
510
|
+
email: Mapped[Optional[str]]
|
509
511
|
lat: Mapped[Optional[float]]
|
510
512
|
lon: Mapped[Optional[float]]
|
511
513
|
address_street: Mapped[Optional[str]]
|
@@ -537,6 +539,7 @@ class Event(Base):
|
|
537
539
|
day_of_week (Optional[int]): The day of the week of the event. (0=Monday, 6=Sunday)
|
538
540
|
name (str): The name of the event.
|
539
541
|
description (Optional[text]): A description of the event.
|
542
|
+
email (Optional[str]): A contact email address associated with the event.
|
540
543
|
recurrence_pattern (Optional[str]): The recurrence pattern of the event. Current options are 'weekly' or 'monthly'.
|
541
544
|
recurrence_interval (Optional[int]): The recurrence interval of the event (e.g. every 2 weeks).
|
542
545
|
index_within_interval (Optional[int]): The index within the recurrence interval. (e.g. 2nd Tuesday of the month).
|
@@ -576,6 +579,7 @@ class Event(Base):
|
|
576
579
|
day_of_week: Mapped[Optional[int]]
|
577
580
|
name: Mapped[str]
|
578
581
|
description: Mapped[Optional[text]]
|
582
|
+
email: Mapped[Optional[str]]
|
579
583
|
recurrence_pattern: Mapped[Optional[str]]
|
580
584
|
recurrence_interval: Mapped[Optional[int]]
|
581
585
|
index_within_interval: Mapped[Optional[int]]
|
File without changes
|
File without changes
|
File without changes
|