mirror of
https://github.com/openai/codex.git
synced 2026-08-31 14:28:48 +00:00
## What changed - Add an optional `threadId` parameter to `app/read`. - When provided, load the thread's effective configuration before applying app feature gating, workspace policy, and plugin attribution. - Share the thread-aware configuration loader with `app/list`. ## Testing - Add coverage showing that `app/read` honors a thread-level connector feature override. GitOrigin-RevId: 161e910a2d7435ecf4acd0ba9f5f5069d1631f12
29 lines
823 B
JSON
Generated
29 lines
823 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "EXPERIMENTAL - read metadata for specific apps/connectors.",
|
|
"properties": {
|
|
"appIds": {
|
|
"description": "App ids to read. The server accepts at most 100 ids and deduplicates repeated ids while preserving their first-request order.",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"includeTools": {
|
|
"description": "When true, include display-only public tool summaries in the returned metadata.",
|
|
"type": "boolean"
|
|
},
|
|
"threadId": {
|
|
"description": "Optional loaded thread id used to evaluate effective app configuration.",
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"appIds"
|
|
],
|
|
"title": "AppsReadParams",
|
|
"type": "object"
|
|
} |