windmill-client 1.437.0 → 1.438.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.437.0',
42
+ VERSION: '1.438.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -27,7 +27,7 @@ export type Script = {
27
27
  };
28
28
  lock?: string;
29
29
  lock_error_logs?: string;
30
- language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible';
30
+ language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp';
31
31
  kind: 'script' | 'failure' | 'trigger' | 'command' | 'approval';
32
32
  starred: boolean;
33
33
  tag?: string;
@@ -60,7 +60,7 @@ export type NewScript = {
60
60
  };
61
61
  is_template?: boolean;
62
62
  lock?: string;
63
- language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible';
63
+ language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp';
64
64
  kind?: 'script' | 'failure' | 'trigger' | 'command' | 'approval';
65
65
  tag?: string;
66
66
  draft_only?: boolean;
@@ -141,7 +141,7 @@ export type QueuedJob = {
141
141
  flow_status?: FlowStatus;
142
142
  raw_flow?: FlowValue;
143
143
  is_flow_step: boolean;
144
- language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible';
144
+ language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp';
145
145
  email: string;
146
146
  visible_to_owner: boolean;
147
147
  mem_peak?: number;
@@ -181,7 +181,7 @@ export type CompletedJob = {
181
181
  flow_status?: FlowStatus;
182
182
  raw_flow?: FlowValue;
183
183
  is_flow_step: boolean;
184
- language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible';
184
+ language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp';
185
185
  is_skipped: boolean;
186
186
  email: string;
187
187
  visible_to_owner: boolean;
@@ -331,7 +331,7 @@ export type Preview = {
331
331
  content?: string;
332
332
  path?: string;
333
333
  args: ScriptArgs;
334
- language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible';
334
+ language?: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp';
335
335
  tag?: string;
336
336
  kind?: 'code' | 'identity' | 'http';
337
337
  dedicated_worker?: boolean;
@@ -821,11 +821,11 @@ export type AppWithLastVersion = {
821
821
  extra_perms: {
822
822
  [key: string]: (boolean);
823
823
  };
824
+ custom_path?: string;
824
825
  };
825
826
  export type AppWithLastVersionWDraft = AppWithLastVersion & {
826
827
  draft_only?: boolean;
827
828
  draft?: unknown;
828
- custom_path?: string;
829
829
  };
830
830
  export type AppHistory = {
831
831
  version: number;
@@ -936,7 +936,7 @@ export type MetricDataPoint = {
936
936
  export type RawScriptForDependencies = {
937
937
  raw_code: string;
938
938
  path: string;
939
- language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible';
939
+ language: 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp';
940
940
  };
941
941
  export type ConcurrencyGroup = {
942
942
  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.437.0",
4
+ "version": "1.438.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {