simplex 2.0.1__tar.gz → 2.0.3__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.1/simplex.egg-info → simplex-2.0.3}/PKG-INFO +1 -1
- {simplex-2.0.1 → simplex-2.0.3}/pyproject.toml +1 -1
- {simplex-2.0.1 → simplex-2.0.3}/simplex/__init__.py +1 -1
- {simplex-2.0.1 → simplex-2.0.3}/simplex/_http_client.py +1 -1
- {simplex-2.0.1 → simplex-2.0.3}/simplex/types.py +2 -2
- {simplex-2.0.1 → simplex-2.0.3/simplex.egg-info}/PKG-INFO +1 -1
- {simplex-2.0.1 → simplex-2.0.3}/LICENSE +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/MANIFEST.in +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/README.md +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/requirements.txt +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/setup.cfg +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/simplex/client.py +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/simplex/errors.py +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/simplex.egg-info/SOURCES.txt +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/simplex.egg-info/dependency_links.txt +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/simplex.egg-info/requires.txt +0 -0
- {simplex-2.0.1 → simplex-2.0.3}/simplex.egg-info/top_level.txt +0 -0
|
@@ -36,7 +36,7 @@ class SessionStatusResponse(TypedDict):
|
|
|
36
36
|
metadata: Custom metadata provided when the session was started
|
|
37
37
|
workflow_metadata: Metadata from the workflow definition
|
|
38
38
|
file_metadata: Metadata for files downloaded during the session
|
|
39
|
-
scraper_outputs: Scraper outputs collected during the session
|
|
39
|
+
scraper_outputs: Scraper outputs collected during the session, keyed by output name
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
in_progress: bool
|
|
@@ -44,7 +44,7 @@ class SessionStatusResponse(TypedDict):
|
|
|
44
44
|
metadata: dict[str, Any]
|
|
45
45
|
workflow_metadata: dict[str, Any]
|
|
46
46
|
file_metadata: list[FileMetadata]
|
|
47
|
-
scraper_outputs:
|
|
47
|
+
scraper_outputs: dict[str, Any]
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
class RunWorkflowResponse(TypedDict):
|
|
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
|