(event: IntegrationChangeEvent)
| 2349 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 2350 | // catalog write. |
| 2351 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 2352 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 2353 | |
| 2354 | const integrationsRegister = ( |
| 2355 | pluginId: string, |
no test coverage detected