windmill-client 1.260.1 → 1.261.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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.260.1',
6
+ VERSION: '1.261.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -722,6 +722,15 @@ export declare class JobService {
722
722
  new_logs?: string;
723
723
  mem_peak?: number;
724
724
  }>;
725
+ /**
726
+ * get flow debug info
727
+ * @returns any flow debug info details
728
+ * @throws ApiError
729
+ */
730
+ static getFlowDebugInfo({ workspace, id, }: {
731
+ workspace: string;
732
+ id: string;
733
+ }): CancelablePromise<any>;
725
734
  /**
726
735
  * get completed job
727
736
  * @returns CompletedJob job details
@@ -499,6 +499,21 @@ class JobService {
499
499
  },
500
500
  });
501
501
  }
502
+ /**
503
+ * get flow debug info
504
+ * @returns any flow debug info details
505
+ * @throws ApiError
506
+ */
507
+ static getFlowDebugInfo({ workspace, id, }) {
508
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
509
+ method: 'GET',
510
+ url: '/w/{workspace}/jobs_u/get_flow_debug_info/{id}',
511
+ path: {
512
+ 'workspace': workspace,
513
+ 'id': id,
514
+ },
515
+ });
516
+ }
502
517
  /**
503
518
  * get completed job
504
519
  * @returns CompletedJob job details
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.260.1",
4
+ "version": "1.261.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {