oro-sdk-apis 1.58.1 → 2.0.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.
@@ -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",
@@ -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
@@ -906,6 +906,7 @@ var ApisPracticeManager = /*#__PURE__*/function () {
906
906
  MedicalStatus["Closed"] = "Closed";
907
907
  MedicalStatus["Reopened"] = "Reopened";
908
908
  MedicalStatus["Archived"] = "Archived";
909
+ MedicalStatus["Failed"] = "Failed";
909
910
  })(exports.MedicalStatus || (exports.MedicalStatus = {}));
910
911
 
911
912
  (function (TaskStatus) {