oro-sdk-apis 1.34.1 → 1.35.0-dev1
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/oro-sdk-apis.cjs.development.js +821 -399
- 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 +824 -400
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/diagnosis.ts +7 -1
@@ -56,6 +56,10 @@ export interface Drug extends DrugRequest {
|
|
56
56
|
uuidPractitioner?: string;
|
57
57
|
createdAt: string;
|
58
58
|
}
|
59
|
+
export declare enum PrescriptionStatus {
|
60
|
+
Existing = "Existing",
|
61
|
+
Deleted = "Deleted"
|
62
|
+
}
|
59
63
|
export interface PrescriptionRequest {
|
60
64
|
uuid?: string;
|
61
65
|
uuidTreatment?: string;
|
@@ -67,6 +71,7 @@ export interface PrescriptionRequest {
|
|
67
71
|
export interface Prescription extends PrescriptionRequest {
|
68
72
|
uuid: string;
|
69
73
|
uuidTreatment: string;
|
74
|
+
status: PrescriptionStatus;
|
70
75
|
createdAt: string;
|
71
76
|
}
|
72
77
|
export declare enum PlanStatus {
|