oro-sdk-apis 1.50.0 → 1.51.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/dist/models/workflow.d.ts +7 -1
- package/dist/oro-sdk-apis.cjs.development.js +399 -816
- 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 +399 -816
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/models/workflow.ts +8 -0
- package/LICENSE +0 -21
@@ -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;
|