oro-sdk-apis 5.15.1-dev1 → 5.15.2
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/practice.d.ts +4 -0
- package/dist/oro-sdk-apis.cjs.development.js +1 -3
- 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 +1 -3
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/practice.ts +5 -0
- package/src/services/consult.ts +1 -5
package/dist/oro-sdk-apis.esm.js
CHANGED
@@ -1252,13 +1252,11 @@ var ConsultService = /*#__PURE__*/function () {
|
|
1252
1252
|
if (txtTransmissionNotes) {
|
1253
1253
|
data.append('txtTransmissionNotes', txtTransmissionNotes);
|
1254
1254
|
}
|
1255
|
-
|
1255
|
+
return this.api.post(this.baseURL + "/v1/consults/" + uuidConsult + "/transmissions", data, {
|
1256
1256
|
headers: {
|
1257
1257
|
'Content-Type': 'multipart/form-data;'
|
1258
1258
|
}
|
1259
1259
|
});
|
1260
|
-
console.log(res);
|
1261
|
-
return res;
|
1262
1260
|
};
|
1263
1261
|
_proto.postConsultFax = function postConsultFax(uuidConsult, addressReceiver, file, uuidPatient) {
|
1264
1262
|
return this.postConsultTransmission(uuidConsult, 'Documo', addressReceiver, file, undefined, undefined, undefined, uuidPatient);
|