(event: IntegrationChangeEvent)
| 3208 | // Failures and defects are swallowed so a host's analytics can never fail a |
| 3209 | // catalog write. |
| 3210 | const notifyIntegrationChange = (event: IntegrationChangeEvent): Effect.Effect<void> => |
| 3211 | config.onIntegrationChange ? afterCommit(config.onIntegrationChange(event)) : Effect.void; |
| 3212 | |
| 3213 | const integrationsRegister = ( |
| 3214 | pluginId: string, |
no test coverage detected