diff --git a/types/Gitlab/GitlabRoutes.ts b/types/Gitlab/GitlabRoutes.ts index d427e784210cd5675bc60cff2d06fed044a1aacf..abd4c61935df0f31e160c154df230b7690ca3775 100644 --- a/types/Gitlab/GitlabRoutes.ts +++ b/types/Gitlab/GitlabRoutes.ts @@ -1,12 +1,14 @@ enum GitlabRoutes { - NOTIFICATION_SETTINGS = '/notification_settings', - USERS_GET = '/users', - REPOSITORY_GET = '/projects/{{id}}', - REPOSITORY_CREATE = '/projects', - REPOSITORY_EDIT = '/projects/{{id}}', - REPOSITORY_FORK = '/projects/{{id}}/fork', - REPOSITORY_MEMBER_ADD = '/projects/{{id}}/members', - REPOSITORY_MEMBERS_GET = '/projects/{{id}}/members/all' + NOTIFICATION_SETTINGS = '/notification_settings', + USERS_GET = '/users', + REPOSITORY_GET = '/projects/{{id}}', + REPOSITORY_CREATE = '/projects', + REPOSITORY_EDIT = '/projects/{{id}}', + REPOSITORY_FORK = '/projects/{{id}}/fork', + REPOSITORY_MEMBER_ADD = '/projects/{{id}}/members', + REPOSITORY_MEMBERS_GET = '/projects/{{id}}/members/all', + REPOSITORY_VARIABLES_ADD = '/projects/{{id}}/variables', + REPOSITORY_BRANCHES_PROTECT = '/projects/{{id}}/protected_branches' }