f3-data-models 0.2.3__tar.gz → 0.2.4__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.3
3
+ Version: 0.2.4
4
4
  Summary: The data schema and models for F3 Nation applications.
5
5
  License: MIT
6
6
  Author: Evan Petzoldt
@@ -692,6 +692,7 @@ class User(Base):
692
692
  home_region_id: Mapped[Optional[int]] = mapped_column(ForeignKey("orgs.id"))
693
693
  avatar_url: Mapped[Optional[str]]
694
694
  meta: Mapped[Optional[Dict[str, Any]]]
695
+ email_verified_ts: Mapped[Optional[datetime]]
695
696
  created: Mapped[dt_create]
696
697
  updated: Mapped[dt_update]
697
698
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "f3-data-models"
3
- version = "0.2.3"
3
+ version = "0.2.4"
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