sentinel-mcp 0.4.3 → 0.4.4

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -75,6 +75,10 @@ function updateEventStatus(usageId, status) {
75
75
  Authorization: `Bearer ${SENTINEL_TOKEN}`,
76
76
  },
77
77
  body: JSON.stringify({ status }),
78
+ }).then((res) => {
79
+ if (!res.ok) {
80
+ res.text().then((body) => log(`Status update failed (${res.status}): ${body}`)).catch(() => { });
81
+ }
78
82
  }).catch((err) => {
79
83
  log(`Failed to update event status: ${err.message}`);
80
84
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sentinel-mcp",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Sentinel MCP server — connects GitHub issues to Claude Code sessions",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",