mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
* Add v2 server notifications `thread/archived` and `thread/unarchived` with a `threadId` payload. * Wire new events into `thread/archive` and `thread/unarchive` success paths. * Update app-server protocol/schema/docs accordingly. Testing: - Updated archive/unarchive end-to-end tests to verify both notifications are emitted with the expected thread id payload.
47 lines
846 B
JSON
47 lines
846 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"HazelnutScope": {
|
|
"enum": [
|
|
"example",
|
|
"workspace-shared",
|
|
"all-shared",
|
|
"personal"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"ProductSurface": {
|
|
"enum": [
|
|
"chatgpt",
|
|
"codex",
|
|
"api",
|
|
"atlas"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"enabled": {
|
|
"default": false,
|
|
"type": "boolean"
|
|
},
|
|
"hazelnutScope": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/HazelnutScope"
|
|
}
|
|
],
|
|
"default": "example"
|
|
},
|
|
"productSurface": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/ProductSurface"
|
|
}
|
|
],
|
|
"default": "codex"
|
|
}
|
|
},
|
|
"title": "SkillsRemoteReadParams",
|
|
"type": "object"
|
|
} |