@medplum/definitions 3.1.10 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -59340,6 +59340,8 @@
|
|
|
59340
59340
|
"description": "A list of optional features that are enabled for the project.",
|
|
59341
59341
|
"items": {
|
|
59342
59342
|
"enum": [
|
|
59343
|
+
"aws-comprehend",
|
|
59344
|
+
"aws-textract",
|
|
59343
59345
|
"bots",
|
|
59344
59346
|
"cron",
|
|
59345
59347
|
"email",
|
|
@@ -40341,6 +40341,7 @@
|
|
|
40341
40341
|
"http://hl7.org/fhir/StructureDefinition/Device",
|
|
40342
40342
|
"http://hl7.org/fhir/StructureDefinition/Patient",
|
|
40343
40343
|
"http://hl7.org/fhir/StructureDefinition/RelatedPerson",
|
|
40344
|
+
"http://hl7.org/fhir/StructureDefinition/Subscription",
|
|
40344
40345
|
"https://medplum.com/fhir/StructureDefinition/Bot",
|
|
40345
40346
|
"https://medplum.com/fhir/StructureDefinition/ClientApplication"]
|
|
40346
40347
|
}],
|
|
@@ -129,6 +129,16 @@
|
|
|
129
129
|
"valueSet": "https://medplum.com/fhir/ValueSet/project-feature",
|
|
130
130
|
"content": "complete",
|
|
131
131
|
"concept": [
|
|
132
|
+
{
|
|
133
|
+
"code": "aws-comprehend",
|
|
134
|
+
"display": "AWS Comprehend",
|
|
135
|
+
"definition": "AWS Comprehend"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"code": "aws-textract",
|
|
139
|
+
"display": "AWS Textract",
|
|
140
|
+
"definition": "AWS Textract"
|
|
141
|
+
},
|
|
132
142
|
{
|
|
133
143
|
"code": "bots",
|
|
134
144
|
"display": "Bots",
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SEARCH_PARAMETER_BUNDLE_FILES =
|
|
3
|
+
exports.SEARCH_PARAMETER_BUNDLE_FILES = void 0;
|
|
4
|
+
exports.readJson = readJson;
|
|
4
5
|
const fs_1 = require("fs");
|
|
5
6
|
const path_1 = require("path");
|
|
6
7
|
function readJson(filename) {
|
|
7
8
|
return JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, filename), 'utf8'));
|
|
8
9
|
}
|
|
9
|
-
exports.readJson = readJson;
|
|
10
10
|
/**
|
|
11
11
|
* The list of all known search parameter definition bundle file paths relative to the
|
|
12
12
|
* `@medplum/definitions` package. Typically used in conjunction with `readJson`.
|