oro-sdk-apis 1.34.0 → 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.
@@ -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 {
@@ -130,5 +130,5 @@ export interface LegalData {
130
130
  rpAcceptedAtIP?: string;
131
131
  }
132
132
  export declare type RoleBasedScopes = AllRoleType;
133
- export declare type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'practice.assignments.post' | 'practice.configs.get' | 'practice.invoices.get' | 'practice.payments.get' | 'teller.emails.post';
133
+ export declare type PermissionBasedScopes = 'consult.consults.get' | 'consult.consults.post' | 'consult.consults.put' | 'practice.assignments.post' | 'practice.emails.get' | 'practice.configs.get' | 'practice.invoices.get' | 'practice.payments.get' | 'teller.emails.post';
134
134
  export declare type AllScopes = RoleBasedScopes | PermissionBasedScopes;
@@ -1344,6 +1344,11 @@ var ApisPracticeManager = /*#__PURE__*/function () {
1344
1344
  DrugType["Instance"] = "Instance";
1345
1345
  })(exports.DrugType || (exports.DrugType = {}));
1346
1346
 
1347
+ (function (PrescriptionStatus) {
1348
+ PrescriptionStatus["Existing"] = "Existing";
1349
+ PrescriptionStatus["Deleted"] = "Deleted";
1350
+ })(exports.PrescriptionStatus || (exports.PrescriptionStatus = {}));
1351
+
1347
1352
  (function (PlanStatus) {
1348
1353
  PlanStatus["Pending"] = "Pending";
1349
1354
  PlanStatus["Accepted"] = "Accepted";