import type { SetRequired } from 'type-fest'; import type { MixpanelProperty } from '../../core/user-events'; import type { components } from './analytics.contract'; export type AnalyticsSessionResponse = SetRequired; export type AnalyticsSessionRequest = Omit & { userData: Record; eventData?: Record; sdkVersion: string; componentName: string; userAgent: string; legalEntityId: string; };