/** * simap API endpoint definitions. */ export declare const SIMAP_API_BASE = "https://www.simap.ch/api"; export declare const ENDPOINTS: { readonly PROJECT_SEARCH: "/publications/v2/project/project-search"; readonly PROJECT_HEADER: (projectId: string) => string; readonly PUBLICATION_DETAILS: (projectId: string, publicationId: string) => string; readonly PAST_PUBLICATIONS: (publicationId: string) => string; readonly CPV_SEARCH: "/codes/v1/cpv/search"; readonly CPV_LIST: "/codes/v1/cpv"; readonly BKP_SEARCH: "/codes/v1/bkp/search"; readonly BKP_LIST: "/codes/v1/bkp"; readonly NPK_SEARCH: "/codes/v1/npk/search"; readonly NPK_LIST: "/codes/v1/npk"; readonly OAG_SEARCH: "/codes/v1/oag/search"; readonly OAG_LIST: "/codes/v1/oag"; readonly CANTONS: "/cantons/v1"; readonly INSTITUTIONS: "/institutions/v1/institutions"; readonly PROC_OFFICES: "/procoffices/v1/po/public"; };