···1515 "type": "string",
1616 "description": "The URI of the artist to retrieve listeners from",
1717 "format": "at-uri"
1818+ },
1919+ "offset": {
2020+ "type": "integer",
2121+ "description": "Number of items to skip before returning results"
2222+ },
2323+ "limit": {
2424+ "type": "integer",
2525+ "description": "Maximum number of results to return"
1826 }
1927 }
2028 },
+6
apps/api/pkl/defs/artist/getArtistListeners.pkl
···1313 description = "The URI of the artist to retrieve listeners from"
1414 format = "at-uri"
1515 }
1616+ ["offset"] = new IntegerType {
1717+ description = "Number of items to skip before returning results"
1818+ }
1919+ ["limit"] = new IntegerType {
2020+ description = "Maximum number of results to return"
2121+ }
1622 }
1723 }
1824 output {
+8
apps/api/src/lexicon/lexicons.ts
···12081208 description: 'The URI of the artist to retrieve listeners from',
12091209 format: 'at-uri',
12101210 },
12111211+ offset: {
12121212+ type: 'integer',
12131213+ description: 'Number of items to skip before returning results',
12141214+ },
12151215+ limit: {
12161216+ type: 'integer',
12171217+ description: 'Maximum number of results to return',
12181218+ },
12111219 },
12121220 },
12131221 output: {
···1212export interface QueryParams {
1313 /** The URI of the artist to retrieve listeners from */
1414 uri: string
1515+ /** Number of items to skip before returning results */
1616+ offset?: number
1717+ /** Maximum number of results to return */
1818+ limit?: number
1519}
16201721export type InputSchema = undefined