| 1941 | }; |
| 1942 | |
| 1943 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1944 | slug: IntegrationSlug.make(integration.id), |
| 1945 | name: integration.name, |
| 1946 | description: integration.name, |
| 1947 | kind: integration.kind, |
| 1948 | canRemove: integration.canRemove ?? false, |
| 1949 | canRefresh: integration.canRefresh ?? false, |
| 1950 | authMethods: [], |
| 1951 | }); |
| 1952 | |
| 1953 | const staticToolToTool = (entry: StaticTools): Tool => ({ |
| 1954 | address: ToolAddress.make(`${entry.integration.id}.${entry.tool.name}`), |