centive-sdk 2.0.0__tar.gz → 2.1.0.dev2__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.
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/PKG-INFO +1 -1
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/pyproject.toml +1 -1
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/__init__.py +9 -1
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/.gitignore +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/CHANGELOG.md +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/LICENSE +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/README.md +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/blackbox/README.md +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/blackbox/customer_app.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/blackbox/harness.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/blackbox/mock_centive_api.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/blackbox/test_blackbox.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/examples/async_example.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/examples/fastapi_integration.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/examples/sync_example.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/examples/websocket_example.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/_http.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/_logging.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/_retry.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/async_client.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/client.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/config.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/exceptions.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/models/__init__.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/models/requests.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/models/responses.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/py.typed +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/resources/__init__.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/resources/async_sessions.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/resources/message_accumulator.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/resources/sessions.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/resources/websocket_server.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/__init__.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/conftest.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_client_async.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_client_sync.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_config.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_error_mapping.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_logging_redaction.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_message_accumulator.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_retry_logic.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_websocket_security.py +0 -0
- {centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/tests/test_websocket_server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: centive-sdk
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.1.0.dev2
|
|
4
4
|
Summary: Python SDK for Centive backend integration
|
|
5
5
|
Project-URL: Homepage, https://github.com/TheAgenticAI/centive-backend-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/TheAgenticAI/centive-backend-sdk
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
from importlib.metadata import PackageNotFoundError
|
|
2
|
+
from importlib.metadata import version as _installed_version
|
|
3
|
+
|
|
1
4
|
from .async_client import AsyncCentiveClient
|
|
2
5
|
from .client import CentiveClient
|
|
3
6
|
from .exceptions import (
|
|
@@ -28,7 +31,12 @@ from .models.responses import (
|
|
|
28
31
|
from .resources.message_accumulator import MessageAccumulator
|
|
29
32
|
from .resources.websocket_server import WebSocketServer
|
|
30
33
|
|
|
31
|
-
|
|
34
|
+
try:
|
|
35
|
+
# Read from installed package metadata so this can never drift from
|
|
36
|
+
# pyproject.toml — dev builds stamp their version there at publish time.
|
|
37
|
+
__version__ = _installed_version("centive-sdk")
|
|
38
|
+
except PackageNotFoundError: # imported from a source tree, not installed
|
|
39
|
+
__version__ = "0.0.0+unknown"
|
|
32
40
|
|
|
33
41
|
__all__ = [
|
|
34
42
|
# Clients
|
|
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
|
{centive_sdk-2.0.0 → centive_sdk-2.1.0.dev2}/src/centive_sdk/resources/message_accumulator.py
RENAMED
|
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
|