( audit: GenerationSessionAudit, estimatedCost: GenerationCostSummary, )
| 59 | } |
| 60 | |
| 61 | export function withEstimatedCost( |
| 62 | audit: GenerationSessionAudit, |
| 63 | estimatedCost: GenerationCostSummary, |
| 64 | ): GenerationSessionAudit { |
| 65 | return { |
| 66 | ...audit, |
| 67 | estimatedCost, |
| 68 | updatedAt: nowIso(), |
| 69 | }; |
| 70 | } |
| 71 | |
| 72 | export function withFinalCost( |
| 73 | audit: GenerationSessionAudit, |