kibana-sync 0.3.0

Reusable Kibana sync library for saved objects, spaces, agents, tools, skills, and workflows
Documentation
//! Reusable Kibana API client.
//!
//! This crate owns Kibana HTTP client configuration, authentication, version
//! and capability checks, space-aware request routing, endpoint modules,
//! dependency discovery, storage-neutral sync helpers, and generic filesystem
//! or entry-backed bundle helpers. It does not discover `kibob` project roots or initialize
//! logging/tracing subscribers.

pub mod bundle;
pub mod client;
pub mod error;
pub mod etl;
mod fs;
pub mod json5;
pub mod kibana;
pub mod sync;

#[cfg(test)]
pub(crate) mod test_support;

pub use bundle::{Entries, Filesystem, KibanaBundle};
pub use client::{
    ApiCapability, Auth, KibanaClient, KibanaClientBuilder, KibanaVersion, KibanaVersionInfo,
    SpaceRegistry, parse_kibana_version,
};
pub use error::{Error, Result, ResultContext};
pub use etl::{Extractor, IdentityTransformer, Loader, Pipeline, Transformer};