()
| 1628 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1629 | |
| 1630 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1631 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 1632 | for (const entry of staticTools.values()) { |
| 1633 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 1634 | } |
| 1635 | return [...byId.values()]; |
| 1636 | }; |
| 1637 | |
| 1638 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1639 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected