()
| 325 | } |
| 326 | |
| 327 | fn sample_session_event() -> SessionEvent { |
| 328 | SessionEvent { |
| 329 | seq: 7, |
| 330 | timestamp: "2025-01-15T10:30:05.123Z".into(), |
| 331 | event_kind: "fire".into(), |
| 332 | place: Some("ready".into()), |
| 333 | transition: Some("plan_to_implement".into()), |
| 334 | token_id: "tok-42".into(), |
| 335 | token_kind: "intent".into(), |
| 336 | token_data: r#"{"goal":"fix auth"}"#.into(), |
| 337 | record_type: Some("transition_fire".into()), |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | // -- Roundtrip tests -- |
| 342 |
no outgoing calls