windmill-client 1.180.0 → 1.181.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
|
@@ -70,9 +70,13 @@ export declare class ResourceService {
|
|
|
70
70
|
* @returns any resource value
|
|
71
71
|
* @throws ApiError
|
|
72
72
|
*/
|
|
73
|
-
static getResourceValueInterpolated({ workspace, path, }: {
|
|
73
|
+
static getResourceValueInterpolated({ workspace, path, jobId, }: {
|
|
74
74
|
workspace: string;
|
|
75
75
|
path: string;
|
|
76
|
+
/**
|
|
77
|
+
* job id
|
|
78
|
+
*/
|
|
79
|
+
jobId?: string;
|
|
76
80
|
}): CancelablePromise<any>;
|
|
77
81
|
/**
|
|
78
82
|
* get resource value
|
|
@@ -92,7 +92,7 @@ class ResourceService {
|
|
|
92
92
|
* @returns any resource value
|
|
93
93
|
* @throws ApiError
|
|
94
94
|
*/
|
|
95
|
-
static getResourceValueInterpolated({ workspace, path, }) {
|
|
95
|
+
static getResourceValueInterpolated({ workspace, path, jobId, }) {
|
|
96
96
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
97
97
|
method: 'GET',
|
|
98
98
|
url: '/w/{workspace}/resources/get_value_interpolated/{path}',
|
|
@@ -100,6 +100,9 @@ class ResourceService {
|
|
|
100
100
|
'workspace': workspace,
|
|
101
101
|
'path': path,
|
|
102
102
|
},
|
|
103
|
+
query: {
|
|
104
|
+
'job_id': jobId,
|
|
105
|
+
},
|
|
103
106
|
});
|
|
104
107
|
}
|
|
105
108
|
/**
|