( audit: GenerationSessionAudit, graph: DiagramGraph, )
| 103 | } |
| 104 | |
| 105 | export function withGraph( |
| 106 | audit: GenerationSessionAudit, |
| 107 | graph: DiagramGraph, |
| 108 | ): GenerationSessionAudit { |
| 109 | return { |
| 110 | ...audit, |
| 111 | graph, |
| 112 | updatedAt: nowIso(), |
| 113 | }; |
| 114 | } |
| 115 | |
| 116 | export function withCompiledDiagram( |
| 117 | audit: GenerationSessionAudit, |