systemprompt-content 0.2.2

Markdown content management, sources, and event tracking for systemprompt.io AI governance dashboards. Governed publishing pipeline for the MCP governance platform.
Documentation
pub mod builders;
pub mod content;
pub mod content_error;
pub mod link;
pub mod search;

pub use builders::{
    CategoryIdUpdate, CreateContentParams, CreateLinkParams, RecordClickParams, TrackClickParams,
    UpdateContentParams,
};
pub use content::{
    Content, ContentKind, ContentLinkMetadata, ContentMetadata, ContentSummary, IngestionOptions,
    IngestionReport, IngestionSource, Tag,
};
pub use content_error::ContentValidationError;
pub use link::{
    CampaignLink, CampaignPerformance, ContentJourneyNode, DestinationType, LinkClick,
    LinkPerformance, LinkType, UtmParams,
};
pub use search::{SearchFilters, SearchRequest, SearchResponse, SearchResult};