oro-sdk-apis 1.32.0-dev2 → 1.32.0-dev3
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 +6 -3
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/consult.d.ts +1 -1
- package/package.json +1 -1
- package/src/models/consult.ts +7 -3
- package/src/services/consult.ts +1 -1
package/dist/models/consult.d.ts
CHANGED
@@ -81,6 +81,11 @@ export declare enum ClosedReasonType {
|
|
81
81
|
Other = "Other",
|
82
82
|
RequiresInPerson = "RequiresInPerson"
|
83
83
|
}
|
84
|
+
export interface ConsultClosedReason {
|
85
|
+
uuid: string;
|
86
|
+
closedReasonType: ClosedReasonType;
|
87
|
+
closedReasonDescription: string;
|
88
|
+
}
|
84
89
|
export interface ConsultRequest {
|
85
90
|
uuidPractice: string;
|
86
91
|
tagSpecialtyRequired: string;
|
@@ -101,9 +106,7 @@ export interface Consult {
|
|
101
106
|
uuidAssignedDoctor: string;
|
102
107
|
uuidCurrentAssigned: string;
|
103
108
|
statusTask?: TaskStatus;
|
104
|
-
|
105
|
-
closedReasonLogs?: string;
|
106
|
-
testReason?: string;
|
109
|
+
consultClosedReasons?: ConsultClosedReason[];
|
107
110
|
hasTransmissions?: boolean;
|
108
111
|
assignedAssistant?: ConsultAssignedAssistant[];
|
109
112
|
shortId?: string;
|