| 1649 | }; |
| 1650 | |
| 1651 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1652 | slug: IntegrationSlug.make(integration.id), |
| 1653 | name: integration.name, |
| 1654 | description: integration.name, |
| 1655 | kind: integration.kind, |
| 1656 | canRemove: integration.canRemove ?? false, |
| 1657 | canRefresh: integration.canRefresh ?? false, |
| 1658 | authMethods: [], |
| 1659 | }); |
| 1660 | |
| 1661 | const staticToolToTool = (entry: StaticTools): Tool => ({ |
| 1662 | address: ToolAddress.make(`${entry.integration.id}.${entry.tool.name}`), |