export type SemVerIncrementType = 'minor' | 'major' | 'patch'; export interface User { id: number; name: string; email: string; } export enum Role { ADMIN = 'admin', USER = 'user', } export interface ISolutionImplementation { name: string; functionalName: string; customer: string; customerCode: string; path: string; class: string; url: string; } export interface ApiExternalsResponse { target: { $: { path: string; }; property: { _: string; $: { name: string; }; }; }; }