feat(config): add negative matching strategies

This commit adds support for negative matching strategies to complement
Equals, StartsWith, EndsWith and Contains.
This commit is contained in:
LGUG2Z
2024-03-22 21:06:22 -07:00
parent d6e0ecc507
commit e0652d953a
2 changed files with 92 additions and 1 deletions

View File

@@ -75,6 +75,10 @@ pub enum MatchingStrategy {
EndsWith,
Contains,
Regex,
DoesNotEndWith,
DoesNotStartWith,
DoesNotEqual,
DoesNotContain,
}
#[derive(Clone, Debug, Serialize, Deserialize, JsonSchema)]