()
| 1650 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1651 | |
| 1652 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1653 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 1654 | for (const entry of staticTools.values()) { |
| 1655 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 1656 | } |
| 1657 | return [...byId.values()]; |
| 1658 | }; |
| 1659 | |
| 1660 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1661 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected