()
| 2067 | ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static"); |
| 2068 | |
| 2069 | const staticIntegrations = (): readonly StaticIntegrationDecl[] => { |
| 2070 | const byId = new Map<string, StaticIntegrationDecl>(); |
| 2071 | for (const entry of staticTools.values()) { |
| 2072 | if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration); |
| 2073 | } |
| 2074 | return [...byId.values()]; |
| 2075 | }; |
| 2076 | |
| 2077 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 2078 | slug: IntegrationSlug.make(integration.id), |
no test coverage detected