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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplex
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: Official Python SDK for the Simplex API
5
5
  Author-email: Simplex <support@simplex.sh>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "simplex"
7
- version = "2.0.1"
7
+ version = "2.0.3"
8
8
  description = "Official Python SDK for the Simplex API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -35,7 +35,7 @@ from simplex.types import (
35
35
  SessionStatusResponse,
36
36
  )
37
37
 
38
- __version__ = "2.0.1"
38
+ __version__ = "2.0.3"
39
39
  __all__ = [
40
40
  "SimplexClient",
41
41
  "SimplexError",
@@ -21,7 +21,7 @@ from simplex.errors import (
21
21
  ValidationError,
22
22
  )
23
23
 
24
- __version__ = "2.0.1"
24
+ __version__ = "2.0.3"
25
25
 
26
26
 
27
27
  class HttpClient:
@@ -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: list[Any]
47
+ scraper_outputs: dict[str, Any]
48
48
 
49
49
 
50
50
  class RunWorkflowResponse(TypedDict):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplex
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: Official Python SDK for the Simplex API
5
5
  Author-email: Simplex <support@simplex.sh>
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes