oro-sdk-apis 3.1.0 → 3.2.1

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",
@@ -131,6 +133,7 @@ export interface ConsultRequest {
131
133
  idStripeInvoiceOrPaymentIntent: string;
132
134
  isoLocalityRequired?: string;
133
135
  isoLanguageRequired: string;
136
+ uuidParent?: string;
134
137
  }
135
138
  export interface Consult {
136
139
  uuid: string;
@@ -144,6 +147,7 @@ export interface Consult {
144
147
  statusMedical?: MedicalStatus;
145
148
  uuidAssignedDoctor: string;
146
149
  uuidCurrentAssigned: string;
150
+ uuidParent?: string;
147
151
  statusTask?: TaskStatus;
148
152
  hasTransmissions?: boolean;
149
153
  assignedAssistant?: ConsultAssignedAssistant[];