@skedulo/mex-types 1.34.0 → 1.35.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.
|
@@ -107,6 +107,11 @@ export interface ButtonBehaviorComponentModel {
|
|
|
107
107
|
export type ButtonBehaviorType = 'custom' | 'sms' | 'phone' | 'openUrl' | 'email' | 'openSelector' | 'routing';
|
|
108
108
|
export interface CustomFunctionButtonBehaviorComponentModel extends ButtonBehaviorComponentModel {
|
|
109
109
|
functionExpression: DataExpressionType;
|
|
110
|
+
/**
|
|
111
|
+
* Add online capability for custom action, required full online mode
|
|
112
|
+
* @version: 1.14.0
|
|
113
|
+
*/
|
|
114
|
+
query?: OnlineFetchDataQuery;
|
|
110
115
|
type: 'custom';
|
|
111
116
|
}
|
|
112
117
|
export interface PhoneButtonBehaviorComponentModel extends ButtonBehaviorComponentModel {
|
|
@@ -410,7 +410,7 @@ export type ReloadRequest = {
|
|
|
410
410
|
* @version 1.13.0
|
|
411
411
|
*/
|
|
412
412
|
export type FlatPageSingleModeDefModel = {
|
|
413
|
-
flatComponents?: BaseFlatPageViewComponentModel[];
|
|
413
|
+
flatComponents?: (BaseFlatPageViewComponentModel | DynamicContent)[];
|
|
414
414
|
list?: SublistOfFlatPageComponentModel;
|
|
415
415
|
};
|
|
416
416
|
export type FlatPageStepModeDefModel = {
|