(event: IntegrationChangeEvent)
| 2671 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 2672 | // catalog write. |
| 2673 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 2674 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 2675 | |
| 2676 | const integrationsRegister = ( |
| 2677 | pluginId: string, |
no test coverage detected