oro-sdk-apis 4.2.1 → 4.2.3
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 +5 -0
- package/dist/models/guard.d.ts +1 -1
- package/dist/oro-sdk-apis.cjs.development.js +488 -552
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +488 -552
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/diagnosis.ts +7 -0
- package/src/models/guard.ts +1 -0
package/package.json
CHANGED
package/src/models/diagnosis.ts
CHANGED
@@ -26,6 +26,12 @@ export interface Diagnosis extends DiagnosisRequest {
|
|
26
26
|
createdAt: string
|
27
27
|
}
|
28
28
|
|
29
|
+
// Type defined to store all consult related data linked to a given treatment
|
30
|
+
export interface TreatmentAssociatedConsultData {
|
31
|
+
uuidConsult: string
|
32
|
+
consultKind: string
|
33
|
+
}
|
34
|
+
|
29
35
|
export interface TreatmentRequest {
|
30
36
|
uuid?: string
|
31
37
|
uuidDiagnosis?: string
|
@@ -43,6 +49,7 @@ export interface Treatment extends TreatmentRequest {
|
|
43
49
|
uuidDiagnosis: string
|
44
50
|
uuidPractitioner?: string
|
45
51
|
createdAt: string
|
52
|
+
associatedConsultsData: TreatmentAssociatedConsultData[]
|
46
53
|
}
|
47
54
|
|
48
55
|
export enum DrugType {
|
package/src/models/guard.ts
CHANGED