()
| 1804 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1805 | |
| 1806 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1807 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 1808 | for (const entry of staticTools.values()) { |
| 1809 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 1810 | } |
| 1811 | return [...byId.values()]; |
| 1812 | }; |
| 1813 | |
| 1814 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1815 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected