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.
- package/dist/models/consult.d.ts +4 -1
- package/dist/oro-sdk-apis.cjs.development.js +401 -816
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +401 -816
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/consult.ts +20 -17
package/package.json
CHANGED
package/src/models/consult.ts
CHANGED
@@ -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
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
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[]
|