400bb86e41
```
Type error: Property 'some' does not exist on type 'SandboxPaginator'.
10 | export async function verifySandbox(apiKey: string, sandboxId: string) {
11 | const sandboxes = await Sandbox.list({ apiKey })
> 12 | return sandboxes.some((sandbox) => sandbox.sandboxId === sandboxId)
| ^
13 | }
```