oro-sdk-apis 1.13.0 → 1.14.0

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.13.0",
2
+ "version": "1.14.0",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
@@ -32,6 +32,8 @@ export interface LanguagePickerData extends ChoiceInputData {
32
32
  export interface EntryData {
33
33
  id?: number
34
34
  label?: string
35
+ hideLabel?: boolean
36
+ minorLabel?: string
35
37
  summaryLabel?: string
36
38
  summaryHidden?: boolean
37
39
  className?: string
@@ -78,15 +80,8 @@ export interface GroupedGenericQuestionData<T, A = IndexedData<ChoiceInputData>>
78
80
  order?: number
79
81
  }
80
82
 
81
- export type QuestionData =
82
- | GenericQuestionData<'title' | 'paragraph' | 'checkbox', void>
83
- | GenericQuestionData<
84
- 'text' | 'date' | 'number' | 'images' | 'images-alias' | 'body-parts' | 'pharmacy-picker' | 'place-address'
85
- >
86
- | GenericQuestionData<'checkbox-group' | 'select' | 'multiple', IndexedData<ChoiceInputData>>
87
- | GroupedGenericQuestionData<'radio', IndexedData<RadioInputData>>
88
- | GroupedGenericQuestionData<'radio-card', IndexedData<RadioCardInputData>>
89
- | GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>>
83
+ export declare type QuestionData = GenericQuestionData<'title' | 'paragraph' | 'checkbox', void> | GenericQuestionData<'text' | 'text-area' | 'date' | 'number' | 'images' | 'images-alias' | 'body-parts' | 'pharmacy-picker' | 'place-address'> | GenericQuestionData<'checkbox-group' | 'select' | 'multiple' | 'text-select-group', IndexedData<ChoiceInputData>> | GroupedGenericQuestionData<'radio', IndexedData<RadioInputData>> | GroupedGenericQuestionData<'radio-card', IndexedData<RadioCardInputData>> | GroupedGenericQuestionData<'language-picker', IndexedData<LanguagePickerData>>;
84
+
90
85
 
91
86
  export interface FieldData {
92
87
  type: 'field'