mirror of
https://github.com/openai/codex.git
synced 2026-09-05 15:18:41 +00:00
## What changed - Add the optional `forceRefetch` boolean to `PluginListParams` and generated schemas. - Accept both omitted and enabled values without changing `plugin/list` behavior yet. - Cover deserialization of the enabled value in the protocol tests. GitOrigin-RevId: fd4145161e9779638bc0bf18118d5ab5b8478745
47 lines
1.6 KiB
JSON
Generated
47 lines
1.6 KiB
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"AbsolutePathBuf": {
|
|
"description": "A path that is guaranteed to be absolute and normalized (though it is not guaranteed to be canonicalized or exist on the filesystem).\n\nIMPORTANT: When deserializing an `AbsolutePathBuf`, a base path must be set using [AbsolutePathBufGuard::new]. If no base path is set, the deserialization will fail unless the path being deserialized is already absolute.",
|
|
"type": "string"
|
|
},
|
|
"PluginListMarketplaceKind": {
|
|
"enum": [
|
|
"local",
|
|
"vertical",
|
|
"workspace-directory",
|
|
"shared-with-me",
|
|
"created-by-me-remote"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"cwds": {
|
|
"description": "Optional working directories used to discover repo marketplaces. When omitted, only home-scoped marketplaces and the official curated marketplace are considered.",
|
|
"items": {
|
|
"$ref": "#/definitions/AbsolutePathBuf"
|
|
},
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
]
|
|
},
|
|
"forceRefetch": {
|
|
"description": "Whether the client requests a fresh remote plugin catalog fetch.",
|
|
"type": "boolean"
|
|
},
|
|
"marketplaceKinds": {
|
|
"description": "Optional marketplace kind filter. When omitted, only local marketplaces are queried, plus the default remote catalog when enabled by feature flag.",
|
|
"items": {
|
|
"$ref": "#/definitions/PluginListMarketplaceKind"
|
|
},
|
|
"type": [
|
|
"array",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"title": "PluginListParams",
|
|
"type": "object"
|
|
} |