Add tag type and tag alias.

This commit is contained in:
2025-05-30 16:08:58 +08:00
parent 5e6d202acd
commit 5ef2816f98
12 changed files with 336 additions and 332 deletions

View File

@@ -31,6 +31,8 @@ export interface Tag {
id: number;
name: string;
description: string;
type: string;
aliases: string[];
}
export interface CreateResourceParams {