oro-sdk 2.1.4-dev1 → 2.2.0

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.
@@ -22,8 +22,8 @@ export declare class DiagnosisService {
22
22
  */
23
23
  getTreatmentPlansFromConsultUuid(uuidConsult: Uuid): Promise<TreatmentPlan[]>;
24
24
  /**
25
- * creates a new treatment for the diagnosis specified
26
- * @param diagnosisUuid uuid of the diagnosis that is linked to the treatment
25
+ * creates a new treatment for the specified diagnosis
26
+ * @param diagnosisUuid uuid of the diagnosis that the treatment is linked to
27
27
  * @param treatmentRequest the treatment to be inserted
28
28
  */
29
29
  createTreatment(diagnosisUuid: string, treatmentRequest: TreatmentRequest): Promise<Treatment>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.1.4-dev1",
2
+ "version": "2.2.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -67,8 +67,8 @@ export class DiagnosisService {
67
67
  }
68
68
 
69
69
  /**
70
- * creates a new treatment for the diagnosis specified
71
- * @param diagnosisUuid uuid of the diagnosis that is linked to the treatment
70
+ * creates a new treatment for the specified diagnosis
71
+ * @param diagnosisUuid uuid of the diagnosis that the treatment is linked to
72
72
  * @param treatmentRequest the treatment to be inserted
73
73
  */
74
74
  public createTreatment(diagnosisUuid: string, treatmentRequest: TreatmentRequest) {