├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── dist ├── hl7dictionary.2.1.js ├── hl7dictionary.2.1.min.js ├── hl7dictionary.2.2.js ├── hl7dictionary.2.2.min.js ├── hl7dictionary.2.3.1.js ├── hl7dictionary.2.3.1.min.js ├── hl7dictionary.2.3.js ├── hl7dictionary.2.3.min.js ├── hl7dictionary.2.4.js ├── hl7dictionary.2.4.min.js ├── hl7dictionary.2.5.1.js ├── hl7dictionary.2.5.1.min.js ├── hl7dictionary.2.5.js ├── hl7dictionary.2.5.min.js ├── hl7dictionary.2.6.js ├── hl7dictionary.2.6.min.js ├── hl7dictionary.2.7.1.js ├── hl7dictionary.2.7.1.min.js ├── hl7dictionary.2.7.js ├── hl7dictionary.2.7.min.js ├── hl7dictionary.all.js ├── hl7dictionary.all.min.js ├── hl7dictionary.js └── hl7dictionary.min.js ├── gulpfile.js ├── lib ├── 2.1 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.2 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.3.1 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.3 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.4 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.5.1 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.5 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.6 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.7.1 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── 2.7 │ ├── fields.js │ ├── index.js │ ├── messages.js │ └── segments.js ├── index.js └── tables.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/README.md -------------------------------------------------------------------------------- /dist/hl7dictionary.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.1.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.1.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.2.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.2.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.3.1.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.3.1.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.3.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.3.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.4.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.4.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.5.1.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.5.1.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.5.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.5.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.6.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.6.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.7.1.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.7.1.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.7.js -------------------------------------------------------------------------------- /dist/hl7dictionary.2.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.2.7.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.all.js -------------------------------------------------------------------------------- /dist/hl7dictionary.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.all.min.js -------------------------------------------------------------------------------- /dist/hl7dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.js -------------------------------------------------------------------------------- /dist/hl7dictionary.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/dist/hl7dictionary.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/2.1/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.1/fields.js -------------------------------------------------------------------------------- /lib/2.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.1/index.js -------------------------------------------------------------------------------- /lib/2.1/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.1/messages.js -------------------------------------------------------------------------------- /lib/2.1/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.1/segments.js -------------------------------------------------------------------------------- /lib/2.2/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.2/fields.js -------------------------------------------------------------------------------- /lib/2.2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.2/index.js -------------------------------------------------------------------------------- /lib/2.2/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.2/messages.js -------------------------------------------------------------------------------- /lib/2.2/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.2/segments.js -------------------------------------------------------------------------------- /lib/2.3.1/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3.1/fields.js -------------------------------------------------------------------------------- /lib/2.3.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3.1/index.js -------------------------------------------------------------------------------- /lib/2.3.1/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3.1/messages.js -------------------------------------------------------------------------------- /lib/2.3.1/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3.1/segments.js -------------------------------------------------------------------------------- /lib/2.3/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3/fields.js -------------------------------------------------------------------------------- /lib/2.3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3/index.js -------------------------------------------------------------------------------- /lib/2.3/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3/messages.js -------------------------------------------------------------------------------- /lib/2.3/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.3/segments.js -------------------------------------------------------------------------------- /lib/2.4/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.4/fields.js -------------------------------------------------------------------------------- /lib/2.4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.4/index.js -------------------------------------------------------------------------------- /lib/2.4/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.4/messages.js -------------------------------------------------------------------------------- /lib/2.4/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.4/segments.js -------------------------------------------------------------------------------- /lib/2.5.1/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5.1/fields.js -------------------------------------------------------------------------------- /lib/2.5.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5.1/index.js -------------------------------------------------------------------------------- /lib/2.5.1/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5.1/messages.js -------------------------------------------------------------------------------- /lib/2.5.1/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5.1/segments.js -------------------------------------------------------------------------------- /lib/2.5/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5/fields.js -------------------------------------------------------------------------------- /lib/2.5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5/index.js -------------------------------------------------------------------------------- /lib/2.5/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5/messages.js -------------------------------------------------------------------------------- /lib/2.5/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.5/segments.js -------------------------------------------------------------------------------- /lib/2.6/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.6/fields.js -------------------------------------------------------------------------------- /lib/2.6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.6/index.js -------------------------------------------------------------------------------- /lib/2.6/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.6/messages.js -------------------------------------------------------------------------------- /lib/2.6/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.6/segments.js -------------------------------------------------------------------------------- /lib/2.7.1/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7.1/fields.js -------------------------------------------------------------------------------- /lib/2.7.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7.1/index.js -------------------------------------------------------------------------------- /lib/2.7.1/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7.1/messages.js -------------------------------------------------------------------------------- /lib/2.7.1/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7.1/segments.js -------------------------------------------------------------------------------- /lib/2.7/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7/fields.js -------------------------------------------------------------------------------- /lib/2.7/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7/index.js -------------------------------------------------------------------------------- /lib/2.7/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7/messages.js -------------------------------------------------------------------------------- /lib/2.7/segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/2.7/segments.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/lib/tables.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandojsg/hl7-dictionary/HEAD/package.json --------------------------------------------------------------------------------