runloop_api_client 1.21.0__tar.gz → 1.22.1__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.
- runloop_api_client-1.22.1/.release-please-manifest.json +3 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/CHANGELOG.md +30 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/PKG-INFO +1 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/api.md +15 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/pyproject.toml +1 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_client.py +38 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_version.py +1 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/__init__.py +14 -0
- runloop_api_client-1.22.1/src/runloop_api_client/resources/accounts.py +141 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/agents.py +2 -2
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/blueprints.py +18 -6
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/devboxes.py +10 -8
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/gateway_configs.py +4 -2
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/pty.py +28 -44
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/scenarios.py +8 -4
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/__init__.py +4 -0
- runloop_api_client-1.22.1/src/runloop_api_client/types/account_view.py +97 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_create_params.py +1 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_view.py +1 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_create_params.py +8 -20
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_view.py +10 -22
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_build_parameters.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_create_from_inspection_params.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_create_params.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_preview_params.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_view.py +7 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_create_params.py +9 -6
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_view.py +24 -8
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_update_params.py +7 -2
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_create_params.py +4 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_environment.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_environment_param.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_run_view.py +4 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_update_params.py +4 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_view.py +4 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/__init__.py +3 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/agent_source.py +8 -8
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/launch_parameters.py +18 -48
- runloop_api_client-1.22.1/src/runloop_api_client/types/shared/lifecycle_configuration.py +38 -0
- runloop_api_client-1.22.1/src/runloop_api_client/types/shared/lifecycle_hooks.py +28 -0
- runloop_api_client-1.22.1/src/runloop_api_client/types/shared/resume_triggers.py +17 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/run_profile.py +5 -1
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/__init__.py +3 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/agent_source.py +8 -8
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/launch_parameters.py +18 -48
- runloop_api_client-1.22.1/src/runloop_api_client/types/shared_params/lifecycle_configuration.py +40 -0
- runloop_api_client-1.22.1/src/runloop_api_client/types/shared_params/lifecycle_hooks.py +31 -0
- runloop_api_client-1.22.1/src/runloop_api_client/types/shared_params/resume_triggers.py +18 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/run_profile.py +5 -1
- runloop_api_client-1.22.1/tests/api_resources/test_accounts.py +74 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_benchmarks.py +8 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_blueprints.py +24 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_devboxes.py +8 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_scenarios.py +24 -0
- runloop_api_client-1.21.0/.release-please-manifest.json +0 -3
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/.gitignore +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/CONTRIBUTING.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/EXAMPLES.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/LICENSE +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/README-SDK.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/README.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/SECURITY.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/bin/check-release-environment +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/bin/publish-pypi +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/_harness.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/blueprint_with_build_context.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_from_blueprint_lifecycle.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_snapshot_resume.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_snapshots.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_tunnel.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/example_types.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/mcp_github_tools.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/registry.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/secrets_with_devbox.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/release-please-config.json +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/requirements-dev.lock +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop/lib/.keep +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_base_client.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_compat.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_constants.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_exceptions.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_files.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_models.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_qs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_resource.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_streaming.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_types.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_compat.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_datetime_parse.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_json.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_logs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_path.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_proxy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_reflection.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_resources_proxy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_streams.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_sync.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_transform.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_typing.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_utils.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_validation.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/.keep +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/_ignore.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/context_loader.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/polling.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/polling_async.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/wait_for_status.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/pagination.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/py.typed +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/apikeys.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/axons.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/events.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/sql.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/benchmark_jobs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/benchmark_runs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/benchmarks.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/disk_snapshots.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/executions.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/logs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/mcp_configs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/network_policies.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/objects.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/restricted_keys.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/runs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/scorers.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/secrets.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/_helpers.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/_types.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/agent.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_agent.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_axon.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_benchmark.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_benchmark_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_blueprint.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_devbox.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_execution.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_execution_result.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_gateway_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_mcp_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_network_policy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scenario.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scenario_builder.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scenario_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scorer.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_secret.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_snapshot.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_storage_object.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/axon.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/benchmark.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/benchmark_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/blueprint.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/devbox.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/execution.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/execution_result.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/gateway_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/mcp_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/network_policy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scenario.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scenario_builder.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scenario_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scorer.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/secret.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/snapshot.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/storage_object.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/sync.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_devbox_counts_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_list_public_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/api_key_created_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/apikey_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_event_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_publish_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_subscribe_sse_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/axon_event_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/event_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_batch_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_batch_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_column_meta_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_query_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_query_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_result_meta_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_statement_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_step_error_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_step_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_definitions_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_list_public_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_list_scenario_runs_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_start_run_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_update_scenarios_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_build_log.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_build_logs_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_list_public_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_preview_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_async_execution_detail_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_create_ssh_key_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_download_file_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_enable_tunnel_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execute_async_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execute_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execute_sync_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execution_detail_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_list_disk_snapshots_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_read_file_contents_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_read_file_contents_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_resource_usage_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_send_std_in_result.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_shutdown_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_disk_async_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_disk_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_upload_file_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_wait_for_command_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_write_file_contents_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/devbox_logs_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/devbox_snapshot_async_status_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/disk_snapshot_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/disk_snapshot_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_execute_async_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_execute_sync_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_kill_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_retrieve_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_send_std_in_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_stream_stderr_updates_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_stream_stdout_updates_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_update_chunk.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/log_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/input_context.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/input_context_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/input_context_update_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/inspection_source_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_download_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_download_url_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_list_public_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_connect_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_connect_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_control_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_control_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_tunnel_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/publish_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/restricted_key_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/restricted_key_created_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_definition_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_list_public_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_run_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_start_run_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/run_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_create_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_list_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_retrieve_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_update_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scope_entry_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scope_entry_view_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract_update_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_function.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_function_param.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_function_result_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_create_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_list_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_list_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_update_params.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/after_idle.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/agent_mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/broker_mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/code_mount_parameters.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/object_mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/after_idle.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/agent_mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/broker_mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/code_mount_parameters.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/object_mount.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/tunnel_view.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/axons/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/axons/test_events.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/axons/test_sql.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/test_disk_snapshots.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/test_executions.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/test_logs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/scenarios/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/scenarios/test_runs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/scenarios/test_scorers.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_agents.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_apikeys.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_axons.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_benchmark_jobs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_benchmark_runs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_gateway_configs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_mcp_configs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_network_policies.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_objects.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_pty.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_restricted_keys.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_secrets.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/conftest.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sample_file.txt +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/conftest.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_core.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_edge_cases.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_interfaces.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_streaming.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/conftest.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/conftest.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_core.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_edge_cases.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_interfaces.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_streaming.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_agent.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_agent.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_axon.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_benchmark.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_benchmark_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_blueprint.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_execution.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_execution_result.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_gateway_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_network_policy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_ops.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scenario.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scenario_builder.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scenario_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scorer.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_snapshot.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_storage_object.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_axon.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_benchmark.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_benchmark_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_blueprint.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_execution.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_execution_result.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_gateway_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_helpers.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_network_policy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_ops.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scenario.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scenario_builder.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scenario_run.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scorer.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_snapshot.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_storage_object.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/README.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/conftest.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/examples/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/examples/test_examples.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/README.md +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/__init__.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/conftest.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_agent.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_agent.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_axon.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_benchmark.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_blueprint.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_devbox.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_gateway_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_network_policy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_scenario.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_scorer.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_sdk.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_secret.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_snapshot.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_storage_object.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_axon.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_benchmark.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_blueprint.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_devbox.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_gateway_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_mcp_config.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_network_policy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_scenario.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_scorer.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_sdk.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_secret.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_snapshot.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_storage_object.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_blueprints.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_devboxes.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_executions.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_scenarios_benchmarks.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_snapshots.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/utils.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_client.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_command_id.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_extract_files.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_files.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_models.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_polling.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_qs.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_required_args.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_response.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_shared_pool.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_streaming.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_transform.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_context_loader.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_datetime_parse.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_json.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_path.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_proxy.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_typing.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/utils.py +0 -0
- {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/uv.lock +0 -0
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.22.1 (2026-06-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.22.0...v1.22.1](https://github.com/runloopai/api-client-python/compare/v1.22.0...v1.22.1)
|
|
6
|
+
|
|
7
|
+
### Build System
|
|
8
|
+
|
|
9
|
+
* **stainless:** map /v1/accounts/me to accounts.me in the SDK ([#9569](https://github.com/runloopai/api-client-python/issues/9569)) ([3f9cbe1](https://github.com/runloopai/api-client-python/commit/3f9cbe1e92c2eb9c1696f52cb11419bcafde6bd9))
|
|
10
|
+
|
|
11
|
+
## 1.22.0 (2026-05-27)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.21.0...v1.22.0](https://github.com/runloopai/api-client-python/compare/v1.21.0...v1.22.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* add reflex initiator type, hidden param ([#9350](https://github.com/runloopai/api-client-python/issues/9350)) ([5922abf](https://github.com/runloopai/api-client-python/commit/5922abfd135589b229cb64ea23750d34fede857f))
|
|
18
|
+
* **api:** expose lifecycle_hooks on LaunchParameters lifecycle ([#9115](https://github.com/runloopai/api-client-python/issues/9115)) ([c9c7c37](https://github.com/runloopai/api-client-python/commit/c9c7c37c2a38f91142b0b28d1e5cbc183b8ee53e))
|
|
19
|
+
* **mux:** initial changes to enable http/2 ([#8936](https://github.com/runloopai/api-client-python/issues/8936)) ([71ce0bf](https://github.com/runloopai/api-client-python/commit/71ce0bf9ac98599b41a9cc6d16a3333c8b70e977))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* clean up PTY and lifecycle hook OpenAPI descriptions ([#9502](https://github.com/runloopai/api-client-python/issues/9502)) ([f986282](https://github.com/runloopai/api-client-python/commit/f986282230c815acae4cf9d81685b182ca78ebfa))
|
|
25
|
+
* **mux:** strip internal stub note from PTY OpenAPI descriptions ([#9315](https://github.com/runloopai/api-client-python/issues/9315)) ([214629e](https://github.com/runloopai/api-client-python/commit/214629e9281c38ff75b5769e13b4b977a346bb04))
|
|
26
|
+
* revert workflow actions to runloopai forks ([#805](https://github.com/runloopai/api-client-python/issues/805)) ([88a9632](https://github.com/runloopai/api-client-python/commit/88a9632507cd422bc43eeb3886ac330c2ab3ba44))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Chores
|
|
30
|
+
|
|
31
|
+
* Update stainless.yml, bump AGENTS.md to keep this updated ([#9268](https://github.com/runloopai/api-client-python/issues/9268)) ([5d86ef5](https://github.com/runloopai/api-client-python/commit/5d86ef5240920ba4b6de9e59456aea3c0971e3ef))
|
|
32
|
+
|
|
3
33
|
## 1.21.0 (2026-05-13)
|
|
4
34
|
|
|
5
35
|
Full Changelog: [v1.20.3...v1.21.0](https://github.com/runloopai/api-client-python/compare/v1.20.3...v1.21.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: runloop_api_client
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.22.1
|
|
4
4
|
Summary: The official Python library for the runloop API
|
|
5
5
|
Project-URL: Homepage, https://github.com/runloopai/api-client-python
|
|
6
6
|
Project-URL: Repository, https://github.com/runloopai/api-client-python
|
|
@@ -8,12 +8,27 @@ from runloop_api_client.types import (
|
|
|
8
8
|
BrokerMount,
|
|
9
9
|
CodeMountParameters,
|
|
10
10
|
LaunchParameters,
|
|
11
|
+
LifecycleConfiguration,
|
|
12
|
+
LifecycleHooks,
|
|
11
13
|
Mount,
|
|
12
14
|
ObjectMount,
|
|
15
|
+
ResumeTriggers,
|
|
13
16
|
RunProfile,
|
|
14
17
|
)
|
|
15
18
|
```
|
|
16
19
|
|
|
20
|
+
# Accounts
|
|
21
|
+
|
|
22
|
+
Types:
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
from runloop_api_client.types import AccountView
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Methods:
|
|
29
|
+
|
|
30
|
+
- <code title="get /v1/accounts/me">client.accounts.<a href="./src/runloop_api_client/resources/accounts.py">me</a>() -> <a href="./src/runloop_api_client/types/account_view.py">AccountView</a></code>
|
|
31
|
+
|
|
17
32
|
# Benchmarks
|
|
18
33
|
|
|
19
34
|
Types:
|
|
@@ -42,6 +42,7 @@ if TYPE_CHECKING:
|
|
|
42
42
|
apikeys,
|
|
43
43
|
objects,
|
|
44
44
|
secrets,
|
|
45
|
+
accounts,
|
|
45
46
|
devboxes,
|
|
46
47
|
scenarios,
|
|
47
48
|
benchmarks,
|
|
@@ -58,6 +59,7 @@ if TYPE_CHECKING:
|
|
|
58
59
|
from .resources.apikeys import ApikeysResource, AsyncApikeysResource
|
|
59
60
|
from .resources.objects import ObjectsResource, AsyncObjectsResource
|
|
60
61
|
from .resources.secrets import SecretsResource, AsyncSecretsResource
|
|
62
|
+
from .resources.accounts import AccountsResource, AsyncAccountsResource
|
|
61
63
|
from .resources.benchmarks import BenchmarksResource, AsyncBenchmarksResource
|
|
62
64
|
from .resources.blueprints import BlueprintsResource, AsyncBlueprintsResource
|
|
63
65
|
from .resources.axons.axons import AxonsResource, AsyncAxonsResource
|
|
@@ -144,6 +146,12 @@ class Runloop(SyncAPIClient):
|
|
|
144
146
|
|
|
145
147
|
self._idempotency_header = "x-request-id"
|
|
146
148
|
|
|
149
|
+
@cached_property
|
|
150
|
+
def accounts(self) -> AccountsResource:
|
|
151
|
+
from .resources.accounts import AccountsResource
|
|
152
|
+
|
|
153
|
+
return AccountsResource(self)
|
|
154
|
+
|
|
147
155
|
@cached_property
|
|
148
156
|
def benchmarks(self) -> BenchmarksResource:
|
|
149
157
|
from .resources.benchmarks import BenchmarksResource
|
|
@@ -432,6 +440,12 @@ class AsyncRunloop(AsyncAPIClient):
|
|
|
432
440
|
|
|
433
441
|
self._idempotency_header = "x-request-id"
|
|
434
442
|
|
|
443
|
+
@cached_property
|
|
444
|
+
def accounts(self) -> AsyncAccountsResource:
|
|
445
|
+
from .resources.accounts import AsyncAccountsResource
|
|
446
|
+
|
|
447
|
+
return AsyncAccountsResource(self)
|
|
448
|
+
|
|
435
449
|
@cached_property
|
|
436
450
|
def benchmarks(self) -> AsyncBenchmarksResource:
|
|
437
451
|
from .resources.benchmarks import AsyncBenchmarksResource
|
|
@@ -655,6 +669,12 @@ class RunloopWithRawResponse:
|
|
|
655
669
|
def __init__(self, client: Runloop) -> None:
|
|
656
670
|
self._client = client
|
|
657
671
|
|
|
672
|
+
@cached_property
|
|
673
|
+
def accounts(self) -> accounts.AccountsResourceWithRawResponse:
|
|
674
|
+
from .resources.accounts import AccountsResourceWithRawResponse
|
|
675
|
+
|
|
676
|
+
return AccountsResourceWithRawResponse(self._client.accounts)
|
|
677
|
+
|
|
658
678
|
@cached_property
|
|
659
679
|
def benchmarks(self) -> benchmarks.BenchmarksResourceWithRawResponse:
|
|
660
680
|
from .resources.benchmarks import BenchmarksResourceWithRawResponse
|
|
@@ -758,6 +778,12 @@ class AsyncRunloopWithRawResponse:
|
|
|
758
778
|
def __init__(self, client: AsyncRunloop) -> None:
|
|
759
779
|
self._client = client
|
|
760
780
|
|
|
781
|
+
@cached_property
|
|
782
|
+
def accounts(self) -> accounts.AsyncAccountsResourceWithRawResponse:
|
|
783
|
+
from .resources.accounts import AsyncAccountsResourceWithRawResponse
|
|
784
|
+
|
|
785
|
+
return AsyncAccountsResourceWithRawResponse(self._client.accounts)
|
|
786
|
+
|
|
761
787
|
@cached_property
|
|
762
788
|
def benchmarks(self) -> benchmarks.AsyncBenchmarksResourceWithRawResponse:
|
|
763
789
|
from .resources.benchmarks import AsyncBenchmarksResourceWithRawResponse
|
|
@@ -861,6 +887,12 @@ class RunloopWithStreamedResponse:
|
|
|
861
887
|
def __init__(self, client: Runloop) -> None:
|
|
862
888
|
self._client = client
|
|
863
889
|
|
|
890
|
+
@cached_property
|
|
891
|
+
def accounts(self) -> accounts.AccountsResourceWithStreamingResponse:
|
|
892
|
+
from .resources.accounts import AccountsResourceWithStreamingResponse
|
|
893
|
+
|
|
894
|
+
return AccountsResourceWithStreamingResponse(self._client.accounts)
|
|
895
|
+
|
|
864
896
|
@cached_property
|
|
865
897
|
def benchmarks(self) -> benchmarks.BenchmarksResourceWithStreamingResponse:
|
|
866
898
|
from .resources.benchmarks import BenchmarksResourceWithStreamingResponse
|
|
@@ -964,6 +996,12 @@ class AsyncRunloopWithStreamedResponse:
|
|
|
964
996
|
def __init__(self, client: AsyncRunloop) -> None:
|
|
965
997
|
self._client = client
|
|
966
998
|
|
|
999
|
+
@cached_property
|
|
1000
|
+
def accounts(self) -> accounts.AsyncAccountsResourceWithStreamingResponse:
|
|
1001
|
+
from .resources.accounts import AsyncAccountsResourceWithStreamingResponse
|
|
1002
|
+
|
|
1003
|
+
return AsyncAccountsResourceWithStreamingResponse(self._client.accounts)
|
|
1004
|
+
|
|
967
1005
|
@cached_property
|
|
968
1006
|
def benchmarks(self) -> benchmarks.AsyncBenchmarksResourceWithStreamingResponse:
|
|
969
1007
|
from .resources.benchmarks import AsyncBenchmarksResourceWithStreamingResponse
|
{runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/__init__.py
RENAMED
|
@@ -48,6 +48,14 @@ from .secrets import (
|
|
|
48
48
|
SecretsResourceWithStreamingResponse,
|
|
49
49
|
AsyncSecretsResourceWithStreamingResponse,
|
|
50
50
|
)
|
|
51
|
+
from .accounts import (
|
|
52
|
+
AccountsResource,
|
|
53
|
+
AsyncAccountsResource,
|
|
54
|
+
AccountsResourceWithRawResponse,
|
|
55
|
+
AsyncAccountsResourceWithRawResponse,
|
|
56
|
+
AccountsResourceWithStreamingResponse,
|
|
57
|
+
AsyncAccountsResourceWithStreamingResponse,
|
|
58
|
+
)
|
|
51
59
|
from .devboxes import (
|
|
52
60
|
DevboxesResource,
|
|
53
61
|
AsyncDevboxesResource,
|
|
@@ -130,6 +138,12 @@ from .network_policies import (
|
|
|
130
138
|
)
|
|
131
139
|
|
|
132
140
|
__all__ = [
|
|
141
|
+
"AccountsResource",
|
|
142
|
+
"AsyncAccountsResource",
|
|
143
|
+
"AccountsResourceWithRawResponse",
|
|
144
|
+
"AsyncAccountsResourceWithRawResponse",
|
|
145
|
+
"AccountsResourceWithStreamingResponse",
|
|
146
|
+
"AsyncAccountsResourceWithStreamingResponse",
|
|
133
147
|
"BenchmarksResource",
|
|
134
148
|
"AsyncBenchmarksResource",
|
|
135
149
|
"BenchmarksResourceWithRawResponse",
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import httpx
|
|
6
|
+
|
|
7
|
+
from .._types import Body, Query, Headers, NotGiven, not_given
|
|
8
|
+
from .._compat import cached_property
|
|
9
|
+
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
10
|
+
from .._response import (
|
|
11
|
+
to_raw_response_wrapper,
|
|
12
|
+
to_streamed_response_wrapper,
|
|
13
|
+
async_to_raw_response_wrapper,
|
|
14
|
+
async_to_streamed_response_wrapper,
|
|
15
|
+
)
|
|
16
|
+
from .._base_client import make_request_options
|
|
17
|
+
from ..types.account_view import AccountView
|
|
18
|
+
|
|
19
|
+
__all__ = ["AccountsResource", "AsyncAccountsResource"]
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class AccountsResource(SyncAPIResource):
|
|
23
|
+
@cached_property
|
|
24
|
+
def with_raw_response(self) -> AccountsResourceWithRawResponse:
|
|
25
|
+
"""
|
|
26
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
27
|
+
the raw response object instead of the parsed content.
|
|
28
|
+
|
|
29
|
+
For more information, see https://www.github.com/runloopai/api-client-python#accessing-raw-response-data-eg-headers
|
|
30
|
+
"""
|
|
31
|
+
return AccountsResourceWithRawResponse(self)
|
|
32
|
+
|
|
33
|
+
@cached_property
|
|
34
|
+
def with_streaming_response(self) -> AccountsResourceWithStreamingResponse:
|
|
35
|
+
"""
|
|
36
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
37
|
+
|
|
38
|
+
For more information, see https://www.github.com/runloopai/api-client-python#with_streaming_response
|
|
39
|
+
"""
|
|
40
|
+
return AccountsResourceWithStreamingResponse(self)
|
|
41
|
+
|
|
42
|
+
def me(
|
|
43
|
+
self,
|
|
44
|
+
*,
|
|
45
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
46
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
47
|
+
extra_headers: Headers | None = None,
|
|
48
|
+
extra_query: Query | None = None,
|
|
49
|
+
extra_body: Body | None = None,
|
|
50
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
51
|
+
) -> AccountView:
|
|
52
|
+
"""
|
|
53
|
+
Returns the account the API key or session is authenticated against, including
|
|
54
|
+
id, name, tier, and billing summary.
|
|
55
|
+
"""
|
|
56
|
+
return self._get(
|
|
57
|
+
"/v1/accounts/me",
|
|
58
|
+
options=make_request_options(
|
|
59
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
60
|
+
),
|
|
61
|
+
cast_to=AccountView,
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
class AsyncAccountsResource(AsyncAPIResource):
|
|
66
|
+
@cached_property
|
|
67
|
+
def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse:
|
|
68
|
+
"""
|
|
69
|
+
This property can be used as a prefix for any HTTP method call to return
|
|
70
|
+
the raw response object instead of the parsed content.
|
|
71
|
+
|
|
72
|
+
For more information, see https://www.github.com/runloopai/api-client-python#accessing-raw-response-data-eg-headers
|
|
73
|
+
"""
|
|
74
|
+
return AsyncAccountsResourceWithRawResponse(self)
|
|
75
|
+
|
|
76
|
+
@cached_property
|
|
77
|
+
def with_streaming_response(self) -> AsyncAccountsResourceWithStreamingResponse:
|
|
78
|
+
"""
|
|
79
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
|
80
|
+
|
|
81
|
+
For more information, see https://www.github.com/runloopai/api-client-python#with_streaming_response
|
|
82
|
+
"""
|
|
83
|
+
return AsyncAccountsResourceWithStreamingResponse(self)
|
|
84
|
+
|
|
85
|
+
async def me(
|
|
86
|
+
self,
|
|
87
|
+
*,
|
|
88
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
89
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
90
|
+
extra_headers: Headers | None = None,
|
|
91
|
+
extra_query: Query | None = None,
|
|
92
|
+
extra_body: Body | None = None,
|
|
93
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
94
|
+
) -> AccountView:
|
|
95
|
+
"""
|
|
96
|
+
Returns the account the API key or session is authenticated against, including
|
|
97
|
+
id, name, tier, and billing summary.
|
|
98
|
+
"""
|
|
99
|
+
return await self._get(
|
|
100
|
+
"/v1/accounts/me",
|
|
101
|
+
options=make_request_options(
|
|
102
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
103
|
+
),
|
|
104
|
+
cast_to=AccountView,
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
class AccountsResourceWithRawResponse:
|
|
109
|
+
def __init__(self, accounts: AccountsResource) -> None:
|
|
110
|
+
self._accounts = accounts
|
|
111
|
+
|
|
112
|
+
self.me = to_raw_response_wrapper(
|
|
113
|
+
accounts.me,
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
class AsyncAccountsResourceWithRawResponse:
|
|
118
|
+
def __init__(self, accounts: AsyncAccountsResource) -> None:
|
|
119
|
+
self._accounts = accounts
|
|
120
|
+
|
|
121
|
+
self.me = async_to_raw_response_wrapper(
|
|
122
|
+
accounts.me,
|
|
123
|
+
)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
class AccountsResourceWithStreamingResponse:
|
|
127
|
+
def __init__(self, accounts: AccountsResource) -> None:
|
|
128
|
+
self._accounts = accounts
|
|
129
|
+
|
|
130
|
+
self.me = to_streamed_response_wrapper(
|
|
131
|
+
accounts.me,
|
|
132
|
+
)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
class AsyncAccountsResourceWithStreamingResponse:
|
|
136
|
+
def __init__(self, accounts: AsyncAccountsResource) -> None:
|
|
137
|
+
self._accounts = accounts
|
|
138
|
+
|
|
139
|
+
self.me = async_to_streamed_response_wrapper(
|
|
140
|
+
accounts.me,
|
|
141
|
+
)
|
{runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/agents.py
RENAMED
|
@@ -68,7 +68,7 @@ class AgentsResource(SyncAPIResource):
|
|
|
68
68
|
Args:
|
|
69
69
|
name: The name of the Agent.
|
|
70
70
|
|
|
71
|
-
source:
|
|
71
|
+
source: Agent source configuration.
|
|
72
72
|
|
|
73
73
|
version: Optional version identifier for the Agent. For npm/pip sources this is typically
|
|
74
74
|
a semver string (e.g. '2.0.65'). For git sources it can be a branch or tag.
|
|
@@ -377,7 +377,7 @@ class AsyncAgentsResource(AsyncAPIResource):
|
|
|
377
377
|
Args:
|
|
378
378
|
name: The name of the Agent.
|
|
379
379
|
|
|
380
|
-
source:
|
|
380
|
+
source: Agent source configuration.
|
|
381
381
|
|
|
382
382
|
version: Optional version identifier for the Agent. For npm/pip sources this is typically
|
|
383
383
|
a semver string (e.g. '2.0.65'). For git sources it can be a branch or tag.
|
|
@@ -177,7 +177,9 @@ class BlueprintsResource(SyncAPIResource):
|
|
|
177
177
|
|
|
178
178
|
file_mounts: (Optional) Map of paths and file contents to write before setup.
|
|
179
179
|
|
|
180
|
-
launch_parameters:
|
|
180
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
181
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
182
|
+
marked as 'running'.
|
|
181
183
|
|
|
182
184
|
metadata: (Optional) User defined metadata for the Blueprint.
|
|
183
185
|
|
|
@@ -529,7 +531,9 @@ class BlueprintsResource(SyncAPIResource):
|
|
|
529
531
|
|
|
530
532
|
file_mounts: (Optional) Map of paths and file contents to write before setup.
|
|
531
533
|
|
|
532
|
-
launch_parameters:
|
|
534
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
535
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
536
|
+
marked as 'running'.
|
|
533
537
|
|
|
534
538
|
metadata: (Optional) User defined metadata for the Blueprint.
|
|
535
539
|
|
|
@@ -722,7 +726,9 @@ class BlueprintsResource(SyncAPIResource):
|
|
|
722
726
|
|
|
723
727
|
file_mounts: (Optional) Map of paths and file contents to write before setup.
|
|
724
728
|
|
|
725
|
-
launch_parameters:
|
|
729
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
730
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
731
|
+
marked as 'running'.
|
|
726
732
|
|
|
727
733
|
metadata: (Optional) User defined metadata for the Blueprint.
|
|
728
734
|
|
|
@@ -858,7 +864,9 @@ class AsyncBlueprintsResource(AsyncAPIResource):
|
|
|
858
864
|
|
|
859
865
|
file_mounts: (Optional) Map of paths and file contents to write before setup.
|
|
860
866
|
|
|
861
|
-
launch_parameters:
|
|
867
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
868
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
869
|
+
marked as 'running'.
|
|
862
870
|
|
|
863
871
|
metadata: (Optional) User defined metadata for the Blueprint.
|
|
864
872
|
|
|
@@ -1210,7 +1218,9 @@ class AsyncBlueprintsResource(AsyncAPIResource):
|
|
|
1210
1218
|
|
|
1211
1219
|
file_mounts: (Optional) Map of paths and file contents to write before setup.
|
|
1212
1220
|
|
|
1213
|
-
launch_parameters:
|
|
1221
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
1222
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
1223
|
+
marked as 'running'.
|
|
1214
1224
|
|
|
1215
1225
|
metadata: (Optional) User defined metadata for the Blueprint.
|
|
1216
1226
|
|
|
@@ -1403,7 +1413,9 @@ class AsyncBlueprintsResource(AsyncAPIResource):
|
|
|
1403
1413
|
|
|
1404
1414
|
file_mounts: (Optional) Map of paths and file contents to write before setup.
|
|
1405
1415
|
|
|
1406
|
-
launch_parameters:
|
|
1416
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
1417
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
1418
|
+
marked as 'running'.
|
|
1407
1419
|
|
|
1408
1420
|
metadata: (Optional) User defined metadata for the Blueprint.
|
|
1409
1421
|
|
|
@@ -216,7 +216,9 @@ class DevboxesResource(SyncAPIResource):
|
|
|
216
216
|
the real API key. Example: {'GWS_ANTHROPIC': {'gateway': 'anthropic', 'secret':
|
|
217
217
|
'my_claude_key'}}
|
|
218
218
|
|
|
219
|
-
launch_parameters:
|
|
219
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
220
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
221
|
+
marked as 'running'.
|
|
220
222
|
|
|
221
223
|
mcp: [Beta] (Optional) MCP specifications for MCP server access. Map key is the
|
|
222
224
|
environment variable name for the MCP token envelope. Each spec links an MCP
|
|
@@ -240,9 +242,8 @@ class DevboxesResource(SyncAPIResource):
|
|
|
240
242
|
snapshot_id: Snapshot ID to use for the Devbox. Only one of (Snapshot ID, Blueprint ID,
|
|
241
243
|
Blueprint name) should be specified.
|
|
242
244
|
|
|
243
|
-
tunnel:
|
|
244
|
-
|
|
245
|
-
will be included in the Devbox response.
|
|
245
|
+
tunnel: Configuration for creating a V2 tunnel. When specified at Devbox creation, a
|
|
246
|
+
tunnel will be automatically provisioned.
|
|
246
247
|
|
|
247
248
|
extra_headers: Send extra headers
|
|
248
249
|
|
|
@@ -1877,7 +1878,9 @@ class AsyncDevboxesResource(AsyncAPIResource):
|
|
|
1877
1878
|
the real API key. Example: {'GWS_ANTHROPIC': {'gateway': 'anthropic', 'secret':
|
|
1878
1879
|
'my_claude_key'}}
|
|
1879
1880
|
|
|
1880
|
-
launch_parameters:
|
|
1881
|
+
launch_parameters: LaunchParameters enable you to customize the resources available to your Devbox
|
|
1882
|
+
as well as the environment set up that should be completed before the Devbox is
|
|
1883
|
+
marked as 'running'.
|
|
1881
1884
|
|
|
1882
1885
|
mcp: [Beta] (Optional) MCP specifications for MCP server access. Map key is the
|
|
1883
1886
|
environment variable name for the MCP token envelope. Each spec links an MCP
|
|
@@ -1901,9 +1904,8 @@ class AsyncDevboxesResource(AsyncAPIResource):
|
|
|
1901
1904
|
snapshot_id: Snapshot ID to use for the Devbox. Only one of (Snapshot ID, Blueprint ID,
|
|
1902
1905
|
Blueprint name) should be specified.
|
|
1903
1906
|
|
|
1904
|
-
tunnel:
|
|
1905
|
-
|
|
1906
|
-
will be included in the Devbox response.
|
|
1907
|
+
tunnel: Configuration for creating a V2 tunnel. When specified at Devbox creation, a
|
|
1908
|
+
tunnel will be automatically provisioned.
|
|
1907
1909
|
|
|
1908
1910
|
extra_headers: Send extra headers
|
|
1909
1911
|
|
|
@@ -160,7 +160,8 @@ class GatewayConfigsResource(SyncAPIResource):
|
|
|
160
160
|
All fields are optional.
|
|
161
161
|
|
|
162
162
|
Args:
|
|
163
|
-
auth_mechanism:
|
|
163
|
+
auth_mechanism: Defines how credentials are applied to HTTP requests when proxying through the
|
|
164
|
+
gateway.
|
|
164
165
|
|
|
165
166
|
description: New description for this gateway configuration.
|
|
166
167
|
|
|
@@ -440,7 +441,8 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
|
|
|
440
441
|
All fields are optional.
|
|
441
442
|
|
|
442
443
|
Args:
|
|
443
|
-
auth_mechanism:
|
|
444
|
+
auth_mechanism: Defines how credentials are applied to HTTP requests when proxying through the
|
|
445
|
+
gateway.
|
|
444
446
|
|
|
445
447
|
description: New description for this gateway configuration.
|
|
446
448
|
|
{runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/pty.py
RENAMED
|
@@ -68,22 +68,18 @@ class PtyResource(SyncAPIResource):
|
|
|
68
68
|
effect. The response returns a PtyConnectView containing connect_url (a
|
|
69
69
|
server-relative path to the WebSocket data plane), idle_ttl_seconds (how long
|
|
70
70
|
this session is retained after the last client disconnects), and the resulting
|
|
71
|
-
cols/rows. The interactive byte stream
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
state.
|
|
83
|
-
|
|
84
|
-
Documentation note: this operation is published from mux strictly as an OpenAPI
|
|
85
|
-
contract stub for the PTY service control plane. It is not evidence that mux
|
|
86
|
-
itself serves the interactive PTY transport.
|
|
71
|
+
cols/rows. The interactive terminal byte stream is exchanged over the WebSocket
|
|
72
|
+
data plane and is not modeled in this OpenAPI contract; clients should connect
|
|
73
|
+
to connect_url and exchange raw binary frames for terminal I/O. The
|
|
74
|
+
single-attach contract is enforced when a client opens the WebSocket data plane,
|
|
75
|
+
not on this bootstrap call: bootstrap always succeeds for a valid session_name,
|
|
76
|
+
even if another client is currently attached. Rejection of a second concurrent
|
|
77
|
+
attach happens at WebSocket upgrade time. If the active client disconnects, the
|
|
78
|
+
session is preserved for the idle TTL so a later connect using the same
|
|
79
|
+
session_name resumes the same shell. After the TTL expires, after an explicit
|
|
80
|
+
close control action, or after the underlying Devbox lifecycle replaces the PTY
|
|
81
|
+
process (such as through suspend/resume), a later request with the same
|
|
82
|
+
session_name creates a fresh PTY session without the previous shell state.
|
|
87
83
|
|
|
88
84
|
Args:
|
|
89
85
|
cols: Optional initial terminal width in character cells (1..=1000). Defaults to 80
|
|
@@ -141,8 +137,8 @@ class PtyResource(SyncAPIResource):
|
|
|
141
137
|
"""Applies a PTY control operation to an existing session.
|
|
142
138
|
|
|
143
139
|
The action field selects
|
|
144
|
-
the operation; the other fields in
|
|
145
|
-
|
|
140
|
+
the operation; the other fields in PtyControlParams are interpreted only when
|
|
141
|
+
they are relevant to the chosen action.
|
|
146
142
|
|
|
147
143
|
resize: cols and rows are required and must each be in 1..=1000. A 0 or
|
|
148
144
|
out-of-range value returns 400. The new winsize is applied to the PTY master and
|
|
@@ -158,10 +154,6 @@ class PtyResource(SyncAPIResource):
|
|
|
158
154
|
from the server's session cache. A subsequent connect with the same session_name
|
|
159
155
|
will create a fresh PTY session.
|
|
160
156
|
|
|
161
|
-
Documentation note: this operation is published from mux strictly as an OpenAPI
|
|
162
|
-
contract stub for the PTY service control plane. It is not evidence that mux
|
|
163
|
-
itself serves the interactive PTY transport.
|
|
164
|
-
|
|
165
157
|
Args:
|
|
166
158
|
extra_headers: Send extra headers
|
|
167
159
|
|
|
@@ -241,22 +233,18 @@ class AsyncPtyResource(AsyncAPIResource):
|
|
|
241
233
|
effect. The response returns a PtyConnectView containing connect_url (a
|
|
242
234
|
server-relative path to the WebSocket data plane), idle_ttl_seconds (how long
|
|
243
235
|
this session is retained after the last client disconnects), and the resulting
|
|
244
|
-
cols/rows. The interactive byte stream
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
state.
|
|
256
|
-
|
|
257
|
-
Documentation note: this operation is published from mux strictly as an OpenAPI
|
|
258
|
-
contract stub for the PTY service control plane. It is not evidence that mux
|
|
259
|
-
itself serves the interactive PTY transport.
|
|
236
|
+
cols/rows. The interactive terminal byte stream is exchanged over the WebSocket
|
|
237
|
+
data plane and is not modeled in this OpenAPI contract; clients should connect
|
|
238
|
+
to connect_url and exchange raw binary frames for terminal I/O. The
|
|
239
|
+
single-attach contract is enforced when a client opens the WebSocket data plane,
|
|
240
|
+
not on this bootstrap call: bootstrap always succeeds for a valid session_name,
|
|
241
|
+
even if another client is currently attached. Rejection of a second concurrent
|
|
242
|
+
attach happens at WebSocket upgrade time. If the active client disconnects, the
|
|
243
|
+
session is preserved for the idle TTL so a later connect using the same
|
|
244
|
+
session_name resumes the same shell. After the TTL expires, after an explicit
|
|
245
|
+
close control action, or after the underlying Devbox lifecycle replaces the PTY
|
|
246
|
+
process (such as through suspend/resume), a later request with the same
|
|
247
|
+
session_name creates a fresh PTY session without the previous shell state.
|
|
260
248
|
|
|
261
249
|
Args:
|
|
262
250
|
cols: Optional initial terminal width in character cells (1..=1000). Defaults to 80
|
|
@@ -314,8 +302,8 @@ class AsyncPtyResource(AsyncAPIResource):
|
|
|
314
302
|
"""Applies a PTY control operation to an existing session.
|
|
315
303
|
|
|
316
304
|
The action field selects
|
|
317
|
-
the operation; the other fields in
|
|
318
|
-
|
|
305
|
+
the operation; the other fields in PtyControlParams are interpreted only when
|
|
306
|
+
they are relevant to the chosen action.
|
|
319
307
|
|
|
320
308
|
resize: cols and rows are required and must each be in 1..=1000. A 0 or
|
|
321
309
|
out-of-range value returns 400. The new winsize is applied to the PTY master and
|
|
@@ -331,10 +319,6 @@ class AsyncPtyResource(AsyncAPIResource):
|
|
|
331
319
|
from the server's session cache. A subsequent connect with the same session_name
|
|
332
320
|
will create a fresh PTY session.
|
|
333
321
|
|
|
334
|
-
Documentation note: this operation is published from mux strictly as an OpenAPI
|
|
335
|
-
contract stub for the PTY service control plane. It is not evidence that mux
|
|
336
|
-
itself serves the interactive PTY transport.
|
|
337
|
-
|
|
338
322
|
Args:
|
|
339
323
|
extra_headers: Send extra headers
|
|
340
324
|
|