runloop_api_client 1.21.0__tar.gz → 1.22.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 (463) hide show
  1. runloop_api_client-1.22.0/.release-please-manifest.json +3 -0
  2. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/CHANGELOG.md +22 -0
  3. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/PKG-INFO +1 -1
  4. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/api.md +3 -0
  5. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/pyproject.toml +1 -1
  6. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_version.py +1 -1
  7. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/agents.py +2 -2
  8. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/blueprints.py +18 -6
  9. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/devboxes/devboxes.py +10 -8
  10. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/gateway_configs.py +4 -2
  11. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/pty.py +28 -44
  12. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/scenarios/scenarios.py +8 -4
  13. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/__init__.py +3 -0
  14. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/agent_create_params.py +1 -1
  15. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/agent_view.py +1 -1
  16. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_job_create_params.py +8 -20
  17. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_job_view.py +10 -22
  18. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_build_parameters.py +5 -1
  19. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_create_from_inspection_params.py +5 -1
  20. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_create_params.py +5 -1
  21. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_preview_params.py +5 -1
  22. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_view.py +7 -1
  23. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_create_params.py +9 -6
  24. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_view.py +24 -8
  25. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/gateway_config_update_params.py +7 -2
  26. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_create_params.py +4 -1
  27. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_environment.py +5 -1
  28. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_environment_param.py +5 -1
  29. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_run_view.py +4 -1
  30. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_update_params.py +4 -1
  31. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_view.py +4 -1
  32. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/__init__.py +3 -0
  33. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/agent_source.py +8 -8
  34. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/launch_parameters.py +18 -48
  35. runloop_api_client-1.22.0/src/runloop_api_client/types/shared/lifecycle_configuration.py +38 -0
  36. runloop_api_client-1.22.0/src/runloop_api_client/types/shared/lifecycle_hooks.py +28 -0
  37. runloop_api_client-1.22.0/src/runloop_api_client/types/shared/resume_triggers.py +17 -0
  38. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/run_profile.py +5 -1
  39. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/__init__.py +3 -0
  40. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/agent_source.py +8 -8
  41. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/launch_parameters.py +18 -48
  42. runloop_api_client-1.22.0/src/runloop_api_client/types/shared_params/lifecycle_configuration.py +40 -0
  43. runloop_api_client-1.22.0/src/runloop_api_client/types/shared_params/lifecycle_hooks.py +31 -0
  44. runloop_api_client-1.22.0/src/runloop_api_client/types/shared_params/resume_triggers.py +18 -0
  45. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/run_profile.py +5 -1
  46. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_benchmarks.py +8 -0
  47. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_blueprints.py +24 -0
  48. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_devboxes.py +8 -0
  49. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_scenarios.py +24 -0
  50. runloop_api_client-1.21.0/.release-please-manifest.json +0 -3
  51. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/.gitignore +0 -0
  52. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/CONTRIBUTING.md +0 -0
  53. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/EXAMPLES.md +0 -0
  54. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/LICENSE +0 -0
  55. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/README-SDK.md +0 -0
  56. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/README.md +0 -0
  57. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/SECURITY.md +0 -0
  58. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/bin/check-release-environment +0 -0
  59. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/bin/publish-pypi +0 -0
  60. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/__init__.py +0 -0
  61. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/_harness.py +0 -0
  62. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/blueprint_with_build_context.py +0 -0
  63. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/devbox_from_blueprint_lifecycle.py +0 -0
  64. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/devbox_snapshot_resume.py +0 -0
  65. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/devbox_snapshots.py +0 -0
  66. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/devbox_tunnel.py +0 -0
  67. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/example_types.py +0 -0
  68. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/mcp_github_tools.py +0 -0
  69. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/registry.py +0 -0
  70. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/examples/secrets_with_devbox.py +0 -0
  71. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/release-please-config.json +0 -0
  72. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/requirements-dev.lock +0 -0
  73. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop/lib/.keep +0 -0
  74. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/__init__.py +0 -0
  75. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_base_client.py +0 -0
  76. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_client.py +0 -0
  77. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_compat.py +0 -0
  78. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_constants.py +0 -0
  79. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_exceptions.py +0 -0
  80. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_files.py +0 -0
  81. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_models.py +0 -0
  82. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_qs.py +0 -0
  83. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_resource.py +0 -0
  84. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_response.py +0 -0
  85. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_streaming.py +0 -0
  86. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_types.py +0 -0
  87. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/__init__.py +0 -0
  88. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_compat.py +0 -0
  89. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_datetime_parse.py +0 -0
  90. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_json.py +0 -0
  91. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_logs.py +0 -0
  92. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_path.py +0 -0
  93. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_proxy.py +0 -0
  94. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_reflection.py +0 -0
  95. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_resources_proxy.py +0 -0
  96. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_streams.py +0 -0
  97. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_sync.py +0 -0
  98. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_transform.py +0 -0
  99. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_typing.py +0 -0
  100. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_utils.py +0 -0
  101. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/_utils/_validation.py +0 -0
  102. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/.keep +0 -0
  103. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/__init__.py +0 -0
  104. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/_ignore.py +0 -0
  105. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/context_loader.py +0 -0
  106. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/polling.py +0 -0
  107. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/polling_async.py +0 -0
  108. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/lib/wait_for_status.py +0 -0
  109. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/pagination.py +0 -0
  110. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/py.typed +0 -0
  111. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/__init__.py +0 -0
  112. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/apikeys.py +0 -0
  113. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/axons/__init__.py +0 -0
  114. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/axons/axons.py +0 -0
  115. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/axons/events.py +0 -0
  116. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/axons/sql.py +0 -0
  117. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/benchmark_jobs.py +0 -0
  118. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/benchmark_runs.py +0 -0
  119. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/benchmarks.py +0 -0
  120. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/devboxes/__init__.py +0 -0
  121. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/devboxes/disk_snapshots.py +0 -0
  122. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/devboxes/executions.py +0 -0
  123. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/devboxes/logs.py +0 -0
  124. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/mcp_configs.py +0 -0
  125. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/network_policies.py +0 -0
  126. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/objects.py +0 -0
  127. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/restricted_keys.py +0 -0
  128. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/scenarios/__init__.py +0 -0
  129. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/scenarios/runs.py +0 -0
  130. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/scenarios/scorers.py +0 -0
  131. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/resources/secrets.py +0 -0
  132. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/__init__.py +0 -0
  133. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/_helpers.py +0 -0
  134. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/_types.py +0 -0
  135. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/agent.py +0 -0
  136. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_.py +0 -0
  137. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_agent.py +0 -0
  138. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_axon.py +0 -0
  139. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_benchmark.py +0 -0
  140. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_benchmark_run.py +0 -0
  141. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_blueprint.py +0 -0
  142. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_devbox.py +0 -0
  143. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_execution.py +0 -0
  144. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_execution_result.py +0 -0
  145. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_gateway_config.py +0 -0
  146. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_mcp_config.py +0 -0
  147. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_network_policy.py +0 -0
  148. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_scenario.py +0 -0
  149. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_scenario_builder.py +0 -0
  150. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_scenario_run.py +0 -0
  151. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_scorer.py +0 -0
  152. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_secret.py +0 -0
  153. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_snapshot.py +0 -0
  154. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/async_storage_object.py +0 -0
  155. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/axon.py +0 -0
  156. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/benchmark.py +0 -0
  157. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/benchmark_run.py +0 -0
  158. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/blueprint.py +0 -0
  159. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/devbox.py +0 -0
  160. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/execution.py +0 -0
  161. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/execution_result.py +0 -0
  162. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/gateway_config.py +0 -0
  163. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/mcp_config.py +0 -0
  164. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/network_policy.py +0 -0
  165. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/scenario.py +0 -0
  166. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/scenario_builder.py +0 -0
  167. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/scenario_run.py +0 -0
  168. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/scorer.py +0 -0
  169. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/secret.py +0 -0
  170. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/snapshot.py +0 -0
  171. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/storage_object.py +0 -0
  172. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/sdk/sync.py +0 -0
  173. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/agent_devbox_counts_view.py +0 -0
  174. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/agent_list_params.py +0 -0
  175. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/agent_list_public_params.py +0 -0
  176. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/agent_list_view.py +0 -0
  177. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/api_key_created_view.py +0 -0
  178. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/apikey_create_params.py +0 -0
  179. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_create_params.py +0 -0
  180. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_event_view.py +0 -0
  181. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_list_params.py +0 -0
  182. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_list_view.py +0 -0
  183. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_publish_params.py +0 -0
  184. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_subscribe_sse_params.py +0 -0
  185. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axon_view.py +0 -0
  186. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/__init__.py +0 -0
  187. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/axon_event_list_view.py +0 -0
  188. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/event_list_params.py +0 -0
  189. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_batch_params.py +0 -0
  190. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_batch_result_view.py +0 -0
  191. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_column_meta_view.py +0 -0
  192. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_query_params.py +0 -0
  193. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_query_result_view.py +0 -0
  194. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_result_meta_view.py +0 -0
  195. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_statement_params.py +0 -0
  196. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_step_error_view.py +0 -0
  197. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/axons/sql_step_result_view.py +0 -0
  198. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_create_params.py +0 -0
  199. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_definitions_params.py +0 -0
  200. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_job_list_params.py +0 -0
  201. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_job_list_view.py +0 -0
  202. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_list_params.py +0 -0
  203. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_list_public_params.py +0 -0
  204. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_run_list_params.py +0 -0
  205. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_run_list_scenario_runs_params.py +0 -0
  206. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_run_list_view.py +0 -0
  207. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_run_view.py +0 -0
  208. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_start_run_params.py +0 -0
  209. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_update_params.py +0 -0
  210. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_update_scenarios_params.py +0 -0
  211. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/benchmark_view.py +0 -0
  212. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_build_log.py +0 -0
  213. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_build_logs_list_view.py +0 -0
  214. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_list_params.py +0 -0
  215. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_list_public_params.py +0 -0
  216. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_list_view.py +0 -0
  217. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/blueprint_preview_view.py +0 -0
  218. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_async_execution_detail_view.py +0 -0
  219. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_create_ssh_key_response.py +0 -0
  220. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_download_file_params.py +0 -0
  221. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_enable_tunnel_params.py +0 -0
  222. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_execute_async_params.py +0 -0
  223. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_execute_params.py +0 -0
  224. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_execute_sync_params.py +0 -0
  225. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_execution_detail_view.py +0 -0
  226. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_list_disk_snapshots_params.py +0 -0
  227. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_list_params.py +0 -0
  228. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_list_view.py +0 -0
  229. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_read_file_contents_params.py +0 -0
  230. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_read_file_contents_response.py +0 -0
  231. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_resource_usage_view.py +0 -0
  232. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_send_std_in_result.py +0 -0
  233. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_shutdown_params.py +0 -0
  234. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_snapshot_disk_async_params.py +0 -0
  235. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_snapshot_disk_params.py +0 -0
  236. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_snapshot_list_view.py +0 -0
  237. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_snapshot_view.py +0 -0
  238. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_update_params.py +0 -0
  239. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_upload_file_params.py +0 -0
  240. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_wait_for_command_params.py +0 -0
  241. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devbox_write_file_contents_params.py +0 -0
  242. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/__init__.py +0 -0
  243. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/devbox_logs_list_view.py +0 -0
  244. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/devbox_snapshot_async_status_view.py +0 -0
  245. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/disk_snapshot_list_params.py +0 -0
  246. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/disk_snapshot_update_params.py +0 -0
  247. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_execute_async_params.py +0 -0
  248. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_execute_sync_params.py +0 -0
  249. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_kill_params.py +0 -0
  250. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_retrieve_params.py +0 -0
  251. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_send_std_in_params.py +0 -0
  252. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_stream_stderr_updates_params.py +0 -0
  253. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_stream_stdout_updates_params.py +0 -0
  254. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/execution_update_chunk.py +0 -0
  255. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/devboxes/log_list_params.py +0 -0
  256. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/gateway_config_create_params.py +0 -0
  257. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/gateway_config_list_params.py +0 -0
  258. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/gateway_config_list_view.py +0 -0
  259. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/gateway_config_view.py +0 -0
  260. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/input_context.py +0 -0
  261. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/input_context_param.py +0 -0
  262. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/input_context_update_param.py +0 -0
  263. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/inspection_source_param.py +0 -0
  264. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/mcp_config_create_params.py +0 -0
  265. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/mcp_config_list_params.py +0 -0
  266. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/mcp_config_list_view.py +0 -0
  267. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/mcp_config_update_params.py +0 -0
  268. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/mcp_config_view.py +0 -0
  269. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/network_policy_create_params.py +0 -0
  270. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/network_policy_list_params.py +0 -0
  271. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/network_policy_list_view.py +0 -0
  272. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/network_policy_update_params.py +0 -0
  273. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/network_policy_view.py +0 -0
  274. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_create_params.py +0 -0
  275. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_download_params.py +0 -0
  276. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_download_url_view.py +0 -0
  277. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_list_params.py +0 -0
  278. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_list_public_params.py +0 -0
  279. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_list_view.py +0 -0
  280. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/object_view.py +0 -0
  281. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/pty_connect_params.py +0 -0
  282. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/pty_connect_view.py +0 -0
  283. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/pty_control_params.py +0 -0
  284. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/pty_control_result_view.py +0 -0
  285. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/pty_tunnel_view.py +0 -0
  286. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/publish_result_view.py +0 -0
  287. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/restricted_key_create_params.py +0 -0
  288. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/restricted_key_created_view.py +0 -0
  289. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_definition_list_view.py +0 -0
  290. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_list_params.py +0 -0
  291. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_list_public_params.py +0 -0
  292. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_run_list_view.py +0 -0
  293. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenario_start_run_params.py +0 -0
  294. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/__init__.py +0 -0
  295. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/run_list_params.py +0 -0
  296. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_create_params.py +0 -0
  297. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_create_response.py +0 -0
  298. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_list_params.py +0 -0
  299. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_list_response.py +0 -0
  300. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_retrieve_response.py +0 -0
  301. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_update_params.py +0 -0
  302. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scenarios/scorer_update_response.py +0 -0
  303. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scope_entry_view.py +0 -0
  304. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scope_entry_view_param.py +0 -0
  305. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_contract.py +0 -0
  306. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_contract_param.py +0 -0
  307. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_contract_result_view.py +0 -0
  308. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_contract_update_param.py +0 -0
  309. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_function.py +0 -0
  310. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_function_param.py +0 -0
  311. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/scoring_function_result_view.py +0 -0
  312. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/secret_create_params.py +0 -0
  313. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/secret_list_params.py +0 -0
  314. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/secret_list_view.py +0 -0
  315. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/secret_update_params.py +0 -0
  316. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/secret_view.py +0 -0
  317. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/after_idle.py +0 -0
  318. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/agent_mount.py +0 -0
  319. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/broker_mount.py +0 -0
  320. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/code_mount_parameters.py +0 -0
  321. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/mount.py +0 -0
  322. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared/object_mount.py +0 -0
  323. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/after_idle.py +0 -0
  324. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/agent_mount.py +0 -0
  325. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/broker_mount.py +0 -0
  326. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/code_mount_parameters.py +0 -0
  327. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/mount.py +0 -0
  328. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/shared_params/object_mount.py +0 -0
  329. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/src/runloop_api_client/types/tunnel_view.py +0 -0
  330. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/__init__.py +0 -0
  331. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/__init__.py +0 -0
  332. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/axons/__init__.py +0 -0
  333. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/axons/test_events.py +0 -0
  334. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/axons/test_sql.py +0 -0
  335. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/devboxes/__init__.py +0 -0
  336. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/devboxes/test_disk_snapshots.py +0 -0
  337. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/devboxes/test_executions.py +0 -0
  338. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/devboxes/test_logs.py +0 -0
  339. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/scenarios/__init__.py +0 -0
  340. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/scenarios/test_runs.py +0 -0
  341. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/scenarios/test_scorers.py +0 -0
  342. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_agents.py +0 -0
  343. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_apikeys.py +0 -0
  344. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_axons.py +0 -0
  345. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_benchmark_jobs.py +0 -0
  346. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_benchmark_runs.py +0 -0
  347. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_gateway_configs.py +0 -0
  348. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_mcp_configs.py +0 -0
  349. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_network_policies.py +0 -0
  350. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_objects.py +0 -0
  351. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_pty.py +0 -0
  352. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_restricted_keys.py +0 -0
  353. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/api_resources/test_secrets.py +0 -0
  354. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/conftest.py +0 -0
  355. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sample_file.txt +0 -0
  356. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/__init__.py +0 -0
  357. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/async_devbox/__init__.py +0 -0
  358. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/async_devbox/conftest.py +0 -0
  359. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/async_devbox/test_core.py +0 -0
  360. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/async_devbox/test_edge_cases.py +0 -0
  361. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/async_devbox/test_interfaces.py +0 -0
  362. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/async_devbox/test_streaming.py +0 -0
  363. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/conftest.py +0 -0
  364. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/devbox/__init__.py +0 -0
  365. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/devbox/conftest.py +0 -0
  366. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/devbox/test_core.py +0 -0
  367. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/devbox/test_edge_cases.py +0 -0
  368. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/devbox/test_interfaces.py +0 -0
  369. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/devbox/test_streaming.py +0 -0
  370. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_agent.py +0 -0
  371. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_agent.py +0 -0
  372. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_axon.py +0 -0
  373. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_benchmark.py +0 -0
  374. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_benchmark_run.py +0 -0
  375. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_blueprint.py +0 -0
  376. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_execution.py +0 -0
  377. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_execution_result.py +0 -0
  378. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_gateway_config.py +0 -0
  379. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_network_policy.py +0 -0
  380. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_ops.py +0 -0
  381. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_scenario.py +0 -0
  382. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_scenario_builder.py +0 -0
  383. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_scenario_run.py +0 -0
  384. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_scorer.py +0 -0
  385. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_snapshot.py +0 -0
  386. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_async_storage_object.py +0 -0
  387. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_axon.py +0 -0
  388. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_benchmark.py +0 -0
  389. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_benchmark_run.py +0 -0
  390. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_blueprint.py +0 -0
  391. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_execution.py +0 -0
  392. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_execution_result.py +0 -0
  393. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_gateway_config.py +0 -0
  394. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_helpers.py +0 -0
  395. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_network_policy.py +0 -0
  396. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_ops.py +0 -0
  397. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_scenario.py +0 -0
  398. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_scenario_builder.py +0 -0
  399. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_scenario_run.py +0 -0
  400. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_scorer.py +0 -0
  401. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_snapshot.py +0 -0
  402. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/sdk/test_storage_object.py +0 -0
  403. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/README.md +0 -0
  404. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/__init__.py +0 -0
  405. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/conftest.py +0 -0
  406. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/examples/__init__.py +0 -0
  407. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/examples/test_examples.py +0 -0
  408. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/README.md +0 -0
  409. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/__init__.py +0 -0
  410. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/conftest.py +0 -0
  411. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_agent.py +0 -0
  412. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_agent.py +0 -0
  413. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_axon.py +0 -0
  414. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_benchmark.py +0 -0
  415. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_blueprint.py +0 -0
  416. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_devbox.py +0 -0
  417. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_gateway_config.py +0 -0
  418. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_network_policy.py +0 -0
  419. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_scenario.py +0 -0
  420. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_scorer.py +0 -0
  421. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_sdk.py +0 -0
  422. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_secret.py +0 -0
  423. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_snapshot.py +0 -0
  424. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_async_storage_object.py +0 -0
  425. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_axon.py +0 -0
  426. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_benchmark.py +0 -0
  427. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_blueprint.py +0 -0
  428. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_devbox.py +0 -0
  429. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_gateway_config.py +0 -0
  430. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_mcp_config.py +0 -0
  431. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_network_policy.py +0 -0
  432. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_scenario.py +0 -0
  433. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_scorer.py +0 -0
  434. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_sdk.py +0 -0
  435. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_secret.py +0 -0
  436. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_snapshot.py +0 -0
  437. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/sdk/test_storage_object.py +0 -0
  438. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/test_blueprints.py +0 -0
  439. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/test_devboxes.py +0 -0
  440. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/test_executions.py +0 -0
  441. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/test_scenarios_benchmarks.py +0 -0
  442. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/test_snapshots.py +0 -0
  443. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/smoketests/utils.py +0 -0
  444. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_client.py +0 -0
  445. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_command_id.py +0 -0
  446. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_extract_files.py +0 -0
  447. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_files.py +0 -0
  448. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_models.py +0 -0
  449. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_polling.py +0 -0
  450. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_qs.py +0 -0
  451. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_required_args.py +0 -0
  452. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_response.py +0 -0
  453. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_shared_pool.py +0 -0
  454. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_streaming.py +0 -0
  455. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_transform.py +0 -0
  456. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_utils/test_context_loader.py +0 -0
  457. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_utils/test_datetime_parse.py +0 -0
  458. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_utils/test_json.py +0 -0
  459. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_utils/test_path.py +0 -0
  460. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_utils/test_proxy.py +0 -0
  461. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/test_utils/test_typing.py +0 -0
  462. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/tests/utils.py +0 -0
  463. {runloop_api_client-1.21.0 → runloop_api_client-1.22.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.22.0"
3
+ }
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.22.0 (2026-05-27)
4
+
5
+ Full Changelog: [v1.21.0...v1.22.0](https://github.com/runloopai/api-client-python/compare/v1.21.0...v1.22.0)
6
+
7
+ ### Features
8
+
9
+ * 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))
10
+ * **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))
11
+ * **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))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * 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))
17
+ * **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))
18
+ * 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))
19
+
20
+
21
+ ### Chores
22
+
23
+ * 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))
24
+
3
25
  ## 1.21.0 (2026-05-13)
