MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / summarizeManifest

Function summarizeManifest

packages/cli/src/commands/batchRender.ts:295–299  ·  view source on GitHub ↗
(manifest: BatchManifest)

Source from the content-addressed store, hash-verified

293}
294
295function 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
301function writeManifest(manifest: BatchManifest): void {
302 summarizeManifest(manifest);

Callers 1

writeManifestFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected