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