oro-sdk-apis 1.58.1-dev1.1 → 1.58.1-dev1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -65,7 +65,8 @@ export declare enum MedicalStatus {
65
65
  Answered = "Answered",
66
66
  Closed = "Closed",
67
67
  Reopened = "Reopened",
68
- Archived = "Archived"
68
+ Archived = "Archived",
69
+ Failed = "Failed"
69
70
  }
70
71
  export declare enum TaskStatus {
71
72
  None = "None",
@@ -148,6 +148,9 @@ export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {
148
148
  uuidConsult: string;
149
149
  diagnosis: DiagnosisRequest;
150
150
  plan: TreatmentAndDrugPrescriptionUpdateRequest;
151
+ /**
152
+ * request to refill the treatment plan
153
+ */
151
154
  refill?: boolean;
152
155
  }
153
156
  export interface TreatmentPlansResponseEntry {
@@ -297,13 +297,13 @@ export declare type PracticeConfigPracticePrescriptionFields = PracticeConfig<Pr
297
297
  */
298
298
  export declare type PracticeConfigPractitionerSearch = PracticeConfig<PracticeConfigKind.PractitionerSearch, {
299
299
  /**
300
- * Enables search indexing a consultation on its creation
300
+ * Disable search indexing a consultation on its creation
301
301
  */
302
- enableSearchIndexing?: boolean;
302
+ disableSearchIndexing?: boolean;
303
303
  /**
304
- * Enables to search for consultations from the ConsultList
304
+ * Disable search for consultations from the ConsultList
305
305
  */
306
- enableSearch?: boolean;
306
+ disableSearch?: boolean;
307
307
  }>;
308
308
  /**
309
309
  * This config is used to configure the register walkthrough
@@ -1323,6 +1323,7 @@ var ApisPracticeManager = /*#__PURE__*/function () {
1323
1323
  MedicalStatus["Closed"] = "Closed";
1324
1324
  MedicalStatus["Reopened"] = "Reopened";
1325
1325
  MedicalStatus["Archived"] = "Archived";
1326
+ MedicalStatus["Failed"] = "Failed";
1326
1327
  })(exports.MedicalStatus || (exports.MedicalStatus = {}));
1327
1328
 
1328
1329
  (function (TaskStatus) {