@withpica/mcp-server 2.75.0 → 2.76.0
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.
- package/.claude/settings.local.json +5 -0
- package/CHANGELOG.md +13 -0
- package/dist/index.js +0 -0
- package/dist/lib/changelog.generated.d.ts +2 -2
- package/dist/lib/changelog.generated.d.ts.map +1 -1
- package/dist/lib/changelog.generated.js +2 -2
- package/dist/lib/changelog.generated.js.map +1 -1
- package/dist/tools/metadata.js +4 -4
- package/dist/tools/metadata.js.map +1 -1
- package/dist/tools/recordings.d.ts.map +1 -1
- package/dist/tools/recordings.js +8 -4
- package/dist/tools/recordings.js.map +1 -1
- package/dist/tools/team.d.ts +22 -0
- package/dist/tools/team.d.ts.map +1 -0
- package/dist/tools/team.js +169 -0
- package/dist/tools/team.js.map +1 -0
- package/dist/tools/works.d.ts.map +1 -1
- package/dist/tools/works.js +14 -5
- package/dist/tools/works.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,8 +11,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [2.76.0] - 2026-06-15
|
|
15
|
+
|
|
16
|
+
Uniform deletion contract surfaced to agents. `pica_works_delete` and
|
|
17
|
+
`pica_recordings_delete` now report whether the entity was deleted or archived,
|
|
18
|
+
what was auto-unlinked, and — when refused — exactly what to remove first.
|
|
19
|
+
|
|
14
20
|
### Changed
|
|
15
21
|
|
|
22
|
+
- **`pica_works_delete`** description states the contract (auto-unlinks from
|
|
23
|
+
releases; archives instead of destroying when it has identifiers/dependents);
|
|
24
|
+
result renders via `formatDeletion` (status + detached).
|
|
25
|
+
- **`pica_recordings_delete`** description states the contract (credits/splits
|
|
26
|
+
removed with it; refused with a blocking list if it is a release track / has
|
|
27
|
+
payments / is in a sync placement); result renders via `formatDeletion`.
|
|
28
|
+
- **`pica_works_bulk_delete`** description notes each work follows the same rule.
|
|
16
29
|
- **`pica_releases_list`** gains `query` (title substring), `upc` (exact), and
|
|
17
30
|
`spotify_album_id` (exact) lookup filters — locate a release by
|
|
18
31
|
title/UPC/album instead of paging the whole catalogue (feedback 9a7a50f7).
|
package/dist/index.js
CHANGED
|
File without changes
|