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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplex
3
- Version: 2.0.4
3
+ Version: 2.0.5
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.4"
7
+ version = "2.0.5"
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.4"
38
+ __version__ = "2.0.5"
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.4"
24
+ __version__ = "2.0.5"
25
25
 
26
26
 
27
27
  class HttpClient:
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simplex
3
- Version: 2.0.4
3
+ Version: 2.0.5
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