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.
- package/dist/oro-sdk.cjs.development.js +2 -2
- package/dist/oro-sdk.cjs.development.js.map +1 -1
- package/dist/oro-sdk.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk.esm.js +2 -2
- package/dist/oro-sdk.esm.js.map +1 -1
- package/dist/services/diagnosis.d.ts +2 -2
- package/package.json +1 -1
- package/src/services/diagnosis.ts +2 -2
@@ -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
|
26
|
-
* @param diagnosisUuid uuid of the diagnosis that is linked to
|
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
@@ -67,8 +67,8 @@ export class DiagnosisService {
|
|
67
67
|
}
|
68
68
|
|
69
69
|
/**
|
70
|
-
* creates a new treatment for the diagnosis
|
71
|
-
* @param diagnosisUuid uuid of the diagnosis that is linked to
|
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) {
|