oro-sdk-apis 3.1.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.1.0",
2
+ "version": "3.2.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -73,6 +73,8 @@ export enum MedicalStatus {
73
73
  Reopened = 'Reopened',
74
74
  Archived = 'Archived',
75
75
  Failed = 'Failed',
76
+ ToRefill = 'ToRefill',
77
+ Refilled = 'Refilled'
76
78
  }
77
79
 
78
80
  export enum TaskStatus {
@@ -87,23 +89,23 @@ export enum ClosedReasonType {
87
89
  /**
88
90
  * A completed consultation
89
91
  */
90
- Completed = "Completed",
91
- /**
92
- * The conclusion was that what the patient submitted was not a disease
93
- */
94
- NotADisease = "NotADisease",
95
- /**
96
- * The consultation was not appropriate for virtual
97
- */
98
- NotAppropriateForVirtual = "NotAppropriateForVirtual",
99
- /**
100
- * Any other reason why the consultation was closed
101
- */
102
- Other = "Other",
103
- /**
104
- * A consultation that is required to be done in person
105
- */
106
- RequiresInPerson = "RequiresInPerson"
92
+ Completed = "Completed",
93
+ /**
94
+ * The conclusion was that what the patient submitted was not a disease
95
+ */
96
+ NotADisease = "NotADisease",
97
+ /**
98
+ * The consultation was not appropriate for virtual
99
+ */
100
+ NotAppropriateForVirtual = "NotAppropriateForVirtual",
101
+ /**
102
+ * Any other reason why the consultation was closed
103
+ */
104
+ Other = "Other",
105
+ /**
106
+ * A consultation that is required to be done in person
107
+ */
108
+ RequiresInPerson = "RequiresInPerson"
107
109
  }
108
110
 
109
111
  export interface ClosedConsultReasonInsertFields {
@@ -155,6 +157,7 @@ export interface Consult {
155
157
  statusMedical?: MedicalStatus
156
158
  uuidAssignedDoctor: string
157
159
  uuidCurrentAssigned: string
160
+ uuidParent?: string
158
161
  statusTask?: TaskStatus
159
162
  hasTransmissions?: boolean
160
163
  assignedAssistant?: ConsultAssignedAssistant[]