windmill-client 1.323.5 → 1.324.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 +1 -1
- package/dist/schemas.gen.d.ts +6 -0
- package/dist/schemas.gen.js +6 -0
- package/dist/services.gen.d.ts +321 -312
- package/dist/services.gen.js +18 -0
- package/dist/types.gen.d.ts +3216 -51
- package/package.json +1 -1
package/dist/services.gen.js
CHANGED
|
@@ -5739,6 +5739,24 @@ class InputService {
|
|
|
5739
5739
|
}
|
|
5740
5740
|
});
|
|
5741
5741
|
}
|
|
5742
|
+
/**
|
|
5743
|
+
* Get args from history or saved input
|
|
5744
|
+
* @param data The data for the request.
|
|
5745
|
+
* @param data.workspace
|
|
5746
|
+
* @param data.jobOrInputId
|
|
5747
|
+
* @returns unknown args
|
|
5748
|
+
* @throws ApiError
|
|
5749
|
+
*/
|
|
5750
|
+
static getArgsFromHistoryOrSavedInput(data) {
|
|
5751
|
+
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
5752
|
+
method: 'GET',
|
|
5753
|
+
url: '/w/{workspace}/inputs/{jobOrInputId}/args',
|
|
5754
|
+
path: {
|
|
5755
|
+
workspace: data.workspace,
|
|
5756
|
+
jobOrInputId: data.jobOrInputId
|
|
5757
|
+
}
|
|
5758
|
+
});
|
|
5759
|
+
}
|
|
5742
5760
|
/**
|
|
5743
5761
|
* List saved Inputs for a Runnable
|
|
5744
5762
|
* @param data The data for the request.
|