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.
Files changed (466) hide show
  1. runloop_api_client-1.22.1/.release-please-manifest.json +3 -0
  2. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/CHANGELOG.md +30 -0
  3. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/PKG-INFO +1 -1
  4. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/api.md +15 -0
  5. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/pyproject.toml +1 -1
  6. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_client.py +38 -0
  7. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_version.py +1 -1
  8. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/__init__.py +14 -0
  9. runloop_api_client-1.22.1/src/runloop_api_client/resources/accounts.py +141 -0
  10. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/agents.py +2 -2
  11. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/blueprints.py +18 -6
  12. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/devboxes.py +10 -8
  13. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/gateway_configs.py +4 -2
  14. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/pty.py +28 -44
  15. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/scenarios.py +8 -4
  16. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/__init__.py +4 -0
  17. runloop_api_client-1.22.1/src/runloop_api_client/types/account_view.py +97 -0
  18. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_create_params.py +1 -1
  19. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_view.py +1 -1
  20. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_create_params.py +8 -20
  21. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_view.py +10 -22
  22. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_build_parameters.py +5 -1
  23. {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
  24. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_create_params.py +5 -1
  25. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_preview_params.py +5 -1
  26. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_view.py +7 -1
  27. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_create_params.py +9 -6
  28. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_view.py +24 -8
  29. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_update_params.py +7 -2
  30. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_create_params.py +4 -1
  31. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_environment.py +5 -1
  32. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_environment_param.py +5 -1
  33. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_run_view.py +4 -1
  34. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_update_params.py +4 -1
  35. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_view.py +4 -1
  36. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/__init__.py +3 -0
  37. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/agent_source.py +8 -8
  38. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/launch_parameters.py +18 -48
  39. runloop_api_client-1.22.1/src/runloop_api_client/types/shared/lifecycle_configuration.py +38 -0
  40. runloop_api_client-1.22.1/src/runloop_api_client/types/shared/lifecycle_hooks.py +28 -0
  41. runloop_api_client-1.22.1/src/runloop_api_client/types/shared/resume_triggers.py +17 -0
  42. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/run_profile.py +5 -1
  43. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/__init__.py +3 -0
  44. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/agent_source.py +8 -8
  45. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/launch_parameters.py +18 -48
  46. runloop_api_client-1.22.1/src/runloop_api_client/types/shared_params/lifecycle_configuration.py +40 -0
  47. runloop_api_client-1.22.1/src/runloop_api_client/types/shared_params/lifecycle_hooks.py +31 -0
  48. runloop_api_client-1.22.1/src/runloop_api_client/types/shared_params/resume_triggers.py +18 -0
  49. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/run_profile.py +5 -1
  50. runloop_api_client-1.22.1/tests/api_resources/test_accounts.py +74 -0
  51. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_benchmarks.py +8 -0
  52. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_blueprints.py +24 -0
  53. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_devboxes.py +8 -0
  54. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_scenarios.py +24 -0
  55. runloop_api_client-1.21.0/.release-please-manifest.json +0 -3
  56. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/.gitignore +0 -0
  57. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/CONTRIBUTING.md +0 -0
  58. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/EXAMPLES.md +0 -0
  59. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/LICENSE +0 -0
  60. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/README-SDK.md +0 -0
  61. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/README.md +0 -0
  62. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/SECURITY.md +0 -0
  63. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/bin/check-release-environment +0 -0
  64. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/bin/publish-pypi +0 -0
  65. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/__init__.py +0 -0
  66. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/_harness.py +0 -0
  67. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/blueprint_with_build_context.py +0 -0
  68. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_from_blueprint_lifecycle.py +0 -0
  69. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_snapshot_resume.py +0 -0
  70. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_snapshots.py +0 -0
  71. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/devbox_tunnel.py +0 -0
  72. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/example_types.py +0 -0
  73. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/mcp_github_tools.py +0 -0
  74. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/registry.py +0 -0
  75. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/examples/secrets_with_devbox.py +0 -0
  76. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/release-please-config.json +0 -0
  77. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/requirements-dev.lock +0 -0
  78. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop/lib/.keep +0 -0
  79. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/__init__.py +0 -0
  80. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_base_client.py +0 -0
  81. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_compat.py +0 -0
  82. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_constants.py +0 -0
  83. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_exceptions.py +0 -0
  84. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_files.py +0 -0
  85. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_models.py +0 -0
  86. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_qs.py +0 -0
  87. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_resource.py +0 -0
  88. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_response.py +0 -0
  89. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_streaming.py +0 -0
  90. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_types.py +0 -0
  91. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/__init__.py +0 -0
  92. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_compat.py +0 -0
  93. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_datetime_parse.py +0 -0
  94. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_json.py +0 -0
  95. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_logs.py +0 -0
  96. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_path.py +0 -0
  97. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_proxy.py +0 -0
  98. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_reflection.py +0 -0
  99. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_resources_proxy.py +0 -0
  100. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_streams.py +0 -0
  101. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_sync.py +0 -0
  102. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_transform.py +0 -0
  103. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_typing.py +0 -0
  104. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_utils.py +0 -0
  105. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/_utils/_validation.py +0 -0
  106. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/.keep +0 -0
  107. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/__init__.py +0 -0
  108. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/_ignore.py +0 -0
  109. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/context_loader.py +0 -0
  110. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/polling.py +0 -0
  111. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/polling_async.py +0 -0
  112. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/lib/wait_for_status.py +0 -0
  113. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/pagination.py +0 -0
  114. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/py.typed +0 -0
  115. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/apikeys.py +0 -0
  116. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/__init__.py +0 -0
  117. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/axons.py +0 -0
  118. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/events.py +0 -0
  119. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/axons/sql.py +0 -0
  120. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/benchmark_jobs.py +0 -0
  121. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/benchmark_runs.py +0 -0
  122. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/benchmarks.py +0 -0
  123. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/__init__.py +0 -0
  124. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/disk_snapshots.py +0 -0
  125. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/executions.py +0 -0
  126. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/devboxes/logs.py +0 -0
  127. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/mcp_configs.py +0 -0
  128. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/network_policies.py +0 -0
  129. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/objects.py +0 -0
  130. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/restricted_keys.py +0 -0
  131. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/__init__.py +0 -0
  132. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/runs.py +0 -0
  133. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/scenarios/scorers.py +0 -0
  134. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/resources/secrets.py +0 -0
  135. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/__init__.py +0 -0
  136. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/_helpers.py +0 -0
  137. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/_types.py +0 -0
  138. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/agent.py +0 -0
  139. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_.py +0 -0
  140. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_agent.py +0 -0
  141. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_axon.py +0 -0
  142. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_benchmark.py +0 -0
  143. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_benchmark_run.py +0 -0
  144. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_blueprint.py +0 -0
  145. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_devbox.py +0 -0
  146. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_execution.py +0 -0
  147. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_execution_result.py +0 -0
  148. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_gateway_config.py +0 -0
  149. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_mcp_config.py +0 -0
  150. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_network_policy.py +0 -0
  151. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scenario.py +0 -0
  152. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scenario_builder.py +0 -0
  153. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scenario_run.py +0 -0
  154. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_scorer.py +0 -0
  155. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_secret.py +0 -0
  156. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_snapshot.py +0 -0
  157. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/async_storage_object.py +0 -0
  158. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/axon.py +0 -0
  159. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/benchmark.py +0 -0
  160. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/benchmark_run.py +0 -0
  161. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/blueprint.py +0 -0
  162. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/devbox.py +0 -0
  163. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/execution.py +0 -0
  164. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/execution_result.py +0 -0
  165. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/gateway_config.py +0 -0
  166. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/mcp_config.py +0 -0
  167. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/network_policy.py +0 -0
  168. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scenario.py +0 -0
  169. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scenario_builder.py +0 -0
  170. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scenario_run.py +0 -0
  171. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/scorer.py +0 -0
  172. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/secret.py +0 -0
  173. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/snapshot.py +0 -0
  174. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/storage_object.py +0 -0
  175. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/sdk/sync.py +0 -0
  176. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_devbox_counts_view.py +0 -0
  177. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_list_params.py +0 -0
  178. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_list_public_params.py +0 -0
  179. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/agent_list_view.py +0 -0
  180. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/api_key_created_view.py +0 -0
  181. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/apikey_create_params.py +0 -0
  182. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_create_params.py +0 -0
  183. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_event_view.py +0 -0
  184. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_list_params.py +0 -0
  185. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_list_view.py +0 -0
  186. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_publish_params.py +0 -0
  187. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_subscribe_sse_params.py +0 -0
  188. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axon_view.py +0 -0
  189. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/__init__.py +0 -0
  190. {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
  191. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/event_list_params.py +0 -0
  192. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_batch_params.py +0 -0
  193. {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
  194. {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
  195. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_query_params.py +0 -0
  196. {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
  197. {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
  198. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/axons/sql_statement_params.py +0 -0
  199. {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
  200. {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
  201. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_create_params.py +0 -0
  202. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_definitions_params.py +0 -0
  203. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_list_params.py +0 -0
  204. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_job_list_view.py +0 -0
  205. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_list_params.py +0 -0
  206. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_list_public_params.py +0 -0
  207. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_list_params.py +0 -0
  208. {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
  209. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_list_view.py +0 -0
  210. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_run_view.py +0 -0
  211. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_start_run_params.py +0 -0
  212. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_update_params.py +0 -0
  213. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_update_scenarios_params.py +0 -0
  214. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/benchmark_view.py +0 -0
  215. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_build_log.py +0 -0
  216. {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
  217. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_list_params.py +0 -0
  218. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_list_public_params.py +0 -0
  219. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_list_view.py +0 -0
  220. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/blueprint_preview_view.py +0 -0
  221. {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
  222. {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
  223. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_download_file_params.py +0 -0
  224. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_enable_tunnel_params.py +0 -0
  225. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execute_async_params.py +0 -0
  226. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execute_params.py +0 -0
  227. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execute_sync_params.py +0 -0
  228. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_execution_detail_view.py +0 -0
  229. {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
  230. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_list_params.py +0 -0
  231. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_list_view.py +0 -0
  232. {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
  233. {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
  234. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_resource_usage_view.py +0 -0
  235. {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
  236. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_shutdown_params.py +0 -0
  237. {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
  238. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_disk_params.py +0 -0
  239. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_list_view.py +0 -0
  240. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_snapshot_view.py +0 -0
  241. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_update_params.py +0 -0
  242. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devbox_upload_file_params.py +0 -0
  243. {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
  244. {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
  245. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/__init__.py +0 -0
  246. {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
  247. {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
  248. {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
  249. {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
  250. {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
  251. {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
  252. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_kill_params.py +0 -0
  253. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_retrieve_params.py +0 -0
  254. {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
  255. {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
  256. {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
  257. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/execution_update_chunk.py +0 -0
  258. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/devboxes/log_list_params.py +0 -0
  259. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_create_params.py +0 -0
  260. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_list_params.py +0 -0
  261. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_list_view.py +0 -0
  262. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/gateway_config_view.py +0 -0
  263. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/input_context.py +0 -0
  264. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/input_context_param.py +0 -0
  265. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/input_context_update_param.py +0 -0
  266. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/inspection_source_param.py +0 -0
  267. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_create_params.py +0 -0
  268. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_list_params.py +0 -0
  269. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_list_view.py +0 -0
  270. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_update_params.py +0 -0
  271. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/mcp_config_view.py +0 -0
  272. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_create_params.py +0 -0
  273. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_list_params.py +0 -0
  274. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_list_view.py +0 -0
  275. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_update_params.py +0 -0
  276. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/network_policy_view.py +0 -0
  277. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_create_params.py +0 -0
  278. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_download_params.py +0 -0
  279. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_download_url_view.py +0 -0
  280. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_list_params.py +0 -0
  281. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_list_public_params.py +0 -0
  282. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_list_view.py +0 -0
  283. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/object_view.py +0 -0
  284. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_connect_params.py +0 -0
  285. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_connect_view.py +0 -0
  286. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_control_params.py +0 -0
  287. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_control_result_view.py +0 -0
  288. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/pty_tunnel_view.py +0 -0
  289. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/publish_result_view.py +0 -0
  290. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/restricted_key_create_params.py +0 -0
  291. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/restricted_key_created_view.py +0 -0
  292. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_definition_list_view.py +0 -0
  293. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_list_params.py +0 -0
  294. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_list_public_params.py +0 -0
  295. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_run_list_view.py +0 -0
  296. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenario_start_run_params.py +0 -0
  297. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/__init__.py +0 -0
  298. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/run_list_params.py +0 -0
  299. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_create_params.py +0 -0
  300. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_create_response.py +0 -0
  301. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_list_params.py +0 -0
  302. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_list_response.py +0 -0
  303. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_retrieve_response.py +0 -0
  304. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_update_params.py +0 -0
  305. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scenarios/scorer_update_response.py +0 -0
  306. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scope_entry_view.py +0 -0
  307. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scope_entry_view_param.py +0 -0
  308. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract.py +0 -0
  309. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract_param.py +0 -0
  310. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract_result_view.py +0 -0
  311. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_contract_update_param.py +0 -0
  312. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_function.py +0 -0
  313. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_function_param.py +0 -0
  314. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/scoring_function_result_view.py +0 -0
  315. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_create_params.py +0 -0
  316. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_list_params.py +0 -0
  317. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_list_view.py +0 -0
  318. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_update_params.py +0 -0
  319. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/secret_view.py +0 -0
  320. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/after_idle.py +0 -0
  321. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/agent_mount.py +0 -0
  322. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/broker_mount.py +0 -0
  323. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/code_mount_parameters.py +0 -0
  324. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/mount.py +0 -0
  325. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared/object_mount.py +0 -0
  326. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/after_idle.py +0 -0
  327. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/agent_mount.py +0 -0
  328. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/broker_mount.py +0 -0
  329. {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
  330. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/mount.py +0 -0
  331. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/shared_params/object_mount.py +0 -0
  332. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/src/runloop_api_client/types/tunnel_view.py +0 -0
  333. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/__init__.py +0 -0
  334. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/__init__.py +0 -0
  335. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/axons/__init__.py +0 -0
  336. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/axons/test_events.py +0 -0
  337. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/axons/test_sql.py +0 -0
  338. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/__init__.py +0 -0
  339. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/test_disk_snapshots.py +0 -0
  340. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/test_executions.py +0 -0
  341. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/devboxes/test_logs.py +0 -0
  342. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/scenarios/__init__.py +0 -0
  343. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/scenarios/test_runs.py +0 -0
  344. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/scenarios/test_scorers.py +0 -0
  345. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_agents.py +0 -0
  346. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_apikeys.py +0 -0
  347. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_axons.py +0 -0
  348. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_benchmark_jobs.py +0 -0
  349. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_benchmark_runs.py +0 -0
  350. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_gateway_configs.py +0 -0
  351. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_mcp_configs.py +0 -0
  352. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_network_policies.py +0 -0
  353. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_objects.py +0 -0
  354. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_pty.py +0 -0
  355. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_restricted_keys.py +0 -0
  356. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/api_resources/test_secrets.py +0 -0
  357. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/conftest.py +0 -0
  358. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sample_file.txt +0 -0
  359. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/__init__.py +0 -0
  360. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/__init__.py +0 -0
  361. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/conftest.py +0 -0
  362. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_core.py +0 -0
  363. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_edge_cases.py +0 -0
  364. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_interfaces.py +0 -0
  365. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/async_devbox/test_streaming.py +0 -0
  366. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/conftest.py +0 -0
  367. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/__init__.py +0 -0
  368. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/conftest.py +0 -0
  369. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_core.py +0 -0
  370. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_edge_cases.py +0 -0
  371. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_interfaces.py +0 -0
  372. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/devbox/test_streaming.py +0 -0
  373. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_agent.py +0 -0
  374. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_agent.py +0 -0
  375. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_axon.py +0 -0
  376. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_benchmark.py +0 -0
  377. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_benchmark_run.py +0 -0
  378. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_blueprint.py +0 -0
  379. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_execution.py +0 -0
  380. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_execution_result.py +0 -0
  381. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_gateway_config.py +0 -0
  382. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_network_policy.py +0 -0
  383. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_ops.py +0 -0
  384. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scenario.py +0 -0
  385. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scenario_builder.py +0 -0
  386. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scenario_run.py +0 -0
  387. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_scorer.py +0 -0
  388. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_snapshot.py +0 -0
  389. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_async_storage_object.py +0 -0
  390. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_axon.py +0 -0
  391. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_benchmark.py +0 -0
  392. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_benchmark_run.py +0 -0
  393. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_blueprint.py +0 -0
  394. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_execution.py +0 -0
  395. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_execution_result.py +0 -0
  396. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_gateway_config.py +0 -0
  397. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_helpers.py +0 -0
  398. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_network_policy.py +0 -0
  399. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_ops.py +0 -0
  400. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scenario.py +0 -0
  401. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scenario_builder.py +0 -0
  402. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scenario_run.py +0 -0
  403. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_scorer.py +0 -0
  404. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_snapshot.py +0 -0
  405. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/sdk/test_storage_object.py +0 -0
  406. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/README.md +0 -0
  407. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/__init__.py +0 -0
  408. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/conftest.py +0 -0
  409. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/examples/__init__.py +0 -0
  410. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/examples/test_examples.py +0 -0
  411. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/README.md +0 -0
  412. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/__init__.py +0 -0
  413. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/conftest.py +0 -0
  414. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_agent.py +0 -0
  415. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_agent.py +0 -0
  416. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_axon.py +0 -0
  417. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_benchmark.py +0 -0
  418. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_blueprint.py +0 -0
  419. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_devbox.py +0 -0
  420. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_gateway_config.py +0 -0
  421. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_network_policy.py +0 -0
  422. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_scenario.py +0 -0
  423. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_scorer.py +0 -0
  424. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_sdk.py +0 -0
  425. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_secret.py +0 -0
  426. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_snapshot.py +0 -0
  427. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_async_storage_object.py +0 -0
  428. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_axon.py +0 -0
  429. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_benchmark.py +0 -0
  430. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_blueprint.py +0 -0
  431. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_devbox.py +0 -0
  432. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_gateway_config.py +0 -0
  433. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_mcp_config.py +0 -0
  434. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_network_policy.py +0 -0
  435. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_scenario.py +0 -0
  436. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_scorer.py +0 -0
  437. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_sdk.py +0 -0
  438. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_secret.py +0 -0
  439. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_snapshot.py +0 -0
  440. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/sdk/test_storage_object.py +0 -0
  441. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_blueprints.py +0 -0
  442. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_devboxes.py +0 -0
  443. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_executions.py +0 -0
  444. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_scenarios_benchmarks.py +0 -0
  445. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/test_snapshots.py +0 -0
  446. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/smoketests/utils.py +0 -0
  447. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_client.py +0 -0
  448. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_command_id.py +0 -0
  449. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_extract_files.py +0 -0
  450. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_files.py +0 -0
  451. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_models.py +0 -0
  452. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_polling.py +0 -0
  453. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_qs.py +0 -0
  454. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_required_args.py +0 -0
  455. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_response.py +0 -0
  456. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_shared_pool.py +0 -0
  457. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_streaming.py +0 -0
  458. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_transform.py +0 -0
  459. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_context_loader.py +0 -0
  460. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_datetime_parse.py +0 -0
  461. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_json.py +0 -0
  462. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_path.py +0 -0
  463. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_proxy.py +0 -0
  464. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/test_utils/test_typing.py +0 -0
  465. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/tests/utils.py +0 -0
  466. {runloop_api_client-1.21.0 → runloop_api_client-1.22.1}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.22.1"
3
+ }
@@ -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.21.0
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:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "runloop_api_client"
3
- version = "1.21.0"
3
+ version = "1.22.1"
4
4
  description = "The official Python library for the runloop API"
5
5
  dynamic = ["readme"]
6
6
  license = "MIT"
@@ -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
@@ -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.1" # x-release-please-version
@@ -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
+ )
@@ -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