import { ProjectType } from './project-type'; export interface IProjectBase { id: string; name: string; type: ProjectType; organizationIdentifier: string; } export interface IProject extends IProjectBase { workspaceId: string; } export interface IProjectOutput extends IProjectBase { workspaceId: string; } export interface IProjectCreateInput { id: string; name: string; type: ProjectType; organizationIdentifier: string; workspaceId: string; } export interface IProjectUpdateInput { id: string; name?: string; type?: string; organizationIdentifier?: string; workspaceId?: string; } export interface IProjectDeleteInput { id: string; }