(event: IntegrationChangeEvent)
| 2289 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 2290 | // catalog write. |
| 2291 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 2292 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 2293 | |
| 2294 | const integrationsRegister = ( |
| 2295 | pluginId: string, |
no test coverage detected