From 04de8e677cbca9bf41fd0c8ac2e13816d906bb8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Dudzi=C5=84ski?= <56404247+oskvr37@users.noreply.github.com> Date: Sun, 10 May 2026 13:22:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fixed=20Auth=20errors=20(#374)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🐛 Fix core Auth API * 🔖 Bump version to 3.4.3 --- pyproject.toml | 2 +- tiddl/cli/app.py | 2 +- tiddl/core/auth/models.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d05db1e..b611c10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/tiddl/cli/app.py b/tiddl/cli/app.py index da90906..20dde22 100644 --- a/tiddl/cli/app.py +++ b/tiddl/cli/app.py @@ -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() diff --git a/tiddl/core/auth/models.py b/tiddl/core/auth/models.py index dbd0056..04732df 100644 --- a/tiddl/core/auth/models.py +++ b/tiddl/core/auth/models.py @@ -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