oro-sdk-apis 3.7.2 → 3.8.0-dev1.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.7.2",
2
+ "version": "3.8.0-dev1.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -55,4 +55,4 @@
55
55
  "buffer": "^6.0.3",
56
56
  "hash.js": "^1.1.7"
57
57
  }
58
- }
58
+ }
@@ -33,6 +33,7 @@ export interface TreatmentRequest {
33
33
  name: string
34
34
  description: string
35
35
  refillable?: boolean
36
+ noteToPharmacy?: string
36
37
  urlMultimedia?: string
37
38
  type?: TreatmentType
38
39
  }
@@ -118,7 +119,6 @@ export interface DrugPrescription {
118
119
 
119
120
  export interface TreatmentAndDrugPrescription {
120
121
  treatmentsHistory?: TreatmentHistory[]
121
- notes?: string
122
122
  status: PlanStatus
123
123
  uuidTreatmentPlan: string
124
124
  /**
@@ -153,7 +153,6 @@ export interface TreatmentAndDrugPrescriptionRequest {
153
153
  trackingId: string
154
154
  treatment: TreatmentRequest
155
155
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
156
- notes?: string
157
156
  }
158
157
 
159
158
  export interface TreatmentPlansRequest {
@@ -165,7 +164,6 @@ export interface TreatmentPlansRequest {
165
164
  export interface TreatmentAndDrugPrescriptionUpdateRequest {
166
165
  treatment: Treatment
167
166
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
168
- notes?: string
169
167
  }
170
168
 
171
169
  export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {
@@ -76,11 +76,9 @@ export interface TileRadioData extends ChoiceInputData {
76
76
  }
77
77
 
78
78
  export enum InputApplyFunctions { //these are generic metadata categories
79
- AllUpperCase = 'AllUpperCase',
80
- AllLowerCase = 'AllLowerCase',
81
- AllAlphabetical = 'AllAlphabetical',
82
- AllAlphanumeric = 'AllAlphanumeric',
83
- NoSpaces = 'NoSpaces',
79
+ MakeUpperCase = 'MakeUpperCase',
80
+ MakeLowerCase = 'MakeLowerCase',
81
+ RemoveAllSpaces = 'RemoveAllSpaces',
84
82
  }
85
83
 
86
84
  export interface EntryData {