mirror of
https://github.com/openai/codex.git
synced 2026-05-22 12:04:19 +00:00
35 lines
767 B
JSON
Generated
35 lines
767 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"WorktreeDirtyState": {
|
|
"properties": {
|
|
"hasStagedChanges": {
|
|
"type": "boolean"
|
|
},
|
|
"hasUnstagedChanges": {
|
|
"type": "boolean"
|
|
},
|
|
"hasUntrackedFiles": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"hasStagedChanges",
|
|
"hasUnstagedChanges",
|
|
"hasUntrackedFiles"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"description": "Dirty-state response returned by \\`worktree/inspectSource\\`.",
|
|
"properties": {
|
|
"dirty": {
|
|
"$ref": "#/definitions/WorktreeDirtyState"
|
|
}
|
|
},
|
|
"required": [
|
|
"dirty"
|
|
],
|
|
"title": "WorktreeInspectSourceResponse",
|
|
"type": "object"
|
|
} |