(event: IntegrationChangeEvent)
| 3039 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 3040 | // catalog write. |
| 3041 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 3042 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 3043 | |
| 3044 | const integrationsRegister = ( |
| 3045 | pluginId: string, |
no test coverage detected