mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
add `plugin/uninstall` app-server endpoint to fully rm plugin from plugins cache dir and rm entry from user config file. plugin-enablement is session-scoped, so uninstalls are only picked up in new sessions (like installs). added tests.
13 lines
220 B
JSON
13 lines
220 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"pluginId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"pluginId"
|
|
],
|
|
"title": "PluginUninstallParams",
|
|
"type": "object"
|
|
} |