(connection: ToolkitConnectionRecord)
| 214 | }); |
| 215 | |
| 216 | const connectionToResponse = (connection: ToolkitConnectionRecord) => ({ |
| 217 | id: connection.id, |
| 218 | toolkitId: connection.toolkitId, |
| 219 | pattern: connection.pattern, |
| 220 | position: connection.position, |
| 221 | createdAt: connection.createdAt, |
| 222 | updatedAt: connection.updatedAt, |
| 223 | }); |
| 224 | |
| 225 | const makeToolkitStorage = (pluginStorage: PluginStorageFacade): ToolkitStorage => ({ |
| 226 | toolkits: pluginStorage.collection(toolkitsCollection), |