oro-sdk-apis 3.7.0-dev1.1 → 3.7.1

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.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.7.0-dev1.1",
2
+ "version": "3.7.1",
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,7 +33,6 @@ export interface TreatmentRequest {
33
33
  name: string
34
34
  description: string
35
35
  refillable?: boolean
36
- noteToPharmacy?: string
37
36
  urlMultimedia?: string
38
37
  type?: TreatmentType
39
38
  }
@@ -119,6 +118,7 @@ export interface DrugPrescription {
119
118
 
120
119
  export interface TreatmentAndDrugPrescription {
121
120
  treatmentsHistory?: TreatmentHistory[]
121
+ notes?: string
122
122
  status: PlanStatus
123
123
  uuidTreatmentPlan: string
124
124
  /**
@@ -153,6 +153,7 @@ export interface TreatmentAndDrugPrescriptionRequest {
153
153
  trackingId: string
154
154
  treatment: TreatmentRequest
155
155
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
156
+ notes?: string
156
157
  }
157
158
 
158
159
  export interface TreatmentPlansRequest {
@@ -164,6 +165,7 @@ export interface TreatmentPlansRequest {
164
165
  export interface TreatmentAndDrugPrescriptionUpdateRequest {
165
166
  treatment: Treatment
166
167
  prescriptionsAndDrugs?: DrugPrescriptionRequest[]
168
+ notes?: string
167
169
  }
168
170
 
169
171
  export interface TreatmentPlanUpdateRequest extends TreatmentPlansRequest {
@@ -76,9 +76,9 @@ export interface TileRadioData extends ChoiceInputData {
76
76
  }
77
77
 
78
78
  export enum InputApplyFunctions { //these are generic metadata categories
79
- MakeUpperCase = 'MakeUpperCase',
80
- MakeLowerCase = 'MakeLowerCase',
81
- RemoveAllSpaces = 'RemoveAllSpaces',
79
+ AllUpperCase = 'AllUpperCase',
80
+ AllLowerCase = 'AllLowerCase',
81
+ NoSpaces = 'NoSpaces',
82
82
  }
83
83
 
84
84
  export interface EntryData {
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2021 ORO Health Inc.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.