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