Variable: ERR_CONDITION_CODES
constERR_CONDITION_CODES:Readonly<Record<string,string>>
HL7 Table 0357: Message error condition codes (ERR-3.1 → ERR-3.2 text).
Frozen read-only map of code → standard display text. The code system
name emitted in ERR-3.3 is ERR_CONDITION_CODE_SYSTEM.
Codes 104 (value too long) and 105 (table value not found) are v2.7+
additions; the rest are present from v2.5. buildAck emits whatever code it
is told (it never invents a condition) and looks up the display text here.
Example
import { ERR_CONDITION_CODES } from "@cosyte/hl7";
ERR_CONDITION_CODES["101"]; // "Required field missing"