Add missing defaults to third-party stubs (#14617)

This commit is contained in:
Jelle Zijlstra
2025-08-21 13:36:29 -07:00
committed by GitHub
parent 82926783a4
commit 573b57d8da
54 changed files with 383 additions and 376 deletions
@@ -11,11 +11,11 @@ class SymmetricSignatureVerifier(SignatureVerifier):
class JwksFetcher:
CACHE_TTL: ClassVar[int]
def __init__(self, jwks_url: str, cache_ttl: int = ...) -> None: ...
def __init__(self, jwks_url: str, cache_ttl: int = 600) -> None: ...
def get_key(self, key_id: str): ...
class AsymmetricSignatureVerifier(SignatureVerifier):
def __init__(self, jwks_url: str, algorithm: str = "RS256", cache_ttl: int = ...) -> None: ...
def __init__(self, jwks_url: str, algorithm: str = "RS256", cache_ttl: int = 600) -> None: ...
class TokenVerifier:
iss: str