addedOutput schema / $defs
Added value: +{
+ "GitStatusEntry": {
+ "properties": {
+ "path": {
+ "title": "Path",
+ "type": "string"
+ },
+ "status": {
+ "title": "Status",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "path"
+ ],
+ "title": "GitStatusEntry",
+ "type": "object"
+ },
+ "RepositoryRef": {
+ "properties": {
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "root": {
+ "title": "Root",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "root"
+ ],
+ "title": "RepositoryRef",
+ "type": "object"
+ }
+}
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / properties
Added value: +{
+ "branch": {
+ "title": "Branch",
+ "type": "string"
+ },
+ "entries": {
+ "items": {
+ "$ref": "#/$defs/GitStatusEntry"
+ },
+ "title": "Entries",
+ "type": "array"
+ },
+ "hidden_entries": {
+ "title": "Hidden Entries",
+ "type": "integer"
+ },
+ "repository": {
+ "$ref": "#/$defs/RepositoryRef"
+ }
+}
addedOutput schema / required
Added value: +[
+ "branch",
+ "entries",
+ "hidden_entries",
+ "repository"
+]
changedOutput schema / title
Previous value: -"repo_git_statusDictOutput"New value: +"GitStatusResult"