codemie-sdk-python 0.1.82__tar.gz → 0.1.83__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 codemie-sdk-python might be problematic. Click here for more details.
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/PKG-INFO +1 -1
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/pyproject.toml +3 -2
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/integration.py +4 -4
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/integration.py +3 -3
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/README.md +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/__init__.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/auth/__init__.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/auth/credentials.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/client/__init__.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/client/client.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/exceptions.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/__init__.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/assistant.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/common.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/datasource.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/llm.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/task.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/user.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/workflow.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/workflow_state.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/assistant.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/datasource.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/llm.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/task.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/user.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/workflow.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/workflow_execution.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/workflow_execution_state.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/utils/__init__.py +0 -0
- {codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/utils/http.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "codemie-sdk-python"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.83"
|
|
4
4
|
description = "CodeMie SDK for Python"
|
|
5
5
|
authors = [
|
|
6
6
|
"Vadym Vlasenko <vadym_vlasenko@epam.com>",
|
|
@@ -25,11 +25,12 @@ PyHamcrest = "^2.1.0"
|
|
|
25
25
|
pytest-xdist = "^3.6.1"
|
|
26
26
|
pytest-rerunfailures = "^15.1"
|
|
27
27
|
python-gitlab = "^5.6.0"
|
|
28
|
-
boto3 = "^1.
|
|
28
|
+
boto3 = "^1.39.8"
|
|
29
29
|
aws-assume-role-lib = "^2.10.0"
|
|
30
30
|
pyyaml = "^6.0.2"
|
|
31
31
|
codemie-plugins = "^0.1.123"
|
|
32
32
|
pytest-reportportal = "^5.5.2"
|
|
33
|
+
pytest-playwright = "^0.7.0"
|
|
33
34
|
|
|
34
35
|
[build-system]
|
|
35
36
|
requires = ["poetry-core"]
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/integration.py
RENAMED
|
@@ -78,16 +78,16 @@ class Integration(BaseModel):
|
|
|
78
78
|
return dt.isoformat()
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
class
|
|
82
|
-
"""Model for test
|
|
81
|
+
class IntegrationTestRequest(BaseModel):
|
|
82
|
+
"""Model for integration test request."""
|
|
83
83
|
|
|
84
84
|
credential_type: str
|
|
85
85
|
credential_values: Optional[List[CredentialValues]] = None
|
|
86
86
|
setting_id: Optional[str] = None
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
class
|
|
90
|
-
"""Model for test
|
|
89
|
+
class IntegrationTestResponse(BaseModel):
|
|
90
|
+
"""Model for integration test response."""
|
|
91
91
|
|
|
92
92
|
def __getitem__(self, key):
|
|
93
93
|
return getattr(self, key)
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/integration.py
RENAMED
|
@@ -8,7 +8,7 @@ from ..models.common import PaginationParams
|
|
|
8
8
|
from ..models.integration import (
|
|
9
9
|
Integration,
|
|
10
10
|
IntegrationType,
|
|
11
|
-
|
|
11
|
+
IntegrationTestRequest,
|
|
12
12
|
)
|
|
13
13
|
from ..utils import ApiRequestHandler
|
|
14
14
|
|
|
@@ -155,11 +155,11 @@ class IntegrationService:
|
|
|
155
155
|
f"{self._get_base_path(setting_type)}/{setting_id}", dict
|
|
156
156
|
)
|
|
157
157
|
|
|
158
|
-
def test(self, integration:
|
|
158
|
+
def test(self, integration: IntegrationTestRequest, response_type: Any) -> Any:
|
|
159
159
|
"""Test an integration.
|
|
160
160
|
|
|
161
161
|
Args:
|
|
162
|
-
integration:
|
|
162
|
+
integration: IntegrationTestRequest - integration to test
|
|
163
163
|
response_type: Type of response expected
|
|
164
164
|
|
|
165
165
|
Returns:
|
|
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
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/datasource.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/models/workflow_state.py
RENAMED
|
File without changes
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/assistant.py
RENAMED
|
File without changes
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/datasource.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codemie_sdk_python-0.1.82 → codemie_sdk_python-0.1.83}/src/codemie_sdk/services/workflow.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|