feat: colors for card tags

This commit is contained in:
2025-03-13 19:28:12 +04:00
parent 86115f0263
commit e32ec1ff23
14 changed files with 177 additions and 31 deletions

View File

@@ -5,5 +5,6 @@
export type BaseCardTagSchema = {
name: string;
projectId: number;
tagColorId: number;
};

View File

@@ -2,9 +2,12 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { CardTagColorSchema } from './CardTagColorSchema';
export type CardTagSchema = {
name: string;
projectId: number;
tagColorId: number;
id: number;
tagColor: CardTagColorSchema;
};

View File

@@ -0,0 +1,9 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { CardTagColorSchema } from './CardTagColorSchema';
export type GetTagColorsResponse = {
colors: Array<CardTagColorSchema>;
};