@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(AdminFlowPauseSchema, args);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wopr-network/defcon",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "type": "module",
5
5
  "packageManager": "pnpm@9.15.4",
6
6
  "engines": {