wip setup

This commit is contained in:
Matt Apperson
2025-11-13 13:40:55 -05:00
parent 05f81a553c
commit 71ab77e5e8
26 changed files with 101 additions and 99 deletions
-25
View File
@@ -53,25 +53,9 @@ if TYPE_CHECKING:
cast_partial,
)
from .logger import Logger, get_body_content, get_default_logger
from .oauth_create_sha256_code_challenge import (
oauth_create_sha256_code_challenge,
CreateSHA256CodeChallengeRequest,
CreateSHA256CodeChallengeResponse,
)
from .oauth_create_authorization_url import (
oauth_create_authorization_url,
CreateAuthorizationUrlRequest,
CreateAuthorizationUrlRequestBase,
CreateAuthorizationUrlRequestWithPKCE,
)
__all__ = [
"BackoffStrategy",
"CreateAuthorizationUrlRequest",
"CreateAuthorizationUrlRequestBase",
"CreateAuthorizationUrlRequestWithPKCE",
"CreateSHA256CodeChallengeRequest",
"CreateSHA256CodeChallengeResponse",
"FieldMetadata",
"find_metadata",
"FormMetadata",
@@ -94,8 +78,6 @@ __all__ = [
"match_status_codes",
"match_response",
"MultipartFormMetadata",
"oauth_create_authorization_url",
"oauth_create_sha256_code_challenge",
"OpenEnumMeta",
"PathParamMetadata",
"QueryParamMetadata",
@@ -128,11 +110,6 @@ __all__ = [
_dynamic_imports: dict[str, str] = {
"BackoffStrategy": ".retries",
"CreateAuthorizationUrlRequest": ".oauth_create_authorization_url",
"CreateAuthorizationUrlRequestBase": ".oauth_create_authorization_url",
"CreateAuthorizationUrlRequestWithPKCE": ".oauth_create_authorization_url",
"CreateSHA256CodeChallengeRequest": ".oauth_create_sha256_code_challenge",
"CreateSHA256CodeChallengeResponse": ".oauth_create_sha256_code_challenge",
"FieldMetadata": ".metadata",
"find_metadata": ".metadata",
"FormMetadata": ".metadata",
@@ -155,8 +132,6 @@ _dynamic_imports: dict[str, str] = {
"match_status_codes": ".values",
"match_response": ".values",
"MultipartFormMetadata": ".metadata",
"oauth_create_authorization_url": ".oauth_create_authorization_url",
"oauth_create_sha256_code_challenge": ".oauth_create_sha256_code_challenge",
"OpenEnumMeta": ".enums",
"PathParamMetadata": ".metadata",
"QueryParamMetadata": ".metadata",