@jaypie/mcp 0.8.18 → 0.8.19
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.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.19#511afff1"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 0.2.3
|
|
3
|
+
date: 2026-04-08
|
|
4
|
+
summary: fabricString JSON.stringifies objects instead of throwing; removes unused { value } unwrap pattern from scalar conversions
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# @jaypie/fabric 0.2.3
|
|
8
|
+
|
|
9
|
+
## Changes
|
|
10
|
+
|
|
11
|
+
- `fabricString()` now JSON.stringifies plain objects instead of throwing `BadRequestError`
|
|
12
|
+
- Removed the `{ value }` unwrap pattern from `unwrapToScalar` — objects are no longer special-cased during scalar conversion
|
|
13
|
+
- `fabricBoolean()` and `fabricNumber()` throw on any object input (including `{ value }`)
|
|
14
|
+
|
|
15
|
+
## Breaking (from 0.2.2)
|
|
16
|
+
|
|
17
|
+
- `fabricString({ value: "hello" })` now returns `'{"value":"hello"}'` instead of `"hello"`
|
|
18
|
+
- `fabricBoolean({ value: true })` now throws instead of returning `true`
|
|
19
|
+
- `fabricNumber({ value: 42 })` now throws instead of returning `42`
|
|
20
|
+
- JSON strings parsed to objects (e.g., `'{"value":"true"}'`) follow the same new behavior
|