Skip to content

Commit 91791ed

Browse files
authored
Merge pull request #163 from mcode/readme-version-update
mCODE version update in Readme
2 parents 0f5a8af + 8fe5949 commit 91791ed

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mCODE Extraction Framework
22

3-
A Node.js framework for extracting mCODE FHIR resources. All resources are profiled per the [mCODE v1.0.0 R4 FHIR Implementation Guide](https://mcodeinitiative.github.io/index.html)
3+
A Node.js framework for extracting mCODE FHIR resources. All resources are profiled per the [mCODE v1.16.0 R4 FHIR Implementation Guide](http://hl7.org/fhir/us/mcode/2021May/)
44

55
## Table of Contents
66

@@ -44,7 +44,7 @@ There are various extractors, modules, and helper functions exposed by the frame
4444

4545
Each extractor exposes an asynchronous `get` function that will return a bundle of extracted mCODE data.
4646

47-
``` JavaScript
47+
```JavaScript
4848
// Example
4949
const { CSVCancerDiseaseStatusExtractor, logger} = require('mcode-extraction-framework');
5050

@@ -116,7 +116,7 @@ In order to send an email, users must specify the hostname or IP address of an S
116116
- `port`: `<number>` (Optional) The port to connect to (defaults to 587)
117117
- `to`: `<string[]>` Comma separated list or an array of recipients email addresses that will appear on the _To:_ field
118118
- `from`: `<string>` (Optional) The email address of the sender. All email addresses can be plain `'sender@server.com'` or formatted `'"Sender Name" sender@server.com'` (defaults to mcode-extraction-errors@mitre.org, which cannot receive reply emails)
119-
- `tlsRejectUnauthorized`: `<boolean>` (Optional) A boolean value to set the [node.js TLSSocket option](https://nodejs.org/api/tls.html#tls_class_tls_tlssocket) for rejecting any unauthorized connections, `tls.rejectUnauthorized`. (defaults to `true`)
119+
- `tlsRejectUnauthorized`: `<boolean>` (Optional) A boolean value to set the [node.js TLSSocket option](https://nodejs.org/api/tls.html#tls_class_tls_tlssocket) for rejecting any unauthorized connections, `tls.rejectUnauthorized`. (defaults to `true`)
120120

121121
An example of this object can be found in [`config/csv.config.example.json`](config/csv.config.example.json).
122122

@@ -161,6 +161,7 @@ Alternatively, providing a string with a value of `all` in the `constructorArgs`
161161
}
162162
}
163163
```
164+
164165
### Extraction Date Range
165166

166167
The mCODE Extraction Client will extract all data that is provided in the CSV files by default, regardless of any dates associated with each row of data. It is recommended that any required date filtering is performed outside of the scope of this client.

0 commit comments

Comments
 (0)