@wopr-network/defcon 1.2.1 → 1.2.2
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.
|
@@ -777,7 +777,7 @@ async function handleAdminFlowPause(deps, args) {
|
|
|
777
777
|
return jsonResult({ paused: true, flow: v.data.flow_name });
|
|
778
778
|
}
|
|
779
779
|
async function handleAdminFlowResume(deps, args) {
|
|
780
|
-
const v = validateInput(
|
|
780
|
+
const v = validateInput(AdminFlowRestoreSchema, args);
|
|
781
781
|
if (!v.ok)
|
|
782
782
|
return v.result;
|
|
783
783
|
const flow = await deps.flows.getByName(v.data.flow_name);
|