feat: refresh web console theme

This commit is contained in:
Nathan Flurry 2026-01-25 03:33:34 -08:00
parent 0fbf6272b1
commit 1fcae6ed76
34 changed files with 5037 additions and 748 deletions

View file

@ -8,7 +8,7 @@ The TypeScript SDK is generated from the OpenAPI spec produced by the Rust serve
## Generate types
```bash
pnpm --filter @sandbox-agent/typescript-sdk generate
pnpm --filter sandbox-agent generate
```
This runs:
@ -19,10 +19,10 @@ This runs:
## Usage
```ts
import { SandboxDaemonClient } from "@sandbox-agent/typescript-sdk";
import { SandboxDaemonClient } from "sandbox-agent";
const client = new SandboxDaemonClient({
baseUrl: "http://127.0.0.1:8787",
baseUrl: "http://127.0.0.1:2468",
token: process.env.SANDBOX_TOKEN,
});