type CommandArgsConfig = {
"apax-v3/config/registries-explorer/ax/favorite": Partial<caFavorite>
"apax-v3/config/registries-explorer/ax/keyword-filter": Partial<caKeywordFilter>
"apax-v3/config/registries-explorer/ax/custom-search": Partial<caCustomSearch>
}
type caFavorite = {
packages: {
name: string
version?: string
}[]
}
type caKeywordFilter = {
filters: {
keyword: string
search_terms: string[]
}[]
}
type caCustomSearch = {
search_terms: string[]
}