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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: f3-data-models
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -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]]
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "The data schema and models for F3 Nation applications."
5
5
  authors = ["Evan Petzoldt <evan.petzoldt@protonmail.com>"]
6
6
  readme = "README.md"
File without changes