(manifest: BatchManifest)
| 293 | } |
| 294 | |
| 295 | function summarizeManifest(manifest: BatchManifest): void { |
| 296 | manifest.completed = manifest.rows.filter((row) => row.status === "completed").length; |
| 297 | manifest.failed = manifest.rows.filter((row) => row.status === "failed").length; |
| 298 | manifest.skipped = manifest.rows.filter((row) => row.status === "skipped").length; |
| 299 | } |
| 300 | |
| 301 | function writeManifest(manifest: BatchManifest): void { |
| 302 | summarizeManifest(manifest); |