shell-session-manager 2.2.1__tar.gz → 2.3.0__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.
Files changed (33) hide show
  1. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/PKG-INFO +1 -1
  2. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/pyproject.toml +1 -1
  3. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/shared/schemas.py +1 -1
  4. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/LICENSE +0 -0
  5. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/README.md +0 -0
  6. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/__init__.py +0 -0
  7. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/py.typed +0 -0
  8. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/session.py +0 -0
  9. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/__init__.py +0 -0
  10. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/client/__init__.py +0 -0
  11. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/client/sdk.py +0 -0
  12. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/sanitize_pty.py +0 -0
  13. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/__init__.py +0 -0
  14. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/__main__.py +0 -0
  15. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/api.py +0 -0
  16. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/artifacts.py +0 -0
  17. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/cli.py +0 -0
  18. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/config.py +0 -0
  19. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/db.py +0 -0
  20. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/errors.py +0 -0
  21. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/service.py +0 -0
  22. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/server/tmux.py +0 -0
  23. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/shared/__init__.py +0 -0
  24. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/shared/constants.py +0 -0
  25. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/shared/output.py +0 -0
  26. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/shared/runtime.py +0 -0
  27. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/src/shell_session_manager/shellctl/shared/sanitize.py +0 -0
  28. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/tests/golden_shellctl_sanitize.json +0 -0
  29. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/tests/test_shell_session_autoclose.py +0 -0
  30. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/tests/test_shell_session_manager.py +0 -0
  31. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/tests/test_shellctl_client.py +0 -0
  32. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/tests/test_shellctl_service.py +0 -0
  33. {shell_session_manager-2.2.1 → shell_session_manager-2.3.0}/tests/test_shellctl_shared.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: shell-session-manager
3
- Version: 2.2.1
3
+ Version: 2.3.0
4
4
  Summary: Async subprocess session manager with incremental stdin/stdout/stderr support
5
5
  Author-Email: =?utf-8?b?WWFubGkg55uQ57KS?= <yanli@mail.one>
6
6
  License-Expression: Apache-2.0
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "shell-session-manager"
9
- version = "2.2.1"
9
+ version = "2.3.0"
10
10
  description = "Async subprocess session manager with incremental stdin/stdout/stderr support"
11
11
  authors = [
12
12
  { name = "Yanli 盐粒", email = "yanli@mail.one" },
@@ -176,7 +176,7 @@ class WaitJobRequest(ShellctlModel):
176
176
  """HTTP request body for `POST /v1/jobs/{job_id}/wait`."""
177
177
 
178
178
  timeout: float = Field(
179
- default=DEFAULT_TIMEOUT_SECONDS, gt=0, le=MAX_WAIT_TIMEOUT_SECONDS
179
+ default=DEFAULT_TIMEOUT_SECONDS, ge=0, le=MAX_WAIT_TIMEOUT_SECONDS
180
180
  )
181
181
  offset: int = Field(ge=0)
182
182
  output_limit: int = Field(