export type ApiOperation = 'list' | 'get' | 'create' | 'update' | 'delete'; export interface Schema { name: string; project: string; path?: string; entity?: string; baseUrl?: string; operations?: ApiOperation[]; models?: boolean; mapper?: boolean; force?: boolean; }