Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/buzz-core/src/kind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,9 @@ pub const KIND_THREAD_SUMMARY: u32 = 39005;
/// clients must not infer `has_more` from row counts.
pub const KIND_WINDOW_BOUNDS: u32 = 39006;

/// Ephemeral, relay-authored hint that a durable workflow delivery is ready.
pub const KIND_WORKFLOW_AGENT_WAKE: u32 = 24620;

/// Workflow definition (parameterized replaceable, d=workflow_uuid).
pub const KIND_WORKFLOW_DEF: u32 = 30620;

Expand Down Expand Up @@ -692,6 +695,7 @@ pub const ALL_KINDS: &[u32] = &[
KIND_NIP29_GROUP_ROLES,
KIND_THREAD_SUMMARY,
KIND_WINDOW_BOUNDS,
KIND_WORKFLOW_AGENT_WAKE,
KIND_PRESENCE_UPDATE,
KIND_TYPING_INDICATOR,
KIND_HUDDLE_REACTION,
Expand Down
2 changes: 2 additions & 0 deletions crates/buzz-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ pub mod relay;
pub mod tenant;
/// Schnorr signature and event ID verification.
pub mod verification;
/// Canonical durable workflow message-delivery protocol vocabulary.
pub mod workflow_delivery;

pub use error::VerificationError;
pub use event::StoredEvent;
Expand Down
Loading
Loading