()
| 1933 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 1934 | |
| 1935 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 1936 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 1937 | for (const entry of staticTools.values()) { |
| 1938 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 1939 | } |
| 1940 | return [...byId.values()]; |
| 1941 | }; |
| 1942 | |
| 1943 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1944 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected