soia-client 1.0.28__tar.gz → 1.0.29__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.28 → soia_client-1.0.29}/PKG-INFO +1 -1
- {soia_client-1.0.28 → soia_client-1.0.29}/pyproject.toml +1 -1
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/service.py +3 -6
- {soia_client-1.0.28 → soia_client-1.0.29}/soia_client.egg-info/PKG-INFO +1 -1
- {soia_client-1.0.28 → soia_client-1.0.29}/LICENSE +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/README.md +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/setup.cfg +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/__init__.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/__init__.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/arrays.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/enums.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/function_maker.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/keyed_items.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/method.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/never.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/optionals.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/primitives.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/repr.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/serializer.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/serializers.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/service_client.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/structs.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/timestamp.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_impl/type_adapter.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_module_initializer.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/_spec.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia/reflection.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia_client.egg-info/SOURCES.txt +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia_client.egg-info/dependency_links.txt +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/soia_client.egg-info/top_level.txt +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/tests/test_module_initializer.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/tests/test_serializers.py +0 -0
- {soia_client-1.0.28 → soia_client-1.0.29}/tests/test_timestamp.py +0 -0
|
@@ -177,14 +177,11 @@ class _HandleRequestFlow(Generic[Request, Response, RequestHeaders, ResponseHead
|
|
|
177
177
|
)
|
|
178
178
|
try:
|
|
179
179
|
req: Any
|
|
180
|
+
request_serializer = method_impl.method.request_serializer
|
|
180
181
|
if request_data[0] == "json-code":
|
|
181
|
-
req =
|
|
182
|
-
request_data
|
|
183
|
-
)
|
|
182
|
+
req = request_serializer.from_json_code(request_data[1])
|
|
184
183
|
elif request_data[0] == "json":
|
|
185
|
-
req =
|
|
186
|
-
request_data
|
|
187
|
-
)
|
|
184
|
+
req = request_serializer.from_json(request_data[1])
|
|
188
185
|
else:
|
|
189
186
|
_: Never = request_data[0]
|
|
190
187
|
del _
|
|
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
|