diff --git a/src/api.ts b/src/api.ts index f2b4f7f3..e907378b 100644 --- a/src/api.ts +++ b/src/api.ts @@ -25,7 +25,7 @@ import { Milestone, Project, Tag, - TreeFile + TreeFile, } from './types'; export const logger = new Logger(); diff --git a/src/types.ts b/src/types.ts index 1e55b244..84e17e1f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -244,18 +244,18 @@ export interface ThingWithTimeStats { * A GitLab group */ export interface Group { - id: number; - web_url: string; - name: string; - path: string; - description: string; - visibility: string; - lfs_enabled: boolean; avatar_url: string; - request_access_enabled: boolean; + description: string; full_name: string; full_path: string; - parent_id: number; - ldap_cn: string; + id: number; ldap_access: string; + ldap_cn: string; + lfs_enabled: boolean; + name: string; + parent_id: number; + path: string; + request_access_enabled: boolean; + visibility: string; + web_url: string; }