oro-sdk-apis 1.32.0-dev1 → 1.32.0-dev4
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 -2
- package/dist/oro-sdk-apis.cjs.development.js +2 -2
- 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 +2 -2
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/consult.d.ts +1 -1
- package/dist/services/teller.d.ts +1 -1
- package/package.json +1 -1
- package/src/models/consult.ts +7 -2
- package/src/services/consult.ts +1 -1
- package/src/services/teller.ts +2 -2
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,8 +106,7 @@ export interface Consult {
|
|
101
106
|
uuidAssignedDoctor: string;
|
102
107
|
uuidCurrentAssigned: string;
|
103
108
|
statusTask?: TaskStatus;
|
104
|
-
|
105
|
-
closedReasonLogs?: string;
|
109
|
+
consultClosedReasons?: ConsultClosedReason[];
|
106
110
|
hasTransmissions?: boolean;
|
107
111
|
assignedAssistant?: ConsultAssignedAssistant[];
|
108
112
|
shortId?: string;
|
@@ -2497,12 +2497,12 @@ var TellerService = /*#__PURE__*/function () {
|
|
2497
2497
|
return lockboxDataStore;
|
2498
2498
|
}();
|
2499
2499
|
|
2500
|
-
_proto.updateConsultByUUID = function updateConsultByUUID(patientUuid, uuidConsult, statusMedical, closedReasonType,
|
2500
|
+
_proto.updateConsultByUUID = function updateConsultByUUID(patientUuid, uuidConsult, statusMedical, closedReasonType, closedReasonDescription, neverExpires) {
|
2501
2501
|
return this.api.put(this.baseURL + "/v1/consults/" + uuidConsult, {
|
2502
2502
|
patientUuid: patientUuid,
|
2503
2503
|
statusMedical: statusMedical,
|
2504
2504
|
closedReasonType: closedReasonType,
|
2505
|
-
|
2505
|
+
closedReasonDescription: closedReasonDescription,
|
2506
2506
|
neverExpires: neverExpires
|
2507
2507
|
});
|
2508
2508
|
}
|