Context
The public Musixmatch API documentation documents limit as a query parameter for track.lyrics.fingerprint.post:
limit — Number of track items in the response (max related to the size param)
Live API testing confirms it works. The client currently only exposes size in the query type.
Affected file
src/endpoints/track.lyrics.fingerprint.post/interfaces.ts
What to do
Add limit to the query interface:
export interface TrackLyricsFingerprintPostQuery {
size?: number;
limit?: number;
}
Update unit tests and e2e tests accordingly.
Context
The public Musixmatch API documentation documents
limitas a query parameter fortrack.lyrics.fingerprint.post:Live API testing confirms it works. The client currently only exposes
sizein the query type.Affected file
src/endpoints/track.lyrics.fingerprint.post/interfaces.tsWhat to do
Add
limitto the query interface:Update unit tests and e2e tests accordingly.