/** * Browser-safe exports (no node: imports). Import from "@websensor/core/client" in React * client components. */ export { EVENT_TYPES, eventTypeSpec, FEED_CHANNELS, CATEGORIES, TIERS, SENSOR_TYPES, ENTITY_TYPES, EVIDENCE_LABELS, CONNECTOR_HEALTH, EVENT_GROUPS, eventGroupOf, CHANGE_CLASSES, NOISE_CLASSES, CLUSTER_STATES, COUNTRIES, countryBySlug, SILENT_ELIGIBLE_TYPES, PRIORITY_LABELS } from "./taxonomy"; export type { Tier, SensorType, EntityType, EvidenceLabel, ConnectorHealth, Category, ChangeClass, ClusterState } from "./taxonomy"; export { slugify } from "./ids"; export { parseSearch, stringifySearch } from "./search"; export type { ParsedSearch } from "./search"; export { IMPORTANCE_WEIGHTS, breakingState } from "./scoring"; export type { ScoreReason } from "./scoring"; export { describeFieldChanges } from "./semantic"; export type { FieldChange } from "./semantic"; export type { EventCandidate, NormalizedContent, SensorEndpoint } from "./types";