feat: projects and boards

This commit is contained in:
2025-02-07 20:07:10 +04:00
parent 58d397ed0b
commit 580552bd47
185 changed files with 3352 additions and 1284 deletions

View File

@@ -0,0 +1,15 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { ProjectSchema } from './ProjectSchema';
import type { StatusSchema } from './StatusSchema';
export type BoardSchema = {
name: string;
projectId: number;
id: number;
ordinalNumber: number;
dealStatuses: Array<StatusSchema>;
project: ProjectSchema;
};