finalsa-common-http-client 0.1.5__tar.gz → 0.1.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: finalsa-common-http-client
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: HTTP client library for common data types used in business applications
5
5
  Project-URL: Homepage, https://github.com/finalsa/finalsa-http-client
6
6
  Project-URL: Documentation, https://github.com/finalsa/finalsa-http-client#readme
@@ -77,9 +77,9 @@ def parse_params(params: Mapping[str, Any] | None ) -> dict[str, str | int | flo
77
77
  if value is not None:
78
78
  result[key] = value
79
79
  if isinstance(value, dict):
80
- result[key] = dumps(value)
80
+ result[key] = dumps(value).decode('utf-8')
81
81
  if isinstance(value, list):
82
- result[key] = dumps(value)
82
+ result[key] = dumps(value).decode('utf-8')
83
83
  return result
84
84
 
85
85
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "finalsa-common-http-client"
3
- version = "0.1.5"
3
+ version = "0.1.6"
4
4
  description = "HTTP client library for common data types used in business applications"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"