webadmin端增加版本号和部署功能
This commit is contained in:
@@ -13,3 +13,19 @@ export interface AdminPageResult<T> {
|
||||
export interface ExportRequest {
|
||||
format?: 'csv';
|
||||
}
|
||||
|
||||
export interface SystemVersionDto {
|
||||
id: string;
|
||||
gitTag: string | null;
|
||||
commitId: string;
|
||||
commitMessage: string;
|
||||
branch: string | null;
|
||||
deployedBy: string | null;
|
||||
deployedAt: string;
|
||||
}
|
||||
|
||||
export interface DeployTriggerResult {
|
||||
accepted: boolean;
|
||||
started?: boolean;
|
||||
message: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user