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.
@@ -1252,13 +1252,11 @@ var ConsultService = /*#__PURE__*/function () {
1252
1252
  if (txtTransmissionNotes) {
1253
1253
  data.append('txtTransmissionNotes', txtTransmissionNotes);
1254
1254
  }
1255
- var res = this.api.post(this.baseURL + "/v1/consults/" + uuidConsult + "/transmissions", data, {
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);