(name: string)
| 785 | import { getSettingsForProject } from './organization.service'; |
| 786 | |
| 787 | function toChartEvent(name: string) { |
| 788 | return { |
| 789 | id: name, |
| 790 | name, |
| 791 | displayName: name, |
| 792 | type: 'event' as const, |
| 793 | segment: 'event' as const, |
| 794 | filters: [], |
| 795 | }; |
| 796 | } |
| 797 | |
| 798 | export async function getUserFlowCore(input: { |
| 799 | projectId: string; |