Arguments - Manual - Apax Extension - Apax Extension provides UI and commands to execute the Apax CLI for SIMATIC AX - Apax Extension,extension, apax

Apax Extension

Portfolio
SIMATIC AX
Product
Apax Extension
Software version
1.1.0
Edition
11/2025
Language
English (original)
Package Name
@ax-vscode/siemens.apax-v3
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[]
}