Files
romm/backend/endpoints/responses/oauth.py
Georges-Antoine Assi 997e2c44aa start pre-4.8 cleanup
2026-03-12 23:02:12 -04:00

14 lines
273 B
Python

from typing import NotRequired, TypedDict
class TokenResponse(TypedDict):
access_token: str
token_type: str
expires: int
refresh_token: NotRequired[str]
refresh_expires: NotRequired[int]
class OIDCLogoutResponse(TypedDict):
oidc_logout_url: str