change to patch and add missing types for gitlab config

Signed-off-by: Dominik Pfaffenbauer <dominik@pfaffenbauer.at>
This commit is contained in:
Dominik Pfaffenbauer
2023-01-24 15:22:41 +01:00
parent 89709d523f
commit 3283ff18ec
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-gitlab': minor
'@backstage/plugin-catalog-backend-module-gitlab': patch
---
Implement Group and User Catalog Provider
+12
View File
@@ -48,6 +48,18 @@ export interface Config {
* (Optional) TaskScheduleDefinition for the refresh.
*/
schedule?: TaskScheduleDefinitionConfig;
/**
* (Optional) RegExp for the Project Name Pattern
*/
projectPattern?: RegExp;
/**
* (Optional) RegExp for the User Name Pattern
*/
userPattern?: RegExp;
/**
* (Optional) RegExp for the Group Name Pattern
*/
groupPattern?: RegExp;
}
>;
};