diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-21 17:59:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-21 17:59:13 +0200 |
commit | 06421ed5455285eb5d5eb90ea689fa73ad0f3010 (patch) | |
tree | e7a56bb6ae95d9f6f84664c94fc2efb3758f6539 /proto | |
parent | 441196248603a7c1aed66e4c0a4342aeb06dca8f (diff) | |
download | warden-06421ed5455285eb5d5eb90ea689fa73ad0f3010.tar.bz2 warden-06421ed5455285eb5d5eb90ea689fa73ad0f3010.zip |
tests: cov (#13)
Diffstat (limited to 'proto')
-rw-r--r-- | proto/configuration/rule.proto | 4 | ||||
-rw-r--r-- | proto/configuration/typology.proto | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/proto/configuration/rule.proto b/proto/configuration/rule.proto index f963fde..1d21e31 100644 --- a/proto/configuration/rule.proto +++ b/proto/configuration/rule.proto @@ -52,7 +52,9 @@ message DeleteRuleConfigurationRequest { } message UpdateRuleRequest { - RuleConfiguration configuration = 1; + string id = 1; + string version = 2; + RuleConfiguration configuration = 3; } message GetRuleConfigResponse { diff --git a/proto/configuration/typology.proto b/proto/configuration/typology.proto index bae4630..2fa26c3 100644 --- a/proto/configuration/typology.proto +++ b/proto/configuration/typology.proto @@ -59,7 +59,9 @@ message GetTypologyConfigResponse { } message UpdateTypologyConfigRequest { - TypologyConfiguration configuration = 1; + string id = 1; + string version = 2; + TypologyConfiguration configuration = 3; } service QueryTypologies { |