soia-client 1.0.15__tar.gz → 1.0.16__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.
Potentially problematic release.
This version of soia-client might be problematic. Click here for more details.
- {soia_client-1.0.15 → soia_client-1.0.16}/PKG-INFO +1 -1
- {soia_client-1.0.15 → soia_client-1.0.16}/pyproject.toml +1 -1
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/service.py +6 -2
- {soia_client-1.0.15 → soia_client-1.0.16}/soia_client.egg-info/PKG-INFO +1 -1
- {soia_client-1.0.15 → soia_client-1.0.16}/LICENSE +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/README +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/setup.cfg +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/__init__.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/__init__.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/arrays.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/enums.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/function_maker.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/keyed_items.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/method.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/never.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/optionals.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/primitives.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/repr.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/serializer.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/serializers.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/service_client.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/structs.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/timestamp.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_impl/type_adapter.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_module_initializer.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/_spec.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia/reflection.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia_client.egg-info/SOURCES.txt +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia_client.egg-info/dependency_links.txt +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/soia_client.egg-info/top_level.txt +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/tests/test_module_initializer.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/tests/test_serializers.py +0 -0
- {soia_client-1.0.15 → soia_client-1.0.16}/tests/test_timestamp.py +0 -0
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import inspect
|
|
2
2
|
import json
|
|
3
3
|
from dataclasses import dataclass
|
|
4
|
-
from typing import Any, Callable, Generic, Literal,
|
|
4
|
+
from typing import Any, Callable, Generic, Literal, Protocol, TypeAlias, Union, cast
|
|
5
5
|
|
|
6
6
|
from soia._impl.method import Method, Request, Response
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
class RequestHeaders(Protocol):
|
|
10
|
+
def __getitem__(self, key: str, /) -> str | None: ...
|
|
11
|
+
|
|
12
|
+
|
|
9
13
|
ResponseHeaders: TypeAlias = dict[str, str]
|
|
10
14
|
|
|
11
15
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|