mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
It's easier for clients to maintain watchers if they define the watch id, so move it into the request. It's not used yet, so should be a safe change.
15 lines
368 B
JSON
15 lines
368 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Stop filesystem watch notifications for a prior `fs/watch`.",
|
|
"properties": {
|
|
"watchId": {
|
|
"description": "Watch identifier previously provided to `fs/watch`.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"watchId"
|
|
],
|
|
"title": "FsUnwatchParams",
|
|
"type": "object"
|
|
} |