Skip to main content

acdp_types/
lib.rs

1//! # acdp-types — wire types for the Agent Context Distribution Protocol
2//!
3//! The protocol's JSON wire shapes: the immutable [`body::Body`],
4//! [`publish::PublishRequest`]/[`publish::PublishResponse`], data
5//! references, capabilities documents, registry receipts, and search
6//! parameters/results — plus the [`profile`] vocabulary. The opaque
7//! identifier primitives and error vocabulary live in
8//! [`acdp-primitives`](https://docs.rs/acdp-primitives) and are re-exported
9//! here under the historical `primitives` path.
10
11pub mod body;
12pub mod capabilities;
13pub mod data_ref;
14pub mod lifecycle;
15pub mod log;
16pub mod profile;
17pub mod publish;
18pub mod receipt;
19pub mod revocation;
20pub mod search;
21
22// `primitives` / `serde_helpers` / `wire_error` live in acdp-primitives;
23// re-export so the historical `crate::types::*` paths keep resolving in the
24// umbrella crate and inside this crate's own modules.
25pub use acdp_primitives::primitives;
26pub(crate) use acdp_primitives::serde_helpers;
27
28pub use acdp_primitives::wire_error::{WireError, WireErrorBody};
29pub use body::{Body, DataPeriod, FullContext, RegistryState, Signature};
30pub use capabilities::{CapabilitiesDocument, Limits};
31pub use data_ref::{DataRef, DataRefType, EmbeddedContent, EmbeddedEncoding, Location};
32pub use lifecycle::{LifecycleEvent, LifecycleEventType};
33pub use log::{LogCheckpoint, LogConsistencyProof, LogInclusion, LogLeaf};
34pub use primitives::{AgentDid, ContentHash, ContextType, CtxId, LineageId, Status, Visibility};
35pub use publish::{PublishRequest, PublishResponse};
36pub use receipt::{ReceiptSigner, RegistryReceipt};
37pub use revocation::{KeyRevocation, RevocationTrustClass};
38pub use search::{SearchParams, SearchParamsBuilder, SearchResponse, SearchResult};