Skip to content

Commit

Permalink
(chore) : bump peer dependencies (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldkibet authored Jan 10, 2025
1 parent c58fca6 commit e665d48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/esm-imaging-orders-app/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type OrderBasketItem } from '@openmrs/esm-patient-common-lib';
import { type OrderUrgency, type OrderBasketItem } from '@openmrs/esm-patient-common-lib';

export interface Concept {
uuid: string;
Expand Down Expand Up @@ -27,7 +27,7 @@ export interface ImagingOrderBasketItem extends OrderBasketItem {
label: string;
conceptUuid: string;
};
urgency?: string;
urgency?: OrderUrgency;
instructions?: string;
orderReason?: string;
orderReasonNonCoded?: string;
Expand Down
4 changes: 2 additions & 2 deletions packages/esm-medical-supply-order-app/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type OrderBasketItem } from '@openmrs/esm-patient-common-lib';
import { type OrderUrgency, type OrderBasketItem } from '@openmrs/esm-patient-common-lib';

export interface Concept {
uuid: string;
Expand All @@ -11,7 +11,7 @@ export interface MedicalSupplyOrderBasketItem extends OrderBasketItem {
label: string;
conceptUuid: string;
};
urgency?: string;
urgency?: OrderUrgency;
instructions?: string;
quantity?: number;
quantityUnits?: string;
Expand Down
6 changes: 3 additions & 3 deletions packages/esm-procedure-orders-app/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { OpenmrsResource } from '@openmrs/esm-framework';
import { OrderBasketItem } from '@openmrs/esm-patient-common-lib';
import { type OrderUrgency, type OrderBasketItem } from '@openmrs/esm-patient-common-lib';
import { Link } from './patient-queue';
import { type OpenmrsResource } from '@openmrs/esm-framework';

export enum SearchTypes {
BASIC = 'basic',
Expand Down Expand Up @@ -420,7 +420,7 @@ export interface ProcedureOrderBasketItem extends OrderBasketItem {
conceptUuid: string;
};
labReferenceNumber?: string;
urgency?: string;
urgency?: OrderUrgency;
instructions?: string;
previousOrder?: string;
orderReason?: string;
Expand Down

0 comments on commit e665d48

Please sign in to comment.