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/dist/models/diagnosis.d.ts +3 -1
- package/dist/models/workflow.d.ts +3 -3
- package/dist/oro-sdk-apis.cjs.development.js +418 -1296
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +419 -1332
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/models/diagnosis.ts +3 -1
- package/src/models/workflow.ts +3 -3
- package/LICENSE +0 -21
package/package.json
CHANGED
package/src/models/diagnosis.ts
CHANGED
@@ -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 {
|
package/src/models/workflow.ts
CHANGED
@@ -76,9 +76,9 @@ export interface TileRadioData extends ChoiceInputData {
|
|
76
76
|
}
|
77
77
|
|
78
78
|
export enum InputApplyFunctions { //these are generic metadata categories
|
79
|
-
|
80
|
-
|
81
|
-
|
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.
|