diff --git a/types/Gitlab/GitlabRoutes.ts b/types/Gitlab/GitlabRoutes.ts
index abd4c61935df0f31e160c154df230b7690ca3775..0094be0493c026c7e2ed26cb538f958fe6cfa41e 100644
--- a/types/Gitlab/GitlabRoutes.ts
+++ b/types/Gitlab/GitlabRoutes.ts
@@ -8,7 +8,9 @@ enum GitlabRoutes {
     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'
+    REPOSITORY_BRANCHES_PROTECT = '/projects/{{id}}/protected_branches',
+    REPOSITORY_TREE             = '/projects/{{id}}/repository/tree',
+    REPOSITORY_FILE             = '/projects/{{id}}/repository/files/{{filePath}}',
 }