Skip to content

feat: add limit query parameter to track.lyrics.fingerprint.post #124

@andreafspeziale

Description

@andreafspeziale

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions