Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

telemetry: add includesFix to codeScanIssueHover #694

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion telemetry/definitions/commonDefinitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,11 @@
"type": "string",
"description": "The id of the rule which produced the code scan issue"
},
{
"name": "includesFix",
"type": "boolean",
"description": "Whether the security issue includes a suggested fix"
},
{
"name": "syncedResources",
"type": "string",
Expand Down Expand Up @@ -2971,7 +2976,12 @@
{
"name": "codewhisperer_codeScanIssueHover",
"description": "Called when a code scan issue is hovered over",
"metadata": [{ "type": "findingId" }, { "type": "detectorId" }, { "type": "ruleId", "required": false }]
"metadata": [
{ "type": "findingId" },
{ "type": "detectorId" },
{ "type": "ruleId", "required": false },
{ "type": "includesFix" }
]
},
{
"name": "codewhisperer_codeScanIssueApplyFix",
Expand Down
Loading