/**
 * Represents the possible types for entity field values
 * Used to replace 'any' in utility functions that process entity fields
 */
export type EntityFieldValue = string | number | boolean | Date | object | null | undefined;
