@openmrs/esm-patient-common-lib 11.3.1-pre.8816 → 11.3.1-pre.8829

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-patient-common-lib",
3
- "version": "11.3.1-pre.8816",
3
+ "version": "11.3.1-pre.8829",
4
4
  "license": "MPL-2.0",
5
5
  "description": "Library for common patient chart components",
6
6
  "browser": "dist/openmrs-esm-patient-common-lib.js",
@@ -186,7 +186,7 @@ export interface Order {
186
186
  changedBy: string;
187
187
  dateChanged: string;
188
188
  };
189
- fulfillerStatus: 'RECEIVED' | 'IN_PROGRESS' | 'EXCEPTION' | 'ON_HOLD' | 'DECLINED' | 'COMPLETED' | 'DISCONTINUED';
189
+ fulfillerStatus: FulfillerStatus;
190
190
  fulfillerComment: string;
191
191
  specimenSource: string;
192
192
  laterality: string;
@@ -207,7 +207,13 @@ export interface OrderType {
207
207
  description: string;
208
208
  }
209
209
 
210
- export type FulfillerStatus = 'EXCEPTION' | 'RECEIVED' | 'COMPLETED' | 'IN_PROGRESS' | 'ON_HOLD' | 'DECLINED';
210
+ export type FulfillerStatus =
211
+ | 'RECEIVED'
212
+ | 'IN_PROGRESS'
213
+ | 'EXCEPTION'
214
+ | 'ON_HOLD'
215
+ | 'DECLINED'
216
+ | 'COMPLETED';
211
217
 
212
218
  export type PostDataPrepFunction = (
213
219
  order: OrderBasketItem,