clarity-api-sdk-python 0.1.3__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clarity-api-sdk-python
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: A Python SDK to connect to the CTI Clarity API server.
5
5
  Author-email: "Chesapeake Technology Inc." <support@chesapeaketech.com>
6
6
  Project-URL: Homepage, https://github.com/chesapeake-tech/clarity-api-sdk-python
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "clarity-api-sdk-python"
8
- version = "0.1.3"
8
+ version = "0.1.5"
9
9
  authors = [
10
10
  { name="Chesapeake Technology Inc.", email="support@chesapeaketech.com" },
11
11
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clarity-api-sdk-python
3
- Version: 0.1.3
3
+ Version: 0.1.5
4
4
  Summary: A Python SDK to connect to the CTI Clarity API server.
5
5
  Author-email: "Chesapeake Technology Inc." <support@chesapeaketech.com>
6
6
  Project-URL: Homepage, https://github.com/chesapeake-tech/clarity-api-sdk-python
@@ -1,11 +1,11 @@
1
1
  README.md
2
2
  pyproject.toml
3
- src/api/__init__.py
4
- src/api/client.py
5
3
  src/clarity_api_sdk_python.egg-info/PKG-INFO
6
4
  src/clarity_api_sdk_python.egg-info/SOURCES.txt
7
5
  src/clarity_api_sdk_python.egg-info/dependency_links.txt
8
6
  src/clarity_api_sdk_python.egg-info/requires.txt
9
7
  src/clarity_api_sdk_python.egg-info/top_level.txt
10
- src/logger/__init__.py
11
- src/logger/logger.py
8
+ src/cti/api/__init__.py
9
+ src/cti/api/client.py
10
+ src/cti/logger/__init__.py
11
+ src/cti/logger/logger.py
@@ -166,8 +166,8 @@ def _secret_redaction_processor(_, __, event_dict):
166
166
 
167
167
 
168
168
  def initialize_logger(
169
- initial_context: dict | None,
170
- external_logger_configurations: list[ExternalLoggerConfig] | None,
169
+ initial_context: dict | None = None,
170
+ external_logger_configurations: list[ExternalLoggerConfig] | None = None,
171
171
  ) -> None:
172
172
  """Configures logging for the application using structlog.
173
173