relay-knowledge 1.1.14

Graph-database-based knowledge graph project.
Documentation
mod diagnostics;
mod runtime;
mod software;

use super::code::{CodeRepositorySelector, RepositoryCodeRange};
use super::core::{DomainError, GraphVersion, error};
use super::graph::FreshnessPolicy;

pub use diagnostics::{
    GraphInspection, HealthStorageSnapshot, SqliteStorageDiagnostics, StorageHealth,
};
pub use runtime::{
    AuditEventRecord, AuditStatus, ProposalConflictRecord, ProposalConflictSeverity, ProposalKind,
    ProposalProvenance, ProposalRecord, ProposalState, ServiceDefinitionPlan,
    ServiceLifecycleExecutionReport, ServiceLifecycleStep, ServiceLifecycleStepResult,
    ServiceManagerAction, ServiceOperatorState, ServiceOperatorStatus, ServicePackageManifestCheck,
    ServicePermissionRequirement, WorkerBackendState, WorkerKind, WorkerStatus, WorkerTaskRecord,
    WorkerTaskState, normalize_actor,
};
pub use software::{
    SoftwareBuildTarget, SoftwareBuildTargetInput, SoftwareComponent, SoftwareComponentInput,
    SoftwareDependencyUsage, SoftwareDependencyUsageInput, SoftwareDesignElement,
    SoftwareDesignElementInput, SoftwareFile, SoftwareFileInput, SoftwareGlobalKind,
    SoftwareGlobalProjection, SoftwareGlobalRequest, SoftwareGlobalStatus, SoftwareIacResource,
    SoftwareIacResourceInput, SoftwareRelationship, SoftwareRelationshipInput, SoftwareSdkUsage,
    SoftwareSdkUsageInput, SoftwareTopic, SoftwareTopicInput,
};