A decentralized music tracking and discovery platform built on AT Protocol 🎵

Clarify matchSong description

+4 -3
+1 -1
apps/api/lexicons/song/matchSong.json
··· 4 4 "defs": { 5 5 "main": { 6 6 "type": "query", 7 - "description": "Get a song by its uri", 7 + "description": "Matches a song against Rocksky’s music database and external metadata providers to resolve the best canonical track, artist, and album", 8 8 "parameters": { 9 9 "type": "params", 10 10 "required": [
+1 -1
apps/api/pkl/defs/song/matchSong.pkl
··· 5 5 defs = new Mapping<String, Query> { 6 6 ["main"] { 7 7 type = "query" 8 - description = "Get a song by its uri" 8 + description = "Matches a song against Rocksky’s music database and external metadata providers to resolve the best canonical track, artist, and album" 9 9 parameters = new Params { 10 10 required = List("title", "artist") 11 11 properties {
+2 -1
apps/api/src/lexicon/lexicons.ts
··· 5551 5551 defs: { 5552 5552 main: { 5553 5553 type: "query", 5554 - description: "Get a song by its uri", 5554 + description: 5555 + "Matches a song against Rocksky’s music database and external metadata providers to resolve the best canonical track, artist, and album", 5555 5556 parameters: { 5556 5557 type: "params", 5557 5558 required: ["title", "artist"],