| 1636 | }; |
| 1637 | |
| 1638 | const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({ |
| 1639 | slug: IntegrationSlug.make(integration.id), |
| 1640 | name: integration.name, |
| 1641 | description: integration.name, |
| 1642 | kind: integration.kind, |
| 1643 | canRemove: integration.canRemove ?? false, |
| 1644 | canRefresh: integration.canRefresh ?? false, |
| 1645 | authMethods: [], |
| 1646 | }); |
| 1647 | |
| 1648 | const staticToolToTool = (entry: StaticTools): Tool => ({ |
| 1649 | address: ToolAddress.make(`${entry.integration.id}.${entry.tool.name}`), |