feat: added tags for cards, aligned status headers

This commit is contained in:
2025-03-09 19:32:45 +04:00
parent 56135ae10c
commit ea80e92c18
48 changed files with 876 additions and 85 deletions

View File

@@ -3,12 +3,14 @@
/* tslint:disable */
/* eslint-disable */
import type { AttributeSchema } from './AttributeSchema';
import type { CardTagSchema } from './CardTagSchema';
import type { ModuleSchema } from './ModuleSchema';
export type FullProjectSchema = {
name: string;
id: number;
attributes: Array<AttributeSchema>;
modules: Array<ModuleSchema>;
tags: Array<CardTagSchema>;
boardsCount: number;
};