Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: rethinkhealth/hl7v2

v0.0.11

28 Jun 10:26
edff7dd

Choose a tag to compare

Patch Changes

  • 8693087: fixed an error with duplicate definitions in the schema of the HL7v2 messages.

v0.0.10

08 Apr 15:56
3130b33

Choose a tag to compare

Patch Changes

  • 7f05b54: Added support to Fields schema definition.
  • b8c84d9: Added support to chapter. HL7v2 is organized into chapters, each of which covers a different aspect of the messaging standard. The chapters describe the various message types, the segments that make up those messages, and the data types used within those segments.
  • f07876d: Added support to Message Structure standard table. This helps retrieving the appropriate schema for most messages using the mapping in the standard table. For instance, ADT A04 does not have a defined schema. However, it has the exact definition of ADT A01. That mapping is available through the standard table.

v0.0.9

04 Apr 12:43
78f07bd

Choose a tag to compare

Patch Changes

  • 09b8339:
    • Adding Message Structure to the header.
    • Replaced the JSON Schema retrieval to use the Message Structure of the header segment.
  • b2e36de: Added metadata to each segment in the definition of messages. Metadata includes information about minOccurs, maxOccurs, repeatability, and optionality.
  • 073f588: Added compatibility with Z segment

v0.0.8

11 Mar 23:38
3435f92

Choose a tag to compare

Patch Changes

  • 8837127: We added browser compatiblity of the package. The package can now be used in the browser.

    <script src="https://unpkg.com/@rethinkhealth/hl7v2"></script>
    <script>
      const hl7v2 = window.hl7v2;
      const message = hl7v2.parse('MSH|^~\&|...');
    
      console.log(message);
    </script>

v0.0.7

11 Mar 21:43
2768fae

Choose a tag to compare

Patch Changes

  • 4f6e561: Fixed package.json to include only dist folder in the npm published package.

v0.0.6

11 Mar 21:27
3705805

Choose a tag to compare

Patch Changes

  • 04b6c9b: Update tsup configuration and bundling options. The bundle now includes the hl7v2 schema for 2.8 and 2.5.1. You can now import the schema directly from the package:

    import { v2_8 } from "@rethinkhealth/hl7v2/schema";
    
    const siu_s12_schema = v2_8.SIU_S12;
    
    // ... can be  used to validate a message using json-schema

v0.0.5

08 Mar 01:48
dff6951

Choose a tag to compare

Patch Changes

  • 88bde4a: Moved the schema to the root folder. This should enable importing import * as v2.5 from "@rethinkhealth/hl7v2/schema/2.5"

v0.0.4

08 Mar 00:41
4c3d38c

Choose a tag to compare

Patch Changes

  • 9897fac: Fix configuration of package.json to include .d.ts files.
  • 19abe9d: Adding Github Releases and Tags.