···1717 "cursor": {
1818 "type": "string",
1919 "description": "The cursor to start the query from"
2020+ },
2121+ "limit": {
2222+ "type": "integer",
2323+ "description": "The upper limit of tracks to get per request. Default is 20, max is 50."
2024 }
2125 }
2226 },
···6767 },
6868 "musicServiceBaseDomain": {
6969 "type": "string",
7070- "description": "The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if not provided."
7070+ "description": "The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if unavailable or not provided."
7171 },
7272 "submissionClientAgent": {
7373 "type": "string",
7474 "maxLength": 256,
7575 "maxGraphemes": 2560,
7676- "description": "A user-agent style string specifying the user agent. e.g. tealtracker/0.0.1b (Linux; Android 13; SM-A715F). Defaults to 'manual/unknown' if not provided."
7676+ "description": "A metadata string specifying the user agent where the format is `<app-identifier>/<version> (<kernel/OS-base>; <platform/OS-version>; <device-model>)`. If string is provided, only `app-identifier` and `version` are required. `app-identifier` is recommended to be in reverse dns format. Defaults to 'manual/unknown' if unavailable or not provided."
7777 },
7878 "playedTime": {
7979 "type": "string",
+7-2
packages/lexicons/src/lexicons.ts
···350350 type: 'string',
351351 description: 'The cursor to start the query from',
352352 },
353353+ limit: {
354354+ type: 'integer',
355355+ description:
356356+ 'The upper limit of tracks to get per request. Default is 20, max is 50.',
357357+ },
353358 },
354359 },
355360 output: {
···481486 musicServiceBaseDomain: {
482487 type: 'string',
483488 description:
484484- "The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if not provided.",
489489+ "The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if unavailable or not provided.",
485490 },
486491 submissionClientAgent: {
487492 type: 'string',
488493 maxLength: 256,
489494 maxGraphemes: 2560,
490495 description:
491491- "A user-agent style string specifying the user agent. e.g. tealtracker/0.0.1b (Linux; Android 13; SM-A715F). Defaults to 'manual/unknown' if not provided.",
496496+ "A metadata string specifying the user agent. e.g. com.example.frontend/0.0.1b (Linux; Android 13; SM-A715F). Defaults to 'manual/unknown' if unavailable or not provided.",
492497 },
493498 playedTime: {
494499 type: 'string',
···1414 authorDID: string
1515 /** The cursor to start the query from */
1616 cursor?: string
1717+ /** The upper limit of tracks to get per request. Default is 20, max is 50. */
1818+ limit?: number
1719}
18201921export type InputSchema = undefined
···2727 isrc?: string
2828 /** The URL associated with this track */
2929 originUrl?: string
3030- /** The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if not provided. */
3030+ /** The base domain of the music service. e.g. music.apple.com, tidal.com, spotify.com. Defaults to 'local' if unavailable or not provided. */
3131 musicServiceBaseDomain?: string
3232- /** A user-agent style string specifying the user agent. e.g. tealtracker/0.0.1b (Linux; Android 13; SM-A715F). Defaults to 'manual/unknown' if not provided. */
3232+ /** A metadata string specifying the user agent. e.g. com.example.frontend/0.0.1b (Linux; Android 13; SM-A715F). Defaults to 'manual/unknown' if unavailable or not provided. */
3333 submissionClientAgent?: string
3434 /** The unix timestamp of when the track was played */
3535 playedTime?: string