(event: IntegrationChangeEvent)
| 3264 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 3265 | // catalog write. |
| 3266 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 3267 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 3268 | |
| 3269 | const integrationsRegister = ( |
| 3270 | pluginId: string, |
no test coverage detected