Compare commits
2 Commits
b76a125786
...
b7bbf91983
| Author | SHA1 | Date | |
|---|---|---|---|
| b7bbf91983 | |||
| c38ae24d2f |
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "oxidedonationalerts"
|
name = "oxidedonationalerts"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
description = "Client for DonationAlerts API"
|
description = "Client for DonationAlerts API"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }]
|
authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }]
|
||||||
@ -13,7 +13,6 @@ build-backend = "uv_build"
|
|||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
dev = [
|
dev = [
|
||||||
"ty>=0.0.17",
|
|
||||||
"ruff>=0.15.0",
|
"ruff>=0.15.0",
|
||||||
"pyright>=1.1.408",
|
"pyright>=1.1.408",
|
||||||
"poethepoet>=0.40.0",
|
"poethepoet>=0.40.0",
|
||||||
@ -33,8 +32,9 @@ explicit = true
|
|||||||
[tool.poe.tasks]
|
[tool.poe.tasks]
|
||||||
_git = "git add ."
|
_git = "git add ."
|
||||||
_lint = "pre-commit run --all-files"
|
_lint = "pre-commit run --all-files"
|
||||||
|
_ty = "uvx ty@latest check ."
|
||||||
|
|
||||||
lint = ["_git", "_lint"]
|
lint = ["_git", "_lint", "_ty"]
|
||||||
check = "uv pip ls --outdated"
|
check = "uv pip ls --outdated"
|
||||||
|
|
||||||
major = "uv version --bump major"
|
major = "uv version --bump major"
|
||||||
|
|||||||
@ -30,8 +30,10 @@ class UserOauthData(BaseSchema):
|
|||||||
id: int
|
id: int
|
||||||
code: str
|
code: str
|
||||||
name: str
|
name: str
|
||||||
|
is_active: bool
|
||||||
avatar: HttpUrl
|
avatar: HttpUrl
|
||||||
email: EmailStr
|
email: EmailStr
|
||||||
|
language: str
|
||||||
socket_connection_token: str
|
socket_connection_token: str
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user