4
26
 
5
27
  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.21.0
3
+ Version: 1.22.0
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,8 +8,11 @@ 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
  ```
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "runloop_api_client"
3
- version = "1.21.0"
3
+ version = "1.22.0"
4
4
  description = "The official Python library for the runloop API"
5
5
  dynamic = ["readme"]
6
6
  license = "MIT"
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "runloop_api_client"
4
- __version__ = "1.21.0" # x-release-please-version
4
+ __version__ = "1.22.0" # x-release-please-version
@@ -68,7 +68,7 @@ class AgentsResource(SyncAPIResource):
68
68
  Args:
69
69
  name: The name of the Agent.
70
70
 
71
- source: The source configuration for the Agent.
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: The source configuration for the Agent.
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: Parameters to configure your Devbox at launch time.
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: Parameters to configure your Devbox at launch time.
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: Parameters to configure your Devbox at launch time.
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: Parameters to configure your Devbox at launch time.
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: Parameters to configure your Devbox at launch time.
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: Parameters to configure your Devbox at launch time.
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: Parameters to configure the resources and launch time behavior of the Devbox.
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: (Optional) Configuration for creating a V2 tunnel at Devbox launch time. When
244
- specified, a tunnel will be automatically provisioned and the tunnel details
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: Parameters to configure the resources and launch time behavior of the Devbox.
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: (Optional) Configuration for creating a V2 tunnel at Devbox launch time. When
1905
- specified, a tunnel will be automatically provisioned and the tunnel details
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: New authentication mechanism for applying credentials to proxied requests.
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: New authentication mechanism for applying credentials to proxied requests.
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
 
@@ -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 itself is intentionally not modeled in
72
- OpenAPI; see the controller-level documentation for the WebSocket close-code
73
- conventions. The single-attach contract is enforced when a client opens the
74
- WebSocket data plane, not on this bootstrap call: bootstrap always succeeds for
75
- a valid session_name, even if another client is currently attached. Rejection of
76
- a second concurrent attach happens at WebSocket upgrade time. If the active
77
- client disconnects, the session is preserved for the idle TTL so a later connect
78
- using the same session_name resumes the same shell. After the TTL expires, after
79
- an explicit close control action, or after the underlying Devbox lifecycle
80
- replaces the PTY process (such as through suspend/resume), a later request with
81
- the same session_name creates a fresh PTY session without the previous shell
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 PtyControlParameters are interpreted only
145
- when they are relevant to the chosen action.
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 itself is intentionally not modeled in
245
- OpenAPI; see the controller-level documentation for the WebSocket close-code
246
- conventions. The single-attach contract is enforced when a client opens the
247
- WebSocket data plane, not on this bootstrap call: bootstrap always succeeds for
248
- a valid session_name, even if another client is currently attached. Rejection of
249
- a second concurrent attach happens at WebSocket upgrade time. If the active
250
- client disconnects, the session is preserved for the idle TTL so a later connect
251
- using the same session_name resumes the same shell. After the TTL expires, after
252
- an explicit close control action, or after the underlying Devbox lifecycle
253
- replaces the PTY process (such as through suspend/resume), a later request with
254
- the same session_name creates a fresh PTY session without the previous shell
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 PtyControlParameters are interpreted only
318
- when they are relevant to the chosen action.
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
 
@@ -115,7 +115,8 @@ class ScenariosResource(SyncAPIResource):
115
115
 
116
116
  scoring_contract: The scoring contract for the Scenario.
117
117
 
118
- environment_parameters: The Environment in which the Scenario will run.
118
+ environment_parameters: ScenarioEnvironmentParameters specify the environment in which a Scenario will
119
+ be run.
119
120
 
120
121
  metadata: User defined metadata to attach to the scenario for organization.
121
122
 
@@ -233,7 +234,8 @@ class ScenariosResource(SyncAPIResource):
233
234
  entirely.
234
235
 
235
236
  Args:
236
- environment_parameters: The Environment in which the Scenario will run.
237
+ environment_parameters: ScenarioEnvironmentParameters specify the environment in which a Scenario will
238
+ be run.
237
239
 
238
240
  input_context: The input context for the Scenario.
239
241
 
@@ -637,7 +639,8 @@ class AsyncScenariosResource(AsyncAPIResource):
637
639
 
638
640
  scoring_contract: The scoring contract for the Scenario.
639
641
 
640
- environment_parameters: The Environment in which the Scenario will run.
642
+ environment_parameters: ScenarioEnvironmentParameters specify the environment in which a Scenario will
643
+ be run.
641
644
 
642
645
  metadata: User defined metadata to attach to the scenario for organization.
643
646
 
@@ -755,7 +758,8 @@ class AsyncScenariosResource(AsyncAPIResource):
755
758
  entirely.
756
759
 
757
760
  Args:
758
- environment_parameters: The Environment in which the Scenario will run.
761
+ environment_parameters: ScenarioEnvironmentParameters specify the environment in which a Scenario will
762
+ be run.
759
763
 
760
764
  input_context: The input context for the Scenario.
761
765
 
@@ -10,8 +10,11 @@ from .shared import (
10
10
  AgentSource as AgentSource,
11
11
  BrokerMount as BrokerMount,
12
12
  ObjectMount as ObjectMount,
13
+ LifecycleHooks as LifecycleHooks,
14
+ ResumeTriggers as ResumeTriggers,
13
15
  LaunchParameters as LaunchParameters,
14
16
  CodeMountParameters as CodeMountParameters,
17
+ LifecycleConfiguration as LifecycleConfiguration,
15
18
  )
16
19
  from .axon_view import AxonView as AxonView
17
20
  from .agent_view import AgentView as AgentView
@@ -15,7 +15,7 @@ class AgentCreateParams(TypedDict, total=False):
15
15
  """The name of the Agent."""
16
16
 
17
17
  source: Optional[AgentSource]
18
- """The source configuration for the Agent."""
18
+ """Agent source configuration."""
19
19
 
20
20
  version: Optional[str]
21
21
  """Optional version identifier for the Agent.
@@ -24,7 +24,7 @@ class AgentView(BaseModel):
24
24
  """The name of the Agent."""
25
25
 
26
26
  source: Optional[AgentSource] = None
27
- """The source configuration for the Agent."""
27
+ """Agent source configuration."""
28
28
 
29
29
  version: Optional[str] = None
30
30
  """Optional version identifier for the Agent.
@@ -43,7 +43,7 @@ class SpecHarborJobSpec(TypedDict, total=False):
43
43
 
44
44
 
45
45
  class SpecBenchmarkDefinitionJobSpecAgentConfigAgentEnvironment(TypedDict, total=False):
46
- """Environment configuration to use for this agent"""
46
+ """Environment configuration for an agent in a benchmark job"""
47
47
 
48
48
  environment_variables: Optional[Dict[str, str]]
49
49
  """Environment variables to set when launching the agent."""
@@ -64,7 +64,7 @@ class SpecBenchmarkDefinitionJobSpecAgentConfig(TypedDict, total=False):
64
64
  type: Required[Literal["job_agent"]]
65
65
 
66
66
  agent_environment: Optional[SpecBenchmarkDefinitionJobSpecAgentConfigAgentEnvironment]
67
- """Environment configuration to use for this agent"""
67
+ """Environment configuration for an agent in a benchmark job"""
68
68
 
69
69
  agent_id: Optional[str]
70
70
  """ID of the agent to use (optional if agent exists by name)"""
@@ -80,10 +80,7 @@ class SpecBenchmarkDefinitionJobSpecAgentConfig(TypedDict, total=False):
80
80
 
81
81
 
82
82
  class SpecBenchmarkDefinitionJobSpecOrchestratorConfig(TypedDict, total=False):
83
- """Orchestrator configuration (optional overrides).
84
-
85
- If not provided, default values will be used.
86
- """
83
+ """Orchestrator configuration for benchmark job execution"""
87
84
 
88
85
  n_attempts: Optional[int]
89
86
  """Number of retry attempts on failure (default: 0).
@@ -125,14 +122,11 @@ class SpecBenchmarkDefinitionJobSpec(TypedDict, total=False):
125
122
  type: Required[Literal["benchmark"]]
126
123
 
127
124
  orchestrator_config: Optional[SpecBenchmarkDefinitionJobSpecOrchestratorConfig]
128
- """Orchestrator configuration (optional overrides).
129
-
130
- If not provided, default values will be used.
131
- """
125
+ """Orchestrator configuration for benchmark job execution"""
132
126
 
133
127
 
134
128
  class SpecScenarioDefinitionJobSpecAgentConfigAgentEnvironment(TypedDict, total=False):
135
- """Environment configuration to use for this agent"""
129
+ """Environment configuration for an agent in a benchmark job"""
136
130
 
137
131
  environment_variables: Optional[Dict[str, str]]
138
132
  """Environment variables to set when launching the agent."""
@@ -153,7 +147,7 @@ class SpecScenarioDefinitionJobSpecAgentConfig(TypedDict, total=False):
153
147
  type: Required[Literal["job_agent"]]
154
148
 
155
149
  agent_environment: Optional[SpecScenarioDefinitionJobSpecAgentConfigAgentEnvironment]
156
- """Environment configuration to use for this agent"""
150
+ """Environment configuration for an agent in a benchmark job"""
157
151
 
158
152
  agent_id: Optional[str]
159
153
  """ID of the agent to use (optional if agent exists by name)"""
@@ -169,10 +163,7 @@ class SpecScenarioDefinitionJobSpecAgentConfig(TypedDict, total=False):
169
163
 
170
164
 
171
165
  class SpecScenarioDefinitionJobSpecOrchestratorConfig(TypedDict, total=False):
172
- """Orchestrator configuration (optional overrides).
173
-
174
- If not provided, default values will be used.
175
- """
166
+ """Orchestrator configuration for benchmark job execution"""
176
167
 
177
168
  n_attempts: Optional[int]
178
169
  """Number of retry attempts on failure (default: 0).
@@ -211,10 +202,7 @@ class SpecScenarioDefinitionJobSpec(TypedDict, total=False):
211
202
  type: Required[Literal["scenarios"]]
212
203
 
213
204
  orchestrator_config: Optional[SpecScenarioDefinitionJobSpecOrchestratorConfig]
214
- """Orchestrator configuration (optional overrides).
215
-
216
- If not provided, default values will be used.
217
- """
205
+ """Orchestrator configuration for benchmark job execution"""
218
206
 
219
207
 
220
208
  Spec: TypeAlias = Union[SpecHarborJobSpec, SpecBenchmarkDefinitionJobSpec, SpecScenarioDefinitionJobSpec]
@@ -30,10 +30,7 @@ __all__ = [
30
30
 
31
31
 
32
32
  class BenchmarkOutcomeScenarioOutcomeFailureReason(BaseModel):
33
- """Failure information if the scenario failed or timed out.
34
-
35
- Contains exception type and message.
36
- """
33
+ """Information about why a scenario execution failed"""
37
34
 
38
35
  exception_message: str
39
36
  """The exception message providing context"""
@@ -60,10 +57,7 @@ class BenchmarkOutcomeScenarioOutcome(BaseModel):
60
57
  """Duration of the scenario execution in milliseconds."""
61
58
 
62
59
  failure_reason: Optional[BenchmarkOutcomeScenarioOutcomeFailureReason] = None
63
- """Failure information if the scenario failed or timed out.
64
-
65
- Contains exception type and message.
66
- """
60
+ """Information about why a scenario execution failed"""
67
61
 
68
62
  scenario_run_id: Optional[str] = None
69
63
  """The ID of the scenario run.
@@ -121,7 +115,7 @@ class InProgressRunAgentConfigExternalAPIAgentConfig(BaseModel):
121
115
 
122
116
 
123
117
  class InProgressRunAgentConfigJobAgentConfigAgentEnvironment(BaseModel):
124
- """Environment configuration to use for this agent"""
118
+ """Environment configuration for an agent in a benchmark job"""
125
119
 
126
120
  environment_variables: Optional[Dict[str, str]] = None
127
121
  """Environment variables to set when launching the agent."""
@@ -142,7 +136,7 @@ class InProgressRunAgentConfigJobAgentConfig(BaseModel):
142
136
  type: Literal["job_agent"]
143
137
 
144
138
  agent_environment: Optional[InProgressRunAgentConfigJobAgentConfigAgentEnvironment] = None
145
- """Environment configuration to use for this agent"""
139
+ """Environment configuration for an agent in a benchmark job"""
146
140
 
147
141
  agent_id: Optional[str] = None
148
142
  """ID of the agent to use (optional if agent exists by name)"""
@@ -225,7 +219,7 @@ JobSource: TypeAlias = Annotated[
225
219
 
226
220
 
227
221
  class JobSpecAgentConfigAgentEnvironment(BaseModel):
228
- """Environment configuration to use for this agent"""
222
+ """Environment configuration for an agent in a benchmark job"""
229
223
 
230
224
  environment_variables: Optional[Dict[str, str]] = None
231
225
  """Environment variables to set when launching the agent."""
@@ -246,7 +240,7 @@ class JobSpecAgentConfig(BaseModel):
246
240
  type: Literal["job_agent"]
247
241
 
248
242
  agent_environment: Optional[JobSpecAgentConfigAgentEnvironment] = None
249
- """Environment configuration to use for this agent"""
243
+ """Environment configuration for an agent in a benchmark job"""
250
244
 
251
245
  agent_id: Optional[str] = None
252
246
  """ID of the agent to use (optional if agent exists by name)"""
@@ -262,7 +256,7 @@ class JobSpecAgentConfig(BaseModel):
262
256
 
263
257
 
264
258
  class JobSpecOrchestratorConfig(BaseModel):
265
- """Orchestrator configuration"""
259
+ """Orchestrator configuration for benchmark job execution"""
266
260
 
267
261
  n_attempts: Optional[int] = None
268
262
  """Number of retry attempts on failure (default: 0).
@@ -287,10 +281,7 @@ class JobSpecOrchestratorConfig(BaseModel):
287
281
 
288
282
 
289
283
  class JobSpec(BaseModel):
290
- """The resolved job specification.
291
-
292
- Contains scenarios, agents, and orchestrator config.
293
- """
284
+ """Job specification describing scenarios and execution configuration"""
294
285
 
295
286
  agent_configs: List[JobSpecAgentConfig]
296
287
  """Agent configurations for this job"""
@@ -299,7 +290,7 @@ class JobSpec(BaseModel):
299
290
  """List of scenario IDs to execute"""
300
291
 
301
292
  orchestrator_config: Optional[JobSpecOrchestratorConfig] = None
302
- """Orchestrator configuration"""
293
+ """Orchestrator configuration for benchmark job execution"""
303
294
 
304
295
 
305
296
  class BenchmarkJobView(BaseModel):
@@ -341,7 +332,4 @@ class BenchmarkJobView(BaseModel):
341
332
  """
342
333
 
343
334
  job_spec: Optional[JobSpec] = None
344
- """The resolved job specification.
345
-
346
- Contains scenarios, agents, and orchestrator config.
347
- """
335
+ """Job specification describing scenarios and execution configuration"""
@@ -86,7 +86,11 @@ class BlueprintBuildParameters(BaseModel):
86
86
  """(Optional) Map of paths and file contents to write before setup."""
87
87
 
88
88
  launch_parameters: Optional[LaunchParameters] = None
89
- """Parameters to configure your Devbox at launch time."""
89
+ """
90
+ LaunchParameters enable you to customize the resources available to your Devbox
91
+ as well as the environment set up that should be completed before the Devbox is
92
+ marked as 'running'.
93
+ """
90
94
 
91
95
  metadata: Optional[Dict[str, str]] = None
92
96
  """(Optional) User defined metadata for the Blueprint."""
@@ -27,7 +27,11 @@ class BlueprintCreateFromInspectionParams(TypedDict, total=False):
27
27
  """(Optional) Map of paths and file contents to write before setup."""
28
28
 
29
29
  launch_parameters: Optional[LaunchParameters]
30
- """Parameters to configure your Devbox at launch time."""
30
+ """
31
+ LaunchParameters enable you to customize the resources available to your Devbox
32
+ as well as the environment set up that should be completed before the Devbox is
33
+ marked as 'running'.
34
+ """
31
35
 
32
36
  metadata: Optional[Dict[str, str]]
33
37
  """(Optional) User defined metadata for the Blueprint."""
@@ -46,7 +46,11 @@ class BlueprintCreateParams(TypedDict, total=False):
46
46
  """(Optional) Map of paths and file contents to write before setup."""
47
47
 
48
48
  launch_parameters: Optional[LaunchParameters]
49
- """Parameters to configure your Devbox at launch time."""
49
+ """
50
+ LaunchParameters enable you to customize the resources available to your Devbox
51
+ as well as the environment set up that should be completed before the Devbox is
52
+ marked as 'running'.
53
+ """
50
54
 
51
55
  metadata: Optional[Dict[str, str]]
52
56
  """(Optional) User defined metadata for the Blueprint."""