()
| 1388 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1389 | |
| 1390 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1391 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 1392 | for (const entry of staticTools.values()) { |
| 1393 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 1394 | } |
| 1395 | return [...byId.values()]; |
| 1396 | }; |
| 1397 | |
| 1398 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1399 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected