(event: string, plugin: PluginType, type?: PluginInstallationType)
| 40 | const PAGINATION_DEFAULT_MAX_PAGES = 10 |
| 41 | |
| 42 | function capturePluginEvent(event: string, plugin: PluginType, type?: PluginInstallationType): void { |
| 43 | posthog.capture(event, { |
| 44 | plugin_name: plugin.name, |
| 45 | plugin_url: plugin.url?.startsWith('file:') ? 'file://masked-local-path' : plugin.url, |
| 46 | plugin_tag: plugin.tag, |
| 47 | ...(type && { plugin_installation_type: type }), |
| 48 | }) |
| 49 | } |
| 50 | |
| 51 | async function loadPaginatedResults( |
| 52 | url: string | null, |
no test coverage detected
searching dependent graphs…