@atomic-ehr/fhirpath 0.0.4 → 0.0.5
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.
- package/dist/index.browser.js +1 -1
- package/dist/index.node.js +1 -1
- package/package.json +12 -7
package/dist/index.browser.js
CHANGED
|
@@ -15264,7 +15264,7 @@ async function analyze(expression, options = {}) {
|
|
|
15264
15264
|
return analysisResult;
|
|
15265
15265
|
}
|
|
15266
15266
|
function getVersion() {
|
|
15267
|
-
return "0.0.
|
|
15267
|
+
return "0.0.5";
|
|
15268
15268
|
}
|
|
15269
15269
|
var FHIRModelProviderBase = class _FHIRModelProviderBase {
|
|
15270
15270
|
constructor() {
|
package/dist/index.node.js
CHANGED
|
@@ -15265,7 +15265,7 @@ async function analyze(expression, options = {}) {
|
|
|
15265
15265
|
return analysisResult;
|
|
15266
15266
|
}
|
|
15267
15267
|
function getVersion() {
|
|
15268
|
-
return "0.0.
|
|
15268
|
+
return "0.0.5";
|
|
15269
15269
|
}
|
|
15270
15270
|
var FHIRModelProviderBase = class _FHIRModelProviderBase {
|
|
15271
15271
|
constructor() {
|
package/package.json
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atomic-ehr/fhirpath",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "A TypeScript implementation of FHIRPath",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
6
|
+
"main": "./dist/index.node.js",
|
|
7
|
+
"module": "./dist/index.node.js",
|
|
8
|
+
"types": "./dist/index.node.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
"node": {
|
|
12
|
+
"types": "./dist/index.node.d.ts",
|
|
13
|
+
"default": "./dist/index.node.js"
|
|
14
|
+
},
|
|
15
|
+
"default": {
|
|
16
|
+
"types": "./dist/index.browser.d.ts",
|
|
17
|
+
"default": "./dist/index.browser.js"
|
|
18
|
+
}
|
|
14
19
|
}
|
|
15
20
|
},
|
|
16
21
|
"files": [
|