f3-data-models 0.2.0__tar.gz → 0.2.1__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.0 → f3_data_models-0.2.1}/PKG-INFO +2 -3
- {f3_data_models-0.2.0 → f3_data_models-0.2.1}/f3_data_models/models.py +1 -1
- {f3_data_models-0.2.0 → f3_data_models-0.2.1}/pyproject.toml +1 -1
- {f3_data_models-0.2.0 → f3_data_models-0.2.1}/README.md +0 -0
- {f3_data_models-0.2.0 → f3_data_models-0.2.1}/f3_data_models/__init__.py +0 -0
- {f3_data_models-0.2.0 → f3_data_models-0.2.1}/f3_data_models/utils.py +0 -0
@@ -1,8 +1,7 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: f3-data-models
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.1
|
4
4
|
Summary: The data schema and models for F3 Nation applications.
|
5
|
-
Home-page: https://github.com/F3-Nation/f3-data-models
|
6
5
|
License: MIT
|
7
6
|
Author: Evan Petzoldt
|
8
7
|
Author-email: evan.petzoldt@protonmail.com
|
@@ -727,7 +727,7 @@ class SlackUser(Base):
|
|
727
727
|
is_bot: Mapped[bool]
|
728
728
|
user_id: Mapped[Optional[int]] = mapped_column(ForeignKey("users.id"))
|
729
729
|
avatar_url: Mapped[Optional[str]]
|
730
|
-
slack_team_id: Mapped[str]
|
730
|
+
slack_team_id: Mapped[str]
|
731
731
|
strava_access_token: Mapped[Optional[str]]
|
732
732
|
strava_refresh_token: Mapped[Optional[str]]
|
733
733
|
strava_expires_at: Mapped[Optional[datetime]]
|
File without changes
|
File without changes
|
File without changes
|