windmill-client 1.387.0 → 1.388.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.387.0',
42
+ VERSION: '1.388.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -23,7 +23,7 @@ export type Script = {
23
23
  };
24
24
  lock?: string;
25
25
  lock_error_logs?: string;
26
- language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
26
+ language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust';
27
27
  kind: 'script' | 'failure' | 'trigger' | 'command' | 'approval';
28
28
  starred: boolean;
29
29
  tag?: string;
@@ -55,7 +55,7 @@ export type NewScript = {
55
55
  };
56
56
  is_template?: boolean;
57
57
  lock?: string;
58
- language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
58
+ language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust';
59
59
  kind?: 'script' | 'failure' | 'trigger' | 'command' | 'approval';
60
60
  tag?: string;
61
61
  draft_only?: boolean;
@@ -135,7 +135,7 @@ export type QueuedJob = {
135
135
  flow_status?: FlowStatus;
136
136
  raw_flow?: FlowValue;
137
137
  is_flow_step: boolean;
138
- language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
138
+ language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust';
139
139
  email: string;
140
140
  visible_to_owner: boolean;
141
141
  mem_peak?: number;
@@ -174,7 +174,7 @@ export type CompletedJob = {
174
174
  flow_status?: FlowStatus;
175
175
  raw_flow?: FlowValue;
176
176
  is_flow_step: boolean;
177
- language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
177
+ language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust';
178
178
  is_skipped: boolean;
179
179
  email: string;
180
180
  visible_to_owner: boolean;
@@ -319,7 +319,7 @@ export type Preview = {
319
319
  content?: string;
320
320
  path?: string;
321
321
  args: ScriptArgs;
322
- language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
322
+ language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust';
323
323
  tag?: string;
324
324
  kind?: 'code' | 'identity' | 'http';
325
325
  dedicated_worker?: boolean;
@@ -752,7 +752,7 @@ export type MetricDataPoint = {
752
752
  export type RawScriptForDependencies = {
753
753
  raw_code: string;
754
754
  path: string;
755
- language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php';
755
+ language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust';
756
756
  };
757
757
  export type ConcurrencyGroup = {
758
758
  concurrency_key: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.387.0",
4
+ "version": "1.388.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {