use serde::{Deserialize, Serialize}; use serde_json::Value; #[derive(Debug, Clone, Serialize, Deserialize)] pub struct JetstreamEvent { pub did: String, pub time_us: i64, pub kind: String, pub commit: Option, pub identity: Option, pub account: Option, } #[derive(Debug, Clone, Serialize, Deserialize)] pub struct CommitOp { pub action: String, pub rkey: Option, pub path: Option, pub cid: Option, pub record: Option, }