()
| 564 | } |
| 565 | |
| 566 | fn sample_session_event() -> SessionEvent { |
| 567 | SessionEvent { |
| 568 | seq: 7, |
| 569 | timestamp: "2025-01-15T10:30:05.123Z".into(), |
| 570 | event_kind: "fire".into(), |
| 571 | place: Some("ready".into()), |
| 572 | transition: Some("plan_to_implement".into()), |
| 573 | token_id: "tok-42".into(), |
| 574 | token_kind: "intent".into(), |
| 575 | token_data: r#"{"goal":"fix auth"}"#.into(), |
| 576 | record_type: Some("transition_fire".into()), |
| 577 | } |
| 578 | } |
| 579 | |
| 580 | // -- Roundtrip tests -- |
| 581 |
no outgoing calls