windmill-client 1.509.1 → 1.510.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.509.1',
42
+ VERSION: '1.510.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -2252,6 +2252,7 @@ export declare class ScriptService {
2252
2252
  * @param data.workspace
2253
2253
  * @param data.hash
2254
2254
  * @param data.withStarredInfo
2255
+ * @param data.authed
2255
2256
  * @returns Script script details
2256
2257
  * @throws ApiError
2257
2258
  */
@@ -4489,6 +4489,7 @@ class ScriptService {
4489
4489
  * @param data.workspace
4490
4490
  * @param data.hash
4491
4491
  * @param data.withStarredInfo
4492
+ * @param data.authed
4492
4493
  * @returns Script script details
4493
4494
  * @throws ApiError
4494
4495
  */
@@ -4501,7 +4502,8 @@ class ScriptService {
4501
4502
  hash: data.hash
4502
4503
  },
4503
4504
  query: {
4504
- with_starred_info: data.withStarredInfo
4505
+ with_starred_info: data.withStarredInfo,
4506
+ authed: data.authed
4505
4507
  }
4506
4508
  });
4507
4509
  }
@@ -368,6 +368,7 @@ export type QueuedJob = {
368
368
  */
369
369
  permissioned_as: string;
370
370
  flow_status?: FlowStatus;
371
+ workflow_as_code_status?: WorkflowStatus;
371
372
  raw_flow?: FlowValue;
372
373
  is_flow_step: boolean;
373
374
  language?: ScriptLang;
@@ -410,6 +411,7 @@ export type CompletedJob = {
410
411
  */
411
412
  permissioned_as: string;
412
413
  flow_status?: FlowStatus;
414
+ workflow_as_code_status?: WorkflowStatus;
413
415
  raw_flow?: FlowValue;
414
416
  is_flow_step: boolean;
415
417
  language?: ScriptLang;
@@ -4046,6 +4048,7 @@ export type ExistsScriptByPathData = {
4046
4048
  };
4047
4049
  export type ExistsScriptByPathResponse = boolean;
4048
4050
  export type GetScriptByHashData = {
4051
+ authed?: boolean;
4049
4052
  hash: string;
4050
4053
  withStarredInfo?: boolean;
4051
4054
  workspace: string;
@@ -5186,7 +5189,8 @@ export type GetJobUpdatesResponse = {
5186
5189
  log_offset?: number;
5187
5190
  mem_peak?: number;
5188
5191
  progress?: number;
5189
- flow_status?: WorkflowStatusRecord;
5192
+ flow_status?: FlowStatus;
5193
+ workflow_as_code_status?: WorkflowStatus;
5190
5194
  };
5191
5195
  export type GetJobUpdatesSseData = {
5192
5196
  getProgress?: boolean;
@@ -11546,6 +11550,7 @@ export type $OpenApiTs = {
11546
11550
  '/w/{workspace}/scripts/get/h/{hash}': {
11547
11551
  get: {
11548
11552
  req: {
11553
+ authed?: boolean;
11549
11554
  hash: string;
11550
11555
  withStarredInfo?: boolean;
11551
11556
  workspace: string;
@@ -13075,7 +13080,8 @@ export type $OpenApiTs = {
13075
13080
  log_offset?: number;
13076
13081
  mem_peak?: number;
13077
13082
  progress?: number;
13078
- flow_status?: WorkflowStatusRecord;
13083
+ flow_status?: FlowStatus;
13084
+ workflow_as_code_status?: WorkflowStatus;
13079
13085
  };
13080
13086
  };
13081
13087
  };
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.509.1",
4
+ "version": "1.510.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {