mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
1d85fe79ed
- Added forceRemoteSync to plugin/install and plugin/uninstall. - With forceRemoteSync=true, we update the remote plugin status first, then apply the local change only if the backend call succeeds. - Kept plugin/list(forceRemoteSync=true) as the main recon path, and for now it treats remote enabled=false as uninstall. We will eventually migrate to plugin/installed for more precise state handling.
50 lines
1.8 KiB
Rust
50 lines
1.8 KiB
Rust
mod curated_repo;
|
|
mod injection;
|
|
mod manager;
|
|
mod manifest;
|
|
mod marketplace;
|
|
mod remote;
|
|
mod render;
|
|
mod store;
|
|
mod toggles;
|
|
|
|
pub(crate) use curated_repo::curated_plugins_repo_path;
|
|
pub(crate) use curated_repo::read_curated_plugins_sha;
|
|
pub(crate) use curated_repo::sync_openai_plugins_repo;
|
|
pub(crate) use injection::build_plugin_injections;
|
|
pub use manager::AppConnectorId;
|
|
pub use manager::ConfiguredMarketplacePluginSummary;
|
|
pub use manager::ConfiguredMarketplaceSummary;
|
|
pub use manager::LoadedPlugin;
|
|
pub use manager::PluginCapabilitySummary;
|
|
pub use manager::PluginDetailSummary;
|
|
pub use manager::PluginInstallError;
|
|
pub use manager::PluginInstallOutcome;
|
|
pub use manager::PluginInstallRequest;
|
|
pub use manager::PluginLoadOutcome;
|
|
pub use manager::PluginReadOutcome;
|
|
pub use manager::PluginReadRequest;
|
|
pub use manager::PluginRemoteSyncError;
|
|
pub use manager::PluginTelemetryMetadata;
|
|
pub use manager::PluginUninstallError;
|
|
pub use manager::PluginsManager;
|
|
pub use manager::RemotePluginSyncResult;
|
|
pub use manager::installed_plugin_telemetry_metadata;
|
|
pub use manager::load_plugin_apps;
|
|
pub(crate) use manager::plugin_namespace_for_skill_path;
|
|
pub use manager::plugin_telemetry_metadata_from_root;
|
|
pub use manifest::PluginManifestInterfaceSummary;
|
|
pub(crate) use manifest::PluginManifestPaths;
|
|
pub(crate) use manifest::load_plugin_manifest;
|
|
pub(crate) use manifest::plugin_manifest_interface;
|
|
pub(crate) use manifest::plugin_manifest_name;
|
|
pub(crate) use manifest::plugin_manifest_paths;
|
|
pub use marketplace::MarketplaceError;
|
|
pub use marketplace::MarketplacePluginAuthPolicy;
|
|
pub use marketplace::MarketplacePluginInstallPolicy;
|
|
pub use marketplace::MarketplacePluginSourceSummary;
|
|
pub(crate) use render::render_explicit_plugin_instructions;
|
|
pub(crate) use render::render_plugins_section;
|
|
pub use store::PluginId;
|
|
pub use toggles::collect_plugin_enabled_candidates;
|