(event: IntegrationChangeEvent)
| 2303 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 2304 | // catalog write. |
| 2305 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 2306 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 2307 | |
| 2308 | const integrationsRegister = ( |
| 2309 | pluginId: string, |
no test coverage detected