@jaypie/mcp 0.8.78 → 0.8.79

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.78#17b14d70"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.79#3bcff1ec"
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.78",
3
+ "version": "0.8.79",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,20 @@
1
+ ---
2
+ version: 1.2.69
3
+ date: 2026-06-21
4
+ summary: Bundle declarations so types resolve under node16/nodenext
5
+ ---
6
+
7
+ ## Fixes
8
+
9
+ - Bundle the public TypeScript declarations into a single, self-contained
10
+ `index.d.ts` (and `index.d.cts` for the CommonJS entry) instead of shipping a
11
+ per-file `.d.ts` tree with extensionless relative specifiers (#390).
12
+ - Under `node16`/`nodenext` module resolution the old extensionless re-exports
13
+ (`export * from "./helpers"`) did not resolve in ESM mode: `extendDatadogRole`
14
+ and `ExtendDatadogRoleOptions` vanished from the type surface (`TS2305`), and
15
+ every other named export silently degraded to `any`. The flat declaration
16
+ file resolves correctly under `bundler`, `node16`, and `nodenext`.
17
+ - `package.json` `exports` now declares per-condition `types` (`import` →
18
+ `dist/esm/index.d.ts`, `require` → `dist/cjs/index.d.cts`).
19
+
20
+ No runtime behavior changes.