()
| 1366 | ConnectionName.make(source.id === EXECUTOR_SOURCE_ID ? "coreTools" : "static"); |
| 1367 | |
| 1368 | const staticSources = (): readonly StaticSourceDecl[] => { |
| 1369 | const byId = new Map<string, StaticSourceDecl>(); |
| 1370 | for (const entry of staticTools.values()) { |
| 1371 | if (!byId.has(entry.source.id)) byId.set(entry.source.id, entry.source); |
| 1372 | } |
| 1373 | return [...byId.values()]; |
| 1374 | }; |
| 1375 | |
| 1376 | const staticSourceToIntegration = (source: StaticSourceDecl): Integration => ({ |
| 1377 | slug: IntegrationSlug.make(source.id), |
no test coverage detected