diff options
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-components.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-components.proto b/sonar-ws/src/main/protobuf/ws-components.proto index d3704c795f1..b93c95fd32e 100644 --- a/sonar-ws/src/main/protobuf/ws-components.proto +++ b/sonar-ws/src/main/protobuf/ws-components.proto @@ -116,9 +116,17 @@ message Component { optional bool needIssueSync = 21; optional bool isAiCodeAssured = 22; optional bool isAiCodeFixEnabled = 23; + optional AiCodeAssurance aiCodeAssurance = 24; message Tags { repeated string tags = 1; } } +enum AiCodeAssurance { + UNKNOWN_AI_CODE_ASSURANCE = 0; + CONTAINS_AI_CODE = 1; + AI_CODE_ASSURED = 2; + NONE = 3; +} + |