oro-sdk-apis 3.8.0-dev1.0 → 3.8.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.
@@ -103,6 +103,7 @@ export interface DrugPrescription {
103
103
  }
104
104
  export interface TreatmentAndDrugPrescription {
105
105
  treatmentsHistory?: TreatmentHistory[];
106
+ notes?: string;
106
107
  status: PlanStatus;
107
108
  uuidTreatmentPlan: string;
108
109
  /**
@@ -63,9 +63,11 @@ export interface TileRadioData extends ChoiceInputData {
63
63
  description?: string;
64
64
  }
65
65
  export declare enum InputApplyFunctions {
66
- MakeUpperCase = "MakeUpperCase",
67
- MakeLowerCase = "MakeLowerCase",
68
- RemoveAllSpaces = "RemoveAllSpaces"
66
+ AllUpperCase = "AllUpperCase",
67
+ AllLowerCase = "AllLowerCase",
68
+ AllAlphabetical = "AllAlphabetical",
69
+ AllAlphanumeric = "AllAlphanumeric",
70
+ NoSpaces = "NoSpaces"
69
71
  }
70
72
  export interface EntryData {
71
73
  id?: number;
@@ -1629,9 +1629,11 @@ var VaultDataMissing = /*#__PURE__*/function (_Error8) {
1629
1629
  })(exports.DocumentType || (exports.DocumentType = {}));
1630
1630
 
1631
1631
  (function (InputApplyFunctions) {
1632
- InputApplyFunctions["MakeUpperCase"] = "MakeUpperCase";
1633
- InputApplyFunctions["MakeLowerCase"] = "MakeLowerCase";
1634
- InputApplyFunctions["RemoveAllSpaces"] = "RemoveAllSpaces";
1632
+ InputApplyFunctions["AllUpperCase"] = "AllUpperCase";
1633
+ InputApplyFunctions["AllLowerCase"] = "AllLowerCase";
1634
+ InputApplyFunctions["AllAlphabetical"] = "AllAlphabetical";
1635
+ InputApplyFunctions["AllAlphanumeric"] = "AllAlphanumeric";
1636
+ InputApplyFunctions["NoSpaces"] = "NoSpaces";
1635
1637
  })(exports.InputApplyFunctions || (exports.InputApplyFunctions = {}));
1636
1638
 
1637
1639
  (function (MetadataCategory) {