feat: colors for card tags
This commit is contained in:
@@ -5,5 +5,6 @@
|
||||
export type BaseCardTagSchema = {
|
||||
name: string;
|
||||
projectId: number;
|
||||
tagColorId: number;
|
||||
};
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
9
src/client/models/GetTagColorsResponse.ts
Normal file
9
src/client/models/GetTagColorsResponse.ts
Normal 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>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user