runloop_api_client 1.28.0__tar.gz → 1.29.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 (478) hide show
  1. runloop_api_client-1.29.0/.release-please-manifest.json +3 -0
  2. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/CHANGELOG.md +20 -0
  3. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/PKG-INFO +1 -1
  4. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/api.md +3 -0
  5. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/pyproject.toml +1 -1
  6. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_version.py +1 -1
  7. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/axons.py +92 -0
  8. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/devboxes.py +16 -10
  9. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/gateway_configs.py +31 -9
  10. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/mcp_configs.py +43 -1
  11. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/__init__.py +2 -0
  12. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_view.py +1 -1
  13. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_update_params.py +8 -2
  14. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_view.py +3 -0
  15. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_create_params.py +10 -14
  16. runloop_api_client-1.29.0/src/runloop_api_client/types/gateway_config_update_params.py +35 -0
  17. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_view.py +11 -12
  18. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_create_params.py +15 -1
  19. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_update_params.py +16 -1
  20. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_view.py +12 -0
  21. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/__init__.py +2 -0
  22. runloop_api_client-1.29.0/src/runloop_api_client/types/shared/auth_mechanism.py +25 -0
  23. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/broker_mount.py +5 -3
  24. runloop_api_client-1.29.0/src/runloop_api_client/types/shared/custom_header.py +29 -0
  25. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/__init__.py +2 -0
  26. runloop_api_client-1.29.0/src/runloop_api_client/types/shared_params/auth_mechanism.py +26 -0
  27. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/broker_mount.py +5 -3
  28. runloop_api_client-1.29.0/src/runloop_api_client/types/shared_params/custom_header.py +30 -0
  29. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_axons.py +76 -0
  30. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_gateway_configs.py +28 -0
  31. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_mcp_configs.py +44 -0
  32. runloop_api_client-1.28.0/.release-please-manifest.json +0 -3
  33. runloop_api_client-1.28.0/src/runloop_api_client/types/gateway_config_update_params.py +0 -37
  34. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/.gitignore +0 -0
  35. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/AGENTS.md +0 -0
  36. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/CLAUDE.md +0 -0
  37. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/CONTRIBUTING.md +0 -0
  38. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/EXAMPLES.md +0 -0
  39. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/LICENSE +0 -0
  40. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/README-SDK.md +0 -0
  41. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/README.md +0 -0
  42. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/SECURITY.md +0 -0
  43. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/bin/check-release-environment +0 -0
  44. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/bin/publish-pypi +0 -0
  45. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/__init__.py +0 -0
  46. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/_harness.py +0 -0
  47. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/blueprint_with_build_context.py +0 -0
  48. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/devbox_from_blueprint_lifecycle.py +0 -0
  49. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/devbox_snapshot_resume.py +0 -0
  50. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/devbox_snapshots.py +0 -0
  51. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/devbox_tunnel.py +0 -0
  52. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/example_types.py +0 -0
  53. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/mcp_github_tools.py +0 -0
  54. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/registry.py +0 -0
  55. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/examples/secrets_with_devbox.py +0 -0
  56. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/release-please-config.json +0 -0
  57. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/requirements-dev.lock +0 -0
  58. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop/lib/.keep +0 -0
  59. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/__init__.py +0 -0
  60. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_base_client.py +0 -0
  61. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_client.py +0 -0
  62. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_compat.py +0 -0
  63. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_constants.py +0 -0
  64. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_exceptions.py +0 -0
  65. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_files.py +0 -0
  66. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_models.py +0 -0
  67. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_qs.py +0 -0
  68. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_resource.py +0 -0
  69. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_response.py +0 -0
  70. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_streaming.py +0 -0
  71. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_types.py +0 -0
  72. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/__init__.py +0 -0
  73. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_compat.py +0 -0
  74. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_datetime_parse.py +0 -0
  75. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_json.py +0 -0
  76. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_logs.py +0 -0
  77. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_path.py +0 -0
  78. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_proxy.py +0 -0
  79. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_reflection.py +0 -0
  80. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_resources_proxy.py +0 -0
  81. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_streams.py +0 -0
  82. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_sync.py +0 -0
  83. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_transform.py +0 -0
  84. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_typing.py +0 -0
  85. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_utils.py +0 -0
  86. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/_utils/_validation.py +0 -0
  87. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/.keep +0 -0
  88. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/__init__.py +0 -0
  89. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/_ignore.py +0 -0
  90. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/context_loader.py +0 -0
  91. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/polling.py +0 -0
  92. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/polling_async.py +0 -0
  93. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/lib/wait_for_status.py +0 -0
  94. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/pagination.py +0 -0
  95. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/py.typed +0 -0
  96. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/__init__.py +0 -0
  97. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/accounts.py +0 -0
  98. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/agents.py +0 -0
  99. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/apikeys.py +0 -0
  100. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/__init__.py +0 -0
  101. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/events.py +0 -0
  102. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/axons/sql.py +0 -0
  103. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/benchmark_jobs.py +0 -0
  104. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/benchmark_runs.py +0 -0
  105. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/benchmarks.py +0 -0
  106. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/blueprints.py +0 -0
  107. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/__init__.py +0 -0
  108. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/disk_snapshots.py +0 -0
  109. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/executions.py +0 -0
  110. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/devboxes/logs.py +0 -0
  111. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/network_policies.py +0 -0
  112. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/objects.py +0 -0
  113. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/pty.py +0 -0
  114. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/restricted_keys.py +0 -0
  115. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/__init__.py +0 -0
  116. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/runs.py +0 -0
  117. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/scenarios.py +0 -0
  118. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/scenarios/scorers.py +0 -0
  119. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/resources/secrets.py +0 -0
  120. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/__init__.py +0 -0
  121. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/_helpers.py +0 -0
  122. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/_types.py +0 -0
  123. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/agent.py +0 -0
  124. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_.py +0 -0
  125. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_agent.py +0 -0
  126. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_axon.py +0 -0
  127. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_benchmark.py +0 -0
  128. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_benchmark_run.py +0 -0
  129. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_blueprint.py +0 -0
  130. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_devbox.py +0 -0
  131. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_execution.py +0 -0
  132. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_execution_result.py +0 -0
  133. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_gateway_config.py +0 -0
  134. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_mcp_config.py +0 -0
  135. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_network_policy.py +0 -0
  136. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scenario.py +0 -0
  137. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scenario_builder.py +0 -0
  138. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scenario_run.py +0 -0
  139. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_scorer.py +0 -0
  140. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_secret.py +0 -0
  141. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_snapshot.py +0 -0
  142. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/async_storage_object.py +0 -0
  143. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/axon.py +0 -0
  144. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/benchmark.py +0 -0
  145. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/benchmark_run.py +0 -0
  146. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/blueprint.py +0 -0
  147. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/devbox.py +0 -0
  148. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/execution.py +0 -0
  149. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/execution_result.py +0 -0
  150. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/gateway_config.py +0 -0
  151. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/mcp_config.py +0 -0
  152. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/network_policy.py +0 -0
  153. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scenario.py +0 -0
  154. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scenario_builder.py +0 -0
  155. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scenario_run.py +0 -0
  156. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/scorer.py +0 -0
  157. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/secret.py +0 -0
  158. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/snapshot.py +0 -0
  159. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/storage_object.py +0 -0
  160. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/sdk/sync.py +0 -0
  161. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/account_view.py +0 -0
  162. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_create_params.py +0 -0
  163. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_devbox_counts_view.py +0 -0
  164. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_list_params.py +0 -0
  165. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_list_public_params.py +0 -0
  166. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_list_view.py +0 -0
  167. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/agent_view.py +0 -0
  168. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/allowed_cidr.py +0 -0
  169. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/allowed_cidr_param.py +0 -0
  170. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/api_key_created_view.py +0 -0
  171. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/apikey_create_params.py +0 -0
  172. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_create_params.py +0 -0
  173. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_event_view.py +0 -0
  174. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_list_params.py +0 -0
  175. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_list_view.py +0 -0
  176. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_publish_params.py +0 -0
  177. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_subscribe_sse_params.py +0 -0
  178. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axon_view.py +0 -0
  179. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/__init__.py +0 -0
  180. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/axon_event_list_view.py +0 -0
  181. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/event_list_params.py +0 -0
  182. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_batch_params.py +0 -0
  183. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_batch_result_view.py +0 -0
  184. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_column_meta_view.py +0 -0
  185. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_query_params.py +0 -0
  186. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_query_result_view.py +0 -0
  187. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_result_meta_view.py +0 -0
  188. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_statement_params.py +0 -0
  189. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_step_error_view.py +0 -0
  190. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/axons/sql_step_result_view.py +0 -0
  191. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_create_params.py +0 -0
  192. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_definitions_params.py +0 -0
  193. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_create_params.py +0 -0
  194. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_list_params.py +0 -0
  195. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_list_view.py +0 -0
  196. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_job_view.py +0 -0
  197. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_list_params.py +0 -0
  198. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_list_public_params.py +0 -0
  199. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_list_params.py +0 -0
  200. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_list_scenario_runs_params.py +0 -0
  201. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_list_view.py +0 -0
  202. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_run_view.py +0 -0
  203. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_start_run_params.py +0 -0
  204. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_update_params.py +0 -0
  205. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_update_scenarios_params.py +0 -0
  206. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/benchmark_view.py +0 -0
  207. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_build_log.py +0 -0
  208. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_build_logs_list_view.py +0 -0
  209. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_build_parameters.py +0 -0
  210. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_create_params.py +0 -0
  211. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_list_params.py +0 -0
  212. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_list_public_params.py +0 -0
  213. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_list_view.py +0 -0
  214. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_preview_params.py +0 -0
  215. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/blueprint_preview_view.py +0 -0
  216. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_async_execution_detail_view.py +0 -0
  217. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_create_params.py +0 -0
  218. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_create_ssh_key_response.py +0 -0
  219. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_download_file_params.py +0 -0
  220. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_enable_tunnel_params.py +0 -0
  221. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_eviction_event_view.py +0 -0
  222. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execute_async_params.py +0 -0
  223. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execute_params.py +0 -0
  224. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execute_sync_params.py +0 -0
  225. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_execution_detail_view.py +0 -0
  226. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_list_disk_snapshots_params.py +0 -0
  227. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_list_params.py +0 -0
  228. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_list_view.py +0 -0
  229. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_read_file_contents_params.py +0 -0
  230. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_read_file_contents_response.py +0 -0
  231. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_resource_usage_view.py +0 -0
  232. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_send_std_in_result.py +0 -0
  233. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_shutdown_params.py +0 -0
  234. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_disk_async_params.py +0 -0
  235. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_disk_params.py +0 -0
  236. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_list_view.py +0 -0
  237. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_snapshot_view.py +0 -0
  238. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_upload_file_params.py +0 -0
  239. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_wait_for_command_params.py +0 -0
  240. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devbox_write_file_contents_params.py +0 -0
  241. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/__init__.py +0 -0
  242. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/devbox_logs_list_view.py +0 -0
  243. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/devbox_snapshot_async_status_view.py +0 -0
  244. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/disk_snapshot_list_params.py +0 -0
  245. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/disk_snapshot_update_params.py +0 -0
  246. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_execute_async_params.py +0 -0
  247. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_execute_sync_params.py +0 -0
  248. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_kill_params.py +0 -0
  249. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_retrieve_params.py +0 -0
  250. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_send_std_in_params.py +0 -0
  251. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_stream_stderr_updates_params.py +0 -0
  252. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_stream_stdout_updates_params.py +0 -0
  253. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/execution_update_chunk.py +0 -0
  254. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/devboxes/log_list_params.py +0 -0
  255. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_list_params.py +0 -0
  256. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/gateway_config_list_view.py +0 -0
  257. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/input_context.py +0 -0
  258. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/input_context_param.py +0 -0
  259. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/input_context_update_param.py +0 -0
  260. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_list_params.py +0 -0
  261. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/mcp_config_list_view.py +0 -0
  262. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_create_params.py +0 -0
  263. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_list_params.py +0 -0
  264. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_list_view.py +0 -0
  265. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_update_params.py +0 -0
  266. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/network_policy_view.py +0 -0
  267. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_create_params.py +0 -0
  268. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_download_params.py +0 -0
  269. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_download_url_view.py +0 -0
  270. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_list_params.py +0 -0
  271. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_list_public_params.py +0 -0
  272. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_list_view.py +0 -0
  273. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/object_view.py +0 -0
  274. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/port_rule.py +0 -0
  275. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/port_rule_param.py +0 -0
  276. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_connect_params.py +0 -0
  277. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_connect_view.py +0 -0
  278. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_control_params.py +0 -0
  279. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_control_result_view.py +0 -0
  280. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/pty_tunnel_view.py +0 -0
  281. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/publish_result_view.py +0 -0
  282. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/restricted_key_create_params.py +0 -0
  283. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/restricted_key_created_view.py +0 -0
  284. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_create_params.py +0 -0
  285. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_definition_list_view.py +0 -0
  286. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_environment.py +0 -0
  287. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_environment_param.py +0 -0
  288. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_list_params.py +0 -0
  289. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_list_public_params.py +0 -0
  290. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_run_list_view.py +0 -0
  291. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_run_view.py +0 -0
  292. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_start_run_params.py +0 -0
  293. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_update_params.py +0 -0
  294. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenario_view.py +0 -0
  295. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/__init__.py +0 -0
  296. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/run_list_params.py +0 -0
  297. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_create_params.py +0 -0
  298. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_create_response.py +0 -0
  299. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_list_params.py +0 -0
  300. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_list_response.py +0 -0
  301. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_retrieve_response.py +0 -0
  302. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_update_params.py +0 -0
  303. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scenarios/scorer_update_response.py +0 -0
  304. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scope_entry_view.py +0 -0
  305. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scope_entry_view_param.py +0 -0
  306. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract.py +0 -0
  307. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract_param.py +0 -0
  308. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract_result_view.py +0 -0
  309. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_contract_update_param.py +0 -0
  310. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_function.py +0 -0
  311. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_function_param.py +0 -0
  312. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/scoring_function_result_view.py +0 -0
  313. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_create_params.py +0 -0
  314. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_list_params.py +0 -0
  315. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_list_view.py +0 -0
  316. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_update_params.py +0 -0
  317. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/secret_view.py +0 -0
  318. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/after_idle.py +0 -0
  319. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/agent_mount.py +0 -0
  320. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/agent_source.py +0 -0
  321. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/code_mount_parameters.py +0 -0
  322. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/launch_parameters.py +0 -0
  323. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/lifecycle_configuration.py +0 -0
  324. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/lifecycle_hooks.py +0 -0
  325. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/mount.py +0 -0
  326. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/object_mount.py +0 -0
  327. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/resume_triggers.py +0 -0
  328. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared/run_profile.py +0 -0
  329. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/after_idle.py +0 -0
  330. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/agent_mount.py +0 -0
  331. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/agent_source.py +0 -0
  332. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/code_mount_parameters.py +0 -0
  333. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/launch_parameters.py +0 -0
  334. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/lifecycle_configuration.py +0 -0
  335. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/lifecycle_hooks.py +0 -0
  336. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/mount.py +0 -0
  337. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/object_mount.py +0 -0
  338. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/resume_triggers.py +0 -0
  339. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/shared_params/run_profile.py +0 -0
  340. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/src/runloop_api_client/types/tunnel_view.py +0 -0
  341. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/__init__.py +0 -0
  342. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/__init__.py +0 -0
  343. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/axons/__init__.py +0 -0
  344. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/axons/test_events.py +0 -0
  345. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/axons/test_sql.py +0 -0
  346. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/__init__.py +0 -0
  347. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/test_disk_snapshots.py +0 -0
  348. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/test_executions.py +0 -0
  349. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/devboxes/test_logs.py +0 -0
  350. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/scenarios/__init__.py +0 -0
  351. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/scenarios/test_runs.py +0 -0
  352. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/scenarios/test_scorers.py +0 -0
  353. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_accounts.py +0 -0
  354. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_agents.py +0 -0
  355. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_apikeys.py +0 -0
  356. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_benchmark_jobs.py +0 -0
  357. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_benchmark_runs.py +0 -0
  358. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_benchmarks.py +0 -0
  359. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_blueprints.py +0 -0
  360. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_devboxes.py +0 -0
  361. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_network_policies.py +0 -0
  362. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_objects.py +0 -0
  363. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_pty.py +0 -0
  364. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_restricted_keys.py +0 -0
  365. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_scenarios.py +0 -0
  366. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/api_resources/test_secrets.py +0 -0
  367. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/conftest.py +0 -0
  368. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sample_file.txt +0 -0
  369. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/__init__.py +0 -0
  370. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/__init__.py +0 -0
  371. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/conftest.py +0 -0
  372. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_core.py +0 -0
  373. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_edge_cases.py +0 -0
  374. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_interfaces.py +0 -0
  375. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/async_devbox/test_streaming.py +0 -0
  376. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/conftest.py +0 -0
  377. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/__init__.py +0 -0
  378. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/conftest.py +0 -0
  379. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_core.py +0 -0
  380. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_edge_cases.py +0 -0
  381. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_interfaces.py +0 -0
  382. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/devbox/test_streaming.py +0 -0
  383. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_agent.py +0 -0
  384. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_agent.py +0 -0
  385. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_axon.py +0 -0
  386. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_benchmark.py +0 -0
  387. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_benchmark_run.py +0 -0
  388. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_blueprint.py +0 -0
  389. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_execution.py +0 -0
  390. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_execution_result.py +0 -0
  391. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_gateway_config.py +0 -0
  392. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_network_policy.py +0 -0
  393. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_ops.py +0 -0
  394. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scenario.py +0 -0
  395. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scenario_builder.py +0 -0
  396. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scenario_run.py +0 -0
  397. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_scorer.py +0 -0
  398. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_snapshot.py +0 -0
  399. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_async_storage_object.py +0 -0
  400. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_axon.py +0 -0
  401. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_benchmark.py +0 -0
  402. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_benchmark_run.py +0 -0
  403. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_blueprint.py +0 -0
  404. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_execution.py +0 -0
  405. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_execution_result.py +0 -0
  406. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_gateway_config.py +0 -0
  407. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_helpers.py +0 -0
  408. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_network_policy.py +0 -0
  409. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_ops.py +0 -0
  410. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_scenario.py +0 -0
  411. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_scenario_builder.py +0 -0
  412. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_scenario_run.py +0 -0
  413. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_scorer.py +0 -0
  414. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_snapshot.py +0 -0
  415. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/sdk/test_storage_object.py +0 -0
  416. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/README.md +0 -0
  417. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/__init__.py +0 -0
  418. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/conftest.py +0 -0
  419. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/examples/__init__.py +0 -0
  420. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/examples/test_examples.py +0 -0
  421. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/README.md +0 -0
  422. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/__init__.py +0 -0
  423. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/conftest.py +0 -0
  424. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_agent.py +0 -0
  425. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_agent.py +0 -0
  426. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_axon.py +0 -0
  427. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_benchmark.py +0 -0
  428. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_blueprint.py +0 -0
  429. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_devbox.py +0 -0
  430. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_gateway_config.py +0 -0
  431. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_network_policy.py +0 -0
  432. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_scenario.py +0 -0
  433. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_scorer.py +0 -0
  434. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_sdk.py +0 -0
  435. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_secret.py +0 -0
  436. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_snapshot.py +0 -0
  437. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_async_storage_object.py +0 -0
  438. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_axon.py +0 -0
  439. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_benchmark.py +0 -0
  440. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_blueprint.py +0 -0
  441. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_devbox.py +0 -0
  442. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_gateway_config.py +0 -0
  443. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_mcp_config.py +0 -0
  444. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_network_policy.py +0 -0
  445. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_scenario.py +0 -0
  446. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_scorer.py +0 -0
  447. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_sdk.py +0 -0
  448. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_secret.py +0 -0
  449. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_snapshot.py +0 -0
  450. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/sdk/test_storage_object.py +0 -0
  451. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/test_blueprints.py +0 -0
  452. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/test_devboxes.py +0 -0
  453. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/test_executions.py +0 -0
  454. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/test_scenarios_benchmarks.py +0 -0
  455. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/test_snapshots.py +0 -0
  456. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/smoketests/utils.py +0 -0
  457. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_client.py +0 -0
  458. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_command_id.py +0 -0
  459. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_extract_files.py +0 -0
  460. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_files.py +0 -0
  461. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_h2_bulkhead_integration.py +0 -0
  462. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_models.py +0 -0
  463. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_polling.py +0 -0
  464. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_qs.py +0 -0
  465. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_required_args.py +0 -0
  466. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_response.py +0 -0
  467. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_shared_pool.py +0 -0
  468. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_streaming.py +0 -0
  469. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_transfer_client.py +0 -0
  470. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_transform.py +0 -0
  471. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_utils/test_context_loader.py +0 -0
  472. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_utils/test_datetime_parse.py +0 -0
  473. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_utils/test_json.py +0 -0
  474. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_utils/test_path.py +0 -0
  475. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_utils/test_proxy.py +0 -0
  476. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/test_utils/test_typing.py +0 -0
  477. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/tests/utils.py +0 -0
  478. {runloop_api_client-1.28.0 → runloop_api_client-1.29.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.29.0"
3
+ }
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.29.0 (2026-08-20)
4
+
5
+ Full Changelog: [v1.28.0...v1.29.0](https://github.com/runloopai/api-client-python/compare/v1.28.0...v1.29.0)
6
+
7
+ ### Features
8
+
9
+ * **axon:** add registry delete endpoint ([#10769](https://github.com/runloopai/api-client-python/issues/10769)) ([c63f011](https://github.com/runloopai/api-client-python/commit/c63f01108d98785b358357e4e65e5e517dd0805e))
10
+ * **broker:** plumb Pi protocol selection ([#10256](https://github.com/runloopai/api-client-python/issues/10256)) ([974d52b](https://github.com/runloopai/api-client-python/commit/974d52b8743ceda8a7127e3a3432ce51e71b1bfd))
11
+ * **config:** custom_headers on McpConfig/GatewayConfig — persistence, REST, validation, provisioner, OpenAPI ([#11096](https://github.com/runloopai/api-client-python/issues/11096)) ([9482e47](https://github.com/runloopai/api-client-python/commit/9482e475d0ad6e2b1989ee25f66a759fe839065f))
12
+ * **converter:** add Helm chart, container image, and enable in dev ([#10405](https://github.com/runloopai/api-client-python/issues/10405)) ([0d5ca34](https://github.com/runloopai/api-client-python/commit/0d5ca3438ac4cbcafdfaf7584042bd78a956e3ae))
13
+ * **devbox:** recover resume provisioning failures ([#10597](https://github.com/runloopai/api-client-python/issues/10597)) ([518301e](https://github.com/runloopai/api-client-python/commit/518301e444b95bc5fa73cc0f13be67cf3f750024))
14
+ * **gateway:** first-class BASIC auth mechanism ([#11063](https://github.com/runloopai/api-client-python/issues/11063)) ([1f50f93](https://github.com/runloopai/api-client-python/commit/1f50f93c26c6696d2a9f81b1b677eb9b7282601a))
15
+ * **mcp:** configurable auth_mechanism on McpConfig, shared shape with gateway ([#11113](https://github.com/runloopai/api-client-python/issues/11113)) ([4dd9edd](https://github.com/runloopai/api-client-python/commit/4dd9edd5abbdfab0466826db8d18cbd2efae7b31))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **devbox:** make Devbox update API patch-like ([#10582](https://github.com/runloopai/api-client-python/issues/10582)) ([0a74521](https://github.com/runloopai/api-client-python/commit/0a7452145ee6d1689d8635e65f88b8f778a84820))
21
+ * **gateway:** reject keyless HEADER auth_mechanism at admission and in looper ([#11120](https://github.com/runloopai/api-client-python/issues/11120)) ([194c060](https://github.com/runloopai/api-client-python/commit/194c060f4c95a85d895fc4e0d701e48b5222646c))
22
+
3
23
  ## 1.28.0 (2026-07-29)
4
24
 
5
25
  Full Changelog: [v1.27.0...v1.28.0](https://github.com/runloopai/api-client-python/compare/v1.27.0...v1.28.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: runloop_api_client
3
- Version: 1.28.0
3
+ Version: 1.29.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
@@ -5,8 +5,10 @@ from runloop_api_client.types import (
5
5
  AfterIdle,
6
6
  AgentMount,
7
7
  AgentSource,
8
+ AuthMechanism,
8
9
  BrokerMount,
9
10
  CodeMountParameters,
11
+ CustomHeader,
10
12
  LaunchParameters,
11
13
  LifecycleConfiguration,
12
14
  LifecycleHooks,
@@ -131,6 +133,7 @@ Methods:
131
133
  - <code title="post /v1/axons">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">create</a>(\*\*<a href="src/runloop_api_client/types/axon_create_params.py">params</a>) -> <a href="./src/runloop_api_client/types/axon_view.py">AxonView</a></code>
132
134
  - <code title="get /v1/axons/{id}">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">retrieve</a>(id) -> <a href="./src/runloop_api_client/types/axon_view.py">AxonView</a></code>
133
135
  - <code title="get /v1/axons">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">list</a>(\*\*<a href="src/runloop_api_client/types/axon_list_params.py">params</a>) -> <a href="./src/runloop_api_client/types/axon_view.py">SyncAxonsCursorIDPage[AxonView]</a></code>
136
+ - <code title="delete /v1/axons/{id}">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">delete</a>(id) -> object</code>
134
137
  - <code title="post /v1/axons/{id}/publish">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">publish</a>(id, \*\*<a href="src/runloop_api_client/types/axon_publish_params.py">params</a>) -> <a href="./src/runloop_api_client/types/publish_result_view.py">PublishResultView</a></code>
135
138
  - <code title="get /v1/axons/{id}/subscribe/sse">client.axons.<a href="./src/runloop_api_client/resources/axons/axons.py">subscribe_sse</a>(id, \*\*<a href="src/runloop_api_client/types/axon_subscribe_sse_params.py">params</a>) -> <a href="./src/runloop_api_client/types/axon_event_view.py">AxonEventView</a></code>
136
139
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "runloop_api_client"
3
- version = "1.28.0"
3
+ version = "1.29.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.28.0" # x-release-please-version
4
+ __version__ = "1.29.0" # x-release-please-version
@@ -210,6 +210,46 @@ class AxonsResource(SyncAPIResource):
210
210
  model=AxonView,
211
211
  )
212
212
 
213
+ def delete(
214
+ self,
215
+ id: str,
216
+ *,
217
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
218
+ # The extra values given here take precedence over values defined on the client or passed to this method.
219
+ extra_headers: Headers | None = None,
220
+ extra_query: Query | None = None,
221
+ extra_body: Body | None = None,
222
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
223
+ idempotency_key: str | None = None,
224
+ ) -> object:
225
+ """
226
+ [Beta] Mark an axon deleted.
227
+
228
+ Args:
229
+ extra_headers: Send extra headers
230
+
231
+ extra_query: Add additional query parameters to the request
232
+
233
+ extra_body: Add additional JSON properties to the request
234
+
235
+ timeout: Override the client-level default timeout for this request, in seconds
236
+
237
+ idempotency_key: Specify a custom idempotency key for this request
238
+ """
239
+ if not id:
240
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
241
+ return self._delete(
242
+ path_template("/v1/axons/{id}", id=id),
243
+ options=make_request_options(
244
+ extra_headers=extra_headers,
245
+ extra_query=extra_query,
246
+ extra_body=extra_body,
247
+ timeout=timeout,
248
+ idempotency_key=idempotency_key,
249
+ ),
250
+ cast_to=object,
251
+ )
252
+
213
253
  def publish(
214
254
  self,
215
255
  id: str,
@@ -485,6 +525,46 @@ class AsyncAxonsResource(AsyncAPIResource):
485
525
  model=AxonView,
486
526
  )
487
527
 
528
+ async def delete(
529
+ self,
530
+ id: str,
531
+ *,
532
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
533
+ # The extra values given here take precedence over values defined on the client or passed to this method.
534
+ extra_headers: Headers | None = None,
535
+ extra_query: Query | None = None,
536
+ extra_body: Body | None = None,
537
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
538
+ idempotency_key: str | None = None,
539
+ ) -> object:
540
+ """
541
+ [Beta] Mark an axon deleted.
542
+
543
+ Args:
544
+ extra_headers: Send extra headers
545
+
546
+ extra_query: Add additional query parameters to the request
547
+
548
+ extra_body: Add additional JSON properties to the request
549
+
550
+ timeout: Override the client-level default timeout for this request, in seconds
551
+
552
+ idempotency_key: Specify a custom idempotency key for this request
553
+ """
554
+ if not id:
555
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
556
+ return await self._delete(
557
+ path_template("/v1/axons/{id}", id=id),
558
+ options=make_request_options(
559
+ extra_headers=extra_headers,
560
+ extra_query=extra_query,
561
+ extra_body=extra_body,
562
+ timeout=timeout,
563
+ idempotency_key=idempotency_key,
564
+ ),
565
+ cast_to=object,
566
+ )
567
+
488
568
  async def publish(
489
569
  self,
490
570
  id: str,
@@ -607,6 +687,9 @@ class AxonsResourceWithRawResponse:
607
687
  self.list = to_raw_response_wrapper(
608
688
  axons.list,
609
689
  )
690
+ self.delete = to_raw_response_wrapper(
691
+ axons.delete,
692
+ )
610
693
  self.publish = to_raw_response_wrapper(
611
694
  axons.publish,
612
695
  )
@@ -636,6 +719,9 @@ class AsyncAxonsResourceWithRawResponse:
636
719
  self.list = async_to_raw_response_wrapper(
637
720
  axons.list,
638
721
  )
722
+ self.delete = async_to_raw_response_wrapper(
723
+ axons.delete,
724
+ )
639
725
  self.publish = async_to_raw_response_wrapper(
640
726
  axons.publish,
641
727
  )
@@ -665,6 +751,9 @@ class AxonsResourceWithStreamingResponse:
665
751
  self.list = to_streamed_response_wrapper(
666
752
  axons.list,
667
753
  )
754
+ self.delete = to_streamed_response_wrapper(
755
+ axons.delete,
756
+ )
668
757
  self.publish = to_streamed_response_wrapper(
669
758
  axons.publish,
670
759
  )
@@ -694,6 +783,9 @@ class AsyncAxonsResourceWithStreamingResponse:
694
783
  self.list = async_to_streamed_response_wrapper(
695
784
  axons.list,
696
785
  )
786
+ self.delete = async_to_streamed_response_wrapper(
787
+ axons.delete,
788
+ )
697
789
  self.publish = async_to_streamed_response_wrapper(
698
790
  axons.publish,
699
791
  )
@@ -338,14 +338,17 @@ class DevboxesResource(SyncAPIResource):
338
338
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
339
339
  idempotency_key: str | None = None,
340
340
  ) -> DevboxView:
341
- """
342
- Updates a devbox by doing a complete update the existing name,metadata fields.
343
- It does not patch partial values.
341
+ """Updates the specified Devbox fields.
342
+
343
+ Omitted fields are left unchanged. An empty
344
+ name clears the name, and an empty metadata map clears the metadata.
344
345
 
345
346
  Args:
346
- metadata: User defined metadata to attach to the devbox for organization.
347
+ metadata: User defined metadata to replace the Devbox metadata. Omit to leave unchanged or
348
+ set to an empty map to clear it.
347
349
 
348
- name: (Optional) A user specified name to give the Devbox.
350
+ name: A user specified name to give the Devbox. Omit to leave unchanged or set to an
351
+ empty string to clear it.
349
352
 
350
353
  extra_headers: Send extra headers
351
354
 
@@ -2188,14 +2191,17 @@ class AsyncDevboxesResource(AsyncAPIResource):
2188
2191
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
2189
2192
  idempotency_key: str | None = None,
2190
2193
  ) -> DevboxView:
2191
- """
2192
- Updates a devbox by doing a complete update the existing name,metadata fields.
2193
- It does not patch partial values.
2194
+ """Updates the specified Devbox fields.
2195
+
2196
+ Omitted fields are left unchanged. An empty
2197
+ name clears the name, and an empty metadata map clears the metadata.
2194
2198
 
2195
2199
  Args:
2196
- metadata: User defined metadata to attach to the devbox for organization.
2200
+ metadata: User defined metadata to replace the Devbox metadata. Omit to leave unchanged or
2201
+ set to an empty map to clear it.
2197
2202
 
2198
- name: (Optional) A user specified name to give the Devbox.
2203
+ name: A user specified name to give the Devbox. Omit to leave unchanged or set to an
2204
+ empty string to clear it.
2199
2205
 
2200
2206
  extra_headers: Send extra headers
2201
2207
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Optional
5
+ from typing import Iterable, Optional
6
6
 
7
7
  import httpx
8
8
 
@@ -20,6 +20,8 @@ from .._response import (
20
20
  from ..pagination import SyncGatewayConfigsCursorIDPage, AsyncGatewayConfigsCursorIDPage
21
21
  from .._base_client import AsyncPaginator, make_request_options
22
22
  from ..types.gateway_config_view import GatewayConfigView
23
+ from ..types.shared_params.custom_header import CustomHeader
24
+ from ..types.shared_params.auth_mechanism import AuthMechanism
23
25
 
24
26
  __all__ = ["GatewayConfigsResource", "AsyncGatewayConfigsResource"]
25
27
 
@@ -47,9 +49,10 @@ class GatewayConfigsResource(SyncAPIResource):
47
49
  def create(
48
50
  self,
49
51
  *,
50
- auth_mechanism: gateway_config_create_params.AuthMechanism,
52
+ auth_mechanism: AuthMechanism,
51
53
  endpoint: str,
52
54
  name: str,
55
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
53
56
  description: Optional[str] | Omit = omit,
54
57
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
55
58
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -73,6 +76,9 @@ class GatewayConfigsResource(SyncAPIResource):
73
76
  name: The human-readable name for the GatewayConfig. Must be unique within your
74
77
  account.
75
78
 
79
+ custom_headers: Additional headers applied to proxied requests after the auth mechanism. At most
80
+ 8 entries.
81
+
76
82
  description: Optional description for this gateway configuration.
77
83
 
78
84
  extra_headers: Send extra headers
@@ -92,6 +98,7 @@ class GatewayConfigsResource(SyncAPIResource):
92
98
  "auth_mechanism": auth_mechanism,
93
99
  "endpoint": endpoint,
94
100
  "name": name,
101
+ "custom_headers": custom_headers,
95
102
  "description": description,
96
103
  },
97
104
  gateway_config_create_params.GatewayConfigCreateParams,
@@ -143,7 +150,8 @@ class GatewayConfigsResource(SyncAPIResource):
143
150
  self,
144
151
  id: str,
145
152
  *,
146
- auth_mechanism: Optional[gateway_config_update_params.AuthMechanism] | Omit = omit,
153
+ auth_mechanism: Optional[AuthMechanism] | Omit = omit,
154
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
147
155
  description: Optional[str] | Omit = omit,
148
156
  endpoint: Optional[str] | Omit = omit,
149
157
  name: Optional[str] | Omit = omit,
@@ -160,8 +168,11 @@ class GatewayConfigsResource(SyncAPIResource):
160
168
  All fields are optional.
161
169
 
162
170
  Args:
163
- auth_mechanism: Defines how credentials are applied to HTTP requests when proxying through the
164
- gateway.
171
+ auth_mechanism: Defines how the primary credential is applied to requests proxied to the
172
+ upstream.
173
+
174
+ custom_headers: New list of additional headers. Replaces the existing list entirely; use an
175
+ empty list to clear all custom headers. At most 8 entries.
165
176
 
166
177
  description: New description for this gateway configuration.
167
178
 
@@ -186,6 +197,7 @@ class GatewayConfigsResource(SyncAPIResource):
186
197
  body=maybe_transform(
187
198
  {
188
199
  "auth_mechanism": auth_mechanism,
200
+ "custom_headers": custom_headers,
189
201
  "description": description,
190
202
  "endpoint": endpoint,
191
203
  "name": name,
@@ -332,9 +344,10 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
332
344
  async def create(
333
345
  self,
334
346
  *,
335
- auth_mechanism: gateway_config_create_params.AuthMechanism,
347
+ auth_mechanism: AuthMechanism,
336
348
  endpoint: str,
337
349
  name: str,
350
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
338
351
  description: Optional[str] | Omit = omit,
339
352
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
340
353
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -358,6 +371,9 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
358
371
  name: The human-readable name for the GatewayConfig. Must be unique within your
359
372
  account.
360
373
 
374
+ custom_headers: Additional headers applied to proxied requests after the auth mechanism. At most
375
+ 8 entries.
376
+
361
377
  description: Optional description for this gateway configuration.
362
378
 
363
379
  extra_headers: Send extra headers
@@ -377,6 +393,7 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
377
393
  "auth_mechanism": auth_mechanism,
378
394
  "endpoint": endpoint,
379
395
  "name": name,
396
+ "custom_headers": custom_headers,
380
397
  "description": description,
381
398
  },
382
399
  gateway_config_create_params.GatewayConfigCreateParams,
@@ -428,7 +445,8 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
428
445
  self,
429
446
  id: str,
430
447
  *,
431
- auth_mechanism: Optional[gateway_config_update_params.AuthMechanism] | Omit = omit,
448
+ auth_mechanism: Optional[AuthMechanism] | Omit = omit,
449
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
432
450
  description: Optional[str] | Omit = omit,
433
451
  endpoint: Optional[str] | Omit = omit,
434
452
  name: Optional[str] | Omit = omit,
@@ -445,8 +463,11 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
445
463
  All fields are optional.
446
464
 
447
465
  Args:
448
- auth_mechanism: Defines how credentials are applied to HTTP requests when proxying through the
449
- gateway.
466
+ auth_mechanism: Defines how the primary credential is applied to requests proxied to the
467
+ upstream.
468
+
469
+ custom_headers: New list of additional headers. Replaces the existing list entirely; use an
470
+ empty list to clear all custom headers. At most 8 entries.
450
471
 
451
472
  description: New description for this gateway configuration.
452
473
 
@@ -471,6 +492,7 @@ class AsyncGatewayConfigsResource(AsyncAPIResource):
471
492
  body=await async_maybe_transform(
472
493
  {
473
494
  "auth_mechanism": auth_mechanism,
495
+ "custom_headers": custom_headers,
474
496
  "description": description,
475
497
  "endpoint": endpoint,
476
498
  "name": name,
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Optional
5
+ from typing import Iterable, Optional
6
6
 
7
7
  import httpx
8
8
 
@@ -20,6 +20,8 @@ from .._response import (
20
20
  from ..pagination import SyncMcpConfigsCursorIDPage, AsyncMcpConfigsCursorIDPage
21
21
  from .._base_client import AsyncPaginator, make_request_options
22
22
  from ..types.mcp_config_view import McpConfigView
23
+ from ..types.shared_params.custom_header import CustomHeader
24
+ from ..types.shared_params.auth_mechanism import AuthMechanism
23
25
 
24
26
  __all__ = ["McpConfigsResource", "AsyncMcpConfigsResource"]
25
27
 
@@ -50,6 +52,8 @@ class McpConfigsResource(SyncAPIResource):
50
52
  allowed_tools: SequenceNotStr[str],
51
53
  endpoint: str,
52
54
  name: str,
55
+ auth_mechanism: Optional[AuthMechanism] | Omit = omit,
56
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
53
57
  description: Optional[str] | Omit = omit,
54
58
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
55
59
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -75,6 +79,12 @@ class McpConfigsResource(SyncAPIResource):
75
79
  The first segment before '-' is used as the service name for tool routing (e.g.,
76
80
  'github-readonly' uses 'github' as the service name).
77
81
 
82
+ auth_mechanism: Defines how the primary credential is applied to requests proxied to the
83
+ upstream.
84
+
85
+ custom_headers: Additional headers applied to upstream requests after the credential. At most 8
86
+ entries.
87
+
78
88
  description: Optional description for this MCP configuration.
79
89
 
80
90
  extra_headers: Send extra headers
@@ -94,6 +104,8 @@ class McpConfigsResource(SyncAPIResource):
94
104
  "allowed_tools": allowed_tools,
95
105
  "endpoint": endpoint,
96
106
  "name": name,
107
+ "auth_mechanism": auth_mechanism,
108
+ "custom_headers": custom_headers,
97
109
  "description": description,
98
110
  },
99
111
  mcp_config_create_params.McpConfigCreateParams,
@@ -146,6 +158,8 @@ class McpConfigsResource(SyncAPIResource):
146
158
  id: str,
147
159
  *,
148
160
  allowed_tools: Optional[SequenceNotStr[str]] | Omit = omit,
161
+ auth_mechanism: Optional[AuthMechanism] | Omit = omit,
162
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
149
163
  description: Optional[str] | Omit = omit,
150
164
  endpoint: Optional[str] | Omit = omit,
151
165
  name: Optional[str] | Omit = omit,
@@ -165,6 +179,12 @@ class McpConfigsResource(SyncAPIResource):
165
179
  allowed_tools: New glob patterns specifying which tools are allowed. Examples: ['*'] for all
166
180
  tools, ['github.search_*'] for specific patterns.
167
181
 
182
+ auth_mechanism: Defines how the primary credential is applied to requests proxied to the
183
+ upstream.
184
+
185
+ custom_headers: New list of additional headers. Replaces the existing list entirely; use an
186
+ empty list to clear all custom headers. At most 8 entries.
187
+
168
188
  description: New description for this MCP configuration.
169
189
 
170
190
  endpoint: New target MCP server endpoint URL.
@@ -188,6 +208,8 @@ class McpConfigsResource(SyncAPIResource):
188
208
  body=maybe_transform(
189
209
  {
190
210
  "allowed_tools": allowed_tools,
211
+ "auth_mechanism": auth_mechanism,
212
+ "custom_headers": custom_headers,
191
213
  "description": description,
192
214
  "endpoint": endpoint,
193
215
  "name": name,
@@ -336,6 +358,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
336
358
  allowed_tools: SequenceNotStr[str],
337
359
  endpoint: str,
338
360
  name: str,
361
+ auth_mechanism: Optional[AuthMechanism] | Omit = omit,
362
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
339
363
  description: Optional[str] | Omit = omit,
340
364
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
341
365
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -361,6 +385,12 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
361
385
  The first segment before '-' is used as the service name for tool routing (e.g.,
362
386
  'github-readonly' uses 'github' as the service name).
363
387
 
388
+ auth_mechanism: Defines how the primary credential is applied to requests proxied to the
389
+ upstream.
390
+
391
+ custom_headers: Additional headers applied to upstream requests after the credential. At most 8
392
+ entries.
393
+
364
394
  description: Optional description for this MCP configuration.
365
395
 
366
396
  extra_headers: Send extra headers
@@ -380,6 +410,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
380
410
  "allowed_tools": allowed_tools,
381
411
  "endpoint": endpoint,
382
412
  "name": name,
413
+ "auth_mechanism": auth_mechanism,
414
+ "custom_headers": custom_headers,
383
415
  "description": description,
384
416
  },
385
417
  mcp_config_create_params.McpConfigCreateParams,
@@ -432,6 +464,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
432
464
  id: str,
433
465
  *,
434
466
  allowed_tools: Optional[SequenceNotStr[str]] | Omit = omit,
467
+ auth_mechanism: Optional[AuthMechanism] | Omit = omit,
468
+ custom_headers: Optional[Iterable[CustomHeader]] | Omit = omit,
435
469
  description: Optional[str] | Omit = omit,
436
470
  endpoint: Optional[str] | Omit = omit,
437
471
  name: Optional[str] | Omit = omit,
@@ -451,6 +485,12 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
451
485
  allowed_tools: New glob patterns specifying which tools are allowed. Examples: ['*'] for all
452
486
  tools, ['github.search_*'] for specific patterns.
453
487
 
488
+ auth_mechanism: Defines how the primary credential is applied to requests proxied to the
489
+ upstream.
490
+
491
+ custom_headers: New list of additional headers. Replaces the existing list entirely; use an
492
+ empty list to clear all custom headers. At most 8 entries.
493
+
454
494
  description: New description for this MCP configuration.
455
495
 
456
496
  endpoint: New target MCP server endpoint URL.
@@ -474,6 +514,8 @@ class AsyncMcpConfigsResource(AsyncAPIResource):
474
514
  body=await async_maybe_transform(
475
515
  {
476
516
  "allowed_tools": allowed_tools,
517
+ "auth_mechanism": auth_mechanism,
518
+ "custom_headers": custom_headers,
477
519
  "description": description,
478
520
  "endpoint": endpoint,
479
521
  "name": name,
@@ -10,6 +10,8 @@ from .shared import (
10
10
  AgentSource as AgentSource,
11
11
  BrokerMount as BrokerMount,
12
12
  ObjectMount as ObjectMount,
13
+ CustomHeader as CustomHeader,
14
+ AuthMechanism as AuthMechanism,
13
15
  LifecycleHooks as LifecycleHooks,
14
16
  ResumeTriggers as ResumeTriggers,
15
17
  LaunchParameters as LaunchParameters,
@@ -63,7 +63,7 @@ class BlueprintView(BaseModel):
63
63
  state: Literal["created", "deleted"]
64
64
  """The state of the Blueprint."""
65
65
 
66
- status: Literal["queued", "provisioning", "building", "failed", "build_complete"]
66
+ status: Literal["queued", "provisioning", "building", "awaiting_upload", "failed", "build_complete"]
67
67
  """The status of the Blueprint build."""
68
68
 
69
69
  base_blueprint_id: Optional[str] = None
@@ -10,7 +10,13 @@ __all__ = ["DevboxUpdateParams"]
10
10
 
11
11
  class DevboxUpdateParams(TypedDict, total=False):
12
12
  metadata: Optional[Dict[str, str]]
13
- """User defined metadata to attach to the devbox for organization."""
13
+ """User defined metadata to replace the Devbox metadata.
14
+
15
+ Omit to leave unchanged or set to an empty map to clear it.
16
+ """
14
17
 
15
18
  name: Optional[str]
16
- """(Optional) A user specified name to give the Devbox."""
19
+ """A user specified name to give the Devbox.
20
+
21
+ Omit to leave unchanged or set to an empty string to clear it.
22
+ """
@@ -11,6 +11,9 @@ __all__ = ["DevboxView", "StateTransition", "GatewaySpecs", "McpSpecs"]
11
11
 
12
12
 
13
13
  class StateTransition(BaseModel):
14
+ failure_reason: Optional[str] = None
15
+ """The failure that caused this state transition, if applicable."""
16
+
14
17
  status: Optional[
15
18
  Literal[
16
19
  "scheduled",
@@ -2,10 +2,13 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Optional
5
+ from typing import Iterable, Optional
6
6
  from typing_extensions import Required, TypedDict
7
7
 
8
- __all__ = ["GatewayConfigCreateParams", "AuthMechanism"]
8
+ from .shared_params.custom_header import CustomHeader
9
+ from .shared_params.auth_mechanism import AuthMechanism
10
+
11
+ __all__ = ["GatewayConfigCreateParams"]
9
12
 
10
13
 
11
14
  class GatewayConfigCreateParams(TypedDict, total=False):
@@ -24,18 +27,11 @@ class GatewayConfigCreateParams(TypedDict, total=False):
24
27
  Must be unique within your account.
25
28
  """
26
29
 
27
- description: Optional[str]
28
- """Optional description for this gateway configuration."""
29
-
30
-
31
- class AuthMechanism(TypedDict, total=False):
32
- """How credentials should be applied to proxied requests.
30
+ custom_headers: Optional[Iterable[CustomHeader]]
31
+ """Additional headers applied to proxied requests after the auth mechanism.
33
32
 
34
- Specify the type ('header', 'bearer') and optional key field.
33
+ At most 8 entries.
35
34
  """
36
35
 
37
- type: Required[str]
38
- """The type of authentication mechanism: 'header', 'bearer'."""
39
-
40
- key: Optional[str]
41
- """For 'header' type: the header name (e.g., 'x-api-key')."""
36
+ description: Optional[str]
37
+ """Optional description for this gateway configuration."""
@@ -0,0 +1,35 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Iterable, Optional
6
+ from typing_extensions import TypedDict
7
+
8
+ from .shared_params.custom_header import CustomHeader
9
+ from .shared_params.auth_mechanism import AuthMechanism
10
+
11
+ __all__ = ["GatewayConfigUpdateParams"]
12
+
13
+
14
+ class GatewayConfigUpdateParams(TypedDict, total=False):
15
+ auth_mechanism: Optional[AuthMechanism]
16
+ """
17
+ Defines how the primary credential is applied to requests proxied to the
18
+ upstream.
19
+ """
20
+
21
+ custom_headers: Optional[Iterable[CustomHeader]]
22
+ """New list of additional headers.
23
+
24
+ Replaces the existing list entirely; use an empty list to clear all custom
25
+ headers. At most 8 entries.
26
+ """
27
+
28
+ description: Optional[str]
29
+ """New description for this gateway configuration."""
30
+
31
+ endpoint: Optional[str]
32
+ """New target endpoint URL (e.g., 'https://api.anthropic.com')."""
33
+
34
+ name: Optional[str]
35
+ """New name for the GatewayConfig. Must be unique within your account."""