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 anchor;
12pub mod body;
13pub mod capabilities;
14pub mod cosignature;
15pub mod data_ref;
16pub mod lifecycle;
17pub mod log;
18pub mod profile;
19pub mod publish;
20pub mod receipt;
21pub mod revocation;
22pub mod search;
23
24// `primitives` / `serde_helpers` / `wire_error` live in acdp-primitives;
25// re-export so the historical `crate::types::*` paths keep resolving in the
26// umbrella crate and inside this crate's own modules.
27pub use acdp_primitives::primitives;
28pub(crate) use acdp_primitives::serde_helpers;
29
30pub use acdp_primitives::wire_error::{WireError, WireErrorBody};
31pub use anchor::AnchorEntry;
32pub use body::{Body, DataPeriod, FullContext, RegistryState, Signature};
33pub use capabilities::{CapabilitiesDocument, Limits};
34pub use cosignature::{LogCosignature, WitnessSigner, WitnessedCheckpoint, COSIGNATURE_VERSION};
35pub use data_ref::{DataRef, DataRefType, EmbeddedContent, EmbeddedEncoding, Location};
36pub use lifecycle::{LifecycleEvent, LifecycleEventType};
37pub use log::{LogCheckpoint, LogConsistencyProof, LogInclusion, LogLeaf};
38pub use primitives::{AgentDid, ContentHash, ContextType, CtxId, LineageId, Status, Visibility};
39pub use publish::{PublishRequest, PublishResponse};
40pub use receipt::{ReceiptSigner, RegistryReceipt};
41pub use revocation::{KeyRevocation, RevocationTrustClass};
42pub use search::{SearchParams, SearchParamsBuilder, SearchResponse, SearchResult};