Funnel stats API now uses start_date/end_date params consistent with all other endpoints. Removed RFC3339 conversion helper. Added changelog entries for audit fixes (B-7, B-11, B-23, B-38, B-42).
74 lines
2.0 KiB
TypeScript
74 lines
2.0 KiB
TypeScript
import apiRequest from './client'
|
|
|
|
export interface FunnelStep {
|
|
order: number
|
|
name: string
|
|
value: string
|
|
type: string // "exact", "contains", "regex"
|
|
}
|
|
|
|
export interface Funnel {
|
|
id: string
|
|
site_id: string
|
|
name: string
|
|
description: string
|
|
steps: FunnelStep[]
|
|
created_at: string
|
|
updated_at: string
|
|
}
|
|
|
|
export interface FunnelStepStats {
|
|
step: FunnelStep
|
|
visitors: number
|
|
dropoff: number
|
|
conversion: number
|
|
}
|
|
|
|
export interface FunnelStats {
|
|
funnel_id: string
|
|
steps: FunnelStepStats[]
|
|
}
|
|
|
|
export interface CreateFunnelRequest {
|
|
name: string
|
|
description: string
|
|
steps: FunnelStep[]
|
|
}
|
|
|
|
export async function listFunnels(siteId: string): Promise<Funnel[]> {
|
|
const response = await apiRequest<{ funnels: Funnel[] }>(`/sites/${siteId}/funnels`)
|
|
return response?.funnels || []
|
|
}
|
|
|
|
export async function getFunnel(siteId: string, funnelId: string): Promise<Funnel> {
|
|
return apiRequest<Funnel>(`/sites/${siteId}/funnels/${funnelId}`)
|
|
}
|
|
|
|
export async function createFunnel(siteId: string, data: CreateFunnelRequest): Promise<Funnel> {
|
|
return apiRequest<Funnel>(`/sites/${siteId}/funnels`, {
|
|
method: 'POST',
|
|
body: JSON.stringify(data),
|
|
})
|
|
}
|
|
|
|
export async function updateFunnel(siteId: string, funnelId: string, data: CreateFunnelRequest): Promise<Funnel> {
|
|
return apiRequest<Funnel>(`/sites/${siteId}/funnels/${funnelId}`, {
|
|
method: 'PUT',
|
|
body: JSON.stringify(data),
|
|
})
|
|
}
|
|
|
|
export async function deleteFunnel(siteId: string, funnelId: string): Promise<void> {
|
|
await apiRequest(`/sites/${siteId}/funnels/${funnelId}`, {
|
|
method: 'DELETE',
|
|
})
|
|
}
|
|
|
|
export async function getFunnelStats(siteId: string, funnelId: string, startDate?: string, endDate?: string): Promise<FunnelStats> {
|
|
const params = new URLSearchParams()
|
|
if (startDate) params.append('start_date', startDate)
|
|
if (endDate) params.append('end_date', endDate)
|
|
const queryString = params.toString() ? `?${params.toString()}` : ''
|
|
return apiRequest<FunnelStats>(`/sites/${siteId}/funnels/${funnelId}/stats${queryString}`)
|
|
}
|