oro-sdk-apis 1.23.0 → 1.23.3
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/LICENSE +21 -0
- package/dist/models/practice.d.ts +2 -1
- package/dist/models/workflow.d.ts +1 -1
- package/dist/oro-sdk-apis.cjs.development.js +2 -1
- 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 +2 -1
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/practice.ts +1 -0
- package/src/models/workflow.ts +2 -1
- package/src/services/teller.ts +1 -1
package/package.json
CHANGED
package/src/models/practice.ts
CHANGED
package/src/models/workflow.ts
CHANGED
|
@@ -138,11 +138,12 @@ export declare type QuestionData =
|
|
|
138
138
|
| 'images-alias'
|
|
139
139
|
| 'body-parts'
|
|
140
140
|
| 'pharmacy-picker'
|
|
141
|
+
| 'online-pharmacy-picker'
|
|
141
142
|
| 'place-address'
|
|
142
143
|
>
|
|
143
144
|
| GenericQuestionData<'checkbox-group' | 'select' | 'multiple' | 'text-select-group', IndexedData<ChoiceInputData>>
|
|
144
145
|
| GroupedGenericQuestionData<'radio', IndexedData<RadioInputData>>
|
|
145
|
-
| GroupedGenericQuestionData<'radio-card', IndexedData<RadioCardInputData>>
|
|
146
|
+
| GroupedGenericQuestionData<'radio-card' | 'profile-selector', IndexedData<RadioCardInputData>>
|
|
146
147
|
| GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>>
|
|
147
148
|
|
|
148
149
|
export interface FieldData {
|
package/src/services/teller.ts
CHANGED
|
@@ -77,7 +77,7 @@ export class TellerService {
|
|
|
77
77
|
patientUuid: Uuid,
|
|
78
78
|
): Promise<void> {
|
|
79
79
|
return this.api.post(
|
|
80
|
-
`${this.baseURL}/v1/online-fax-notify`, { consult,
|
|
80
|
+
`${this.baseURL}/v1/online-fax-notify`, { consult, patientUuid }
|
|
81
81
|
)
|
|
82
82
|
}
|
|
83
83
|
}
|