export type ConsentCategory = | "necessary" | "analytics" | "marketing" | "preferences"; export interface ConsentState { necessary: true; // her zaman analytics: boolean; marketing: boolean; preferences: boolean; timestamp: number; version: number; } export const CONSENT_VERSION = 1; export const CONSENT_STORAGE_KEY = "kovak_consent_v1"; export const CONSENT_COOKIE_NAME = "kovak_consent"; export const CONSENT_TTL_DAYS = 365;