(tool: ToolRow)
| 206 | const toolOwner = (tool: ToolRow): Owner => (tool.static ? "org" : (tool.owner ?? "org")); |
| 207 | |
| 208 | const toolConnectionName = (tool: ToolRow): string => { |
| 209 | if (tool.connection && tool.connection.length > 0) return tool.connection; |
| 210 | return tool.static ? "built-in" : "default"; |
| 211 | }; |
| 212 | |
| 213 | const policyPrefixForTool = (tool: ToolRow): string => { |
| 214 | const matchId = toolMatchId(tool); |
no outgoing calls
no test coverage detected