Select the types of activity you want to include in your feed.
Add names filter to artist getArtists
Introduce an optional "names" parameter and propagate it through lexicon, pkl, TypeScript types, XRPC handler, and analytics types. Also apply assorted formatting, trailing-comma, and import fixes.
···1414 limit?: number;
1515 /** The offset for pagination */
1616 offset?: number;
1717+ /** The names of the artists to return */
1818+ names?: string;
1719}
18201921export type InputSchema = undefined;
···31313232app.listen(process.env.ROCKSKY_XPRC_PORT || 3004, () => {
3333 console.log(
3434- `Rocksky XRPC API is running on port ${process.env.ROCKSKY_XRPC_PORT || 3004}`
3434+ `Rocksky XRPC API is running on port ${process.env.ROCKSKY_XRPC_PORT || 3004}`,
3535 );
3636});