()
| 1642 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1643 | |
| 1644 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1645 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 1646 | for (const entry of staticTools.values()) { |
| 1647 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 1648 | } |
| 1649 | return [...byId.values()]; |
| 1650 | }; |
| 1651 | |
| 1652 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1653 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected