oro-sdk-apis 3.1.0 → 3.2.1

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.1",
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 {
@@ -142,6 +144,7 @@ export interface ConsultRequest {
142
144
  idStripeInvoiceOrPaymentIntent: string
143
145
  isoLocalityRequired?: string
144
146
  isoLanguageRequired: string
147
+ uuidParent?: string
145
148
  }
146
149
  export interface Consult {
147
150
  uuid: string
@@ -155,6 +158,7 @@ export interface Consult {
155
158
  statusMedical?: MedicalStatus
156
159
  uuidAssignedDoctor: string
157
160
  uuidCurrentAssigned: string
161
+ uuidParent?: string
158
162
  statusTask?: TaskStatus
159
163
  hasTransmissions?: boolean
160
164
  assignedAssistant?: ConsultAssignedAssistant[]