New standalone Journey page.

This commit is contained in:
Mike Cao 2025-06-06 23:31:30 -07:00
parent cee05d762c
commit a167c590c5
16 changed files with 389 additions and 628 deletions

View file

@ -113,7 +113,7 @@ export const funnelReportSchema = z.object({
export const journeyReportSchema = z.object({
type: z.literal('journey'),
parameters: z.object({
steps: z.coerce.number().positive(),
steps: z.coerce.number().min(2).max(7),
startStep: z.string().optional(),
endStep: z.string().optional(),
}),