Skip to content
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
46 changes: 41 additions & 5 deletions packages/core/src/codewhisperer/client/user-service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,9 @@
"acceptedCharacterCount": { "shape": "PrimitiveInteger" },
"totalCharacterCount": { "shape": "PrimitiveInteger" },
"timestamp": { "shape": "Timestamp" },
"unmodifiedAcceptedCharacterCount": { "shape": "PrimitiveInteger" }
"unmodifiedAcceptedCharacterCount": { "shape": "PrimitiveInteger" },
"totalNewCodeCharacterCount": { "shape": "PrimitiveInteger" },
"totalNewCodeLineCount": { "shape": "PrimitiveInteger" }
}
},
"CodeFixAcceptanceEvent": {
Expand Down Expand Up @@ -705,7 +707,19 @@
"codeScanJobId": { "shape": "CodeScanJobId" },
"timestamp": { "shape": "Timestamp" },
"codeAnalysisScope": { "shape": "CodeAnalysisScope" }
}
},
"documentation": "<p>Published when a security scan or code review starts</p>"
},
"CodeScanFailedEvent": {
"type": "structure",
"required": ["programmingLanguage", "codeScanJobId", "timestamp"],
"members": {
"programmingLanguage": { "shape": "ProgrammingLanguage" },
"codeScanJobId": { "shape": "CodeScanJobId" },
"timestamp": { "shape": "Timestamp" },
"codeAnalysisScope": { "shape": "CodeAnalysisScope" }
},
"documentation": "<p>Published when a security scan or code review fails</p>"
},
"CodeScanJobId": {
"type": "string",
Expand Down Expand Up @@ -738,6 +752,18 @@
"documentation": "<p>Code Scan Remediations Interaction Type</p>",
"enum": ["CODESCAN_ISSUE_HOVER", "CODESCAN_ISSUE_APPLY_FIX", "CODESCAN_ISSUE_VIEW_DETAILS"]
},
"CodeScanSucceededEvent": {
"type": "structure",
"required": ["programmingLanguage", "codeScanJobId", "timestamp", "numberOfFindings"],
"members": {
"programmingLanguage": { "shape": "ProgrammingLanguage" },
"codeScanJobId": { "shape": "CodeScanJobId" },
"timestamp": { "shape": "Timestamp" },
"numberOfFindings": { "shape": "PrimitiveInteger" },
"codeAnalysisScope": { "shape": "CodeAnalysisScope" }
},
"documentation": "<p>Published when a security scan or code review completes successfully</p>"
},
"Completion": {
"type": "structure",
"required": ["content"],
Expand Down Expand Up @@ -998,13 +1024,21 @@
"numberOfAddLines": { "shape": "PrimitiveInteger" },
"numberOfAddFiles": { "shape": "PrimitiveInteger" },
"userDecision": { "shape": "DocGenerationUserDecision" },
"interactionType": { "shape": "DocGenerationInteractionType" }
"interactionType": { "shape": "DocGenerationInteractionType" },
"userIdentity": { "shape": "String" },
"numberOfNavigation": { "shape": "PrimitiveInteger" },
"folderLevel": { "shape": "DocGenerationFolderLevel" }
}
},
"DocGenerationFolderLevel": {
"type": "string",
"documentation": "<p>Doc Generation Folder Level</p>",
"enum": ["SUB_FOLDER", "ENTIRE_WORKSPACE"]
},
"DocGenerationInteractionType": {
"type": "string",
"documentation": "<p>Doc Generation Interaction Type</p>",
"enum": ["GENERATE_README", "UPDATE_README"]
"enum": ["GENERATE_README", "UPDATE_README", "EDIT_README"]
},
"DocGenerationUserDecision": {
"type": "string",
Expand Down Expand Up @@ -2198,7 +2232,7 @@
},
"SuggestionState": {
"type": "string",
"enum": ["ACCEPT", "REJECT", "DISCARD", "EMPTY"]
"enum": ["ACCEPT", "REJECT", "DISCARD", "EMPTY", "MERGE"]
},
"SupplementalContext": {
"type": "structure",
Expand Down Expand Up @@ -2366,6 +2400,8 @@
"codeCoverageEvent": { "shape": "CodeCoverageEvent" },
"userModificationEvent": { "shape": "UserModificationEvent" },
"codeScanEvent": { "shape": "CodeScanEvent" },
"codeScanSucceededEvent": { "shape": "CodeScanSucceededEvent" },
"codeScanFailedEvent": { "shape": "CodeScanFailedEvent" },
"codeScanRemediationsEvent": { "shape": "CodeScanRemediationsEvent" },
"codeFixGenerationEvent": { "shape": "CodeFixGenerationEvent" },
"codeFixAcceptanceEvent": { "shape": "CodeFixAcceptanceEvent" },
Expand Down
Loading