oro-sdk-apis 3.1.0 → 3.2.0

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.
@@ -66,7 +66,9 @@ export declare enum MedicalStatus {
66
66
  Closed = "Closed",
67
67
  Reopened = "Reopened",
68
68
  Archived = "Archived",
69
- Failed = "Failed"
69
+ Failed = "Failed",
70
+ ToRefill = "ToRefill",
71
+ Refilled = "Refilled"
70
72
  }
71
73
  export declare enum TaskStatus {
72
74
  None = "None",
@@ -144,6 +146,7 @@ export interface Consult {
144
146
  statusMedical?: MedicalStatus;
145
147
  uuidAssignedDoctor: string;
146
148
  uuidCurrentAssigned: string;
149
+ uuidParent?: string;
147
150
  statusTask?: TaskStatus;
148
151
  hasTransmissions?: boolean;
149
152
  assignedAssistant?: ConsultAssignedAssistant[];