oro-sdk-apis 1.5.0 → 1.5.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.
@@ -18,6 +18,10 @@ export interface RadioInputData extends ChoiceInputData {
18
18
  export interface RadioCardInputData extends RadioInputData {
19
19
  bodyText: string;
20
20
  }
21
+ export interface LanguagePickerData extends ChoiceInputData {
22
+ flag: string;
23
+ locale: string;
24
+ }
21
25
  export interface EntryData {
22
26
  id?: number;
23
27
  label?: string;
@@ -53,7 +57,7 @@ export interface GroupedGenericQuestionData<T, A = IndexedData<ChoiceInputData>>
53
57
  inlineLabel?: boolean;
54
58
  order?: number;
55
59
  }
56
- export declare type QuestionData = GenericQuestionData<'title' | 'paragraph' | 'checkbox', void> | GenericQuestionData<'text' | 'date' | 'number' | 'images' | 'images-alias' | 'body-parts' | 'pharmacy-picker' | 'place-address'> | GenericQuestionData<'checkbox-group' | 'select' | 'multiple', IndexedData<ChoiceInputData>> | GroupedGenericQuestionData<'radio', IndexedData<RadioInputData>> | GroupedGenericQuestionData<'radio-card', IndexedData<RadioCardInputData>>;
60
+ export declare type QuestionData = GenericQuestionData<'title' | 'paragraph' | 'checkbox', void> | GenericQuestionData<'text' | 'date' | 'number' | 'images' | 'images-alias' | 'body-parts' | 'pharmacy-picker' | 'place-address'> | GenericQuestionData<'checkbox-group' | 'select' | 'multiple', IndexedData<ChoiceInputData>> | GroupedGenericQuestionData<'radio', IndexedData<RadioInputData>> | GroupedGenericQuestionData<'radio-card', IndexedData<RadioCardInputData>> | GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>>;
57
61
  export interface FieldData {
58
62
  type: 'field';
59
63
  className?: string;