oro-sdk-apis 4.3.1 → 5.13.4
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/diagnosis.d.ts +2 -0
- package/dist/oro-sdk-apis.cjs.development.js +6 -0
- 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 +6 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/dist/services/diagnosis.d.ts +3 -1
- package/package.json +2 -2
- package/src/models/diagnosis.ts +3 -1
- package/src/services/diagnosis.ts +24 -0
    
        package/dist/oro-sdk-apis.esm.js
    CHANGED
    
    | @@ -1334,6 +1334,12 @@ var DiagnosisService = /*#__PURE__*/function () { | |
| 1334 1334 | 
             
                  refill: refill
         | 
| 1335 1335 | 
             
                });
         | 
| 1336 1336 | 
             
              };
         | 
| 1337 | 
            +
              _proto.setAssociatedConsultsToTreatment = function setAssociatedConsultsToTreatment(diagnosisUuid, treatmentUuid, arrAssociatedConsults) {
         | 
| 1338 | 
            +
                return this.api.post(this.baseURL + "/v1/diagnoses/" + diagnosisUuid + "/treatments/" + treatmentUuid + "/associated-consults", arrAssociatedConsults);
         | 
| 1339 | 
            +
              };
         | 
| 1340 | 
            +
              _proto.updateAssociatedConsultsToTreatment = function updateAssociatedConsultsToTreatment(diagnosisUuid, treatmentUuid, arrAssociatedConsults) {
         | 
| 1341 | 
            +
                return this.api.put(this.baseURL + "/v1/diagnoses/" + diagnosisUuid + "/treatments/" + treatmentUuid + "/associated-consults", arrAssociatedConsults);
         | 
| 1342 | 
            +
              };
         | 
| 1337 1343 | 
             
              _proto.acceptTreatmentPlan = function acceptTreatmentPlan(uuidPlan, uuidConsult) {
         | 
| 1338 1344 | 
             
                return this.api.put(this.baseURL + "/v1/treatment-plans/" + uuidPlan + "/accept", {
         | 
| 1339 1345 | 
             
                  uuidConsult: uuidConsult
         |