soia-client 1.0.12__tar.gz → 1.0.14__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.12 → soia_client-1.0.14}/PKG-INFO +1 -1
- {soia_client-1.0.12 → soia_client-1.0.14}/pyproject.toml +1 -1
- {soia_client-1.0.12 → soia_client-1.0.14}/soia_client.egg-info/PKG-INFO +1 -1
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/__init__.py +4 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/service.py +3 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/LICENSE +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/README +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/setup.cfg +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soia_client.egg-info/SOURCES.txt +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soia_client.egg-info/dependency_links.txt +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soia_client.egg-info/top_level.txt +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/_.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/__init__.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/arrays.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/enums.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/function_maker.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/optionals.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/primitives.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/repr.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/structs.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/impl/type_adapter.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/keyed_items.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/method.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/module_initializer.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/never.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/reflection.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/serializer.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/serializers.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/service_client.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/spec.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/soialib/timestamp.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/tests/test_module_initializer.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/tests/test_serializers.py +0 -0
- {soia_client-1.0.12 → soia_client-1.0.14}/tests/test_timestamp.py +0 -0
|
@@ -6,13 +6,17 @@ from soialib.serializers import (
|
|
|
6
6
|
optional_serializer,
|
|
7
7
|
primitive_serializer,
|
|
8
8
|
)
|
|
9
|
+
from soialib.service import RequestHeaders, ResponseHeaders, ServiceImpl
|
|
9
10
|
from soialib.service_client import ServiceClient
|
|
10
11
|
from soialib.timestamp import Timestamp
|
|
11
12
|
|
|
12
13
|
__all__ = [
|
|
13
14
|
"KeyedItems",
|
|
14
15
|
"Method",
|
|
16
|
+
"RequestHeaders",
|
|
17
|
+
"ResponseHeaders",
|
|
15
18
|
"Serializer",
|
|
19
|
+
"ServiceImpl",
|
|
16
20
|
"ServiceClient",
|
|
17
21
|
"Timestamp",
|
|
18
22
|
"array_serializer",
|
|
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
|