oro-sdk-apis 1.48.0 → 1.51.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -510,6 +510,7 @@ export interface HydratedPracticeConfigs {
510
510
  export interface Practice {
511
511
  uuid: string;
512
512
  name: string;
513
+ shortName: string;
513
514
  countryOperating: string;
514
515
  urlPractice: string;
515
516
  urlLinkedPage?: string;
@@ -533,6 +534,7 @@ export interface Practice {
533
534
  txtRegistrationID?: string;
534
535
  txtLegalInfos?: string;
535
536
  txtDefaultTransmissionDriver?: string;
537
+ txtDefaultTransmissionAddress?: string;
536
538
  accounts?: PracticeAccount[];
537
539
  configs?: HydratedPracticeConfigs;
538
540
  }
@@ -57,6 +57,11 @@ export interface LanguagePickerData extends ChoiceInputData {
57
57
  flag: string;
58
58
  locale: string;
59
59
  }
60
+ export interface TileRadioData extends ChoiceInputData {
61
+ fullText?: string;
62
+ image?: string;
63
+ description?: string;
64
+ }
60
65
  export interface EntryData {
61
66
  id?: number;
62
67
  label?: string;
@@ -164,13 +169,14 @@ export interface GenericQuestionData<T, A = IndexedData<ChoiceInputData>, O = un
164
169
  * Options to forward to the workflow component
165
170
  */
166
171
  options?: O;
172
+ messages?: string;
167
173
  }
168
174
  export interface GroupedGenericQuestionData<T, A = IndexedData<ChoiceInputData>> extends GenericQuestionData<T, A> {
169
175
  inline?: boolean;
170
176
  inlineLabel?: boolean;
171
177
  order?: number;
172
178
  }
173
- export declare type QuestionData = GenericQuestionData<'title' | 'paragraph' | 'checkbox', void> | GenericQuestionData<'text' | 'text-area' | 'date' | 'number' | 'images' | 'body-parts' | 'pharmacy-picker' | 'online-pharmacy-picker' | 'place-address'> | GenericQuestionData<'images-alias', IndexedData<ChoiceInputData>, ImagesAliasQuestionOptions> | GenericQuestionData<'checkbox-group' | 'hair-loss-frontal' | 'select' | 'multiple' | 'text-select-group', IndexedData<ChoiceInputData>> | GroupedGenericQuestionData<'radio' | 'hair-selector-women' | 'hair-selector-men' | 'hair-loss-stage', IndexedData<RadioInputData>> | GroupedGenericQuestionData<'radio-card' | 'profile-selector', IndexedData<RadioCardInputData>> | GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>>;
179
+ export declare type QuestionData = GenericQuestionData<'title' | 'paragraph' | 'checkbox', void> | GenericQuestionData<'text' | 'text-area' | 'date' | 'number' | 'images' | 'body-parts' | 'pharmacy-picker' | 'online-pharmacy-picker' | 'place-address'> | GenericQuestionData<'images-alias', IndexedData<ChoiceInputData>, ImagesAliasQuestionOptions> | GenericQuestionData<'checkbox-group' | 'hair-loss-frontal' | 'select' | 'multiple' | 'text-select-group', IndexedData<ChoiceInputData>> | GroupedGenericQuestionData<'radio' | 'hair-selector-women' | 'hair-selector-men' | 'hair-loss-stage', IndexedData<RadioInputData>> | GroupedGenericQuestionData<'radio-card' | 'profile-selector', IndexedData<RadioCardInputData>> | GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>> | GroupedGenericQuestionData<'tile-radio', IndexedData<TileRadioData>>;
174
180
  export interface FieldData {
175
181
  type: 'field';
176
182
  className?: string;