import { ExploreTool } from './types'; /** * @public */ export type ExploreToolFilter = { /** * Filter by a list of tags */ tags?: string[]; /** * Filter by a list of lifecycle strings */ lifecycle?: string[]; }; /** * @public */ export type GetExploreToolsRequest = { filter?: ExploreToolFilter; }; /** * @public */ export type GetExploreToolsResponse = { tools: ExploreTool[]; };