feat(gitlab): add repository branches and tags endpoints and corresponding types

This commit is contained in:
2026-03-02 09:32:47 +00:00
parent e94004742f
commit 879f16dd98
5 changed files with 48 additions and 1 deletions

View File

@@ -70,6 +70,20 @@ export interface IGitLabJob {
duration: number;
}
export interface IGitLabBranch {
name: string;
commit: {
id: string;
};
}
export interface IGitLabTag {
name: string;
commit: {
id: string;
};
}
export interface ITestConnectionResult {
ok: boolean;
error?: string;