windmill-client 1.260.0 → 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.
package/dist/core/OpenAPI.js
CHANGED
|
@@ -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
|