@jaypie/mcp 0.8.5 → 0.8.6

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.5#68f73d91"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.6#5fb826f9"
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.5",
3
+ "version": "0.8.6",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 1.2.18
3
+ date: 2026-03-27
4
+ summary: Expose rawBody on LambdaRequest for webhook signature validation
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - LambdaRequest now exposes `rawBody` as a public readonly property containing the original body string before JSON parsing
10
+ - Enables HMAC-SHA256 webhook signature validation (Slack, GitHub, etc.) without accessing internal properties
11
+ - Closes #256
@@ -0,0 +1,10 @@
1
+ ---
2
+ version: 1.2.27
3
+ date: 2026-03-27
4
+ summary: Bump @jaypie/express@1.2.18, @jaypie/kit@1.2.6
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Bump `@jaypie/express` to 1.2.18 (rawBody for webhook signature validation)
10
+ - Bump `@jaypie/kit` to 1.2.6 (WEBHOOK_TOKEN header constant)
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 1.2.6
3
+ date: 2026-03-27
4
+ summary: Add WEBHOOK_TOKEN to HTTP.HEADER constants
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Add `HTTP.HEADER.WEBHOOK_TOKEN` (`X-Webhook-Token`) constant