relay-knowledge 1.1.17

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::{
    SOFTWARE_ONTOLOGY_NAMESPACE, SOFTWARE_ONTOLOGY_SCHEMA, SOFTWARE_ONTOLOGY_VERSION,
    SOFTWARE_PROJECTION_SCHEMA_VERSION, SoftwareAssertionMode, SoftwareAuthorityPolicy,
    SoftwareBuildTarget, SoftwareBuildTargetInput, SoftwareComponent, SoftwareComponentInput,
    SoftwareDependencyUsage, SoftwareDependencyUsageInput, SoftwareDesignElement,
    SoftwareDesignElementInput, SoftwareEntity, SoftwareEntityInput, SoftwareEntityKind,
    SoftwareEvidenceRef, SoftwareExportProfile, SoftwareFactState, SoftwareFile, SoftwareFileInput,
    SoftwareGlobalKind, SoftwareGlobalProjection, SoftwareGlobalRequest, SoftwareGlobalStatus,
    SoftwareIacResource, SoftwareIacResourceInput, SoftwarePredicate, SoftwareProjectionFreshness,
    SoftwareRelationship, SoftwareRelationshipInput, SoftwareSdkUsage, SoftwareSdkUsageInput,
    SoftwareShapeDiagnostic, SoftwareShapeReport, SoftwareShapeSeverity, SoftwareSourceCoverage,
    SoftwareSourceKind, SoftwareStatement, SoftwareStatementInput, SoftwareStatementResolution,
    SoftwareTopic, SoftwareTopicInput, reconcile_software_statements, software_authority_policy,
    validate_software_shapes,
};