690503:0135 Update workflow #01
CI / CD Pipeline / build (push) Failing after 6m6s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-05-03 01:35:05 +07:00
parent d239b58387
commit 2c24991f88
85 changed files with 6335 additions and 100 deletions
+8
View File
@@ -77,3 +77,11 @@ export const useGetAvailableActions = () => {
mutationFn: (data: GetAvailableActionsDto) => workflowEngineService.getAvailableActions(data),
});
};
// FR-025: Inline DSL validation (POST /workflow-engine/definitions/validate)
export const useValidateDsl = () => {
return useMutation({
mutationFn: (dsl: Record<string, unknown>) =>
workflowEngineService.validateDsl(dsl),
});
};