mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
ede4e7781d
* fix(sdk): unbreak the JSR publish of the typescript client `Sql` is `export type Sql = string`, but build.jsr.sh re-exported it as a value, so `deno publish` fails type-checking with TS1205 under isolatedModules. Every `v*` tag since has published nothing to JSR. The npm build never noticed because it lists the same symbol as `type Sql`; the two scripts keep separate copies of the export list. Record both JSR-only constraints next to the list, since neither shows up until a release tag runs publish.jsr.sh. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix(sdk): scope the slow-types note to what deno actually rejects Deno's fast check only rejects a return type it cannot trivially infer; setClient, appendToResultStream and streamResult are all exported without one and publish fine. The previous wording read as if the current list were already non-compliant. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Windmill Client
The SDK for the Windmill API.
import * as wmill from 'windmill-client';
await wmill.getVariable('u/foo/my_variable')