@withpica/mcp-server 2.43.0 → 2.44.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/CHANGELOG.md +37 -4
- package/dist/resources/agent-guide.d.ts +2 -2
- package/dist/resources/agent-guide.d.ts.map +1 -1
- package/dist/resources/agent-guide.js +54 -20
- package/dist/resources/agent-guide.js.map +1 -1
- package/dist/resources/index.d.ts.map +1 -1
- package/dist/resources/index.js +37 -1
- package/dist/resources/index.js.map +1 -1
- package/dist/resources/required-schemas.generated.d.ts +193 -12
- package/dist/resources/required-schemas.generated.d.ts.map +1 -1
- package/dist/resources/required-schemas.generated.js +432 -18
- package/dist/resources/required-schemas.generated.js.map +1 -1
- package/dist/resources/required-schemas.source.d.ts.map +1 -1
- package/dist/resources/required-schemas.source.js +228 -15
- package/dist/resources/required-schemas.source.js.map +1 -1
- package/dist/tools/agreement-types.js +1 -1
- package/dist/tools/agreement-types.js.map +1 -1
- package/dist/tools/agreements.js +3 -3
- package/dist/tools/agreements.js.map +1 -1
- package/dist/tools/audio-files.js +4 -4
- package/dist/tools/audio-files.js.map +1 -1
- package/dist/tools/dashboard.js +5 -5
- package/dist/tools/dashboard.js.map +1 -1
- package/dist/tools/enrichment.js +6 -6
- package/dist/tools/enrichment.js.map +1 -1
- package/dist/tools/exports.js +5 -5
- package/dist/tools/exports.js.map +1 -1
- package/dist/tools/index.d.ts +1 -1
- package/dist/tools/index.d.ts.map +1 -1
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/multimedia.js +4 -4
- package/dist/tools/multimedia.js.map +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
|
@@ -5,6 +5,433 @@
|
|
|
5
5
|
// Source: required-schemas.source.ts + schema-mirror.json + ToolRegistry inputSchemas.
|
|
6
6
|
// ADR-214 — required-fields contracts per workflow.
|
|
7
7
|
export const REQUIRED_SCHEMAS = {
|
|
8
|
+
"agreement-required": {
|
|
9
|
+
"workflow": "agreement-required",
|
|
10
|
+
"summary": "Required fields to create an agreement, then attach works and (optionally) render from a template.",
|
|
11
|
+
"primary_tool": "pica_agreements_create",
|
|
12
|
+
"primary_required": [
|
|
13
|
+
"title",
|
|
14
|
+
"agreement_type",
|
|
15
|
+
"other_party_name"
|
|
16
|
+
],
|
|
17
|
+
"primary_recommended": [
|
|
18
|
+
"id",
|
|
19
|
+
"other_party_type",
|
|
20
|
+
"description",
|
|
21
|
+
"notes",
|
|
22
|
+
"tags",
|
|
23
|
+
"agreement_category",
|
|
24
|
+
"status",
|
|
25
|
+
"signing_date",
|
|
26
|
+
"start_date",
|
|
27
|
+
"end_date",
|
|
28
|
+
"expires_at",
|
|
29
|
+
"renewal_date",
|
|
30
|
+
"termination_date",
|
|
31
|
+
"counterparty_org_id",
|
|
32
|
+
"counterparty_email",
|
|
33
|
+
"advance_amount",
|
|
34
|
+
"advance_currency",
|
|
35
|
+
"is_recoupable",
|
|
36
|
+
"financial_terms",
|
|
37
|
+
"agreement_terms",
|
|
38
|
+
"termination_notice_period_days",
|
|
39
|
+
"include_future_works"
|
|
40
|
+
],
|
|
41
|
+
"enums": {
|
|
42
|
+
"agreement_type": [
|
|
43
|
+
"admin_only",
|
|
44
|
+
"artist_contract",
|
|
45
|
+
"co_publishing",
|
|
46
|
+
"distribution",
|
|
47
|
+
"library_music",
|
|
48
|
+
"master_recording",
|
|
49
|
+
"other",
|
|
50
|
+
"production",
|
|
51
|
+
"publishing_admin",
|
|
52
|
+
"report",
|
|
53
|
+
"sub_publishing",
|
|
54
|
+
"termination"
|
|
55
|
+
],
|
|
56
|
+
"other_party_type": [
|
|
57
|
+
"artist",
|
|
58
|
+
"individual",
|
|
59
|
+
"label",
|
|
60
|
+
"music_library",
|
|
61
|
+
"other",
|
|
62
|
+
"production_company",
|
|
63
|
+
"publisher"
|
|
64
|
+
],
|
|
65
|
+
"status": [
|
|
66
|
+
"active",
|
|
67
|
+
"cancelled",
|
|
68
|
+
"completed",
|
|
69
|
+
"draft",
|
|
70
|
+
"expired",
|
|
71
|
+
"fully_executed",
|
|
72
|
+
"partially_signed",
|
|
73
|
+
"pending_signature",
|
|
74
|
+
"terminated",
|
|
75
|
+
"unknown"
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"companion_calls": [
|
|
79
|
+
{
|
|
80
|
+
"tool": "pica_agreements_update",
|
|
81
|
+
"when": "After creation — to amend any inline field. Status changes trigger notifications; counterparty_org_id changes require the linked-org check at the route layer.",
|
|
82
|
+
"required": [
|
|
83
|
+
"id"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"tool": "pica_agreements_link_work",
|
|
88
|
+
"when": "Attach a work to the agreement. Optionally set a royalty split percentage per work.",
|
|
89
|
+
"required": [
|
|
90
|
+
"agreement_id",
|
|
91
|
+
"work_id"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"tool": "pica_agreement_templates_render",
|
|
96
|
+
"when": "Template-driven flow — fill an agreement template with catalog data (work_id + people_ids) before creating the agreement row.",
|
|
97
|
+
"required": [
|
|
98
|
+
"id"
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"example": {
|
|
103
|
+
"title": "Songwriter Admin Deal — Midnight Rivers",
|
|
104
|
+
"agreement_type": "publishing_admin",
|
|
105
|
+
"other_party_name": "Indigo Music Publishing Ltd."
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"audio-upload-required": {
|
|
109
|
+
"workflow": "audio-upload-required",
|
|
110
|
+
"summary": "Three-step chain to add an audio master / stem / version to the catalog: presign → PUT → finalize, then optional async analyze + poll.",
|
|
111
|
+
"primary_tool": "pica_audio_presigned_upload",
|
|
112
|
+
"primary_required": [
|
|
113
|
+
"filename",
|
|
114
|
+
"content_type",
|
|
115
|
+
"file_size"
|
|
116
|
+
],
|
|
117
|
+
"primary_recommended": [
|
|
118
|
+
"work_id",
|
|
119
|
+
"title",
|
|
120
|
+
"file_type"
|
|
121
|
+
],
|
|
122
|
+
"enums": {
|
|
123
|
+
"file_type": [
|
|
124
|
+
"demo",
|
|
125
|
+
"instrumental",
|
|
126
|
+
"master",
|
|
127
|
+
"stem",
|
|
128
|
+
"version"
|
|
129
|
+
],
|
|
130
|
+
"classification": [
|
|
131
|
+
"composition",
|
|
132
|
+
"demo",
|
|
133
|
+
"drum_pack",
|
|
134
|
+
"loop",
|
|
135
|
+
"other",
|
|
136
|
+
"released_song",
|
|
137
|
+
"sample",
|
|
138
|
+
"stem",
|
|
139
|
+
"unreleased_song"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
"companion_calls": [
|
|
143
|
+
{
|
|
144
|
+
"tool": "pica_audio_complete_upload",
|
|
145
|
+
"when": "Step 2 — after the uploader PUTs the file to the signed URL returned by step 1. Finalizes the upload, writes the audio_files row, and (optionally) links or auto-creates a recording for master files.",
|
|
146
|
+
"required": [
|
|
147
|
+
"upload_id",
|
|
148
|
+
"key",
|
|
149
|
+
"bucket",
|
|
150
|
+
"filename",
|
|
151
|
+
"content_type",
|
|
152
|
+
"file_size"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"tool": "pica_audio_analyze",
|
|
157
|
+
"when": "Step 3 (optional, async). Triggers BPM / key / mood feature extraction (Librosa) and lyrics transcription (Whisper). Each side bills 1 credit. Does not auto-run on complete_upload — explicit call required.",
|
|
158
|
+
"required": [
|
|
159
|
+
"id"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"tool": "pica_audio_inspect",
|
|
164
|
+
"when": "Step 4 (poll). Call with sections: ['analysis', 'status'] until the analysis job reports complete. Lyrics transcripts land on the analysis row, not works.lyrics — copy is a separate step.",
|
|
165
|
+
"required": [
|
|
166
|
+
"id"
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"example": {
|
|
171
|
+
"filename": "midnight-rivers-master.wav",
|
|
172
|
+
"content_type": "audio/wav",
|
|
173
|
+
"file_size": 48234567,
|
|
174
|
+
"work_id": "<optional uuid — auto-creates a recording for master files>"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"claim-required": {
|
|
178
|
+
"workflow": "claim-required",
|
|
179
|
+
"summary": "Resolve pending discoveries (credits, custody, artist links) into your catalog. Each discovery type has a typed claim verb; the generic discoveries_review surface accepts/rejects without specialised handling.",
|
|
180
|
+
"primary_tool": "pica_discoveries_query",
|
|
181
|
+
"primary_required": [],
|
|
182
|
+
"primary_recommended": [
|
|
183
|
+
"status",
|
|
184
|
+
"limit"
|
|
185
|
+
],
|
|
186
|
+
"enums": {
|
|
187
|
+
"status": [
|
|
188
|
+
"expired",
|
|
189
|
+
"pending",
|
|
190
|
+
"resolved",
|
|
191
|
+
"revoked"
|
|
192
|
+
],
|
|
193
|
+
"match_basis": [
|
|
194
|
+
"email",
|
|
195
|
+
"ipi",
|
|
196
|
+
"ipn",
|
|
197
|
+
"isni",
|
|
198
|
+
"musicbrainz"
|
|
199
|
+
],
|
|
200
|
+
"custody_type": [
|
|
201
|
+
"composition",
|
|
202
|
+
"master"
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
"companion_calls": [
|
|
206
|
+
{
|
|
207
|
+
"tool": "pica_discoveries_review",
|
|
208
|
+
"when": "Generic accept/reject for any discovery row — accepted discoveries update your catalog automatically. Use for non-credit / non-custody / non-artist discoveries, or when the typed claim tools refuse on rate-limit / state preconditions.",
|
|
209
|
+
"required": [
|
|
210
|
+
"discovery_id",
|
|
211
|
+
"status"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"tool": "pica_claim_credit",
|
|
216
|
+
"when": "Drain a discovered_credits row and insert a work_credits row in your catalog. Rate-limited to 20 claims/hour. Re-claiming an already-resolved row returns DISCOVERY_ALREADY_RESOLVED (409).",
|
|
217
|
+
"required": [
|
|
218
|
+
"id"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"tool": "pica_claim_custody",
|
|
223
|
+
"when": "Drain a discovered_custody row into a pending custody_claims row with +72h silent-consent auto-approve. The current custodian keeps the catalog row until the window elapses.",
|
|
224
|
+
"required": [
|
|
225
|
+
"id"
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"tool": "pica_claim_artist",
|
|
230
|
+
"when": "Drain a discovered_artists row instantly (identity evidence already validated at discovery time). Requires your identity to already be linked via pica_update_my_identity. Refuses (409) when an open artist_claims review row exists.",
|
|
231
|
+
"required": [
|
|
232
|
+
"id"
|
|
233
|
+
]
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"example": {
|
|
237
|
+
"status": "pending",
|
|
238
|
+
"limit": 50
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"enrichment-resolve-required": {
|
|
242
|
+
"workflow": "enrichment-resolve-required",
|
|
243
|
+
"summary": "Fan out enrichment across every eligible source for an entity (work / recording / person), then review fuzzy Tier B matches in the proposals queue. Tier A identifier matches apply directly; Tier B fuzzy matches queue as proposals.",
|
|
244
|
+
"primary_tool": "pica_resolve_work",
|
|
245
|
+
"primary_required": [
|
|
246
|
+
"work_id"
|
|
247
|
+
],
|
|
248
|
+
"primary_recommended": [
|
|
249
|
+
"sources",
|
|
250
|
+
"include_fuzzy"
|
|
251
|
+
],
|
|
252
|
+
"enums": {
|
|
253
|
+
"status": [
|
|
254
|
+
"applied",
|
|
255
|
+
"expired",
|
|
256
|
+
"pending",
|
|
257
|
+
"rejected"
|
|
258
|
+
],
|
|
259
|
+
"entity_type": [
|
|
260
|
+
"person",
|
|
261
|
+
"recording",
|
|
262
|
+
"work"
|
|
263
|
+
],
|
|
264
|
+
"proposal_action": [
|
|
265
|
+
"create",
|
|
266
|
+
"update"
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
"companion_calls": [
|
|
270
|
+
{
|
|
271
|
+
"tool": "pica_resolve_recording",
|
|
272
|
+
"when": "Recording-side variant. Fans out across Spotify, YouTube, MusicBrainz, Discogs. Triggered by spotify_track_uri / youtube_video_id on the recording.",
|
|
273
|
+
"required": [
|
|
274
|
+
"recording_id"
|
|
275
|
+
]
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"tool": "pica_resolve_person",
|
|
279
|
+
"when": "Person-side variant. Fans out across ISNI and MusicBrainz (Wikidata downstream). Triggered by isni / musicbrainz_id on the person.",
|
|
280
|
+
"required": [
|
|
281
|
+
"person_id"
|
|
282
|
+
]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"tool": "pica_enrichment_proposals_list",
|
|
286
|
+
"when": "After resolve — list pending Tier B fuzzy matches awaiting review. Only pending status is returned.",
|
|
287
|
+
"required": []
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"tool": "pica_enrichment_proposal_apply",
|
|
291
|
+
"when": "Commit a reviewed proposal. Drift detection runs first on update proposals — pass force=true only after the user has reviewed any conflicts from a prior drift_detected response.",
|
|
292
|
+
"required": [
|
|
293
|
+
"proposal_id"
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"tool": "pica_enrichment_proposal_reject",
|
|
298
|
+
"when": "Dismiss a proposal. Content-hash suppression permanently blocks re-proposal of the same exact content; cascade only re-proposes if the source data genuinely changes.",
|
|
299
|
+
"required": [
|
|
300
|
+
"proposal_id"
|
|
301
|
+
]
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"example": {
|
|
305
|
+
"work_id": "<uuid>",
|
|
306
|
+
"sources": [
|
|
307
|
+
"mlc",
|
|
308
|
+
"spotify"
|
|
309
|
+
],
|
|
310
|
+
"include_fuzzy": true
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
"export-required": {
|
|
314
|
+
"workflow": "export-required",
|
|
315
|
+
"summary": "Generate exports of the works catalog in formats matching the destination — CSV/JSON for general use, CWR for PRO registration, industry-ready packages for publishers/labels/sync, CAR for diligence and finance, AI-consent for declaration matrices.",
|
|
316
|
+
"primary_tool": "pica_export_catalog_csv",
|
|
317
|
+
"primary_required": [],
|
|
318
|
+
"primary_recommended": [
|
|
319
|
+
"format"
|
|
320
|
+
],
|
|
321
|
+
"enums": {},
|
|
322
|
+
"companion_calls": [
|
|
323
|
+
{
|
|
324
|
+
"tool": "pica_export_song_registration",
|
|
325
|
+
"when": "CWR-compatible song-registration export, formatted for PRO/CMO submission. Billing-gated.",
|
|
326
|
+
"required": []
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"tool": "pica_export_industry_ready",
|
|
330
|
+
"when": "Industry-ready metadata package — formatted for distribution to publishers, labels, and sync agents. Billing-gated.",
|
|
331
|
+
"required": []
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"tool": "pica_export_catalog_asset_report",
|
|
335
|
+
"when": "Catalog Asset Report (CAR) — unified ZIP bundle with cover PDF, evidence folders, integrity manifest. Property-lending framing for finance / insurance / diligence. Nested `sections` object accepts boolean flags: valuation, assets, agreements, intelligence, audio. Ownership is always included. Billing-gated.",
|
|
336
|
+
"required": []
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"tool": "pica_export_ai_consent",
|
|
340
|
+
"when": "AI-usage consent declaration matrix — per-work + per-contributor declarations of human-made / AI-assisted / AI-generated.",
|
|
341
|
+
"required": []
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"example": {
|
|
345
|
+
"format": "csv"
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"multimedia-required": {
|
|
349
|
+
"workflow": "multimedia-required",
|
|
350
|
+
"summary": "Required fields to register a multimedia item (photo / video / audio / external streaming link), and the patterns for importing or attaching to a work.",
|
|
351
|
+
"primary_tool": "pica_multimedia_create",
|
|
352
|
+
"primary_required": [
|
|
353
|
+
"title",
|
|
354
|
+
"content_type"
|
|
355
|
+
],
|
|
356
|
+
"primary_recommended": [
|
|
357
|
+
"url",
|
|
358
|
+
"classification",
|
|
359
|
+
"caption",
|
|
360
|
+
"description",
|
|
361
|
+
"tags",
|
|
362
|
+
"credits",
|
|
363
|
+
"duration_seconds",
|
|
364
|
+
"collection_id",
|
|
365
|
+
"display_order",
|
|
366
|
+
"is_featured",
|
|
367
|
+
"is_published",
|
|
368
|
+
"venue",
|
|
369
|
+
"event_name",
|
|
370
|
+
"performance_date",
|
|
371
|
+
"setlist_position",
|
|
372
|
+
"sync_side",
|
|
373
|
+
"spotify_url",
|
|
374
|
+
"spotify_track_uri",
|
|
375
|
+
"spotify_track_id",
|
|
376
|
+
"youtube_url",
|
|
377
|
+
"youtube_video_id",
|
|
378
|
+
"soundcloud_url",
|
|
379
|
+
"thumbnail_url"
|
|
380
|
+
],
|
|
381
|
+
"enums": {
|
|
382
|
+
"content_type": [
|
|
383
|
+
"live_performance",
|
|
384
|
+
"soundcloud_track",
|
|
385
|
+
"spotify_track",
|
|
386
|
+
"uploaded_audio",
|
|
387
|
+
"uploaded_photo",
|
|
388
|
+
"uploaded_video",
|
|
389
|
+
"youtube_video"
|
|
390
|
+
],
|
|
391
|
+
"classification": [
|
|
392
|
+
"album_artwork",
|
|
393
|
+
"artist_showcase",
|
|
394
|
+
"behind_the_scenes",
|
|
395
|
+
"general",
|
|
396
|
+
"live_performance",
|
|
397
|
+
"music_video",
|
|
398
|
+
"promo_material",
|
|
399
|
+
"studio_session",
|
|
400
|
+
"sync_placement"
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
"companion_calls": [
|
|
404
|
+
{
|
|
405
|
+
"tool": "pica_multimedia_import_url",
|
|
406
|
+
"when": "Import an external image or video URL — downloads the file into PICA storage rather than referencing it externally. Use for Spotify artwork, web images, etc.",
|
|
407
|
+
"required": [
|
|
408
|
+
"url"
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"tool": "pica_multimedia_link_youtube",
|
|
413
|
+
"when": "YouTube-specific variant — pulls thumbnail, title, and view count automatically. Use this instead of pica_multimedia_create for YouTube videos.",
|
|
414
|
+
"required": [
|
|
415
|
+
"youtube_video_id",
|
|
416
|
+
"title"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"tool": "pica_multimedia_link_work",
|
|
421
|
+
"when": "Attach an existing multimedia item to a work with a typed relationship (music_video_for, sync_placement, album_artwork, etc.).",
|
|
422
|
+
"required": [
|
|
423
|
+
"multimedia_id",
|
|
424
|
+
"work_id",
|
|
425
|
+
"relationship_type"
|
|
426
|
+
]
|
|
427
|
+
}
|
|
428
|
+
],
|
|
429
|
+
"example": {
|
|
430
|
+
"title": "Midnight Rivers — Official Music Video",
|
|
431
|
+
"content_type": "youtube_video",
|
|
432
|
+
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
8
435
|
"person-required": {
|
|
9
436
|
"workflow": "person-required",
|
|
10
437
|
"summary": "Required fields to register a person (writer, performer, producer, publisher). Identifiers (IPI / ISNI / PRO / MusicBrainz / etc.) are inline-settable at create time.",
|
|
@@ -112,18 +539,9 @@ export const REQUIRED_SCHEMAS = {
|
|
|
112
539
|
"companion_calls": [],
|
|
113
540
|
"example": {
|
|
114
541
|
"recording_id": "<uuid>",
|
|
115
|
-
"
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"role": "MainArtist",
|
|
119
|
-
"display_order": 0
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"credited_name": "Sam Producer",
|
|
123
|
-
"role": "Producer",
|
|
124
|
-
"display_order": 1
|
|
125
|
-
}
|
|
126
|
-
]
|
|
542
|
+
"credited_name": "The Riverbed Trio",
|
|
543
|
+
"role": "MainArtist",
|
|
544
|
+
"person_id": "<uuid>"
|
|
127
545
|
}
|
|
128
546
|
},
|
|
129
547
|
"recording-required": {
|
|
@@ -177,15 +595,11 @@ export const REQUIRED_SCHEMAS = {
|
|
|
177
595
|
"companion_calls": [
|
|
178
596
|
{
|
|
179
597
|
"tool": "pica_recording_credits_update",
|
|
180
|
-
"when": "
|
|
598
|
+
"when": "Per credit — attach a single MainArtist / Producer / Engineer credit. Call once per person; does NOT take a credits[] batch (asymmetric with pica_credits_update for works).",
|
|
181
599
|
"required": [
|
|
182
600
|
"recording_id",
|
|
183
|
-
"credits"
|
|
184
|
-
],
|
|
185
|
-
"per_row_required": [
|
|
186
601
|
"credited_name",
|
|
187
|
-
"role"
|
|
188
|
-
"display_order"
|
|
602
|
+
"role"
|
|
189
603
|
]
|
|
190
604
|
},
|
|
191
605
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"required-schemas.generated.js","sourceRoot":"","sources":["../../src/resources/required-schemas.generated.ts"],"names":[],"mappings":"AAAA,6DAA6D;AAC7D,EAAE;AACF,kEAAkE;AAClE,uEAAuE;AACvE,uFAAuF;AACvF,oDAAoD;AAEpD,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,iBAAiB,EAAE;QACjB,UAAU,EAAE,iBAAiB;QAC7B,SAAS,EAAE,wKAAwK;QACnL,cAAc,EAAE,oBAAoB;QACpC,kBAAkB,EAAE;YAClB,YAAY;YACZ,WAAW;SACZ;QACD,qBAAqB,EAAE;YACrB,aAAa;YACb,MAAM;YACN,YAAY;YACZ,aAAa;YACb,aAAa;YACb,WAAW;YACX,OAAO;YACP,QAAQ;YACR,OAAO;YACP,SAAS;YACT,cAAc;YACd,OAAO;YACP,MAAM;YACN,gBAAgB;YAChB,YAAY;YACZ,YAAY;YACZ,YAAY;YACZ,oBAAoB;YACpB,UAAU;YACV,mBAAmB;YACnB,mBAAmB;YACnB,uBAAuB;YACvB,SAAS;YACT,UAAU;YACV,WAAW;YACX,uBAAuB;YACvB,mBAAmB;YACnB,mBAAmB;YACnB,OAAO;YACP,MAAM;YACN,gBAAgB;YAChB,aAAa;YACb,mBAAmB;YACnB,kBAAkB;YAClB,eAAe;YACf,QAAQ;YACR,aAAa;YACb,aAAa;YACb,aAAa;YACb,mBAAmB;SACpB;QACD,OAAO,EAAE,EAAE;QACX,iBAAiB,EAAE;YACjB;gBACE,MAAM,EAAE,oBAAoB;gBAC5B,MAAM,EAAE,yJAAyJ;gBACjK,UAAU,EAAE;oBACV,IAAI;iBACL;aACF;SACF;QACD,SAAS,EAAE;YACT,YAAY,EAAE,MAAM;YACpB,WAAW,EAAE,KAAK;YAClB,gBAAgB,EAAE,aAAa;YAC/B,MAAM,EAAE,kBAAkB;YAC1B,mBAAmB,EAAE,WAAW;SACjC;KACF;IACD,4BAA4B,EAAE;QAC5B,UAAU,EAAE,4BAA4B;QACxC,SAAS,EAAE,6NAA6N;QACxO,cAAc,EAAE,+BAA+B;QAC/C,kBAAkB,EAAE;YAClB,cAAc;YACd,eAAe;YACf,MAAM;SACP;QACD,qBAAqB,EAAE;YACrB,WAAW;YACX,kBAAkB;YAClB,YAAY;YACZ,eAAe;YACf,OAAO;SACR;QACD,OAAO,EAAE;YACP,MAAM,EAAE;gBACN,UAAU;gBACV,aAAa;gBACb,UAAU;gBACV,oBAAoB;gBACpB,gBAAgB;gBAChB,iBAAiB;gBACjB,YAAY;gBACZ,oBAAoB;gBACpB,OAAO;gBACP,OAAO;gBACP,WAAW;gBACX,UAAU;gBACV,YAAY;gBACZ,oBAAoB;gBACpB,SAAS;gBACT,UAAU;aACX;SACF;QACD,iBAAiB,EAAE,EAAE;QACrB,SAAS,EAAE;YACT,cAAc,EAAE,QAAQ;YACxB,
|
|
1
|
+
{"version":3,"file":"required-schemas.generated.js","sourceRoot":"","sources":["../../src/resources/required-schemas.generated.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"required-schemas.source.d.ts","sourceRoot":"","sources":["../../src/resources/required-schemas.source.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAEH,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC,CAAC;IAC1D,eAAe,EAAE,uBAAuB,EAAE,CAAC;IAC3C,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAClC;AAED,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,MAAM,EAAE,oBAAoB,
|
|
1
|
+
{"version":3,"file":"required-schemas.source.d.ts","sourceRoot":"","sources":["../../src/resources/required-schemas.source.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAEH,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC,CAAC;IAC1D,eAAe,EAAE,uBAAuB,EAAE,CAAC;IAC3C,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAClC;AAED,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAqWxE,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAEjC,KAAK,CAAC,MAAM,OAAO,uBAAuB,CAAC,CAAC"}
|