diff --git a/src/types/public.ts b/src/types/public.ts index 205a528..7f25021 100644 --- a/src/types/public.ts +++ b/src/types/public.ts @@ -1,16 +1,6 @@ export enum InpatientRoomBedStatus { - "Green" = "green", - "Red" = "red", - "Pink" = "pink", - "Yellow" = "yellow", - "Gray" = "gray", - "Blue" = "blue", - "Purple" = "purple", - "Orange" = "orange", - "White" = "white", - "Brown" = "brown", - "DarkBlue" = "dark_blue", - "PeachPuff" = "peachpuff", - "PinkIntermittent" = "pink_intermittent", - "PinkContinues" = "pink_continues", + "Booked" = "booked", + "Empty" = "empty", + "Progress" = "progress", + "Occupied" = "occupied", }