mirror of
https://github.com/openai/codex.git
synced 2026-05-17 01:32:32 +00:00
Adds plugin/share/checkout to turn a shared remote plugin into a local working copy under ~/plugins/<name>. Registers the copy in the managed personal marketplace and records the remote-to-local mapping for later share/save flows. --------- Co-authored-by: Codex <noreply@openai.com>
45 lines
1.2 KiB
JSON
Generated
45 lines
1.2 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"
|
|
}
|
|
},
|
|
"properties": {
|
|
"marketplaceName": {
|
|
"type": "string"
|
|
},
|
|
"marketplacePath": {
|
|
"$ref": "#/definitions/AbsolutePathBuf"
|
|
},
|
|
"pluginId": {
|
|
"type": "string"
|
|
},
|
|
"pluginName": {
|
|
"type": "string"
|
|
},
|
|
"pluginPath": {
|
|
"$ref": "#/definitions/AbsolutePathBuf"
|
|
},
|
|
"remotePluginId": {
|
|
"type": "string"
|
|
},
|
|
"remoteVersion": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"marketplaceName",
|
|
"marketplacePath",
|
|
"pluginId",
|
|
"pluginName",
|
|
"pluginPath",
|
|
"remotePluginId"
|
|
],
|
|
"title": "PluginShareCheckoutResponse",
|
|
"type": "object"
|
|
} |