mirror of
https://github.com/openai/codex.git
synced 2026-09-02 14:49:14 +00:00
## What changed - Add `app/installed` to return each connector observed in the committed runtime tool snapshot, including its runtime name and effective `enabled` and `callable` state. - Support evaluating thread-specific configuration with `threadId` and refreshing the hosted connector tool snapshot with `forceRefresh`. - Preserve observed connector identities as disabled when global or workspace policy disables Apps, and retain the previous snapshot when a refresh fails. ## Testing - Cover cached and forced reads, policy and configuration filtering, thread-specific configuration, snapshot refresh failures, and protocol serialization. GitOrigin-RevId: f697b6fb501b7d329a169e947a1c1607806222fe
19 lines
570 B
JSON
Generated
19 lines
570 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Read the committed installed connector runtime snapshot.",
|
|
"properties": {
|
|
"forceRefresh": {
|
|
"description": "When true and Apps are permitted, refresh and publish the hosted connector runtime tool snapshot first.",
|
|
"type": "boolean"
|
|
},
|
|
"threadId": {
|
|
"description": "Optional loaded thread id used to evaluate effective app configuration.",
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"title": "AppsInstalledParams",
|
|
"type": "object"
|
|
} |