mirror of
https://github.com/openai/codex.git
synced 2026-09-20 12:47:38 +00:00
Add streaming file APIs
This commit is contained in:
21
codex-rs/app-server-protocol/schema/json/v2/FsWriteFileCommitResponse.json
generated
Normal file
21
codex-rs/app-server-protocol/schema/json/v2/FsWriteFileCommitResponse.json
generated
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"description": "Metadata returned after a successful write commit.",
|
||||
"properties": {
|
||||
"modifiedAtMs": {
|
||||
"format": "int64",
|
||||
"type": "integer"
|
||||
},
|
||||
"sizeBytes": {
|
||||
"format": "uint64",
|
||||
"minimum": 0.0,
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"modifiedAtMs",
|
||||
"sizeBytes"
|
||||
],
|
||||
"title": "FsWriteFileCommitResponse",
|
||||
"type": "object"
|
||||
}
|
||||
Reference in New Issue
Block a user