oro-sdk-apis 5.13.4 → 5.13.5

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.
@@ -916,6 +916,7 @@ var PaymentStatus;
916
916
  PaymentStatus["Success"] = "Success";
917
917
  PaymentStatus["Failure"] = "Failure";
918
918
  PaymentStatus["Canceled"] = "Canceled";
919
+ PaymentStatus["SuccessAndDelivered"] = "SuccessAndDelivered";
919
920
  })(PaymentStatus || (PaymentStatus = {}));
920
921
  var PractitionerStatus;
921
922
  (function (PractitionerStatus) {
@@ -1200,6 +1201,13 @@ var ConsultService = /*#__PURE__*/function () {
1200
1201
  }
1201
1202
  });
1202
1203
  };
1204
+ _proto.getConsultByPracticePaymentID = function getConsultByPracticePaymentID(idPracticePayment, uuidPractice) {
1205
+ return this.api.get(this.baseURL + "/v1/consults/payment-" + idPracticePayment, {
1206
+ params: {
1207
+ uuidPractice: uuidPractice
1208
+ }
1209
+ });
1210
+ };
1203
1211
  _proto.updateConsultByUUID = function updateConsultByUUID(uuidConsult, consult, uuidPractice, uuidRequester) {
1204
1212
  return this.api.put(this.baseURL + "/v1/consults/" + uuidConsult, consult, {
1205
1213
  params: {