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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.23.0",
2
+ "version": "1.23.3",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -110,6 +110,7 @@ export enum PracticeEmailKind {
110
110
  ExamResult = 'ExamResult',
111
111
  Reassigned = 'Reassigned',
112
112
  OnlinePharmacyFaxSent = 'OnlinePharmacyFaxSent',
113
+ ResumeConsult = 'ResumeConsult'
113
114
  }
114
115
 
115
116
  export interface PracticeAccount {
@@ -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 {
@@ -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, patient_uuid: patientUuid }
80
+ `${this.baseURL}/v1/online-fax-notify`, { consult, patientUuid }
81
81
  )
82
82
  }
83
83
  }