Skip to content
Snippets Groups Projects

Resolve "Deleting a value from a parameter string input sets the value to true"

Merged Daniel Göbel requested to merge bugfix/110-fix-string-input into main
12 files
+ 258
233
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -81,23 +81,23 @@ export class WorkflowVersionService {
* Update the status of a workflow version.
*
* Permission `workflow:update_status`
* @param gitCommitHash Git commit git_commit_hash of specific version.
* @param wid ID of a workflow
* @param gitCommitHash Git commit git_commit_hash of specific version.
* @param requestBody
* @returns WorkflowVersion Successful Response
* @throws ApiError
*/
public static workflowVersionUpdateWorkflowVersionStatus(
gitCommitHash: string,
wid: string,
gitCommitHash: string,
requestBody: WorkflowVersionStatus,
): CancelablePromise<WorkflowVersion> {
return __request(OpenAPI, {
method: 'PATCH',
url: '/workflows/{wid}/versions/{git_commit_hash}/status',
path: {
'git_commit_hash': gitCommitHash,
'wid': wid,
'git_commit_hash': gitCommitHash,
},
body: requestBody,
mediaType: 'application/json',
Loading