patera-apiinterface 0.4.3__tar.gz → 0.4.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {patera_apiinterface-0.4.3 → patera_apiinterface-0.4.5}/PKG-INFO +1 -1
- {patera_apiinterface-0.4.3 → patera_apiinterface-0.4.5}/pyproject.toml +1 -1
- {patera_apiinterface-0.4.3 → patera_apiinterface-0.4.5}/src/patera/apiinterface/api_interface.py +1 -8
- {patera_apiinterface-0.4.3 → patera_apiinterface-0.4.5}/src/patera/apiinterface/__init__.py +0 -0
{patera_apiinterface-0.4.3 → patera_apiinterface-0.4.5}/src/patera/apiinterface/api_interface.py
RENAMED
|
@@ -15,7 +15,6 @@ from typing import (
|
|
|
15
15
|
cast,
|
|
16
16
|
get_type_hints,
|
|
17
17
|
TypeVar,
|
|
18
|
-
TYPE_CHECKING,
|
|
19
18
|
)
|
|
20
19
|
import httpx
|
|
21
20
|
from httpx import Response
|
|
@@ -23,13 +22,7 @@ from functools import wraps
|
|
|
23
22
|
from enum import StrEnum
|
|
24
23
|
from pydantic import BaseModel
|
|
25
24
|
|
|
26
|
-
from
|
|
27
|
-
from .media_types import MediaType
|
|
28
|
-
from .base_extension import BaseExtension
|
|
29
|
-
from .request import UploadedFile, Request
|
|
30
|
-
|
|
31
|
-
if TYPE_CHECKING:
|
|
32
|
-
from .patera import Patera
|
|
25
|
+
from patera import Patera, HttpMethod, MediaType, BaseExtension, UploadedFile, Request
|
|
33
26
|
|
|
34
27
|
|
|
35
28
|
class AuthType(StrEnum):
|
|
File without changes
|