simile 0.3.1__tar.gz → 0.3.2__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 simile might be problematic. Click here for more details.
- {simile-0.3.1 → simile-0.3.2}/PKG-INFO +1 -1
- {simile-0.3.1 → simile-0.3.2}/pyproject.toml +1 -1
- {simile-0.3.1 → simile-0.3.2}/simile/resources.py +5 -4
- {simile-0.3.1 → simile-0.3.2}/simile.egg-info/PKG-INFO +1 -1
- {simile-0.3.1 → simile-0.3.2}/LICENSE +0 -0
- {simile-0.3.1 → simile-0.3.2}/README.md +0 -0
- {simile-0.3.1 → simile-0.3.2}/setup.cfg +0 -0
- {simile-0.3.1 → simile-0.3.2}/setup.py +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile/__init__.py +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile/auth_client.py +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile/client.py +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile/exceptions.py +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile/models.py +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile.egg-info/SOURCES.txt +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile.egg-info/dependency_links.txt +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile.egg-info/requires.txt +0 -0
- {simile-0.3.1 → simile-0.3.2}/simile.egg-info/top_level.txt +0 -0
|
@@ -10,6 +10,7 @@ from .models import (
|
|
|
10
10
|
AddContextRequest,
|
|
11
11
|
AddContextResponse,
|
|
12
12
|
SurveySessionDetailResponse,
|
|
13
|
+
SurveySessionCreateResponse,
|
|
13
14
|
)
|
|
14
15
|
|
|
15
16
|
if TYPE_CHECKING:
|
|
@@ -307,13 +308,13 @@ class SurveySession:
|
|
|
307
308
|
"POST",
|
|
308
309
|
endpoint,
|
|
309
310
|
params=params,
|
|
310
|
-
response_model=
|
|
311
|
+
response_model=SurveySessionCreateResponse,
|
|
311
312
|
)
|
|
312
313
|
|
|
313
314
|
# Create a new SurveySession instance from the response
|
|
314
315
|
return SurveySession(
|
|
315
|
-
id=
|
|
316
|
-
agent_id=
|
|
317
|
-
status=response.
|
|
316
|
+
id=response.id,
|
|
317
|
+
agent_id=response.agent_id,
|
|
318
|
+
status=response.status,
|
|
318
319
|
client=self._client,
|
|
319
320
|
)
|
|
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
|