@openmrs/esm-api 3.4.0 → 3.4.1-pre.105

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.
@@ -1,4 +1,4 @@
1
- @openmrs/esm-api:build: cache hit, replaying output 65f442adaaccd5ef
1
+ @openmrs/esm-api:build: cache hit, replaying output 9367e86ee3d550e0
2
2
  @openmrs/esm-api:build: $ webpack --mode=production
3
3
  @openmrs/esm-api:build: asset openmrs-esm-api.js 49.5 KiB [emitted] [minimized] (name: main) 1 related asset
4
4
  @openmrs/esm-api:build: orphan modules 369 KiB [orphan] 226 modules
@@ -15,4 +15,4 @@
15
15
  @openmrs/esm-api:build:  external "@openmrs/esm-error-handling" 42 bytes [built] [code generated]
16
16
  @openmrs/esm-api:build:  ./src/index.ts + 44 modules 80.9 KiB [built] [code generated]
17
17
  @openmrs/esm-api:build:  ../esm-state/dist/openmrs-esm-state.js 7.52 KiB [built] [code generated]
18
- @openmrs/esm-api:build: webpack 5.70.0 compiled successfully in 5689 ms
18
+ @openmrs/esm-api:build: webpack 5.70.0 compiled successfully in 5711 ms
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-api",
3
- "version": "3.4.0",
3
+ "version": "3.4.1-pre.105",
4
4
  "license": "MPL-2.0",
5
5
  "description": "The javascript module for interacting with the OpenMRS API",
6
6
  "browser": "dist/openmrs-esm-api.js",
@@ -44,11 +44,11 @@
44
44
  "@openmrs/esm-error-handling": "3.x"
45
45
  },
46
46
  "devDependencies": {
47
- "@openmrs/esm-config": "^3.4.0",
48
- "@openmrs/esm-error-handling": "^3.4.0",
49
- "@openmrs/esm-state": "^3.4.0",
47
+ "@openmrs/esm-config": "^3.4.1-pre.105",
48
+ "@openmrs/esm-error-handling": "^3.4.1-pre.105",
49
+ "@openmrs/esm-state": "^3.4.1-pre.105",
50
50
  "@types/fhir": "0.0.31",
51
51
  "rxjs": "^6.5.3"
52
52
  },
53
- "gitHead": "51e0d8495e4dbd18d18da19267ed4a792ab4fc6c"
53
+ "gitHead": "a0883453369fedcf958fb84db379689df01bbc9b"
54
54
  }
@@ -20,10 +20,13 @@ export interface FHIRResource {
20
20
  valueQuantity: {
21
21
  value: number;
22
22
  };
23
+ valueString: string;
24
+ valueCodeableConcept: { coding: Array<FHIRCode> };
23
25
  };
24
26
  }
25
27
 
26
28
  export interface FHIRCode {
27
29
  code: string;
28
30
  system: string;
31
+ display?: string;
29
32
  }