windmill-client 1.457.0 → 1.458.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.457.0',
42
+ VERSION: '1.458.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -153,6 +153,7 @@ export type QueuedJob = {
153
153
  self_wait_time_ms?: number;
154
154
  aggregate_wait_time_ms?: number;
155
155
  suspend?: number;
156
+ preprocessed?: boolean;
156
157
  };
157
158
  export type CompletedJob = {
158
159
  workspace_id?: string;
@@ -194,6 +195,7 @@ export type CompletedJob = {
194
195
  labels?: Array<(string)>;
195
196
  self_wait_time_ms?: number;
196
197
  aggregate_wait_time_ms?: number;
198
+ preprocessed?: boolean;
197
199
  };
198
200
  export type ObscuredJob = {
199
201
  typ?: string;
@@ -515,6 +517,7 @@ export type HttpTrigger = TriggerExtraProperty & {
515
517
  http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
516
518
  is_async: boolean;
517
519
  requires_auth: boolean;
520
+ is_static_website: boolean;
518
521
  };
519
522
  export type NewHttpTrigger = {
520
523
  path: string;
@@ -529,6 +532,7 @@ export type NewHttpTrigger = {
529
532
  http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
530
533
  is_async: boolean;
531
534
  requires_auth: boolean;
535
+ is_static_website: boolean;
532
536
  };
533
537
  export type EditHttpTrigger = {
534
538
  path: string;
@@ -543,6 +547,7 @@ export type EditHttpTrigger = {
543
547
  http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
544
548
  is_async: boolean;
545
549
  requires_auth: boolean;
550
+ is_static_website: boolean;
546
551
  };
547
552
  export type TriggersCount = {
548
553
  primary_schedule?: {
@@ -4907,6 +4912,7 @@ export type ExistsRouteData = {
4907
4912
  requestBody: {
4908
4913
  route_path: string;
4909
4914
  http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
4915
+ trigger_path?: string;
4910
4916
  };
4911
4917
  workspace: string;
4912
4918
  };
@@ -12031,6 +12037,7 @@ export type $OpenApiTs = {
12031
12037
  requestBody: {
12032
12038
  route_path: string;
12033
12039
  http_method: 'get' | 'post' | 'put' | 'delete' | 'patch';
12040
+ trigger_path?: string;
12034
12041
  };
12035
12042
  workspace: string;
12036
12043
  };
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.457.0",
4
+ "version": "1.458.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {