chore: generate

This commit is contained in:
opencode-agent[bot] 2026-03-19 20:21:10 +00:00
parent 6e09a1d904
commit a6ef9e9206

View File

@ -46,7 +46,9 @@ const login = () =>
const deviceTokenClient = (body: unknown, status = 400) => const deviceTokenClient = (body: unknown, status = 400) =>
HttpClient.make((req) => HttpClient.make((req) =>
Effect.succeed(req.url === "https://one.example.com/auth/device/token" ? json(req, body, status) : json(req, {}, 404)), Effect.succeed(
req.url === "https://one.example.com/auth/device/token" ? json(req, body, status) : json(req, {}, 404),
),
) )
const poll = (body: unknown, status = 400) => const poll = (body: unknown, status = 400) =>