@jaypie/mcp 0.8.62 → 0.8.63
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.63#4149aed3"
|
|
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,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 0.8.63
|
|
3
|
+
date: 2026-05-31
|
|
4
|
+
summary: Fix the dynamodb skill's Atomic Conditional Writes example to import ConflictError from jaypie, not @jaypie/dynamodb
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Fixed
|
|
8
|
+
|
|
9
|
+
- **`dynamodb` skill**. The "Atomic Conditional Writes" example imported
|
|
10
|
+
`ConflictError` from `@jaypie/dynamodb`, which does not re-export it — the
|
|
11
|
+
import threw at runtime. `ConflictError` lives in `@jaypie/errors` (and the
|
|
12
|
+
`jaypie` umbrella); the example now imports it from `jaypie` while keeping
|
|
13
|
+
`transactWriteEntities` from `@jaypie/dynamodb`.
|
|
14
|
+
|
|
15
|
+
Issue: [#357](https://github.com/finlaysonstudio/jaypie/issues/357)
|
package/skills/dynamodb.md
CHANGED
|
@@ -181,8 +181,11 @@ await destroyEntity({ id: "abc-123" });
|
|
|
181
181
|
|
|
182
182
|
Use `conditionalCreate` to write an entity **and** a uniqueness-sentinel row in a single transaction -- both commit or neither does:
|
|
183
183
|
|
|
184
|
+
`ConflictError` is thrown from `@jaypie/errors` (re-exported by the `jaypie` umbrella); `@jaypie/dynamodb` does not re-export it.
|
|
185
|
+
|
|
184
186
|
```typescript
|
|
185
|
-
import { ConflictError
|
|
187
|
+
import { ConflictError } from "jaypie"; // or "@jaypie/errors"
|
|
188
|
+
import { transactWriteEntities } from "@jaypie/dynamodb";
|
|
186
189
|
|
|
187
190
|
try {
|
|
188
191
|
await transactWriteEntities({
|