mirror of
https://github.com/oskvr37/tiddl.git
synced 2026-06-13 04:05:08 +03:00
🐛 Fixed Auth errors (#374)
* 🐛 Fix core Auth API * 🔖 Bump version to 3.4.3
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "tiddl"
|
||||
version = "3.4.2"
|
||||
version = "3.4.3"
|
||||
description = "Download Tidal tracks with CLI downloader."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.13"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ log = logging.getLogger("tiddl")
|
||||
app = typer.Typer(name="tiddl", no_args_is_help=True, rich_markup_mode="rich")
|
||||
register_commands(app)
|
||||
|
||||
VERSION = "v3.4.2"
|
||||
VERSION = "v3.4.3"
|
||||
|
||||
|
||||
@app.callback()
|
||||
|
||||
@@ -24,8 +24,8 @@ class AuthResponse(BaseModel):
|
||||
created: int | str
|
||||
updated: int | str
|
||||
facebookUid: Optional[int] = None
|
||||
appleUid: Optional[str]
|
||||
googleUid: Optional[str]
|
||||
appleUid: Optional[str] = None
|
||||
googleUid: Optional[str] = None
|
||||
accountLinkCreated: bool
|
||||
emailVerified: bool
|
||||
newUser: bool
|
||||
|
||||
Reference in New Issue
Block a user