addedOutput schema / $defs
Added value: +{
+ "RepositoryRef": {
+ "properties": {
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "root": {
+ "title": "Root",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "root"
+ ],
+ "title": "RepositoryRef",
+ "type": "object"
+ },
+ "SearchMatch": {
+ "properties": {
+ "line": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Line"
+ },
+ "path": {
+ "title": "Path",
+ "type": "string"
+ },
+ "text": {
+ "title": "Text",
+ "type": "string"
+ }
+ },
+ "required": [
+ "path",
+ "line",
+ "text"
+ ],
+ "title": "SearchMatch",
+ "type": "object"
+ }
+}
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / properties
Added value: +{
+ "backend": {
+ "enum": [
+ "ripgrep",
+ "python"
+ ],
+ "title": "Backend",
+ "type": "string"
+ },
+ "limit": {
+ "title": "Limit",
+ "type": "integer"
+ },
+ "matches": {
+ "items": {
+ "$ref": "#/$defs/SearchMatch"
+ },
+ "title": "Matches",
+ "type": "array"
+ },
+ "repository": {
+ "$ref": "#/$defs/RepositoryRef"
+ },
+ "truncated": {
+ "title": "Truncated",
+ "type": "boolean"
+ }
+}
addedOutput schema / required
Added value: +[
+ "matches",
+ "truncated",
+ "backend",
+ "limit",
+ "repository"
+]
changedOutput schema / title
Previous value: -"repo_search_codeDictOutput"New value: +"SearchCodeResult"