073661a8b5
## Summary
- Adds `apiHeaders` / `api_headers` for API-only custom headers.
- Deprecates the existing `headers` option in favor of the explicit API
header option.
## Usage
```ts
await Sandbox.create({ apiHeaders: { Authorization: 'Bearer ...' } })
```
```python
sandbox = Sandbox.create(api_headers={"Authorization": "Bearer ..."})
```
## Tests
- Python syntax checks passed for touched files.
- IDE lints and `git diff --check` passed.
---------
Co-authored-by: Cursor <cursoragent@cursor.com>