@jaypie/mcp 0.8.20 → 0.8.21

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.
@@ -9,7 +9,7 @@ import { gt } from 'semver';
9
9
  /**
10
10
  * Docs Suite - Documentation services (skill, version, release_notes)
11
11
  */
12
- const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.20#c64428ea"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.21#a7fd63df"
13
13
  ;
14
14
  const __filename$1 = fileURLToPath(import.meta.url);
15
15
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.8.20",
3
+ "version": "0.8.21",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,10 @@
1
+ ---
2
+ version: 1.2.19
3
+ date: 2026-04-09
4
+ summary: Allow void return type in JaypieHandlerValidate (fixes #282)
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - `JaypieHandlerValidate` and `JaypieStreamHandlerValidate` types now accept `void` return, matching the idiomatic pattern of throwing on failure and returning nothing on success
10
+ - Previously required `return true` even when the validate function only threw errors on failure