simplex 2.0.4__tar.gz → 2.0.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.
- {simplex-2.0.4/simplex.egg-info → simplex-2.0.5}/PKG-INFO +1 -1
- {simplex-2.0.4 → simplex-2.0.5}/pyproject.toml +1 -1
- {simplex-2.0.4 → simplex-2.0.5}/simplex/__init__.py +1 -1
- {simplex-2.0.4 → simplex-2.0.5}/simplex/_http_client.py +1 -1
- {simplex-2.0.4 → simplex-2.0.5}/simplex/types.py +2 -0
- {simplex-2.0.4 → simplex-2.0.5/simplex.egg-info}/PKG-INFO +1 -1
- {simplex-2.0.4 → simplex-2.0.5}/LICENSE +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/MANIFEST.in +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/README.md +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/requirements.txt +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/setup.cfg +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/simplex/client.py +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/simplex/errors.py +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/simplex.egg-info/SOURCES.txt +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/simplex.egg-info/dependency_links.txt +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/simplex.egg-info/requires.txt +0 -0
- {simplex-2.0.4 → simplex-2.0.5}/simplex.egg-info/top_level.txt +0 -0
|
@@ -37,6 +37,7 @@ class SessionStatusResponse(TypedDict, total=False):
|
|
|
37
37
|
workflow_metadata: Metadata from the workflow definition
|
|
38
38
|
file_metadata: Metadata for files downloaded during the session
|
|
39
39
|
scraper_outputs: Scraper outputs collected during the session, keyed by output name
|
|
40
|
+
structured_output: Structured output fields from workflow execution (None while in progress)
|
|
40
41
|
paused: Whether the session is currently paused
|
|
41
42
|
paused_key: The pause key if the session is paused
|
|
42
43
|
"""
|
|
@@ -47,6 +48,7 @@ class SessionStatusResponse(TypedDict, total=False):
|
|
|
47
48
|
workflow_metadata: dict[str, Any]
|
|
48
49
|
file_metadata: list[FileMetadata]
|
|
49
50
|
scraper_outputs: dict[str, Any]
|
|
51
|
+
structured_output: dict[str, Any] | None
|
|
50
52
|
paused: bool
|
|
51
53
|
paused_key: str
|
|
52
54
|
|
|
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
|