(input: {
projectId: string;
startDate: string;
endDate: string;
mode: 'entry' | 'exit';
limit?: number;
filters?: IChartEventFilter[];
})
| 198 | } |
| 199 | |
| 200 | export async function getEntryExitPagesCore(input: { |
| 201 | projectId: string; |
| 202 | startDate: string; |
| 203 | endDate: string; |
| 204 | mode: 'entry' | 'exit'; |
| 205 | limit?: number; |
| 206 | filters?: IChartEventFilter[]; |
| 207 | }) { |
| 208 | const { timezone } = await getSettingsForProject(input.projectId); |
| 209 | return _overviewServiceForPages.getTopEntryExit({ |
| 210 | projectId: input.projectId, |
| 211 | filters: input.filters ?? [], |
| 212 | startDate: input.startDate, |
| 213 | endDate: input.endDate, |
| 214 | mode: input.mode, |
| 215 | timezone, |
| 216 | limit: input.limit, |
| 217 | }); |
| 218 | } |
| 219 | |
| 220 | export async function getPagePerformanceCore(input: { |
| 221 | projectId: string; |
no test coverage detected