feat: 添加Gitlab管道事件接口定义
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 34s
CI Monitor CI/CD / deploy (push) Successful in 37s

This commit is contained in:
zhaoyingbo 2024-07-25 06:39:29 +00:00
parent 35e7a47403
commit 5931e7e3aa

View File

@ -1,59 +1,264 @@
export namespace Gitlab {
/* 定义错误接口 */
export interface Error {
/**
*
*/
message: string
}
/* 定义用户接口 */
export interface User {
/**
* ID
*/
id: number
/**
*
*/
username: string
/**
*
*/
name: string
/**
*
*/
state: string
/**
* URL
*/
avatar_url: string
/**
* URL
*/
web_url: string
}
/* 定义项目详情接口 */
export interface ProjDetail {
/**
* ID
*/
id: number
/**
*
*/
description: string
/**
*
*/
name: string
/**
*
*/
path_with_namespace: string
/**
* URL
*/
web_url: string
/**
* URL
*/
avatar_url?: any
/**
*
*/
message?: string
}
/* 定义管道详情接口 */
export interface PipelineDetail {
/**
* ID
*/
id: number
/**
* ID
*/
project_id: number
/**
*
*/
ref: string
/**
*
*/
status: string
web_url: "https://git.n.xiaomi.com/miai-fe/fe/ai-scene-review-fe/-/pipelines/7646046"
/**
* URL
*/
web_url: string
/**
*
*/
user: User
/**
*
*/
started_at: string
/**
*
*/
finished_at: string
/**
*
*/
duration: number
/**
*
*/
queued_duration: number
/**
*
*/
message?: string
}
/* 定义管道接口 */
export interface Pipeline {
/**
* ID
*/
id: number
/**
* ID
*/
project_id: number
/**
* SHA值
*/
sha: string
/**
*
*/
ref: string
/**
*
*/
status: string
/**
*
*/
source: string
/**
*
*/
created_at: string
/**
*
*/
updated_at: string
/**
* URL
*/
web_url: string
}
/* 定义徽章接口 */
export interface Badge {
/**
* ID
*/
id: number
/**
*
*/
name: string
/**
* URL
*/
link_url: string
/**
* URL
*/
image_url: string
/**
* URL
*/
rendered_link_url: string
/**
* URL
*/
rendered_image_url: string
/**
*
*/
kind: "project" | "group"
}
/* 定义管道事件接口 */
export interface PipelineEvent {
/**
*
*/
object_attributes: {
/**
*
*/
ref: string
/**
* SHA值
*/
sha: string
/**
*
*/
status: string
/**
*
*/
created_at: string
/**
*
*/
finished_at: string
/**
*
*/
duration: number
}
/**
*
*/
user: {
/**
*
*/
name: string
/**
*
*/
username: string
}
/**
*
*/
project: {
/**
* ID
*/
id: number
/**
* web URL
*/
web_url: string
/**
*
*/
path_with_namespace: string
}
/**
*
*/
commit: {
/**
* ID
*/
id: string
/**
*
*/
title: string
}
}
}