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