( entries: readonly ToolInventoryEntry[], )
| 103 | } |
| 104 | |
| 105 | export function buildToolInventoryReport( |
| 106 | entries: readonly ToolInventoryEntry[], |
| 107 | ): ToolInventoryReport { |
| 108 | return { |
| 109 | entries: [...entries], |
| 110 | summary: summarizeToolInventory(entries), |
| 111 | gaps: collectToolInventoryGaps(entries), |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | export function collectCurrentToolInventoryReport( |
| 116 | permissionContext: ToolPermissionContext = getEmptyToolPermissionContext(), |
no test coverage detected