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.
···14 limit?: number;
15 /** The offset for pagination */
16 offset?: number;
0017}
1819export type InputSchema = undefined;
···14 limit?: number;
15 /** The offset for pagination */
16 offset?: number;
17+ /** The names of the artists to return */
18+ names?: string;
19}
2021export type InputSchema = undefined;