@capillarytech/blaze-ui 5.23.3-beta.3 → 5.23.3-beta.4
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/CapActionBar/index.js +48 -81
- package/CapActionBar/styles.module.css +11 -0
- package/CapActionBar/styles.module.scss.js +6 -0
- package/CapAdvancedIcon/index.js +216 -179
- package/CapAdvancedIcon/styles.module.css +124 -0
- package/CapAdvancedIcon/styles.module.scss.js +28 -0
- package/CapAdvancedIcon/styles.scss +23 -23
- package/CapAlert/index.js +29 -34
- package/CapAlert/styles.module.css +35 -0
- package/CapAlert/styles.module.scss.js +6 -0
- package/CapAlert/styles.scss +1 -1
- package/CapAppNotEnabled/index.js +25 -43
- package/CapAppNotEnabled/styles.module.css +32 -0
- package/CapAppNotEnabled/styles.module.scss.js +14 -0
- package/CapAppNotEnabled/styles.scss +5 -5
- package/CapAskAira/AudienceFilterBot/constants.js +4 -1
- package/CapAskAira/AudienceFilterBot/index.js +449 -405
- package/CapAskAira/AudienceFilterBot/messages.js +44 -40
- package/CapAskAira/AudienceFilterBot/styles.module.css +425 -0
- package/CapAskAira/AudienceFilterBot/styles.module.scss.js +76 -0
- package/CapAskAira/AudienceFilterBot/styles.scss +7 -7
- package/CapAskAira/CapAiMediaGeneration/actions.js +7 -4
- package/CapAskAira/CapAiMediaGeneration/api.js +8 -5
- package/CapAskAira/CapAiMediaGeneration/constants.js +25 -11
- package/CapAskAira/CapAiMediaGeneration/index.js +263 -320
- package/CapAskAira/CapAiMediaGeneration/messages.js +32 -28
- package/CapAskAira/CapAiMediaGeneration/reducer.js +14 -18
- package/CapAskAira/CapAiMediaGeneration/saga.js +17 -12
- package/CapAskAira/CapAiMediaGeneration/selectors.js +12 -16
- package/CapAskAira/CapAiMediaGeneration/styles.module.css +174 -0
- package/CapAskAira/CapAiMediaGeneration/styles.module.scss.js +32 -0
- package/CapAskAira/CapAiMediaGeneration/styles.scss +14 -14
- package/CapAskAira/ConfigurationBot/CopilotResponse.js +394 -402
- package/CapAskAira/ConfigurationBot/GeneratingResponse.js +60 -68
- package/CapAskAira/ConfigurationBot/IdentityIcon.js +27 -39
- package/CapAskAira/ConfigurationBot/UserApproveAction.js +47 -58
- package/CapAskAira/ConfigurationBot/UserRequest.js +33 -36
- package/CapAskAira/ConfigurationBot/constants.js +26 -29
- package/CapAskAira/ConfigurationBot/index.js +361 -388
- package/CapAskAira/ConfigurationBot/inferenceGenerator.js +12 -15
- package/CapAskAira/ConfigurationBot/messages.js +41 -37
- package/CapAskAira/ConfigurationBot/styles.module.css +165 -0
- package/CapAskAira/ConfigurationBot/styles.module.scss.js +41 -0
- package/CapAskAira/ConfigurationBot/styles.scss +33 -33
- package/CapAskAira/ConfigurationBot/util.js +30 -34
- package/CapAskAira/ContentGenerationBot/UtilComponents.js +123 -148
- package/CapAskAira/ContentGenerationBot/constants.js +23 -12
- package/CapAskAira/ContentGenerationBot/index.js +164 -153
- package/CapAskAira/ContentGenerationBot/jsonAssembler.js +32 -70
- package/CapAskAira/ContentGenerationBot/messages.js +28 -24
- package/CapAskAira/ContentGenerationBot/styles.module.css +96 -0
- package/CapAskAira/ContentGenerationBot/styles.module.scss.js +20 -0
- package/CapAskAira/DocumentationBot/UtilComponents.js +55 -57
- package/CapAskAira/DocumentationBot/constants.js +21 -11
- package/CapAskAira/DocumentationBot/index.js +134 -153
- package/CapAskAira/DocumentationBot/messages.js +27 -23
- package/CapAskAira/DocumentationBot/styles.module.css +91 -0
- package/CapAskAira/DocumentationBot/styles.module.scss.js +23 -0
- package/CapAskAira/DocumentationChatBot/MetaBlock.js +74 -75
- package/CapAskAira/DocumentationChatBot/actions.js +11 -9
- package/CapAskAira/DocumentationChatBot/api.js +8 -5
- package/CapAskAira/DocumentationChatBot/constants.js +21 -11
- package/CapAskAira/DocumentationChatBot/index.js +193 -221
- package/CapAskAira/DocumentationChatBot/messages.js +18 -14
- package/CapAskAira/DocumentationChatBot/reducer.js +17 -22
- package/CapAskAira/DocumentationChatBot/saga.js +25 -31
- package/CapAskAira/DocumentationChatBot/selectors.js +12 -16
- package/CapAskAira/DocumentationChatBot/styles.module.css +77 -0
- package/CapAskAira/DocumentationChatBot/styles.module.scss.js +20 -0
- package/CapAskAira/DocumentationChatBot/styles.scss +7 -7
- package/CapAskAira/RuleGenerationBot/UtilComponents.js +107 -114
- package/CapAskAira/RuleGenerationBot/actions.js +26 -23
- package/CapAskAira/RuleGenerationBot/api.js +16 -24
- package/CapAskAira/RuleGenerationBot/constants.js +33 -18
- package/CapAskAira/RuleGenerationBot/index.js +131 -161
- package/CapAskAira/RuleGenerationBot/messages.js +30 -26
- package/CapAskAira/RuleGenerationBot/reducer.js +28 -38
- package/CapAskAira/RuleGenerationBot/saga.js +75 -72
- package/CapAskAira/RuleGenerationBot/selector.js +12 -15
- package/CapAskAira/RuleGenerationBot/styles.module.css +33 -0
- package/CapAskAira/RuleGenerationBot/styles.module.scss.js +11 -0
- package/CapAskAira/RuleSummarizationBot/MetaBlock.js +104 -108
- package/CapAskAira/RuleSummarizationBot/actions.js +36 -42
- package/CapAskAira/RuleSummarizationBot/api.js +28 -45
- package/CapAskAira/RuleSummarizationBot/constants.js +57 -32
- package/CapAskAira/RuleSummarizationBot/index.js +179 -239
- package/CapAskAira/RuleSummarizationBot/messages.js +30 -26
- package/CapAskAira/RuleSummarizationBot/reducer.js +47 -59
- package/CapAskAira/RuleSummarizationBot/saga.js +154 -138
- package/CapAskAira/RuleSummarizationBot/selector.js +12 -15
- package/CapAskAira/RuleSummarizationBot/styles.module.css +85 -0
- package/CapAskAira/RuleSummarizationBot/styles.module.scss.js +22 -0
- package/CapAskAira/RuleSummarizationBot/styles.scss +8 -8
- package/CapAskAira/UtilComponents/AiraContainer.js +99 -109
- package/CapAskAira/UtilComponents/AiraTooltip.js +12 -19
- package/CapAskAira/UtilComponents/ErrorBar.js +23 -25
- package/CapAskAira/UtilComponents/Icons.js +45 -52
- package/CapAskAira/UtilComponents/InputBox.js +53 -44
- package/CapAskAira/UtilComponents/MultiLineInpuxBox.js +85 -116
- package/CapAskAira/UtilComponents/Notification.js +5 -19
- package/CapAskAira/UtilComponents/Popup.js +113 -136
- package/CapAskAira/UtilComponents/SecondaryButton.js +18 -40
- package/CapAskAira/UtilComponents/TitleBar.js +42 -41
- package/CapAskAira/UtilComponents/Tooltip.js +16 -17
- package/CapAskAira/constants.js +25 -18
- package/CapAskAira/hooks/useWebsocket.js +38 -51
- package/CapAskAira/index.js +25 -16
- package/CapAskAira/reducer.js +13 -11
- package/CapAskAira/rootStyles.js +4 -2
- package/CapAskAira/selector.js +6 -3
- package/CapAskAira/styles.module.css +238 -0
- package/CapAskAira/styles.module.scss.js +39 -0
- package/CapAskAira/styles.scss +4 -4
- package/CapAskAira/util.js +44 -43
- package/CapBanner/index.js +22 -34
- package/CapBanner/styles.module.css +34 -0
- package/CapBanner/styles.module.scss.js +9 -0
- package/CapBanner/styles.scss +1 -1
- package/CapBlock/index.js +50 -62
- package/CapBlock/styles.module.css +41 -0
- package/CapBlock/styles.module.scss.js +8 -0
- package/CapBlock/styles.scss +1 -1
- package/CapBorderedBox/index.js +29 -34
- package/CapButton/index.js +100 -135
- package/CapButton/styles.module.css +207 -0
- package/CapButton/styles.module.scss.js +13 -0
- package/CapButton/styles.scss +35 -35
- package/CapCSVFileUploader/index.js +113 -123
- package/CapCSVFileUploader/styles.module.css +73 -0
- package/CapCSVFileUploader/styles.module.scss.js +21 -0
- package/CapCSVFileUploader/styles.scss +11 -11
- package/CapCalendarDatePicker/index.js +11 -28
- package/CapCalendarDatePicker/styles.module.css +108 -0
- package/CapCalendarDatePicker/styles.module.scss.js +6 -0
- package/CapCalendarDatePicker/styles.scss +1 -1
- package/CapCard/index.js +10 -25
- package/CapCard/styles.module.css +21 -0
- package/CapCard/styles.module.scss.js +6 -0
- package/CapCard/styles.scss +1 -1
- package/CapCardBox/index.js +44 -54
- package/CapCardBox/styles.module.css +43 -0
- package/CapCardBox/styles.module.scss.js +12 -0
- package/CapCardBox/styles.scss +7 -7
- package/CapCarousel/index.js +78 -96
- package/CapCarousel/styles.module.css +25 -0
- package/CapCarousel/styles.module.scss.js +8 -0
- package/CapCheckbox/index.js +33 -47
- package/CapCheckbox/styles.module.css +44 -0
- package/CapCheckbox/styles.module.scss.js +12 -0
- package/CapCheckbox/styles.scss +5 -5
- package/CapCollapsibleLeftNavigation/constants.js +30 -14
- package/CapCollapsibleLeftNavigation/index.js +23 -7
- package/CapCollapsibleLeftNavigation/reducer.js +15 -33
- package/CapCollapsibleLeftNavigation/saga.js +23 -46
- package/CapCollapsibleNavbar/constants.js +40 -19
- package/CapCollapsibleNavbar/index.js +575 -619
- package/CapCollapsibleNavbar/styles.css +296 -0
- package/CapCollapsibleNavbar/styles.scss +75 -75
- package/CapColorPicker/index.js +26 -28
- package/CapColorPicker/styles.module.css +23 -0
- package/CapColorPicker/styles.module.scss.js +7 -0
- package/CapColorPicker/styles.scss +2 -2
- package/CapColoredTag/index.js +42 -56
- package/CapColoredTag/styles.module.css +27 -0
- package/CapColoredTag/styles.module.scss.js +10 -0
- package/CapColoredTag/styles.scss +2 -2
- package/CapColumn/index.js +13 -24
- package/CapColumn/styles.module.css +11 -0
- package/CapColumn/styles.module.scss.js +6 -0
- package/CapColumn/styles.scss +1 -1
- package/CapCondition/ConditionCustomField.js +125 -146
- package/CapCondition/ConditionDate.js +181 -268
- package/CapCondition/ConditionMultiSelect.js +19 -17
- package/CapCondition/ConditionMultiSelectTree.js +213 -259
- package/CapCondition/ConditionNumber.js +105 -171
- package/CapCondition/ConditionSKUUploader.js +55 -42
- package/CapCondition/ConditionStoreUploader.js +184 -217
- package/CapCondition/ConditionString.js +62 -88
- package/CapCondition/constants.js +124 -74
- package/CapCondition/helper.js +124 -143
- package/CapCondition/index.js +280 -281
- package/CapCondition/messages.js +48 -45
- package/CapCondition/style.js +35 -6
- package/CapCondition/styles.css +132 -0
- package/CapCondition/styles.scss +32 -32
- package/CapConditionPreview/constants.js +44 -27
- package/CapConditionPreview/index.js +271 -407
- package/CapConditionPreview/messages.js +113 -110
- package/CapConditionPreview/styles.module.css +56 -0
- package/CapConditionPreview/styles.module.scss.js +32 -0
- package/CapConditionPreview/styles.scss +3 -3
- package/CapCustomCard/CapCustomCard.js +273 -405
- package/CapCustomCard/CapCustomCardList.js +32 -41
- package/CapCustomCard/constants.js +18 -14
- package/CapCustomCard/index.js +6 -11
- package/CapCustomCard/messages.js +10 -6
- package/CapCustomCard/styles.module.css +293 -0
- package/CapCustomCard/styles.module.scss.js +37 -0
- package/CapCustomCard/styles.scss +56 -56
- package/CapCustomCarousel/index.js +92 -90
- package/CapCustomCarousel/styles.module.css +47 -0
- package/CapCustomCarousel/styles.module.scss.js +10 -0
- package/CapCustomCarousel/styles.scss +9 -9
- package/CapCustomCheckboxList/index.js +47 -78
- package/CapCustomCheckboxList/styles.module.css +38 -0
- package/CapCustomCheckboxList/styles.module.scss.js +12 -0
- package/CapCustomCheckboxList/styles.scss +5 -5
- package/CapCustomList/index.js +72 -90
- package/CapCustomList/styles.module.css +24 -0
- package/CapCustomList/styles.module.scss.js +9 -0
- package/CapCustomList/styles.scss +4 -4
- package/CapCustomSelect/index.js +245 -304
- package/CapCustomSelect/messages.js +12 -8
- package/CapCustomSelect/styles.module.css +105 -0
- package/CapCustomSelect/styles.module.scss.js +27 -0
- package/CapCustomSelect/styles.scss +6 -6
- package/CapDatePicker/index.js +106 -112
- package/CapDatePicker/styles.module.css +27 -0
- package/CapDatePicker/styles.module.scss.js +7 -0
- package/CapDatePicker/styles.scss +1 -1
- package/CapDateRangePicker/index.js +180 -168
- package/CapDateRangePicker/styles.module.css +35 -0
- package/CapDateRangePicker/styles.module.scss.js +8 -0
- package/CapDateRangePicker/styles.scss +1 -1
- package/CapDateTimePicker/index.js +129 -143
- package/CapDateTimePicker/messages.js +14 -10
- package/CapDateTimePicker/styles.module.css +61 -0
- package/CapDateTimePicker/styles.module.scss.js +7 -0
- package/CapDateTimeRangePicker/constants.js +10 -5
- package/CapDateTimeRangePicker/index.js +283 -356
- package/CapDateTimeRangePicker/messages.js +22 -18
- package/CapDateTimeRangePicker/styles.module.css +80 -0
- package/CapDateTimeRangePicker/styles.module.scss.js +12 -0
- package/CapDateTimeRangePicker/styles.scss +2 -2
- package/CapDivider/index.js +51 -58
- package/CapDivider/styles.css +17 -0
- package/CapDivider/styles.scss +10 -10
- package/CapDnDGraph/GraphBlockNode.js +107 -101
- package/CapDnDGraph/constants.js +80 -49
- package/CapDnDGraph/index.js +618 -731
- package/CapDnDGraph/reportingBlock.d.ts.map +1 -1
- package/CapDnDGraph/reportingBlock.js +65 -66
- package/CapDnDGraph/styles.css +74 -0
- package/CapDnDGraph/styles.scss +17 -17
- package/CapDnDGraph/utils.js +35 -83
- package/CapDndGraphSidebar/SideBarIcon.js +78 -75
- package/CapDndGraphSidebar/SidebarNodesRendered.js +40 -60
- package/CapDndGraphSidebar/index.js +39 -50
- package/CapDndGraphSidebar/styles.css +55 -0
- package/CapDndGraphSidebar/styles.scss +9 -9
- package/CapDragAndDrop/constants.js +13 -8
- package/CapDragAndDrop/index.js +69 -106
- package/CapDragAndDrop/styles.css +59 -0
- package/CapDragAndDrop/styles.scss +10 -10
- package/CapDragReorder/Card.js +62 -102
- package/CapDragReorder/index.js +66 -86
- package/CapDragReorder/messages.js +10 -6
- package/CapDragReorder/styles.css +77 -0
- package/CapDragReorder/styles.js +15 -12
- package/CapDragReorder/styles.scss +16 -16
- package/CapDrawer/index.js +39 -49
- package/CapDropdown/index.js +88 -117
- package/CapDropdown/styles.module.css +16 -0
- package/CapDropdown/styles.module.scss.js +6 -0
- package/CapDropdown/styles.scss +1 -1
- package/CapEmptyDivWithBorder/index.js +38 -54
- package/CapEmptyDivWithBorder/styles.module.css +14 -0
- package/CapEmptyDivWithBorder/styles.module.scss.js +6 -0
- package/CapEmptyDivWithBorder/styles.scss +1 -1
- package/CapError/index.js +44 -39
- package/CapError/styles.module.css +22 -0
- package/CapError/styles.module.scss.js +13 -0
- package/CapError/styles.scss +4 -4
- package/CapErrorBoundary/index.js +83 -91
- package/CapErrorBoundary/styles.module.css +27 -0
- package/CapErrorBoundary/styles.module.scss.js +10 -0
- package/CapErrorBoundary/styles.scss +3 -3
- package/CapErrorStateIllustration/index.js +51 -69
- package/CapErrorStateIllustration/styles.module.css +38 -0
- package/CapErrorStateIllustration/styles.module.scss.js +11 -0
- package/CapErrorStateIllustration/styles.scss +6 -6
- package/CapEventCalendar/CalendarCanvas/index.js +212 -327
- package/CapEventCalendar/CalendarCanvas/utils.js +40 -37
- package/CapEventCalendar/components/DayDropdown/index.js +14 -36
- package/CapEventCalendar/components/MonthHeader/index.js +9 -16
- package/CapEventCalendar/constants.js +40 -6
- package/CapEventCalendar/drawUtils.js +73 -113
- package/CapEventCalendar/index.js +145 -161
- package/CapEventCalendar/styles.css +112 -0
- package/CapEventCalendar/styles.scss +13 -13
- package/CapEventCalendar/utils.js +103 -148
- package/CapExpressionEditor/index.js +63 -65
- package/CapExpressionEditor/js/fixGrammar.js +23 -41
- package/CapExpressionEditor/js/grammar.js +1317 -654
- package/CapExpressionEditor/styles.module.css +182 -0
- package/CapExpressionEditor/styles.module.scss.js +8 -0
- package/CapExpressionEditor/styles.scss +27 -27
- package/CapForm/index.js +6 -23
- package/CapForm/styles.module.css +31 -0
- package/CapForm/styles.module.scss.js +6 -0
- package/CapForm/styles.scss +1 -1
- package/CapFormItem/index.js +15 -27
- package/CapFormItem/styles.module.css +32 -0
- package/CapFormItem/styles.module.scss.js +6 -0
- package/CapFormItem/styles.scss +1 -1
- package/CapGraph/constants.js +20 -19
- package/CapGraph/index.js +100 -120
- package/CapGraph/styles.module.css +8 -0
- package/CapGraph/styles.module.scss.js +4 -0
- package/CapHamburgerMenu/index.js +434 -487
- package/CapHamburgerMenu/styles.module.css +292 -0
- package/CapHamburgerMenu/styles.module.scss.js +36 -0
- package/CapHamburgerMenu/styles.scss +23 -23
- package/CapHeader/index.js +64 -103
- package/CapHeader/styles.module.css +21 -0
- package/CapHeader/styles.module.scss.js +9 -0
- package/CapHeader/styles.scss +1 -1
- package/CapHeading/index.js +43 -47
- package/CapHeading/styles.module.css +175 -0
- package/CapHeading/styles.module.scss.js +58 -0
- package/CapHeading/styles.scss +19 -19
- package/CapHierarchyComponent/index.js +29 -41
- package/CapIcon/index.js +180 -194
- package/CapIcon/styles.module.css +73 -0
- package/CapIcon/styles.module.scss.js +35 -0
- package/CapIcon/styles.scss +13 -13
- package/CapIllustration/index.js +66 -97
- package/CapIllustration/styles.module.css +31 -0
- package/CapIllustration/styles.module.scss.js +10 -0
- package/CapIllustration/styles.scss +1 -1
- package/CapImage/index.js +9 -23
- package/CapImage/styles.module.css +3 -0
- package/CapImage/styles.module.scss.js +6 -0
- package/CapImportMFEComponent/index.js +36 -53
- package/CapImportMFEComponent/messages.js +13 -10
- package/CapImportMFEComponent/styles.module.css +16 -0
- package/CapImportMFEComponent/styles.module.scss.js +7 -0
- package/CapImportMFEComponent/styles.scss +2 -2
- package/CapInfoNote/index.js +42 -56
- package/CapInfoNote/styles.module.css +20 -0
- package/CapInfoNote/styles.module.scss.js +8 -0
- package/CapInfoNote/styles.scss +3 -3
- package/CapInput/Number.js +12 -20
- package/CapInput/Search.js +13 -21
- package/CapInput/TextArea.js +13 -23
- package/CapInput/index.js +40 -43
- package/CapInput/styles.module.css +76 -0
- package/CapInput/styles.module.scss.js +7 -0
- package/CapInput/styles.scss +2 -2
- package/CapLabel/index.js +58 -64
- package/CapLabel/styles.module.css +209 -0
- package/CapLabel/styles.module.scss.js +107 -0
- package/CapLabel/styles.scss +36 -36
- package/CapLanguageProvider/actions.js +22 -25
- package/CapLanguageProvider/constants.js +18 -21
- package/CapLanguageProvider/index.js +119 -153
- package/CapLanguageProvider/reducer.js +8 -41
- package/CapLanguageProvider/selector.js +17 -36
- package/CapLevelGraphRenderer/Tooltip.js +32 -43
- package/CapLevelGraphRenderer/index.js +213 -320
- package/CapLevelGraphRenderer/styles.module.css +30 -0
- package/CapLevelGraphRenderer/styles.module.scss.js +10 -0
- package/CapLevelGraphRenderer/styles.scss +7 -7
- package/CapLink/index.js +32 -56
- package/CapLink/styles.module.css +74 -0
- package/CapLink/styles.module.scss.js +14 -0
- package/CapLink/styles.scss +14 -14
- package/CapList/index.js +13 -33
- package/CapList/styles.module.css +11 -0
- package/CapList/styles.module.scss.js +6 -0
- package/CapList/styles.scss +3 -3
- package/CapListLayout/index.js +14 -25
- package/CapListLayout/styles.module.css +13 -0
- package/CapListLayout/styles.module.scss.js +6 -0
- package/CapLogin/index.js +69 -79
- package/CapLogin/styles.module.css +39 -0
- package/CapLogin/styles.module.scss.js +12 -0
- package/CapMediaPreview/ImageRenderer.js +11 -18
- package/CapMediaPreview/MediaRenderer.js +29 -52
- package/CapMediaPreview/VideoPlayer.js +19 -32
- package/CapMediaPreview/constants.js +9 -7
- package/CapMediaPreview/index.js +138 -141
- package/CapMediaPreview/messages.js +14 -10
- package/CapMediaPreview/styles.css +135 -0
- package/CapMediaPreview/styles.scss +6 -6
- package/CapMenu/index.js +17 -35
- package/CapMenu/styles.module.scss.js +4 -0
- package/CapMobileDatePicker/index.js +54 -61
- package/CapMobileDatePicker/styles.css +19 -0
- package/CapMobileDatePicker/styles.scss +6 -6
- package/CapMobileDateRangePicker/ReactMobileDatePickerModule.d.ts +7 -0
- package/CapMobileDateRangePicker/ReactMobileDatePickerModule.d.ts.map +1 -0
- package/CapMobileDateRangePicker/ReactMobileDatePickerModule.js +4 -0
- package/CapMobileDateRangePicker/index.js +223 -260
- package/CapMobileDateRangePicker/styles.css +185 -0
- package/CapMobileDateRangePicker/styles.scss +62 -62
- package/CapModal/index.js +94 -116
- package/CapModal/messages.js +12 -13
- package/CapModal/styles.module.css +38 -0
- package/CapModal/styles.module.scss.js +11 -0
- package/CapModal/styles.scss +4 -4
- package/CapMultiSelect/index.js +54 -81
- package/CapMultiSelect/styles.module.css +10 -0
- package/CapMultiSelect/styles.module.scss.js +7 -0
- package/CapMultiSelect/styles.scss +2 -2
- package/CapMultiSelectDatePicker/index.js +63 -67
- package/CapMultiSelectDatePicker/messages.js +10 -6
- package/CapMultiSelectDatePicker/styles.module.css +51 -0
- package/CapMultiSelectDatePicker/styles.module.scss.js +20 -0
- package/CapMultiSelectDatePicker/styles.scss +5 -5
- package/CapMultiSelectWithTree/index.js +536 -598
- package/CapMultiSelectWithTree/styles.css +223 -0
- package/CapMultiSelectWithTree/styles.scss +46 -46
- package/CapMultiplePath/constants.js +16 -8
- package/CapMultiplePath/index.js +247 -405
- package/CapMultiplePath/styles.js +75 -34
- package/CapNavigation/constants.js +4 -1
- package/CapNavigation/index.js +311 -317
- package/CapNavigation/messages.js +12 -8
- package/CapNavigation/styles.module.css +19 -0
- package/CapNavigation/styles.module.scss.js +7 -0
- package/CapNavigation/styles.scss +2 -2
- package/CapNotification/index.js +39 -77
- package/CapNotification/styles.module.css +49 -0
- package/CapNotification/styles.module.scss.js +16 -0
- package/CapNotification/styles.scss +10 -10
- package/CapNotificationDropdown/CapNotificationDefaultCard.js +90 -118
- package/CapNotificationDropdown/constants.js +4 -1
- package/CapNotificationDropdown/index.js +67 -65
- package/CapNotificationDropdown/styles.module.css +140 -0
- package/CapNotificationDropdown/styles.module.scss.js +25 -0
- package/CapNotificationDropdown/styles.scss +25 -25
- package/CapPopover/index.js +56 -63
- package/CapPopover/styles.module.css +11 -0
- package/CapPopover/styles.module.scss.js +4 -0
- package/CapPopoverTree/index.js +147 -211
- package/CapPopoverTree/style.js +94 -13
- package/CapPopoverTree/styles.css +36 -0
- package/CapPopoverTree/styles.scss +10 -10
- package/CapProductSelection/constants.js +18 -8
- package/CapProductSelection/index.js +201 -248
- package/CapProductSelection/style.js +37 -8
- package/CapProductSelection/styles.scss +14 -14
- package/CapProgress/index.js +10 -24
- package/CapProgress/styles.module.css +36 -0
- package/CapProgress/styles.module.scss.js +6 -0
- package/CapProgress/styles.scss +9 -9
- package/CapRadio/index.js +33 -51
- package/CapRadio/styles.module.css +43 -0
- package/CapRadio/styles.module.scss.js +12 -0
- package/CapRadio/styles.scss +4 -4
- package/CapRadioButton/index.js +13 -22
- package/CapRadioButton/styles.module.css +21 -0
- package/CapRadioButton/styles.module.scss.js +6 -0
- package/CapRadioButton/styles.scss +2 -2
- package/CapRadioCard/index.js +102 -114
- package/CapRadioCard/styles.module.css +123 -0
- package/CapRadioCard/styles.module.scss.js +47 -0
- package/CapRadioCard/styles.scss +26 -26
- package/CapRadioGroup/index.js +18 -26
- package/CapRadioGroup/styles.module.css +18 -0
- package/CapRadioGroup/styles.module.scss.js +6 -0
- package/CapRadioGroup/styles.scss +3 -3
- package/CapReorderComponent/index.js +96 -97
- package/CapReorderComponent/styles.module.css +54 -0
- package/CapReorderComponent/styles.module.scss.js +13 -0
- package/CapReorderComponent/styles.scss +8 -8
- package/CapRoadMap/index.js +45 -50
- package/CapRoadMap/styles.module.css +56 -0
- package/CapRoadMap/styles.module.scss.js +8 -0
- package/CapRoadMap/styles.scss +12 -12
- package/CapRow/index.js +70 -73
- package/CapRow/styles.module.css +39 -0
- package/CapRow/styles.module.scss.js +14 -0
- package/CapRow/styles.scss +9 -9
- package/CapSKUUploader/index.js +118 -129
- package/CapSKUUploader/styles.module.css +29 -0
- package/CapSKUUploader/styles.module.scss.js +7 -0
- package/CapSKUUploader/styles.scss +6 -6
- package/CapSecondaryTopBar/index.js +92 -87
- package/CapSecondaryTopBar/styles.module.css +82 -0
- package/CapSecondaryTopBar/styles.module.scss.js +16 -0
- package/CapSecondaryTopBar/styles.scss +13 -13
- package/CapSelect/index.js +132 -152
- package/CapSelect/styles.module.css +51 -0
- package/CapSelect/styles.module.scss.js +9 -0
- package/CapSelect/styles.scss +11 -11
- package/CapSelect/utils.js +12 -13
- package/CapSelectFilter/index.js +82 -90
- package/CapSelectFilter/styles.module.css +68 -0
- package/CapSelectFilter/styles.module.scss.js +16 -0
- package/CapSelectFilter/styles.scss +10 -10
- package/CapShape/index.js +41 -36
- package/CapShape/styles.module.css +17 -0
- package/CapShape/styles.module.scss.js +8 -0
- package/CapShape/styles.scss +1 -1
- package/CapSideBar/MenuSearch.js +135 -172
- package/CapSideBar/_capSideBar.scss +21 -21
- package/CapSideBar/_menuSearch.module.css +131 -0
- package/CapSideBar/_menuSearch.module.scss.js +24 -0
- package/CapSideBar/_menuSearch.scss +11 -11
- package/CapSideBar/index.js +147 -165
- package/CapSideBar/styles.module.css +254 -0
- package/CapSideBar/styles.module.scss.js +28 -0
- package/CapSkeleton/index.js +8 -16
- package/CapSlideBox/index.js +84 -91
- package/CapSlideBox/styles.module.css +119 -0
- package/CapSlideBox/styles.module.scss.js +28 -0
- package/CapSlideBox/styles.scss +21 -21
- package/CapSlider/index.js +81 -101
- package/CapSlider/styles.module.css +41 -0
- package/CapSlider/styles.module.scss.js +8 -0
- package/CapSlider/styles.scss +12 -12
- package/CapSnackBar/index.js +35 -42
- package/CapSnackBar/styles.module.css +24 -0
- package/CapSnackBar/styles.module.scss.js +7 -0
- package/CapSnackBar/styles.scss +3 -3
- package/CapSomethingWentWrong/index.js +42 -49
- package/CapSomethingWentWrong/messages.js +13 -10
- package/CapSomethingWentWrong/styles.module.css +18 -0
- package/CapSomethingWentWrong/styles.module.scss.js +7 -0
- package/CapSomethingWentWrong/styles.scss +1 -1
- package/CapSpin/index.js +6 -16
- package/CapSplit/SplitAudienceInfo.js +38 -54
- package/CapSplit/constants.js +11 -9
- package/CapSplit/index.js +151 -173
- package/CapSplit/messages.js +22 -18
- package/CapSplit/styles.module.css +116 -0
- package/CapSplit/styles.module.scss.js +21 -0
- package/CapSplit/styles.scss +21 -21
- package/CapStaticTemplates/constants.js +6 -2
- package/CapStaticTemplates/index.js +228 -292
- package/CapStaticTemplates/style.js +216 -21
- package/CapStatisticCard/index.js +60 -81
- package/CapStatisticCard/styles.module.css +24 -0
- package/CapStatisticCard/styles.module.scss.js +13 -0
- package/CapStatisticCard/styles.scss +6 -6
- package/CapStatus/index.js +32 -39
- package/CapStatus/styles.module.css +16 -0
- package/CapStatus/styles.module.scss.js +6 -0
- package/CapStatus/styles.scss +1 -1
- package/CapSteps/index.js +31 -82
- package/CapSteps/styles.module.css +36 -0
- package/CapSteps/styles.module.scss.js +6 -0
- package/CapSteps/styles.scss +9 -9
- package/CapStepsAccordian/index.js +50 -96
- package/CapStepsAccordian/styles.module.css +49 -0
- package/CapStepsAccordian/styles.module.scss.js +10 -0
- package/CapStepsAccordian/styles.scss +8 -8
- package/CapSupportVideosWrapper/ResizablePIP.js +334 -318
- package/CapSupportVideosWrapper/constants.js +26 -12
- package/CapSupportVideosWrapper/index.js +108 -116
- package/CapSupportVideosWrapper/messages.js +15 -12
- package/CapSupportVideosWrapper/styles.css +146 -0
- package/CapSupportVideosWrapper/styles.module.scss.js +28 -0
- package/CapSupportVideosWrapper/styles.scss +21 -21
- package/CapSupportVideosWrapper/utils.js +4 -16
- package/CapSwitch/index.js +22 -27
- package/CapSwitch/styles.module.css +35 -0
- package/CapSwitch/styles.module.scss.js +6 -0
- package/CapSwitch/styles.scss +7 -7
- package/CapTab/index.js +59 -92
- package/CapTab/styles.module.css +20 -0
- package/CapTab/styles.module.scss.js +8 -0
- package/CapTab/styles.scss +4 -4
- package/CapTabV3/index.js +41 -56
- package/CapTabV3/styles.module.css +12 -0
- package/CapTabV3/styles.module.scss.js +6 -0
- package/CapTabV3/styles.scss +2 -2
- package/CapTable/index.js +106 -131
- package/CapTable/styles.module.css +49 -0
- package/CapTable/styles.module.scss.js +7 -0
- package/CapTable/styles.scss +2 -2
- package/CapTable/utils.js +44 -84
- package/CapTag/index.js +21 -27
- package/CapTag/styles.module.css +27 -0
- package/CapTag/styles.module.scss.js +13 -0
- package/CapTag/styles.scss +3 -3
- package/CapTagDropdown/index.js +135 -166
- package/CapTagDropdown/messages.js +14 -10
- package/CapTagDropdown/styles.module.css +57 -0
- package/CapTagDropdown/styles.module.scss.js +12 -0
- package/CapTagDropdown/styles.scss +7 -7
- package/CapTimePicker/index.js +75 -82
- package/CapTimePicker/styles.module.css +11 -0
- package/CapTimePicker/styles.module.scss.js +6 -0
- package/CapTimePicker/styles.scss +2 -2
- package/CapTimeline/CapTimelineCard.js +132 -118
- package/CapTimeline/CapTimelinePanesWrapper.js +37 -47
- package/CapTimeline/index.js +55 -65
- package/CapTimeline/styles.css +138 -0
- package/CapTimeline/styles.scss +43 -43
- package/CapTimelineNested/CapTimelineNestedCard.js +133 -110
- package/CapTimelineNested/CapTimelineNestedPanesWrapper.js +48 -56
- package/CapTimelineNested/NestedCard.js +56 -45
- package/CapTimelineNested/NestedCardParent.js +142 -115
- package/CapTimelineNested/_actionsAndTriggers.css +117 -0
- package/CapTimelineNested/_actionsAndTriggers.scss +9 -9
- package/CapTimelineNested/_capTimeline.scss +36 -36
- package/CapTimelineNested/_trigger.css +59 -0
- package/CapTimelineNested/assets/triggerComplete.svg.js +4 -0
- package/CapTimelineNested/assets/triggerOptional.svg.js +4 -0
- package/CapTimelineNested/assets/triggerPending.svg.js +4 -0
- package/CapTimelineNested/constants.js +12 -5
- package/CapTimelineNested/index.js +80 -82
- package/CapTimelineNested/styles.css +289 -0
- package/CapTooltip/index.js +73 -72
- package/CapTooltip/styles.module.css +27 -0
- package/CapTooltip/styles.module.scss.js +7 -0
- package/CapTooltip/styles.scss +3 -3
- package/CapTooltipWithInfo/index.js +21 -40
- package/CapTooltipWithInfo/styles.module.css +26 -0
- package/CapTooltipWithInfo/styles.module.scss.js +7 -0
- package/CapTooltipWithInfo/styles.scss +4 -4
- package/CapTopBar/CapOrgSelect.js +115 -131
- package/CapTopBar/CapOrgSelect.module.css +33 -0
- package/CapTopBar/CapOrgSelect.module.scss.js +10 -0
- package/CapTopBar/CapOrgSelect.scss +5 -5
- package/CapTopBar/CapOrgSelectUtils.js +98 -169
- package/CapTopBar/constants.js +4 -1
- package/CapTopBar/index.js +373 -377
- package/CapTopBar/styles.module.css +426 -0
- package/CapTopBar/styles.module.scss.js +81 -0
- package/CapTopBar/styles.scss +34 -34
- package/CapTopBar/themeConfig.js +17 -17
- package/CapTopBar/utils.js +47 -49
- package/CapTree/index.js +15 -60
- package/CapTree/styles.module.css +11 -0
- package/CapTree/styles.module.scss.js +8 -0
- package/CapTree/styles.scss +2 -2
- package/CapTreeSelect/index.js +71 -101
- package/CapTreeSelect/styles.module.css +49 -0
- package/CapTreeSelect/styles.module.scss.js +12 -0
- package/CapTreeSelect/styles.scss +11 -11
- package/CapTreeView/index.js +117 -160
- package/CapTreeView/styles.css +62 -0
- package/CapTreeView/styles.scss +15 -15
- package/CapTruncateList/index.js +60 -62
- package/CapTruncateList/messages.js +9 -6
- package/CapUnifiedSelect/CustomDropdown.js +189 -202
- package/CapUnifiedSelect/DropdownHeader.js +60 -35
- package/CapUnifiedSelect/components.js +58 -71
- package/CapUnifiedSelect/constants.js +24 -19
- package/CapUnifiedSelect/enhanceOptions.js +100 -123
- package/CapUnifiedSelect/index.js +288 -269
- package/CapUnifiedSelect/messages.js +24 -20
- package/CapUnifiedSelect/styles.module.css +651 -0
- package/CapUnifiedSelect/styles.module.scss.js +65 -0
- package/CapUnifiedSelect/styles.scss +79 -79
- package/CapUnifiedSelect/useCapUnifiedSelect.js +317 -310
- package/CapUnifiedSelect/useInfiniteScroll.js +98 -113
- package/CapUnifiedSelect/utils.js +95 -156
- package/CapUploader/index.js +13 -31
- package/CapUploader/styles.module.css +39 -0
- package/CapUploader/styles.module.scss.js +4 -0
- package/CapUserProfile/UserProfileTab.js +339 -316
- package/CapUserProfile/constants.js +108 -99
- package/CapUserProfile/index.js +115 -137
- package/CapUserProfile/messages.js +50 -46
- package/CapUserProfile/styles.module.css +77 -0
- package/CapUserProfile/styles.module.scss.js +19 -0
- package/CapUserProfile/styles.scss +18 -18
- package/CapUserProfile/utils.js +77 -174
- package/CapVerticalGroupTable/index.js +50 -61
- package/CapVerticalGroupTable/messages.js +9 -6
- package/CapVerticalGroupTable/style.js +11 -6
- package/CapVerticalGroupTable/styles.css +22 -0
- package/CapVerticalGroupTable/styles.scss +4 -4
- package/CapVirtualList/index.js +8 -16
- package/CapVirtualSelect/actions.js +13 -14
- package/CapVirtualSelect/constants.js +18 -12
- package/CapVirtualSelect/index.js +302 -316
- package/CapVirtualSelect/messages.js +10 -6
- package/CapVirtualSelect/reducer.js +9 -72
- package/CapVirtualSelect/selectors.js +13 -30
- package/CapVirtualSelect/styles.css +110 -0
- package/CapVirtualSelect/utils.js +7 -12
- package/ClearDataOnUnmountHoc/index.js +10 -10
- package/LocaleHoc/index.js +28 -29
- package/_virtual/_commonjsHelpers.js +8 -0
- package/_virtual/index.js +4 -0
- package/_virtual/moment-timezone.js +4 -0
- package/assets/HOCs/ComponentWithLabelHOC/index.js +113 -114
- package/assets/HOCs/ComponentWithLabelHOC/styles.module.css +143 -0
- package/assets/HOCs/ComponentWithLabelHOC/styles.module.scss.js +26 -0
- package/assets/HOCs/ComponentWithLabelHOC/styles.scss +7 -7
- package/assets/icons/add.js +17 -34
- package/assets/icons/back.js +9 -13
- package/assets/icons/calendar.js +16 -33
- package/assets/icons/capillary_logo.svg.js +4 -0
- package/assets/icons/capillary_logo_v2.png.js +4 -0
- package/assets/icons/check-filled.js +20 -17
- package/assets/icons/closeIcon.js +29 -38
- package/assets/icons/dropdownIcon.js +17 -32
- package/assets/icons/dynamic.js +16 -33
- package/assets/icons/index.js +36 -17
- package/assets/icons/info.js +29 -37
- package/assets/icons/logoBackground.js +14 -19
- package/assets/icons/message.js +20 -40
- package/assets/icons/more.js +5 -13
- package/assets/icons/outbound.js +16 -33
- package/assets/icons/searchIcon.js +16 -34
- package/assets/icons/selectedTick.js +17 -38
- package/assets/icons/survey.js +16 -34
- package/assets/icons/user.js +16 -33
- package/assets/icons/view.js +19 -36
- package/assets/images/EmptyStateIllustrationForPromos.png.js +4 -0
- package/assets/images/aiRA-icon.svg.js +4 -0
- package/assets/images/bootupPageCopilotIcon.svg.js +4 -0
- package/assets/images/cart.svg.js +4 -0
- package/assets/images/expiryErrorStateIllustration.svg.js +4 -0
- package/assets/images/featureUiNotEnabledIllustration.svg.js +4 -0
- package/assets/images/file-selector.svg.js +4 -0
- package/assets/images/group-3.svg.js +4 -0
- package/assets/images/offer.svg.js +4 -0
- package/assets/images/refreshErrorStateIllustration.svg.js +4 -0
- package/assets/images/repair-illustration.png.js +4 -0
- package/assets/images/sendIconDisabled.svg.js +4 -0
- package/assets/images/sendIconEnabled.svg.js +4 -0
- package/assets/svgIcons/Icons/Academy.js +23 -17
- package/assets/svgIcons/Icons/AcademyBackground.js +46 -45
- package/assets/svgIcons/Icons/Add.js +15 -14
- package/assets/svgIcons/Icons/AddMedia.js +21 -15
- package/assets/svgIcons/Icons/AddPhoto.js +21 -15
- package/assets/svgIcons/Icons/AddProfile.js +23 -17
- package/assets/svgIcons/Icons/AddUserBackground.js +50 -57
- package/assets/svgIcons/Icons/Ads.js +21 -15
- package/assets/svgIcons/Icons/AiraBotChat.js +243 -114
- package/assets/svgIcons/Icons/AiraBotDark.js +299 -159
- package/assets/svgIcons/Icons/AiraBotTitle.js +298 -148
- package/assets/svgIcons/Icons/AiraChatTitleBar.js +15 -46
- package/assets/svgIcons/Icons/AiraFAB.js +51 -44
- package/assets/svgIcons/Icons/AiraUserChat.js +53 -36
- package/assets/svgIcons/Icons/Alarm.js +21 -15
- package/assets/svgIcons/Icons/Alert.js +21 -15
- package/assets/svgIcons/Icons/AlertRed.js +49 -39
- package/assets/svgIcons/Icons/AlertWarning.js +24 -18
- package/assets/svgIcons/Icons/Android.js +15 -14
- package/assets/svgIcons/Icons/Api.js +31 -41
- package/assets/svgIcons/Icons/Apps.js +21 -15
- package/assets/svgIcons/Icons/ArrowDown.js +20 -14
- package/assets/svgIcons/Icons/ArrowFilled.js +46 -35
- package/assets/svgIcons/Icons/ArrowUp.js +26 -20
- package/assets/svgIcons/Icons/Attachment.js +21 -15
- package/assets/svgIcons/Icons/Attribution.js +20 -23
- package/assets/svgIcons/Icons/Back.js +21 -15
- package/assets/svgIcons/Icons/Badges.js +48 -37
- package/assets/svgIcons/Icons/Basket.js +21 -15
- package/assets/svgIcons/Icons/BehaviouralProfile.js +10 -43
- package/assets/svgIcons/Icons/Beta.js +8 -22
- package/assets/svgIcons/Icons/Bill.js +30 -39
- package/assets/svgIcons/Icons/BoldInfo.js +50 -40
- package/assets/svgIcons/Icons/Box.js +22 -16
- package/assets/svgIcons/Icons/Bulb.js +21 -15
- package/assets/svgIcons/Icons/Button.js +30 -39
- package/assets/svgIcons/Icons/Calendar.js +21 -15
- package/assets/svgIcons/Icons/CalendarActive.js +15 -14
- package/assets/svgIcons/Icons/Call.js +20 -14
- package/assets/svgIcons/Icons/CapillaryLogo.js +304 -345
- package/assets/svgIcons/Icons/Capture.js +21 -15
- package/assets/svgIcons/Icons/CarouselNormal.js +18 -18
- package/assets/svgIcons/Icons/CarouselSelected.js +18 -18
- package/assets/svgIcons/Icons/Carrot.js +15 -14
- package/assets/svgIcons/Icons/CartPromotion.js +21 -14
- package/assets/svgIcons/Icons/ChannelPriority.js +44 -43
- package/assets/svgIcons/Icons/Chart.js +21 -15
- package/assets/svgIcons/Icons/ChatBot.js +52 -41
- package/assets/svgIcons/Icons/ChatBubble.js +15 -14
- package/assets/svgIcons/Icons/CheckCircle.js +21 -15
- package/assets/svgIcons/Icons/CheckFilled.js +36 -29
- package/assets/svgIcons/Icons/CheckFilledDefault.js +15 -14
- package/assets/svgIcons/Icons/CheckFilledPlus.js +50 -49
- package/assets/svgIcons/Icons/ChevronDown.js +21 -15
- package/assets/svgIcons/Icons/ChevronLeft.js +21 -15
- package/assets/svgIcons/Icons/ChevronRight.js +21 -15
- package/assets/svgIcons/Icons/ChevronUp.js +21 -15
- package/assets/svgIcons/Icons/CircleDollar.js +23 -17
- package/assets/svgIcons/Icons/Click.js +28 -37
- package/assets/svgIcons/Icons/Clock.js +21 -15
- package/assets/svgIcons/Icons/Close.js +15 -14
- package/assets/svgIcons/Icons/Code.js +21 -15
- package/assets/svgIcons/Icons/Collapse2.js +22 -16
- package/assets/svgIcons/Icons/CollapseIcon.js +22 -16
- package/assets/svgIcons/Icons/Combine.js +26 -23
- package/assets/svgIcons/Icons/CommentMessage.js +21 -15
- package/assets/svgIcons/Icons/Communication.js +15 -14
- package/assets/svgIcons/Icons/Compare.js +22 -16
- package/assets/svgIcons/Icons/Connect.js +21 -15
- package/assets/svgIcons/Icons/Copy.js +21 -15
- package/assets/svgIcons/Icons/CriticalInfo.js +5 -18
- package/assets/svgIcons/Icons/CriticalWarning.js +24 -18
- package/assets/svgIcons/Icons/Data.js +21 -15
- package/assets/svgIcons/Icons/DefaultProfile.js +16 -15
- package/assets/svgIcons/Icons/Delay.js +21 -15
- package/assets/svgIcons/Icons/Delete.js +21 -15
- package/assets/svgIcons/Icons/Desktop.js +28 -37
- package/assets/svgIcons/Icons/Diamond.js +22 -16
- package/assets/svgIcons/Icons/DisLike.js +5 -16
- package/assets/svgIcons/Icons/DisneyHotstar.js +40 -40
- package/assets/svgIcons/Icons/Documentation.js +21 -15
- package/assets/svgIcons/Icons/Dollar.js +21 -15
- package/assets/svgIcons/Icons/DollarBackground.js +50 -57
- package/assets/svgIcons/Icons/Downgrade.js +15 -14
- package/assets/svgIcons/Icons/Download.js +21 -15
- package/assets/svgIcons/Icons/DraftFailed.js +43 -29
- package/assets/svgIcons/Icons/DraftPartiallyFailed.js +43 -29
- package/assets/svgIcons/Icons/Drag.js +21 -15
- package/assets/svgIcons/Icons/Draggable.js +22 -16
- package/assets/svgIcons/Icons/Earth.js +22 -16
- package/assets/svgIcons/Icons/Edit.js +21 -15
- package/assets/svgIcons/Icons/Email.js +9 -35
- package/assets/svgIcons/Icons/EmailFilled.js +42 -57
- package/assets/svgIcons/Icons/EnagementSplit.js +26 -23
- package/assets/svgIcons/Icons/End.js +25 -22
- package/assets/svgIcons/Icons/Enter.js +5 -16
- package/assets/svgIcons/Icons/Entry.js +26 -23
- package/assets/svgIcons/Icons/Error.js +28 -37
- package/assets/svgIcons/Icons/ErrorDot.js +16 -19
- package/assets/svgIcons/Icons/ErrorIndicator.js +40 -50
- package/assets/svgIcons/Icons/Exclude.js +50 -40
- package/assets/svgIcons/Icons/Exit.js +25 -22
- package/assets/svgIcons/Icons/ExitTrigger.js +11 -52
- package/assets/svgIcons/Icons/ExitTriggerFilled.js +11 -52
- package/assets/svgIcons/Icons/Expand2.js +22 -16
- package/assets/svgIcons/Icons/ExpandIcon.js +22 -16
- package/assets/svgIcons/Icons/Expander.js +22 -16
- package/assets/svgIcons/Icons/Extension.js +21 -15
- package/assets/svgIcons/Icons/Eye.js +21 -15
- package/assets/svgIcons/Icons/Facebook.js +28 -37
- package/assets/svgIcons/Icons/FacebookFilled.js +31 -23
- package/assets/svgIcons/Icons/FacebookReach.js +16 -33
- package/assets/svgIcons/Icons/File.js +21 -15
- package/assets/svgIcons/Icons/FileUpload.js +60 -50
- package/assets/svgIcons/Icons/Filled.js +23 -17
- package/assets/svgIcons/Icons/FilledDisLike.js +5 -16
- package/assets/svgIcons/Icons/FilledLike.js +5 -14
- package/assets/svgIcons/Icons/Filter.js +21 -15
- package/assets/svgIcons/Icons/Folder.js +28 -38
- package/assets/svgIcons/Icons/Footwear.js +22 -16
- package/assets/svgIcons/Icons/Forward.js +23 -17
- package/assets/svgIcons/Icons/Ftp.js +19 -18
- package/assets/svgIcons/Icons/FtpConnector.js +29 -17
- package/assets/svgIcons/Icons/Funnel.js +21 -15
- package/assets/svgIcons/Icons/Gallery.js +21 -15
- package/assets/svgIcons/Icons/GalleryIcon.js +5 -14
- package/assets/svgIcons/Icons/Gender.js +22 -16
- package/assets/svgIcons/Icons/Giftvoucher.js +23 -17
- package/assets/svgIcons/Icons/GoogleAd.js +40 -34
- package/assets/svgIcons/Icons/Graph.js +21 -15
- package/assets/svgIcons/Icons/Greetings.js +37 -37
- package/assets/svgIcons/Icons/Group.js +30 -39
- package/assets/svgIcons/Icons/GroupChat.js +21 -15
- package/assets/svgIcons/Icons/Groups.js +21 -15
- package/assets/svgIcons/Icons/GrowthGraph.js +21 -15
- package/assets/svgIcons/Icons/HeadphoneBackground.js +46 -45
- package/assets/svgIcons/Icons/Headphones.js +23 -17
- package/assets/svgIcons/Icons/Heart.js +15 -14
- package/assets/svgIcons/Icons/HeartPlus.js +26 -19
- package/assets/svgIcons/Icons/Help.js +24 -26
- package/assets/svgIcons/Icons/Home.js +23 -17
- package/assets/svgIcons/Icons/IaMascot.js +272 -134
- package/assets/svgIcons/Icons/Image.js +15 -14
- package/assets/svgIcons/Icons/ImageMessageNormal.js +22 -16
- package/assets/svgIcons/Icons/ImageMessageSelected.js +22 -16
- package/assets/svgIcons/Icons/InApp.js +54 -41
- package/assets/svgIcons/Icons/InProgress.js +27 -23
- package/assets/svgIcons/Icons/Info.js +21 -15
- package/assets/svgIcons/Icons/InfoWarning.js +9 -40
- package/assets/svgIcons/Icons/InfoWithError.js +51 -46
- package/assets/svgIcons/Icons/Integrations.js +52 -46
- package/assets/svgIcons/Icons/Intersect.js +24 -22
- package/assets/svgIcons/Icons/Ios.js +15 -14
- package/assets/svgIcons/Icons/JavaScript.js +21 -15
- package/assets/svgIcons/Icons/JoinLink.js +24 -18
- package/assets/svgIcons/Icons/Journey.js +21 -15
- package/assets/svgIcons/Icons/Json.js +35 -23
- package/assets/svgIcons/Icons/JumpIcon.js +22 -16
- package/assets/svgIcons/Icons/Lab.js +21 -15
- package/assets/svgIcons/Icons/Language.js +22 -16
- package/assets/svgIcons/Icons/Launch.js +28 -36
- package/assets/svgIcons/Icons/Leaf.js +22 -16
- package/assets/svgIcons/Icons/Library.js +22 -16
- package/assets/svgIcons/Icons/Lightning.js +15 -15
- package/assets/svgIcons/Icons/Like.js +5 -14
- package/assets/svgIcons/Icons/Line.js +21 -15
- package/assets/svgIcons/Icons/ListActive.js +15 -14
- package/assets/svgIcons/Icons/Location.js +15 -14
- package/assets/svgIcons/Icons/Lock.js +28 -36
- package/assets/svgIcons/Icons/Logout.js +15 -14
- package/assets/svgIcons/Icons/LoveFilled.js +38 -33
- package/assets/svgIcons/Icons/Loyalty.js +21 -15
- package/assets/svgIcons/Icons/LoyaltyBackground.js +50 -57
- package/assets/svgIcons/Icons/Mail.js +21 -15
- package/assets/svgIcons/Icons/Media.js +21 -15
- package/assets/svgIcons/Icons/Megaphone.js +15 -15
- package/assets/svgIcons/Icons/MegaphoneBackground.js +43 -56
- package/assets/svgIcons/Icons/MegaphoneFilled.js +21 -15
- package/assets/svgIcons/Icons/MemberCare.js +21 -15
- package/assets/svgIcons/Icons/Message.js +15 -15
- package/assets/svgIcons/Icons/MessageFilled.js +21 -15
- package/assets/svgIcons/Icons/MessageWithTransform.js +30 -39
- package/assets/svgIcons/Icons/Migrate.js +5 -16
- package/assets/svgIcons/Icons/Minimizer.js +22 -16
- package/assets/svgIcons/Icons/Minus.js +21 -15
- package/assets/svgIcons/Icons/Mobile.js +28 -36
- package/assets/svgIcons/Icons/Models.js +21 -15
- package/assets/svgIcons/Icons/MonitorBackground.js +49 -48
- package/assets/svgIcons/Icons/More.js +21 -15
- package/assets/svgIcons/Icons/MoreApplications.js +21 -15
- package/assets/svgIcons/Icons/Mpush.js +21 -15
- package/assets/svgIcons/Icons/MpushFilled.js +42 -57
- package/assets/svgIcons/Icons/MyLocation.js +25 -27
- package/assets/svgIcons/Icons/NotSent.js +28 -37
- package/assets/svgIcons/Icons/Note.js +24 -18
- package/assets/svgIcons/Icons/NoteTickMaterial.js +21 -15
- package/assets/svgIcons/Icons/NoteWithTick.js +21 -15
- package/assets/svgIcons/Icons/Notepad.js +21 -15
- package/assets/svgIcons/Icons/NotepadMaterial.js +18 -17
- package/assets/svgIcons/Icons/Notifications.js +21 -15
- package/assets/svgIcons/Icons/Nowhere.js +50 -40
- package/assets/svgIcons/Icons/Offer.js +21 -15
- package/assets/svgIcons/Icons/OfferWithColor.js +22 -16
- package/assets/svgIcons/Icons/OnlyIncentives.js +48 -37
- package/assets/svgIcons/Icons/OpenInNew.js +15 -14
- package/assets/svgIcons/Icons/OpenInNewLight.js +21 -15
- package/assets/svgIcons/Icons/Org.js +26 -23
- package/assets/svgIcons/Icons/OrgSettings.js +21 -15
- package/assets/svgIcons/Icons/PartnerProgram.js +5 -14
- package/assets/svgIcons/Icons/Pause.js +21 -15
- package/assets/svgIcons/Icons/Paused.js +24 -18
- package/assets/svgIcons/Icons/Performance.js +21 -15
- package/assets/svgIcons/Icons/Person.js +15 -14
- package/assets/svgIcons/Icons/PersonLove.js +30 -38
- package/assets/svgIcons/Icons/Personlaisation.js +21 -15
- package/assets/svgIcons/Icons/Play.js +21 -15
- package/assets/svgIcons/Icons/Plus.js +21 -15
- package/assets/svgIcons/Icons/Pointer.js +21 -15
- package/assets/svgIcons/Icons/Points.js +23 -17
- package/assets/svgIcons/Icons/PointsV1.js +22 -15
- package/assets/svgIcons/Icons/Premium.js +21 -15
- package/assets/svgIcons/Icons/PremiumColored.js +20 -28
- package/assets/svgIcons/Icons/ProductProfile.js +5 -18
- package/assets/svgIcons/Icons/Programs.js +21 -15
- package/assets/svgIcons/Icons/PromotionProfile.js +5 -14
- package/assets/svgIcons/Icons/RandomSplitBlock.js +20 -13
- package/assets/svgIcons/Icons/RbacLock.js +22 -16
- package/assets/svgIcons/Icons/Rcs.js +31 -41
- package/assets/svgIcons/Icons/Redirection.js +5 -15
- package/assets/svgIcons/Icons/Redis.js +46 -39
- package/assets/svgIcons/Icons/Referal.js +16 -34
- package/assets/svgIcons/Icons/Refresh.js +21 -15
- package/assets/svgIcons/Icons/RefreshCircle.js +24 -18
- package/assets/svgIcons/Icons/Reorder.js +28 -37
- package/assets/svgIcons/Icons/Reply.js +34 -29
- package/assets/svgIcons/Icons/Restore.js +22 -16
- package/assets/svgIcons/Icons/Retry.js +46 -36
- package/assets/svgIcons/Icons/Return.js +15 -14
- package/assets/svgIcons/Icons/Rewards.js +21 -15
- package/assets/svgIcons/Icons/RewardsOutline.js +23 -17
- package/assets/svgIcons/Icons/RichMessageNormal.js +22 -16
- package/assets/svgIcons/Icons/RichMessageSelected.js +22 -16
- package/assets/svgIcons/Icons/RichVideoNormal.js +33 -26
- package/assets/svgIcons/Icons/RichVideoSelected.js +33 -26
- package/assets/svgIcons/Icons/RightLeftArrow.js +22 -16
- package/assets/svgIcons/Icons/RightWrong.js +22 -16
- package/assets/svgIcons/Icons/Scenery.js +21 -15
- package/assets/svgIcons/Icons/Scope.js +30 -39
- package/assets/svgIcons/Icons/Search.js +15 -15
- package/assets/svgIcons/Icons/Send.js +21 -15
- package/assets/svgIcons/Icons/SendFilled.js +24 -21
- package/assets/svgIcons/Icons/Settings.js +21 -15
- package/assets/svgIcons/Icons/ShapeCopy.js +22 -16
- package/assets/svgIcons/Icons/Siren.js +28 -37
- package/assets/svgIcons/Icons/Sitemap.js +22 -16
- package/assets/svgIcons/Icons/SmallLink.js +25 -29
- package/assets/svgIcons/Icons/SmileyMessageNormal.js +26 -33
- package/assets/svgIcons/Icons/SmileyMessageSelected.js +22 -16
- package/assets/svgIcons/Icons/Sms.js +21 -15
- package/assets/svgIcons/Icons/SmsFilled.js +42 -58
- package/assets/svgIcons/Icons/Snapchat.js +41 -30
- package/assets/svgIcons/Icons/Sort.js +21 -15
- package/assets/svgIcons/Icons/SortUp.js +38 -40
- package/assets/svgIcons/Icons/Speaker.js +21 -15
- package/assets/svgIcons/Icons/Split.js +34 -24
- package/assets/svgIcons/Icons/SplitData.js +5 -16
- package/assets/svgIcons/Icons/Star.js +30 -39
- package/assets/svgIcons/Icons/Stop.js +21 -15
- package/assets/svgIcons/Icons/Store.js +22 -16
- package/assets/svgIcons/Icons/StoreTraffic.js +21 -15
- package/assets/svgIcons/Icons/SubtractLeft.js +27 -25
- package/assets/svgIcons/Icons/SubtractRight.js +18 -24
- package/assets/svgIcons/Icons/Sunset.js +24 -18
- package/assets/svgIcons/Icons/Survey.js +21 -15
- package/assets/svgIcons/Icons/SurveyBackground.js +51 -60
- package/assets/svgIcons/Icons/SurveyResponse.js +21 -15
- package/assets/svgIcons/Icons/Swap.js +22 -16
- package/assets/svgIcons/Icons/Sync.js +28 -37
- package/assets/svgIcons/Icons/Tablet.js +28 -37
- package/assets/svgIcons/Icons/Tag.js +15 -14
- package/assets/svgIcons/Icons/Target.js +22 -16
- package/assets/svgIcons/Icons/Task.js +15 -14
- package/assets/svgIcons/Icons/Test.js +20 -14
- package/assets/svgIcons/Icons/TestCheck.js +20 -14
- package/assets/svgIcons/Icons/TestComplete.js +8 -25
- package/assets/svgIcons/Icons/TestRunning.js +8 -23
- package/assets/svgIcons/Icons/TextMessageNormal.js +22 -16
- package/assets/svgIcons/Icons/TextMessageSelected.js +22 -16
- package/assets/svgIcons/Icons/ThreeStarDark.js +40 -32
- package/assets/svgIcons/Icons/ThreeStars.js +43 -43
- package/assets/svgIcons/Icons/Tick.js +15 -14
- package/assets/svgIcons/Icons/TickOutlined.js +24 -18
- package/assets/svgIcons/Icons/Tiktok.js +50 -38
- package/assets/svgIcons/Icons/TimerWarning.js +9 -40
- package/assets/svgIcons/Icons/Tooltip.js +24 -24
- package/assets/svgIcons/Icons/TopXChannel.js +28 -35
- package/assets/svgIcons/Icons/Trigger.js +22 -16
- package/assets/svgIcons/Icons/Trophy.js +11 -32
- package/assets/svgIcons/Icons/Unicode.js +28 -38
- package/assets/svgIcons/Icons/Union.js +18 -24
- package/assets/svgIcons/Icons/Upload.js +21 -15
- package/assets/svgIcons/Icons/User.js +21 -15
- package/assets/svgIcons/Icons/UserAttributechange.js +38 -41
- package/assets/svgIcons/Icons/UserCopy.js +39 -46
- package/assets/svgIcons/Icons/Viber.js +24 -30
- package/assets/svgIcons/Icons/Video.js +21 -15
- package/assets/svgIcons/Icons/View.js +15 -14
- package/assets/svgIcons/Icons/WaitEvent.js +53 -64
- package/assets/svgIcons/Icons/WalletBackground.js +52 -58
- package/assets/svgIcons/Icons/Warning.js +28 -37
- package/assets/svgIcons/Icons/WarningCircle.js +24 -18
- package/assets/svgIcons/Icons/WarningCircleFilled.js +33 -21
- package/assets/svgIcons/Icons/Webhook.js +20 -13
- package/assets/svgIcons/Icons/Wechat.js +21 -15
- package/assets/svgIcons/Icons/WechatFilled.js +42 -57
- package/assets/svgIcons/Icons/WechatOutline.js +30 -38
- package/assets/svgIcons/Icons/Whatsapp.js +21 -15
- package/assets/svgIcons/Icons/XEngage.js +35 -58
- package/assets/svgIcons/Icons/YetToStart.js +22 -16
- package/assets/svgIcons/Icons/Zalo.js +41 -33
- package/assets/svgIcons/Icons/abTesting.js +9 -36
- package/assets/svgIcons/Icons/percentCircle.js +7 -15
- package/assets/svgIcons/Icons/sixDots.js +9 -32
- package/assets/svgIcons/component.js +950 -626
- package/en.json +1 -296
- package/index.js +255 -129
- package/package.json +12 -12
- package/service/api.js +12 -22
- package/service/index.js +4 -1
- package/styled/index.js +148 -3
- package/styles/_variables.js +319 -197
- package/styles/datePickerCommon.css +77 -0
- package/styles/datePickerCommon.scss +32 -32
- package/translations/en.js +309 -306
- package/translations/index.js +6 -3
- package/translations/zh.js +43 -40
- package/utils/compileHandlebars.js +45 -55
- package/utils/dayjs.js +93 -290
- package/utils/fonts.js +58 -134
- package/utils/getCapThemeConfig.js +196 -250
- package/utils/index.js +13 -57
- package/utils/logDeprecationWarning.js +10 -6
- package/CapActionBar/tests/CapActionBar.mockData.js +0 -114
- package/CapActionBar/tests/CapActionBar.test.js +0 -353
- package/CapActionBar/types.js +0 -1
- package/CapAdvancedIcon/tests/index.test.js +0 -550
- package/CapAdvancedIcon/tests/mockData.js +0 -55
- package/CapAdvancedIcon/types.js +0 -1
- package/CapAlert/tests/CapAlert.test.js +0 -467
- package/CapAppNotEnabled/tests/CapAppNotEnabled.mockData.js +0 -10
- package/CapAppNotEnabled/tests/CapAppNotEnabled.test.js +0 -178
- package/CapAppNotEnabled/types.js +0 -1
- package/CapAskAira/AudienceFilterBot/tests/index.test.js +0 -1193
- package/CapAskAira/AudienceFilterBot/types.js +0 -1
- package/CapAskAira/CapAiMediaGeneration/test/api.test.js +0 -43
- package/CapAskAira/CapAiMediaGeneration/test/index.test.js +0 -204
- package/CapAskAira/CapAiMediaGeneration/test/reducer.test.js +0 -33
- package/CapAskAira/CapAiMediaGeneration/test/saga.test.js +0 -59
- package/CapAskAira/CapAiMediaGeneration/test/selector.test.js +0 -73
- package/CapAskAira/CapAiMediaGeneration/types.js +0 -1
- package/CapAskAira/ConfigurationBot/PromptAttachmentButton.js +0 -40
- package/CapAskAira/ConfigurationBot/test/PromptAttachmentButton.test.js +0 -96
- package/CapAskAira/ConfigurationBot/test/index.test.js +0 -357
- package/CapAskAira/ConfigurationBot/test/mockData.js +0 -49
- package/CapAskAira/ConfigurationBot/test/util.test.js +0 -32
- package/CapAskAira/ConfigurationBot/types.js +0 -1
- package/CapAskAira/ContentGenerationBot/tests/index.test.js +0 -158
- package/CapAskAira/ContentGenerationBot/tests/jsonAssembler.test.js +0 -96
- package/CapAskAira/ContentGenerationBot/types.js +0 -1
- package/CapAskAira/DocumentationBot/test/UtilComponents.test.js +0 -113
- package/CapAskAira/DocumentationBot/test/index.test.js +0 -153
- package/CapAskAira/DocumentationBot/types.js +0 -1
- package/CapAskAira/DocumentationChatBot/test/api.test.js +0 -49
- package/CapAskAira/DocumentationChatBot/test/index.test.js +0 -164
- package/CapAskAira/DocumentationChatBot/test/reducer.test.js +0 -28
- package/CapAskAira/DocumentationChatBot/test/saga.test.js +0 -59
- package/CapAskAira/DocumentationChatBot/test/selector.test.js +0 -73
- package/CapAskAira/DocumentationChatBot/types.js +0 -1
- package/CapAskAira/RuleGenerationBot/tests/actions.test.js +0 -40
- package/CapAskAira/RuleGenerationBot/tests/api.test.js +0 -95
- package/CapAskAira/RuleGenerationBot/tests/index.test.js +0 -136
- package/CapAskAira/RuleGenerationBot/tests/reducer.test.js +0 -137
- package/CapAskAira/RuleGenerationBot/tests/saga.test.js +0 -110
- package/CapAskAira/RuleGenerationBot/tests/selector.test.js +0 -82
- package/CapAskAira/RuleGenerationBot/types.js +0 -1
- package/CapAskAira/RuleSummarizationBot/tests/actions.test.js +0 -82
- package/CapAskAira/RuleSummarizationBot/tests/api.test.js +0 -147
- package/CapAskAira/RuleSummarizationBot/tests/index.test.js +0 -134
- package/CapAskAira/RuleSummarizationBot/tests/mockData.js +0 -54
- package/CapAskAira/RuleSummarizationBot/tests/reducer.test.js +0 -158
- package/CapAskAira/RuleSummarizationBot/tests/saga.test.js +0 -206
- package/CapAskAira/RuleSummarizationBot/tests/selector.test.js +0 -82
- package/CapAskAira/RuleSummarizationBot/types.js +0 -1
- package/CapAskAira/UtilComponents/tests/AiraContainer.test.js +0 -168
- package/CapAskAira/UtilComponents/tests/ErrorBar.test.js +0 -48
- package/CapAskAira/UtilComponents/tests/MultiLineInpuxBox.test.js +0 -158
- package/CapAskAira/UtilComponents/tests/Notification.test.js +0 -44
- package/CapAskAira/UtilComponents/tests/Popup.test.js +0 -176
- package/CapAskAira/UtilComponents/tests/Tooltip.test.js +0 -32
- package/CapAskAira/tests/CapAskAira.mockData.js +0 -25
- package/CapAskAira/tests/CapAskAira.test.js +0 -91
- package/CapAskAira/tests/util.test.js +0 -124
- package/CapBanner/tests/CapBanner.mockData.js +0 -54
- package/CapBanner/tests/CapBanner.test.js +0 -64
- package/CapBanner/types.js +0 -1
- package/CapBlock/tests/index.test.js +0 -279
- package/CapBlock/types.js +0 -1
- package/CapBorderedBox/tests/CapBorderedBox.mockData.js +0 -95
- package/CapBorderedBox/tests/index.test.js +0 -314
- package/CapBorderedBox/types.js +0 -1
- package/CapButton/tests/CapButton.mockData.js +0 -19
- package/CapButton/tests/CapButton.test.js +0 -664
- package/CapButton/tests/index.test.js +0 -201
- package/CapButton/types.js +0 -1
- package/CapCSVFileUploader/tests/CapCSVFileUploader.mockData.js +0 -99
- package/CapCSVFileUploader/tests/CapCSVFileUploader.test.js +0 -458
- package/CapCSVFileUploader/types.js +0 -1
- package/CapCalendarDatePicker/tests/index.test.js +0 -91
- package/CapCalendarDatePicker/types.js +0 -1
- package/CapCard/tests/CapCard.mockData.js +0 -88
- package/CapCard/tests/index.test.js +0 -772
- package/CapCard/types.js +0 -1
- package/CapCardBox/tests/CapCardBox.mockData.js +0 -101
- package/CapCardBox/tests/CapCardBox.test.js +0 -543
- package/CapCardBox/types.js +0 -1
- package/CapCarousel/tests/CapCarousel.mockData.js +0 -62
- package/CapCarousel/tests/CapCarousel.test.js +0 -743
- package/CapCarousel/types.js +0 -1
- package/CapCheckbox/tests/CapCheckbox.test.js +0 -1012
- package/CapCheckbox/tests/index.test.js +0 -143
- package/CapCheckbox/types.js +0 -1
- package/CapCollapsibleNavbar/tests/index.test.js +0 -54
- package/CapColorPicker/tests/CapColorPicker.mockData.js +0 -21
- package/CapColorPicker/tests/CapColorPicker.test.js +0 -344
- package/CapColorPicker/types.js +0 -1
- package/CapColoredTag/styles.js +0 -11
- package/CapColoredTag/tests/CapColoredTag.mockData.js +0 -74
- package/CapColoredTag/tests/CapColoredTag.test.js +0 -323
- package/CapColoredTag/types.js +0 -1
- package/CapColumn/tests/index.test.js +0 -92
- package/CapColumn/types.js +0 -1
- package/CapCondition/tests/ConditionCustomField.test.js +0 -333
- package/CapCondition/tests/ConditionDate.test.js +0 -1982
- package/CapCondition/tests/ConditionMultiSelect.test.js +0 -48
- package/CapCondition/tests/ConditionMultiSelectTree.test.js +0 -49
- package/CapCondition/tests/helper.test.js +0 -686
- package/CapCondition/tests/index.test.js +0 -1116
- package/CapConditionPreview/tests/index.test.js +0 -1501
- package/CapConditionPreview/tests/mockData.js +0 -42
- package/CapConditionPreview/types.js +0 -1
- package/CapCustomCard/tests/CapCustomCard.mockData.js +0 -309
- package/CapCustomCard/tests/CapCustomCard.test.js +0 -1079
- package/CapCustomCard/types.js +0 -1
- package/CapCustomCarousel/tests/index.test.js +0 -102
- package/CapCustomCarousel/types.js +0 -1
- package/CapCustomCheckboxList/tests/CapCustomCheckboxList.mockData.js +0 -139
- package/CapCustomCheckboxList/tests/CapCustomCheckboxList.test.js +0 -547
- package/CapCustomCheckboxList/types.js +0 -1
- package/CapCustomList/tests/CapCustomList.mockData.js +0 -62
- package/CapCustomList/tests/CapCustomList.test.js +0 -264
- package/CapCustomList/types.js +0 -1
- package/CapCustomSelect/tests/index.test.js +0 -509
- package/CapCustomSelect/types.js +0 -1
- package/CapDatePicker/tests/index.test.js +0 -421
- package/CapDatePicker/types.js +0 -1
- package/CapDateRangePicker/tests/CapDateRangePicker.compatibility.test.js +0 -292
- package/CapDateRangePicker/tests/CapDateRangePicker.mockData.js +0 -17
- package/CapDateRangePicker/tests/CapDateRangePicker.test.js +0 -287
- package/CapDateRangePicker/tests/CapDateRangePicker.testUtils.js +0 -26
- package/CapDateRangePicker/types.js +0 -1
- package/CapDateTimePicker/tests/index.test.js +0 -244
- package/CapDateTimePicker/types.js +0 -1
- package/CapDateTimeRangePicker/tests/CapDateTimeRangePicker.test.js +0 -405
- package/CapDateTimeRangePicker/tests/index.test.js +0 -1557
- package/CapDateTimeRangePicker/types.js +0 -1
- package/CapDivider/tests/CapDivider.mockData.js +0 -158
- package/CapDivider/tests/index.test.js +0 -618
- package/CapDivider/types.js +0 -1
- package/CapDnDGraph/mockdata.js +0 -3046
- package/CapDnDGraph/tests/utils.test.js +0 -72
- package/CapDndGraphSidebar/tests/index.test.js +0 -139
- package/CapDndGraphSidebar/tests/sideBarIcon.test.js +0 -77
- package/CapDragReorder/ItemTypes.js +0 -3
- package/CapDragReorder/tests/index.test.js +0 -47
- package/CapDrawer/tests/CapDrawer.mockData.js +0 -135
- package/CapDrawer/tests/CapDrawer.test.js +0 -313
- package/CapDrawer/types.js +0 -1
- package/CapDropdown/tests/CapDropdown.mockData.js +0 -89
- package/CapDropdown/tests/CapDropdown.test.js +0 -1134
- package/CapDropdown/tests/index.test.js +0 -154
- package/CapDropdown/types.js +0 -1
- package/CapEmptyDivWithBorder/tests/CapEmptyDivWithBorder.mockData.js +0 -92
- package/CapEmptyDivWithBorder/tests/CapEmptyDivWithBorder.test.js +0 -446
- package/CapEmptyDivWithBorder/types.js +0 -1
- package/CapError/tests/CapError.mockData.js +0 -45
- package/CapError/tests/index.test.js +0 -536
- package/CapError/types.js +0 -1
- package/CapErrorBoundary/tests/CapErrorBoundary.mockData.js +0 -46
- package/CapErrorBoundary/tests/CapErrorBoundary.test.js +0 -493
- package/CapErrorBoundary/types.js +0 -1
- package/CapErrorStateIllustration/tests/CapErrorStateIllustration.mockData.js +0 -58
- package/CapErrorStateIllustration/tests/CapErrorStateIllustration.test.js +0 -294
- package/CapErrorStateIllustration/types.js +0 -1
- package/CapEventCalendar/tests/CalendarCanvas.test.js +0 -235
- package/CapEventCalendar/tests/CalendarCanvasUtils.test.js +0 -137
- package/CapEventCalendar/tests/CapEventCalendar.test.js +0 -123
- package/CapEventCalendar/tests/utils.test.js +0 -14
- package/CapExpressionEditor/js/expressionEditor.js +0 -1505
- package/CapExpressionEditor/js/fixGrammar.test.js +0 -221
- package/CapExpressionEditor/js/pickers.js +0 -94
- package/CapExpressionEditor/js/pickers.test.js +0 -153
- package/CapExpressionEditor/tests/CapExpressionEditor.mockData.js +0 -24
- package/CapExpressionEditor/tests/CapExpressionEditor.test.js +0 -354
- package/CapExpressionEditor/types.js +0 -1
- package/CapForm/tests/CapForm.mockData.js +0 -94
- package/CapForm/tests/CapForm.test.js +0 -684
- package/CapForm/tests/index.test.js +0 -118
- package/CapForm/types.js +0 -1
- package/CapFormItem/tests/CapFormItem.mockData.js +0 -63
- package/CapFormItem/tests/index.test.js +0 -649
- package/CapFormItem/types.js +0 -1
- package/CapGraph/tests/CapGraph.mockData.js +0 -45
- package/CapGraph/tests/index.test.js +0 -119
- package/CapGraph/types.js +0 -1
- package/CapHamburgerMenu/tests/CapHamburgerMenu.mockData.js +0 -123
- package/CapHamburgerMenu/tests/index.test.js +0 -657
- package/CapHamburgerMenu/types.js +0 -1
- package/CapHeader/tests/index.test.js +0 -334
- package/CapHeader/types.js +0 -1
- package/CapHeading/tests/CapHeading.mockData.js +0 -72
- package/CapHeading/tests/CapHeading.test.js +0 -677
- package/CapHeading/tests/index.test.js +0 -657
- package/CapHeading/types.js +0 -1
- package/CapHierarchyComponent/tests/index.test.js +0 -84
- package/CapIcon/tests/index.test.js +0 -366
- package/CapIcon/types.js +0 -1
- package/CapIllustration/tests/CapIllustration.mockData.js +0 -74
- package/CapIllustration/tests/index.test.js +0 -244
- package/CapIllustration/types.js +0 -1
- package/CapImage/tests/CapImage.mockData.js +0 -54
- package/CapImage/tests/index.test.js +0 -234
- package/CapImage/types.js +0 -1
- package/CapImportMFEComponent/tests/CapImportMFEComponent.mockData.js +0 -61
- package/CapImportMFEComponent/tests/CapImportMFEComponent.test.js +0 -64
- package/CapImportMFEComponent/types.js +0 -1
- package/CapInfoNote/tests/CapInfoNote.mockData.js +0 -50
- package/CapInfoNote/tests/index.test.js +0 -379
- package/CapInfoNote/types.js +0 -1
- package/CapInput/messages.js +0 -25
- package/CapInput/tests/CapInput.mockData.js +0 -90
- package/CapInput/tests/CapInput.test.js +0 -796
- package/CapInput/tests/Number.test.js +0 -139
- package/CapInput/tests/Search.test.js +0 -133
- package/CapInput/tests/TextArea.test.js +0 -152
- package/CapInput/tests/index.test.js +0 -149
- package/CapInput/tests/messages.test.js +0 -33
- package/CapInput/types.js +0 -1
- package/CapLabel/tests/CapLabel.mockData.js +0 -74
- package/CapLabel/tests/CapLabel.test.js +0 -621
- package/CapLabel/tests/index.test.js +0 -194
- package/CapLabel/types.js +0 -1
- package/CapLanguageProvider/index.d.js +0 -1
- package/CapLanguageProvider/saga.js +0 -56
- package/CapLanguageProvider/tests/CapLanguageProvider.mockData.js +0 -52
- package/CapLanguageProvider/tests/CapLanguageProvider.test.js +0 -405
- package/CapLanguageProvider/tests/CapLanguageProvider.testHelpers.js +0 -61
- package/CapLanguageProvider/tests/CapLanguageProvider.useCases.test.js +0 -350
- package/CapLanguageProvider/tests/actions.test.js +0 -104
- package/CapLanguageProvider/tests/index.test.js +0 -164
- package/CapLanguageProvider/tests/locale.test.js +0 -20
- package/CapLanguageProvider/tests/reducer.test.js +0 -187
- package/CapLanguageProvider/tests/saga.test.js +0 -174
- package/CapLanguageProvider/tests/selector.test.js +0 -122
- package/CapLanguageProvider/types.js +0 -1
- package/CapLevelGraphRenderer/tests/CapLevelGraphRenderer.mockData.js +0 -182
- package/CapLevelGraphRenderer/tests/CapLevelGraphRenderer.test.js +0 -522
- package/CapLevelGraphRenderer/tests/Tooltip.test.js +0 -123
- package/CapLevelGraphRenderer/types.js +0 -1
- package/CapLink/tests/CapLink.mockData.js +0 -65
- package/CapLink/tests/index.test.js +0 -141
- package/CapLink/types.js +0 -1
- package/CapList/tests/CapList.mockData.js +0 -33
- package/CapList/tests/CapList.test.js +0 -657
- package/CapList/types.js +0 -1
- package/CapListLayout/tests/CapListLayout.mockData.js +0 -43
- package/CapListLayout/tests/CapListLayout.test.js +0 -50
- package/CapListLayout/types.js +0 -1
- package/CapLogin/tests/CapLogin.mockData.js +0 -55
- package/CapLogin/tests/CapLogin.test.js +0 -194
- package/CapLogin/types.js +0 -1
- package/CapMediaPreview/tests/index.test.js +0 -127
- package/CapMediaPreview/tests/mockData.js +0 -17
- package/CapMenu/tests/CapMenu.mockData.js +0 -132
- package/CapMenu/tests/CapMenu.test.js +0 -454
- package/CapMenu/tests/index.test.js +0 -171
- package/CapMenu/types.js +0 -1
- package/CapMobileDatePicker/tests/index.test.js +0 -11
- package/CapMobileDateRangePicker/ReactMobileDatePicker.js +0 -1045
- package/CapModal/tests/CapModal.mockData.js +0 -62
- package/CapModal/tests/index.test.js +0 -456
- package/CapModal/types.js +0 -1
- package/CapMultiSelect/tests/CapMultiSelect.mockData.js +0 -44
- package/CapMultiSelect/tests/index.test.js +0 -219
- package/CapMultiSelect/types.js +0 -1
- package/CapMultiSelectDatePicker/tests/index.test.js +0 -23
- package/CapMultiSelectDatePicker/types.js +0 -1
- package/CapMultiSelectWithTree/tests/index.test.js +0 -422
- package/CapMultiplePath/mockdata.js +0 -88
- package/CapMultiplePath/tests/index.test.js +0 -382
- package/CapNavigation/mockdata.js +0 -413
- package/CapNavigation/tests/CapNavigation.mockData.js +0 -96
- package/CapNavigation/tests/CapNavigation.test.js +0 -498
- package/CapNavigation/tests/index.test.js +0 -229
- package/CapNavigation/types.js +0 -1
- package/CapNotification/tests/CapNotification.mockData.js +0 -35
- package/CapNotification/tests/index.test.js +0 -137
- package/CapNotification/types.js +0 -1
- package/CapNotificationDropdown/tests/CapNotificationDropdown.mockData.js +0 -121
- package/CapNotificationDropdown/tests/CapNotificationDropdown.test.js +0 -344
- package/CapNotificationDropdown/types.js +0 -1
- package/CapPopover/tests/CapPopover.mockData.js +0 -35
- package/CapPopover/tests/index.test.js +0 -165
- package/CapPopover/types.js +0 -1
- package/CapPopoverTree/tests/index.test.js +0 -119
- package/CapPopoverTree/tests/mockData.js +0 -37
- package/CapProgress/tests/CapProgress.mockData.js +0 -121
- package/CapProgress/tests/index.test.js +0 -216
- package/CapProgress/types.js +0 -1
- package/CapRadio/tests/index.test.js +0 -159
- package/CapRadio/types.js +0 -1
- package/CapRadioButton/tests/CapRadioButton.mockData.js +0 -44
- package/CapRadioButton/tests/index.test.js +0 -494
- package/CapRadioButton/types.js +0 -1
- package/CapRadioCard/tests/CapRadioCard.mockData.js +0 -116
- package/CapRadioCard/tests/index.test.js +0 -148
- package/CapRadioCard/types.js +0 -1
- package/CapRadioGroup/tests/CapRadioGroup.mockData.js +0 -117
- package/CapRadioGroup/tests/index.test.js +0 -391
- package/CapRadioGroup/types.js +0 -1
- package/CapReorderComponent/tests/CapReorderComponent.mockData.js +0 -48
- package/CapReorderComponent/tests/index.test.js +0 -841
- package/CapReorderComponent/types.js +0 -1
- package/CapRoadMap/tests/CapRoadMap.mockData.js +0 -74
- package/CapRoadMap/tests/CapRoadMap.test.js +0 -159
- package/CapRoadMap/types.js +0 -1
- package/CapRow/tests/index.test.js +0 -383
- package/CapRow/types.js +0 -1
- package/CapSKUUploader/tests/CapSKUUploader.mockData.js +0 -106
- package/CapSKUUploader/tests/CapSKUUploader.test.js +0 -414
- package/CapSKUUploader/types.js +0 -1
- package/CapSecondaryTopBar/tests/CapSecondaryTopBar.mockData.js +0 -144
- package/CapSecondaryTopBar/tests/index.test.js +0 -148
- package/CapSecondaryTopBar/types.js +0 -1
- package/CapSelect/tests/CapSelect.mockData.js +0 -61
- package/CapSelect/tests/index.test.js +0 -447
- package/CapSelect/types.js +0 -1
- package/CapSelectFilter/tests/CapSelectFilter.mockData.js +0 -40
- package/CapSelectFilter/tests/index.test.js +0 -330
- package/CapSelectFilter/types.js +0 -1
- package/CapShape/tests/CapShape.mockData.js +0 -36
- package/CapShape/tests/index.test.js +0 -482
- package/CapShape/types.js +0 -1
- package/CapSideBar/tests/CapSideBar.mockData.js +0 -209
- package/CapSideBar/tests/MenuSearch.test.js +0 -304
- package/CapSideBar/tests/index.test.js +0 -324
- package/CapSideBar/types.js +0 -1
- package/CapSkeleton/tests/index.test.js +0 -128
- package/CapSkeleton/types.js +0 -1
- package/CapSlideBox/tests/CapSlideBox.mockData.js +0 -65
- package/CapSlideBox/tests/CapSlideBox.test.js +0 -494
- package/CapSlideBox/types.js +0 -1
- package/CapSlider/tests/CapSlider.mockData.js +0 -35
- package/CapSlider/tests/index.test.js +0 -428
- package/CapSlider/types.js +0 -1
- package/CapSnackBar/tests/CapSnackBar.mockData.js +0 -51
- package/CapSnackBar/tests/CapSnackBar.test.js +0 -364
- package/CapSnackBar/types.js +0 -1
- package/CapSomethingWentWrong/tests/CapSomethingWentWrong.mockData.js +0 -27
- package/CapSomethingWentWrong/tests/CapSomethingWentWrong.test.js +0 -87
- package/CapSomethingWentWrong/types.js +0 -1
- package/CapSpin/tests/index.test.js +0 -113
- package/CapSpin/types.js +0 -1
- package/CapSplit/tests/index.test.js +0 -80
- package/CapSplit/tests/mockData.js +0 -62
- package/CapSplit/types.js +0 -1
- package/CapStaticTemplates/tests/index.test.js +0 -119
- package/CapStaticTemplates/tests/mockData.js +0 -39
- package/CapStatisticCard/tests/CapStatisticCard.mockData.js +0 -26
- package/CapStatisticCard/tests/CapStatisticCard.test.js +0 -104
- package/CapStatisticCard/types.js +0 -1
- package/CapStatus/tests/CapStatus.mockData.js +0 -56
- package/CapStatus/tests/CapStatus.test.js +0 -298
- package/CapStatus/types.js +0 -1
- package/CapSteps/tests/CapSteps.mockData.js +0 -71
- package/CapSteps/tests/index.test.js +0 -157
- package/CapSteps/types.js +0 -1
- package/CapStepsAccordian/tests/CapStepsAccordian.mockData.js +0 -145
- package/CapStepsAccordian/tests/CapStepsAccordian.test.js +0 -587
- package/CapStepsAccordian/tests/index.test.js +0 -43
- package/CapStepsAccordian/types.js +0 -1
- package/CapSupportVideosWrapper/tests/ResizablePIP.test.js +0 -460
- package/CapSupportVideosWrapper/tests/index.test.js +0 -148
- package/CapSupportVideosWrapper/tests/utils.test.js +0 -40
- package/CapSupportVideosWrapper/types.js +0 -1
- package/CapSwitch/tests/index.test.js +0 -119
- package/CapSwitch/types.js +0 -1
- package/CapTab/tests/CapTab.mockData.js +0 -89
- package/CapTab/tests/CapTab.test.js +0 -1168
- package/CapTab/tests/index.test.js +0 -223
- package/CapTab/types.js +0 -1
- package/CapTabV3/tests/CapTabV3.mockData.js +0 -190
- package/CapTabV3/tests/CapTabV3.test.js +0 -586
- package/CapTabV3/tests/index.test.js +0 -29
- package/CapTabV3/types.js +0 -1
- package/CapTable/loadable.js +0 -11
- package/CapTable/tests/CapTable.mockData.js +0 -49
- package/CapTable/tests/CapTable.test.js +0 -622
- package/CapTable/tests/index.test.js +0 -331
- package/CapTable/tests/loadable.test.js +0 -35
- package/CapTable/types.js +0 -1
- package/CapTag/tests/CapTag.mockData.js +0 -22
- package/CapTag/tests/index.test.js +0 -67
- package/CapTag/types.js +0 -1
- package/CapTagDropdown/tests/index.test.js +0 -236
- package/CapTagDropdown/types.js +0 -1
- package/CapTimePicker/tests/CapTimePicker.mockData.js +0 -54
- package/CapTimePicker/tests/index.test.js +0 -133
- package/CapTimePicker/types.js +0 -1
- package/CapTimeline/constants.js +0 -2
- package/CapTimeline/tests/CapTimelineCard.test.js +0 -137
- package/CapTimeline/tests/CapTimelinePanesWrapper.test.js +0 -78
- package/CapTimeline/tests/index.test.js +0 -47
- package/CapTimelineNested/tests/CapTimelineCard.test.js +0 -132
- package/CapTimelineNested/tests/CapTimelinePanesWrapper.test.js +0 -52
- package/CapTimelineNested/tests/NestedCard.test.js +0 -56
- package/CapTimelineNested/tests/NestedCardParent.test.js +0 -65
- package/CapTimelineNested/tests/index.test.js +0 -64
- package/CapTimelineNested/tests/mockData.js +0 -137
- package/CapTooltip/tests/index.test.js +0 -287
- package/CapTooltip/types.js +0 -1
- package/CapTooltipWithInfo/tests/CapTooltipWithInfo.mockData.js +0 -76
- package/CapTooltipWithInfo/tests/index.test.js +0 -496
- package/CapTooltipWithInfo/types.js +0 -1
- package/CapTopBar/mockdata.js +0 -413
- package/CapTopBar/tests/index.test.js +0 -635
- package/CapTopBar/tests/utils.test.js +0 -183
- package/CapTopBar/types.js +0 -1
- package/CapTree/tests/CapTree.mockData.js +0 -81
- package/CapTree/tests/CapTree.test.js +0 -544
- package/CapTree/types.js +0 -1
- package/CapTreeSelect/tests/CapTreeSelect.mockData.js +0 -131
- package/CapTreeSelect/tests/index.test.js +0 -351
- package/CapTreeSelect/types.js +0 -1
- package/CapTreeView/tests/index.test.js +0 -72
- package/CapTruncateList/tests/CapTruncateList.mockData.js +0 -8
- package/CapTruncateList/tests/CapTruncateList.test.js +0 -250
- package/CapTruncateList/types.js +0 -1
- package/CapUnifiedSelect/testData.js +0 -159
- package/CapUnifiedSelect/tests/index.test.js +0 -2988
- package/CapUnifiedSelect/types.js +0 -1
- package/CapUploader/tests/CapUploader.mockData.js +0 -139
- package/CapUploader/tests/CapUploader.test.js +0 -449
- package/CapUploader/types.js +0 -1
- package/CapUserProfile/mockData.js +0 -492
- package/CapUserProfile/tests/CapUserProfile.mockData.js +0 -60
- package/CapUserProfile/tests/CapUserProfile.test.js +0 -421
- package/CapUserProfile/tests/UserProfileTab.test.js +0 -308
- package/CapUserProfile/tests/index.test.js +0 -122
- package/CapUserProfile/tests/utils.test.js +0 -362
- package/CapUserProfile/types.js +0 -1
- package/CapVerticalGroupTable/tests/index.test.js +0 -70
- package/CapVirtualList/tests/index.test.js +0 -94
- package/CapVirtualList/types.js +0 -1
- package/CapVirtualSelect/saga.js +0 -122
- package/CapVirtualSelect/tests/index.test.js +0 -211
- package/CapVirtualSelect/tests/mockData.js +0 -51
- package/CapVirtualSelect/tests/reducer.test.js +0 -266
- package/CapVirtualSelect/tests/saga.test.js +0 -256
- package/CapVirtualSelect/tests/selector.test.js +0 -73
- package/CapVirtualSelect/tests/utils.test.js +0 -42
- package/LocaleHoc/tests/index.test.js +0 -41
- package/assets/HOCs/ComponentWithLabelHOC/types.js +0 -1
- package/assets/HOCs/index.js +0 -1
- package/assets/svgIcons/Icons/index.js +0 -1
- package/assets/svgIcons/Icons/tests/icons.test.js +0 -30
- package/assets/svgIcons/index.d.js +0 -0
- package/assets/svgIcons/index.js +0 -324
- package/assets/svgIcons/tests/component.test.js +0 -252
- package/service/api.types.js +0 -1
- package/service/tests/api.test.js +0 -88
- package/styled/variables.js +0 -3
- package/styles.d.js +0 -0
- package/translations/en.d.js +0 -1
- package/utils/dayjs.types.js +0 -1
- package/utils/fonts.test.js +0 -84
- package/utils/styles.js +0 -21
- package/utils/tests/dayjs.test.js +0 -1341
package/CapDnDGraph/mockdata.js
DELETED
|
@@ -1,3046 +0,0 @@
|
|
|
1
|
-
export var mockdata = {
|
|
2
|
-
computeJoinGraphNodesDataInput: [{
|
|
3
|
-
width: 148,
|
|
4
|
-
height: 180,
|
|
5
|
-
id: 'C_Dx-bl4PV',
|
|
6
|
-
to: ['P9x2uEdq1d', '04keK6m-H3', 'X4pqXQKF7t'],
|
|
7
|
-
type: 'ENTRY_TRIGGER',
|
|
8
|
-
pathsInfo: {
|
|
9
|
-
P9x2uEdq1d: {
|
|
10
|
-
previewComponent: {
|
|
11
|
-
displayName: 'withStyles__StyledComponent',
|
|
12
|
-
attrs: [],
|
|
13
|
-
componentStyle: {
|
|
14
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
15
|
-
isStatic: false,
|
|
16
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
17
|
-
lastClassName: 'kWaAQH'
|
|
18
|
-
},
|
|
19
|
-
foldedComponentIds: [],
|
|
20
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
21
|
-
},
|
|
22
|
-
previewProps: {
|
|
23
|
-
header: 'entryTrigger',
|
|
24
|
-
name: 'Path 1',
|
|
25
|
-
condition: {
|
|
26
|
-
compoundExpression: {
|
|
27
|
-
operator: 'OR',
|
|
28
|
-
expressionGroups: [{
|
|
29
|
-
operator: 'AND',
|
|
30
|
-
simpleExpressions: [{
|
|
31
|
-
fact: {
|
|
32
|
-
factId: 'tjqr20',
|
|
33
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
34
|
-
params: []
|
|
35
|
-
},
|
|
36
|
-
functions: [],
|
|
37
|
-
operator: 'EQ',
|
|
38
|
-
operand: {
|
|
39
|
-
type: 'DOUBLE_VALUE',
|
|
40
|
-
longValue: null,
|
|
41
|
-
stringValue: null,
|
|
42
|
-
doubleValue: 50,
|
|
43
|
-
booleanValue: null,
|
|
44
|
-
longList: null,
|
|
45
|
-
stringList: null,
|
|
46
|
-
doubleList: null
|
|
47
|
-
},
|
|
48
|
-
isExcluded: false,
|
|
49
|
-
excluded: false
|
|
50
|
-
}]
|
|
51
|
-
}]
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
blockId: 'C_Dx-bl4PV',
|
|
55
|
-
events: [{
|
|
56
|
-
type: 'STANDARD',
|
|
57
|
-
name: 'CouponRedeem'
|
|
58
|
-
}, {
|
|
59
|
-
type: 'STANDARD',
|
|
60
|
-
name: 'customerAdded'
|
|
61
|
-
}, {
|
|
62
|
-
type: 'STANDARD',
|
|
63
|
-
name: 'transactionAdded'
|
|
64
|
-
}, {
|
|
65
|
-
type: 'BEHAVIOURAL',
|
|
66
|
-
name: 'reviewAdded'
|
|
67
|
-
}],
|
|
68
|
-
grammar: {
|
|
69
|
-
LqNBP7: 'Bill type of the transaction',
|
|
70
|
-
'32p234': 'Basket Sum with product',
|
|
71
|
-
'8arjDE': 'Date of the transaction',
|
|
72
|
-
'56de3w': 'Extended field in the customer',
|
|
73
|
-
'3UcyB2': 'Discount on the transaction',
|
|
74
|
-
sRc59p: 'Customer source',
|
|
75
|
-
o765rt: 'OrgUnit',
|
|
76
|
-
'5sLAB9': "Customer's slab name",
|
|
77
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
78
|
-
'5zpWFg': 'Transaction number',
|
|
79
|
-
'87ytre': 'Customer externalId',
|
|
80
|
-
sNb89U: 'Customer slab number',
|
|
81
|
-
'3er25q': 'Customer Custom fields filter',
|
|
82
|
-
'4cP21P': 'Customer points',
|
|
83
|
-
loY34k: 'Customer is Loyal',
|
|
84
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
85
|
-
tjqr20: 'Value of the transaction',
|
|
86
|
-
cy654u: 'Concept',
|
|
87
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
88
|
-
'9i58j1': 'Zone',
|
|
89
|
-
'23g26d': 'Extended fields in the transaction',
|
|
90
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
91
|
-
'17t80a': 'Store',
|
|
92
|
-
mFL59r: 'Gross amount of the transaction',
|
|
93
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
94
|
-
c654er: "Customer's segments"
|
|
95
|
-
},
|
|
96
|
-
couponsData: {
|
|
97
|
-
couponsData: {}
|
|
98
|
-
},
|
|
99
|
-
allAudienceGroups: {},
|
|
100
|
-
brand: [],
|
|
101
|
-
category: [],
|
|
102
|
-
productAttribute: [],
|
|
103
|
-
customerSegmentValues: [],
|
|
104
|
-
conceptValues: [],
|
|
105
|
-
zoneValues: [],
|
|
106
|
-
storeValues: [],
|
|
107
|
-
customFieldValues: []
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
'04keK6m-H3': {
|
|
111
|
-
previewComponent: {
|
|
112
|
-
displayName: 'withStyles__StyledComponent',
|
|
113
|
-
attrs: [],
|
|
114
|
-
componentStyle: {
|
|
115
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
116
|
-
isStatic: false,
|
|
117
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
118
|
-
lastClassName: 'kWaAQH'
|
|
119
|
-
},
|
|
120
|
-
foldedComponentIds: [],
|
|
121
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
122
|
-
},
|
|
123
|
-
previewProps: {
|
|
124
|
-
header: 'entryTrigger',
|
|
125
|
-
name: 'Path 2',
|
|
126
|
-
condition: {
|
|
127
|
-
compoundExpression: {
|
|
128
|
-
operator: 'OR',
|
|
129
|
-
expressionGroups: [{
|
|
130
|
-
operator: 'AND',
|
|
131
|
-
simpleExpressions: [{
|
|
132
|
-
fact: {
|
|
133
|
-
factId: 'tjqr20',
|
|
134
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
135
|
-
params: []
|
|
136
|
-
},
|
|
137
|
-
functions: [],
|
|
138
|
-
operator: 'EQ',
|
|
139
|
-
operand: {
|
|
140
|
-
type: 'DOUBLE_VALUE',
|
|
141
|
-
longValue: null,
|
|
142
|
-
stringValue: null,
|
|
143
|
-
doubleValue: 60,
|
|
144
|
-
booleanValue: null,
|
|
145
|
-
longList: null,
|
|
146
|
-
stringList: null,
|
|
147
|
-
doubleList: null
|
|
148
|
-
},
|
|
149
|
-
isExcluded: false,
|
|
150
|
-
excluded: false
|
|
151
|
-
}]
|
|
152
|
-
}]
|
|
153
|
-
}
|
|
154
|
-
},
|
|
155
|
-
blockId: 'C_Dx-bl4PV',
|
|
156
|
-
events: [{
|
|
157
|
-
type: 'STANDARD',
|
|
158
|
-
name: 'CouponRedeem'
|
|
159
|
-
}, {
|
|
160
|
-
type: 'STANDARD',
|
|
161
|
-
name: 'customerAdded'
|
|
162
|
-
}, {
|
|
163
|
-
type: 'STANDARD',
|
|
164
|
-
name: 'transactionAdded'
|
|
165
|
-
}, {
|
|
166
|
-
type: 'BEHAVIOURAL',
|
|
167
|
-
name: 'reviewAdded'
|
|
168
|
-
}],
|
|
169
|
-
grammar: {
|
|
170
|
-
LqNBP7: 'Bill type of the transaction',
|
|
171
|
-
'32p234': 'Basket Sum with product',
|
|
172
|
-
'8arjDE': 'Date of the transaction',
|
|
173
|
-
'56de3w': 'Extended field in the customer',
|
|
174
|
-
'3UcyB2': 'Discount on the transaction',
|
|
175
|
-
sRc59p: 'Customer source',
|
|
176
|
-
o765rt: 'OrgUnit',
|
|
177
|
-
'5sLAB9': "Customer's slab name",
|
|
178
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
179
|
-
'5zpWFg': 'Transaction number',
|
|
180
|
-
'87ytre': 'Customer externalId',
|
|
181
|
-
sNb89U: 'Customer slab number',
|
|
182
|
-
'3er25q': 'Customer Custom fields filter',
|
|
183
|
-
'4cP21P': 'Customer points',
|
|
184
|
-
loY34k: 'Customer is Loyal',
|
|
185
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
186
|
-
tjqr20: 'Value of the transaction',
|
|
187
|
-
cy654u: 'Concept',
|
|
188
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
189
|
-
'9i58j1': 'Zone',
|
|
190
|
-
'23g26d': 'Extended fields in the transaction',
|
|
191
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
192
|
-
'17t80a': 'Store',
|
|
193
|
-
mFL59r: 'Gross amount of the transaction',
|
|
194
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
195
|
-
c654er: "Customer's segments"
|
|
196
|
-
},
|
|
197
|
-
couponsData: {
|
|
198
|
-
couponsData: {}
|
|
199
|
-
},
|
|
200
|
-
allAudienceGroups: {},
|
|
201
|
-
brand: [],
|
|
202
|
-
category: [],
|
|
203
|
-
productAttribute: [],
|
|
204
|
-
customerSegmentValues: [],
|
|
205
|
-
conceptValues: [],
|
|
206
|
-
zoneValues: [],
|
|
207
|
-
storeValues: [],
|
|
208
|
-
customFieldValues: []
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
X4pqXQKF7t: {
|
|
212
|
-
previewComponent: {
|
|
213
|
-
displayName: 'withStyles__StyledComponent',
|
|
214
|
-
attrs: [],
|
|
215
|
-
componentStyle: {
|
|
216
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
217
|
-
isStatic: false,
|
|
218
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
219
|
-
lastClassName: 'kWaAQH'
|
|
220
|
-
},
|
|
221
|
-
foldedComponentIds: [],
|
|
222
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
223
|
-
},
|
|
224
|
-
previewProps: {
|
|
225
|
-
header: 'entryTrigger',
|
|
226
|
-
name: 'Path 3',
|
|
227
|
-
condition: {
|
|
228
|
-
compoundExpression: {
|
|
229
|
-
operator: 'OR',
|
|
230
|
-
expressionGroups: [{
|
|
231
|
-
operator: 'AND',
|
|
232
|
-
simpleExpressions: [{
|
|
233
|
-
fact: {
|
|
234
|
-
factId: 'tjqr20',
|
|
235
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
236
|
-
params: []
|
|
237
|
-
},
|
|
238
|
-
functions: [],
|
|
239
|
-
operator: 'EQ',
|
|
240
|
-
operand: {
|
|
241
|
-
type: 'DOUBLE_VALUE',
|
|
242
|
-
longValue: null,
|
|
243
|
-
stringValue: null,
|
|
244
|
-
doubleValue: 45,
|
|
245
|
-
booleanValue: null,
|
|
246
|
-
longList: null,
|
|
247
|
-
stringList: null,
|
|
248
|
-
doubleList: null
|
|
249
|
-
},
|
|
250
|
-
isExcluded: false,
|
|
251
|
-
excluded: false
|
|
252
|
-
}]
|
|
253
|
-
}]
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
blockId: 'C_Dx-bl4PV',
|
|
257
|
-
events: [{
|
|
258
|
-
type: 'STANDARD',
|
|
259
|
-
name: 'CouponRedeem'
|
|
260
|
-
}, {
|
|
261
|
-
type: 'STANDARD',
|
|
262
|
-
name: 'customerAdded'
|
|
263
|
-
}, {
|
|
264
|
-
type: 'STANDARD',
|
|
265
|
-
name: 'transactionAdded'
|
|
266
|
-
}, {
|
|
267
|
-
type: 'BEHAVIOURAL',
|
|
268
|
-
name: 'reviewAdded'
|
|
269
|
-
}],
|
|
270
|
-
grammar: {
|
|
271
|
-
LqNBP7: 'Bill type of the transaction',
|
|
272
|
-
'32p234': 'Basket Sum with product',
|
|
273
|
-
'8arjDE': 'Date of the transaction',
|
|
274
|
-
'56de3w': 'Extended field in the customer',
|
|
275
|
-
'3UcyB2': 'Discount on the transaction',
|
|
276
|
-
sRc59p: 'Customer source',
|
|
277
|
-
o765rt: 'OrgUnit',
|
|
278
|
-
'5sLAB9': "Customer's slab name",
|
|
279
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
280
|
-
'5zpWFg': 'Transaction number',
|
|
281
|
-
'87ytre': 'Customer externalId',
|
|
282
|
-
sNb89U: 'Customer slab number',
|
|
283
|
-
'3er25q': 'Customer Custom fields filter',
|
|
284
|
-
'4cP21P': 'Customer points',
|
|
285
|
-
loY34k: 'Customer is Loyal',
|
|
286
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
287
|
-
tjqr20: 'Value of the transaction',
|
|
288
|
-
cy654u: 'Concept',
|
|
289
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
290
|
-
'9i58j1': 'Zone',
|
|
291
|
-
'23g26d': 'Extended fields in the transaction',
|
|
292
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
293
|
-
'17t80a': 'Store',
|
|
294
|
-
mFL59r: 'Gross amount of the transaction',
|
|
295
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
296
|
-
c654er: "Customer's segments"
|
|
297
|
-
},
|
|
298
|
-
couponsData: {
|
|
299
|
-
couponsData: {}
|
|
300
|
-
},
|
|
301
|
-
allAudienceGroups: {},
|
|
302
|
-
brand: [],
|
|
303
|
-
category: [],
|
|
304
|
-
productAttribute: [],
|
|
305
|
-
customerSegmentValues: [],
|
|
306
|
-
conceptValues: [],
|
|
307
|
-
zoneValues: [],
|
|
308
|
-
storeValues: [],
|
|
309
|
-
customFieldValues: []
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
props: {
|
|
314
|
-
blockData: {
|
|
315
|
-
triggerType: 'USER_EVENT',
|
|
316
|
-
userEventTrigger: {
|
|
317
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
318
|
-
eventType: 'transactionAdded',
|
|
319
|
-
conditionalPaths: [{
|
|
320
|
-
path: {
|
|
321
|
-
pathName: null,
|
|
322
|
-
pathBlockId: 'P9x2uEdq1d'
|
|
323
|
-
},
|
|
324
|
-
condition: {
|
|
325
|
-
compoundExpression: {
|
|
326
|
-
operator: 'OR',
|
|
327
|
-
expressionGroups: [{
|
|
328
|
-
operator: 'AND',
|
|
329
|
-
simpleExpressions: [{
|
|
330
|
-
fact: {
|
|
331
|
-
factId: 'tjqr20',
|
|
332
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
333
|
-
params: []
|
|
334
|
-
},
|
|
335
|
-
functions: [],
|
|
336
|
-
operator: 'EQ',
|
|
337
|
-
operand: {
|
|
338
|
-
type: 'DOUBLE_VALUE',
|
|
339
|
-
longValue: null,
|
|
340
|
-
stringValue: null,
|
|
341
|
-
doubleValue: 50,
|
|
342
|
-
booleanValue: null,
|
|
343
|
-
longList: null,
|
|
344
|
-
stringList: null,
|
|
345
|
-
doubleList: null
|
|
346
|
-
},
|
|
347
|
-
isExcluded: false,
|
|
348
|
-
excluded: false
|
|
349
|
-
}]
|
|
350
|
-
}]
|
|
351
|
-
}
|
|
352
|
-
}
|
|
353
|
-
}, {
|
|
354
|
-
path: {
|
|
355
|
-
pathName: null,
|
|
356
|
-
pathBlockId: 'xA0_93gkpd'
|
|
357
|
-
},
|
|
358
|
-
condition: {
|
|
359
|
-
compoundExpression: {
|
|
360
|
-
operator: 'OR',
|
|
361
|
-
expressionGroups: [{
|
|
362
|
-
operator: 'AND',
|
|
363
|
-
simpleExpressions: [{
|
|
364
|
-
fact: {
|
|
365
|
-
factId: 'tjqr20',
|
|
366
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
367
|
-
params: []
|
|
368
|
-
},
|
|
369
|
-
functions: [],
|
|
370
|
-
operator: 'EQ',
|
|
371
|
-
operand: {
|
|
372
|
-
type: 'DOUBLE_VALUE',
|
|
373
|
-
longValue: null,
|
|
374
|
-
stringValue: null,
|
|
375
|
-
doubleValue: 60,
|
|
376
|
-
booleanValue: null,
|
|
377
|
-
longList: null,
|
|
378
|
-
stringList: null,
|
|
379
|
-
doubleList: null
|
|
380
|
-
},
|
|
381
|
-
isExcluded: false,
|
|
382
|
-
excluded: false
|
|
383
|
-
}]
|
|
384
|
-
}]
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
}, {
|
|
388
|
-
path: {
|
|
389
|
-
pathName: null,
|
|
390
|
-
pathBlockId: 'lcEwakzb6c'
|
|
391
|
-
},
|
|
392
|
-
condition: {
|
|
393
|
-
compoundExpression: {
|
|
394
|
-
operator: 'OR',
|
|
395
|
-
expressionGroups: [{
|
|
396
|
-
operator: 'AND',
|
|
397
|
-
simpleExpressions: [{
|
|
398
|
-
fact: {
|
|
399
|
-
factId: 'tjqr20',
|
|
400
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
401
|
-
params: []
|
|
402
|
-
},
|
|
403
|
-
functions: [],
|
|
404
|
-
operator: 'EQ',
|
|
405
|
-
operand: {
|
|
406
|
-
type: 'DOUBLE_VALUE',
|
|
407
|
-
longValue: null,
|
|
408
|
-
stringValue: null,
|
|
409
|
-
doubleValue: 45,
|
|
410
|
-
booleanValue: null,
|
|
411
|
-
longList: null,
|
|
412
|
-
stringList: null,
|
|
413
|
-
doubleList: null
|
|
414
|
-
},
|
|
415
|
-
isExcluded: false,
|
|
416
|
-
excluded: false
|
|
417
|
-
}]
|
|
418
|
-
}]
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
}]
|
|
422
|
-
},
|
|
423
|
-
audienceListTrigger: null
|
|
424
|
-
},
|
|
425
|
-
viewMode: false
|
|
426
|
-
},
|
|
427
|
-
isMultiPath: true,
|
|
428
|
-
placeholderToIndex: 1
|
|
429
|
-
}, {
|
|
430
|
-
id: 'P9x2uEdq1d',
|
|
431
|
-
name: 'TILL',
|
|
432
|
-
userEventTrigger: {
|
|
433
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
434
|
-
eventType: 'transactionAdded',
|
|
435
|
-
conditionalPaths: [{
|
|
436
|
-
path: {
|
|
437
|
-
pathName: null,
|
|
438
|
-
pathBlockId: 'aO5-eWUPMk'
|
|
439
|
-
},
|
|
440
|
-
condition: {
|
|
441
|
-
compoundExpression: {
|
|
442
|
-
operator: 'OR',
|
|
443
|
-
expressionGroups: [{
|
|
444
|
-
operator: 'AND',
|
|
445
|
-
simpleExpressions: [{
|
|
446
|
-
fact: {
|
|
447
|
-
factId: 'tjqr20',
|
|
448
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
449
|
-
params: []
|
|
450
|
-
},
|
|
451
|
-
functions: [],
|
|
452
|
-
operator: 'EQ',
|
|
453
|
-
operand: {
|
|
454
|
-
type: 'DOUBLE_VALUE',
|
|
455
|
-
longValue: null,
|
|
456
|
-
stringValue: null,
|
|
457
|
-
doubleValue: 50,
|
|
458
|
-
booleanValue: null,
|
|
459
|
-
longList: null,
|
|
460
|
-
stringList: null,
|
|
461
|
-
doubleList: null
|
|
462
|
-
},
|
|
463
|
-
isExcluded: false,
|
|
464
|
-
excluded: false
|
|
465
|
-
}]
|
|
466
|
-
}]
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
}]
|
|
470
|
-
},
|
|
471
|
-
waitDurationRO: {
|
|
472
|
-
duration: 1,
|
|
473
|
-
timeUnit: 'HOURS'
|
|
474
|
-
},
|
|
475
|
-
postWaitPath: {
|
|
476
|
-
pathName: 'Wait time expired path',
|
|
477
|
-
pathBlockId: 'GoPSnp68IE'
|
|
478
|
-
},
|
|
479
|
-
props: {
|
|
480
|
-
iconType: 'waitEvent',
|
|
481
|
-
color: '#23cccc',
|
|
482
|
-
blockType: 'WAIT_TILL_EVENT',
|
|
483
|
-
isConfigured: true,
|
|
484
|
-
viewMode: false,
|
|
485
|
-
id: 'P9x2uEdq1d',
|
|
486
|
-
isMultiPath: true,
|
|
487
|
-
nodePreview: {
|
|
488
|
-
key: null,
|
|
489
|
-
ref: null,
|
|
490
|
-
props: {
|
|
491
|
-
blockData: {
|
|
492
|
-
id: 'P9x2uEdq1d',
|
|
493
|
-
name: 'TILL',
|
|
494
|
-
userEventTrigger: {
|
|
495
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
496
|
-
eventType: 'transactionAdded',
|
|
497
|
-
conditionalPaths: [{
|
|
498
|
-
path: {
|
|
499
|
-
pathName: null,
|
|
500
|
-
pathBlockId: 'aO5-eWUPMk'
|
|
501
|
-
},
|
|
502
|
-
condition: {
|
|
503
|
-
compoundExpression: {
|
|
504
|
-
operator: 'OR',
|
|
505
|
-
expressionGroups: [{
|
|
506
|
-
operator: 'AND',
|
|
507
|
-
simpleExpressions: [{
|
|
508
|
-
fact: {
|
|
509
|
-
factId: 'tjqr20',
|
|
510
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
511
|
-
params: []
|
|
512
|
-
},
|
|
513
|
-
functions: [],
|
|
514
|
-
operator: 'EQ',
|
|
515
|
-
operand: {
|
|
516
|
-
type: 'DOUBLE_VALUE',
|
|
517
|
-
longValue: null,
|
|
518
|
-
stringValue: null,
|
|
519
|
-
doubleValue: 50,
|
|
520
|
-
booleanValue: null,
|
|
521
|
-
longList: null,
|
|
522
|
-
stringList: null,
|
|
523
|
-
doubleList: null
|
|
524
|
-
},
|
|
525
|
-
isExcluded: false,
|
|
526
|
-
excluded: false
|
|
527
|
-
}]
|
|
528
|
-
}]
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
}]
|
|
532
|
-
},
|
|
533
|
-
waitDurationRO: {
|
|
534
|
-
duration: 1,
|
|
535
|
-
timeUnit: 'HOURS'
|
|
536
|
-
},
|
|
537
|
-
postWaitPath: {
|
|
538
|
-
pathName: 'Wait time expired path',
|
|
539
|
-
pathBlockId: 'GoPSnp68IE'
|
|
540
|
-
},
|
|
541
|
-
blockType: 'WAIT_TILL_EVENT'
|
|
542
|
-
},
|
|
543
|
-
blockId: 'P9x2uEdq1d',
|
|
544
|
-
type: 'WAIT_TILL_EVENT'
|
|
545
|
-
},
|
|
546
|
-
_owner: null,
|
|
547
|
-
_store: {}
|
|
548
|
-
}
|
|
549
|
-
},
|
|
550
|
-
type: 'BLOCK_NODE',
|
|
551
|
-
to: ['CLN_1RQ9YY', '12pNxGPAma'],
|
|
552
|
-
pathsInfo: {
|
|
553
|
-
CLN_1RQ9YY: {
|
|
554
|
-
previewComponent: {
|
|
555
|
-
displayName: 'withStyles__StyledComponent',
|
|
556
|
-
attrs: [],
|
|
557
|
-
componentStyle: {
|
|
558
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
559
|
-
isStatic: false,
|
|
560
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
561
|
-
lastClassName: 'kWaAQH'
|
|
562
|
-
},
|
|
563
|
-
foldedComponentIds: [],
|
|
564
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
565
|
-
},
|
|
566
|
-
previewProps: {
|
|
567
|
-
header: 'waitTillEvent',
|
|
568
|
-
name: {
|
|
569
|
-
key: null,
|
|
570
|
-
ref: null,
|
|
571
|
-
props: {
|
|
572
|
-
id: 'adionaUIApp.common.eventPath',
|
|
573
|
-
defaultMessage: 'Event path',
|
|
574
|
-
values: {}
|
|
575
|
-
},
|
|
576
|
-
_owner: null,
|
|
577
|
-
_store: {}
|
|
578
|
-
},
|
|
579
|
-
condition: {
|
|
580
|
-
compoundExpression: {
|
|
581
|
-
operator: 'OR',
|
|
582
|
-
expressionGroups: [{
|
|
583
|
-
operator: 'AND',
|
|
584
|
-
simpleExpressions: [{
|
|
585
|
-
fact: {
|
|
586
|
-
factId: 'tjqr20',
|
|
587
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
588
|
-
params: []
|
|
589
|
-
},
|
|
590
|
-
functions: [],
|
|
591
|
-
operator: 'EQ',
|
|
592
|
-
operand: {
|
|
593
|
-
type: 'DOUBLE_VALUE',
|
|
594
|
-
longValue: null,
|
|
595
|
-
stringValue: null,
|
|
596
|
-
doubleValue: 50,
|
|
597
|
-
booleanValue: null,
|
|
598
|
-
longList: null,
|
|
599
|
-
stringList: null,
|
|
600
|
-
doubleList: null
|
|
601
|
-
},
|
|
602
|
-
isExcluded: false,
|
|
603
|
-
excluded: false
|
|
604
|
-
}]
|
|
605
|
-
}]
|
|
606
|
-
}
|
|
607
|
-
},
|
|
608
|
-
blockId: 'P9x2uEdq1d',
|
|
609
|
-
events: [{
|
|
610
|
-
type: 'STANDARD',
|
|
611
|
-
name: 'CouponRedeem'
|
|
612
|
-
}, {
|
|
613
|
-
type: 'STANDARD',
|
|
614
|
-
name: 'customerAdded'
|
|
615
|
-
}, {
|
|
616
|
-
type: 'STANDARD',
|
|
617
|
-
name: 'transactionAdded'
|
|
618
|
-
}, {
|
|
619
|
-
type: 'BEHAVIOURAL',
|
|
620
|
-
name: 'reviewAdded'
|
|
621
|
-
}],
|
|
622
|
-
grammar: {
|
|
623
|
-
LqNBP7: 'Bill type of the transaction',
|
|
624
|
-
'32p234': 'Basket Sum with product',
|
|
625
|
-
'8arjDE': 'Date of the transaction',
|
|
626
|
-
'56de3w': 'Extended field in the customer',
|
|
627
|
-
'3UcyB2': 'Discount on the transaction',
|
|
628
|
-
sRc59p: 'Customer source',
|
|
629
|
-
o765rt: 'OrgUnit',
|
|
630
|
-
'5sLAB9': "Customer's slab name",
|
|
631
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
632
|
-
'5zpWFg': 'Transaction number',
|
|
633
|
-
'87ytre': 'Customer externalId',
|
|
634
|
-
sNb89U: 'Customer slab number',
|
|
635
|
-
'3er25q': 'Customer Custom fields filter',
|
|
636
|
-
'4cP21P': 'Customer points',
|
|
637
|
-
loY34k: 'Customer is Loyal',
|
|
638
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
639
|
-
tjqr20: 'Value of the transaction',
|
|
640
|
-
cy654u: 'Concept',
|
|
641
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
642
|
-
'9i58j1': 'Zone',
|
|
643
|
-
'23g26d': 'Extended fields in the transaction',
|
|
644
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
645
|
-
'17t80a': 'Store',
|
|
646
|
-
mFL59r: 'Gross amount of the transaction',
|
|
647
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
648
|
-
c654er: "Customer's segments"
|
|
649
|
-
},
|
|
650
|
-
couponsData: {
|
|
651
|
-
couponsData: {}
|
|
652
|
-
},
|
|
653
|
-
allAudienceGroups: {},
|
|
654
|
-
brand: [],
|
|
655
|
-
category: [],
|
|
656
|
-
productAttribute: [],
|
|
657
|
-
customerSegmentValues: [],
|
|
658
|
-
conceptValues: [],
|
|
659
|
-
zoneValues: [],
|
|
660
|
-
storeValues: [],
|
|
661
|
-
customFieldValues: []
|
|
662
|
-
}
|
|
663
|
-
},
|
|
664
|
-
'12pNxGPAma': {
|
|
665
|
-
previewComponent: {
|
|
666
|
-
displayName: 'withStyles__StyledComponent',
|
|
667
|
-
attrs: [],
|
|
668
|
-
componentStyle: {
|
|
669
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
670
|
-
isStatic: false,
|
|
671
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
672
|
-
lastClassName: 'kWaAQH'
|
|
673
|
-
},
|
|
674
|
-
foldedComponentIds: [],
|
|
675
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
676
|
-
},
|
|
677
|
-
previewProps: {
|
|
678
|
-
header: 'waitExpiredPath',
|
|
679
|
-
name: 'Wait time expired path',
|
|
680
|
-
condition: {
|
|
681
|
-
duration: 1,
|
|
682
|
-
timeUnit: 'HOURS'
|
|
683
|
-
},
|
|
684
|
-
blockId: 'P9x2uEdq1d',
|
|
685
|
-
events: [{
|
|
686
|
-
type: 'STANDARD',
|
|
687
|
-
name: 'CouponRedeem'
|
|
688
|
-
}, {
|
|
689
|
-
type: 'STANDARD',
|
|
690
|
-
name: 'customerAdded'
|
|
691
|
-
}, {
|
|
692
|
-
type: 'STANDARD',
|
|
693
|
-
name: 'transactionAdded'
|
|
694
|
-
}, {
|
|
695
|
-
type: 'BEHAVIOURAL',
|
|
696
|
-
name: 'reviewAdded'
|
|
697
|
-
}],
|
|
698
|
-
grammar: {
|
|
699
|
-
LqNBP7: 'Bill type of the transaction',
|
|
700
|
-
'32p234': 'Basket Sum with product',
|
|
701
|
-
'8arjDE': 'Date of the transaction',
|
|
702
|
-
'56de3w': 'Extended field in the customer',
|
|
703
|
-
'3UcyB2': 'Discount on the transaction',
|
|
704
|
-
sRc59p: 'Customer source',
|
|
705
|
-
o765rt: 'OrgUnit',
|
|
706
|
-
'5sLAB9': "Customer's slab name",
|
|
707
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
708
|
-
'5zpWFg': 'Transaction number',
|
|
709
|
-
'87ytre': 'Customer externalId',
|
|
710
|
-
sNb89U: 'Customer slab number',
|
|
711
|
-
'3er25q': 'Customer Custom fields filter',
|
|
712
|
-
'4cP21P': 'Customer points',
|
|
713
|
-
loY34k: 'Customer is Loyal',
|
|
714
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
715
|
-
tjqr20: 'Value of the transaction',
|
|
716
|
-
cy654u: 'Concept',
|
|
717
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
718
|
-
'9i58j1': 'Zone',
|
|
719
|
-
'23g26d': 'Extended fields in the transaction',
|
|
720
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
721
|
-
'17t80a': 'Store',
|
|
722
|
-
mFL59r: 'Gross amount of the transaction',
|
|
723
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
724
|
-
c654er: "Customer's segments"
|
|
725
|
-
},
|
|
726
|
-
couponsData: {
|
|
727
|
-
couponsData: {}
|
|
728
|
-
},
|
|
729
|
-
allAudienceGroups: {},
|
|
730
|
-
brand: [],
|
|
731
|
-
category: [],
|
|
732
|
-
productAttribute: [],
|
|
733
|
-
customerSegmentValues: [],
|
|
734
|
-
conceptValues: [],
|
|
735
|
-
zoneValues: [],
|
|
736
|
-
storeValues: [],
|
|
737
|
-
customFieldValues: []
|
|
738
|
-
}
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
from: 'C_Dx-bl4PV'
|
|
742
|
-
}, {
|
|
743
|
-
id: 'CLN_1RQ9YY',
|
|
744
|
-
props: {
|
|
745
|
-
iconType: 'sms',
|
|
746
|
-
color: '#fec52e',
|
|
747
|
-
id: 'CLN_1RQ9YY',
|
|
748
|
-
blockType: 'SMS',
|
|
749
|
-
nodeTitle: {
|
|
750
|
-
key: null,
|
|
751
|
-
ref: null,
|
|
752
|
-
props: {
|
|
753
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
754
|
-
defaultMessage: 'SMS',
|
|
755
|
-
values: {}
|
|
756
|
-
},
|
|
757
|
-
_owner: null,
|
|
758
|
-
_store: {}
|
|
759
|
-
},
|
|
760
|
-
blockData: {
|
|
761
|
-
content: {
|
|
762
|
-
couponOffers: [],
|
|
763
|
-
pointsOffers: [],
|
|
764
|
-
body: 'SMS1'
|
|
765
|
-
},
|
|
766
|
-
deliverySettings: {
|
|
767
|
-
domainId: 3461,
|
|
768
|
-
gsmSenderId: 'TATADG'
|
|
769
|
-
},
|
|
770
|
-
name: 'SMS1'
|
|
771
|
-
},
|
|
772
|
-
isConfigured: true,
|
|
773
|
-
nodePreview: {
|
|
774
|
-
key: null,
|
|
775
|
-
ref: null,
|
|
776
|
-
props: {
|
|
777
|
-
type: 'SMS',
|
|
778
|
-
blockData: {
|
|
779
|
-
content: {
|
|
780
|
-
couponOffers: [],
|
|
781
|
-
pointsOffers: [],
|
|
782
|
-
body: 'SMS1'
|
|
783
|
-
},
|
|
784
|
-
deliverySettings: {
|
|
785
|
-
domainId: 3461,
|
|
786
|
-
gsmSenderId: 'TATADG'
|
|
787
|
-
},
|
|
788
|
-
name: 'SMS1'
|
|
789
|
-
},
|
|
790
|
-
blockId: 'CLN_1RQ9YY'
|
|
791
|
-
},
|
|
792
|
-
_owner: null,
|
|
793
|
-
_store: {}
|
|
794
|
-
},
|
|
795
|
-
joinBlockNameArray: ['JOIN1', 'JOIN2']
|
|
796
|
-
},
|
|
797
|
-
to: ['aO5-eWUPMk'],
|
|
798
|
-
from: 'P9x2uEdq1d',
|
|
799
|
-
type: 'BLOCK_NODE'
|
|
800
|
-
}, {
|
|
801
|
-
width: 42,
|
|
802
|
-
height: 42,
|
|
803
|
-
id: 'aO5-eWUPMk',
|
|
804
|
-
props: {
|
|
805
|
-
type: 'end',
|
|
806
|
-
style: {
|
|
807
|
-
color: '#47af46',
|
|
808
|
-
padding: '9px 0'
|
|
809
|
-
},
|
|
810
|
-
textLabel: {
|
|
811
|
-
type: {
|
|
812
|
-
displayName: 'CapLabel',
|
|
813
|
-
attrs: [],
|
|
814
|
-
componentStyle: {
|
|
815
|
-
rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
|
|
816
|
-
isStatic: false,
|
|
817
|
-
componentId: 'CapLabel-n7zsf5-0',
|
|
818
|
-
lastClassName: 'hcywYU'
|
|
819
|
-
},
|
|
820
|
-
foldedComponentIds: [],
|
|
821
|
-
styledComponentId: 'CapLabel-n7zsf5-0',
|
|
822
|
-
target: 'div',
|
|
823
|
-
propTypes: {},
|
|
824
|
-
CapLabelInline: {
|
|
825
|
-
displayName: 'CapLabel__CapLabelInline',
|
|
826
|
-
attrs: [],
|
|
827
|
-
componentStyle: {
|
|
828
|
-
rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
|
|
829
|
-
isStatic: false,
|
|
830
|
-
componentId: 'CapLabel__CapLabelInline-n7zsf5-1',
|
|
831
|
-
lastClassName: 'gBSzRM'
|
|
832
|
-
},
|
|
833
|
-
foldedComponentIds: [],
|
|
834
|
-
styledComponentId: 'CapLabel__CapLabelInline-n7zsf5-1',
|
|
835
|
-
target: 'span'
|
|
836
|
-
},
|
|
837
|
-
_foldedDefaultProps: {
|
|
838
|
-
type: 'label1'
|
|
839
|
-
}
|
|
840
|
-
},
|
|
841
|
-
key: null,
|
|
842
|
-
ref: null,
|
|
843
|
-
props: {
|
|
844
|
-
type: 'label2',
|
|
845
|
-
className: 'margin-l-2 margin-t-5',
|
|
846
|
-
children: {
|
|
847
|
-
key: null,
|
|
848
|
-
ref: null,
|
|
849
|
-
props: {
|
|
850
|
-
id: 'adionaUIApp.common.end',
|
|
851
|
-
defaultMessage: 'End',
|
|
852
|
-
values: {}
|
|
853
|
-
},
|
|
854
|
-
_owner: null,
|
|
855
|
-
_store: {}
|
|
856
|
-
}
|
|
857
|
-
},
|
|
858
|
-
_owner: null,
|
|
859
|
-
_store: {}
|
|
860
|
-
}
|
|
861
|
-
},
|
|
862
|
-
type: 'END_NODE',
|
|
863
|
-
from: 'CLN_1RQ9YY'
|
|
864
|
-
}, {
|
|
865
|
-
id: '12pNxGPAma',
|
|
866
|
-
props: {
|
|
867
|
-
iconType: 'join',
|
|
868
|
-
color: '#23cccc',
|
|
869
|
-
id: '12pNxGPAma',
|
|
870
|
-
blockType: 'JOIN',
|
|
871
|
-
isMultiPath: false,
|
|
872
|
-
nodeTitle: {
|
|
873
|
-
key: null,
|
|
874
|
-
ref: null,
|
|
875
|
-
props: {
|
|
876
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
|
|
877
|
-
defaultMessage: 'Join',
|
|
878
|
-
values: {}
|
|
879
|
-
},
|
|
880
|
-
_owner: null,
|
|
881
|
-
_store: {}
|
|
882
|
-
},
|
|
883
|
-
blockData: {
|
|
884
|
-
name: 'JOIN3',
|
|
885
|
-
nextBlock: {
|
|
886
|
-
pathBlockId: '04keK6m-H3',
|
|
887
|
-
pathName: 'SMS2'
|
|
888
|
-
}
|
|
889
|
-
},
|
|
890
|
-
isConfigured: true,
|
|
891
|
-
nodePreview: {
|
|
892
|
-
key: null,
|
|
893
|
-
ref: null,
|
|
894
|
-
props: {
|
|
895
|
-
type: 'JOIN',
|
|
896
|
-
flowControlBlockName: 'JOIN3',
|
|
897
|
-
joinedBlockName: 'SMS2'
|
|
898
|
-
},
|
|
899
|
-
_owner: null,
|
|
900
|
-
_store: {}
|
|
901
|
-
}
|
|
902
|
-
},
|
|
903
|
-
from: 'P9x2uEdq1d',
|
|
904
|
-
type: 'BLOCK_NODE'
|
|
905
|
-
}, {
|
|
906
|
-
id: '04keK6m-H3',
|
|
907
|
-
props: {
|
|
908
|
-
iconType: 'sms',
|
|
909
|
-
color: '#fec52e',
|
|
910
|
-
id: '04keK6m-H3',
|
|
911
|
-
blockType: 'SMS',
|
|
912
|
-
nodeTitle: {
|
|
913
|
-
key: null,
|
|
914
|
-
ref: null,
|
|
915
|
-
props: {
|
|
916
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
917
|
-
defaultMessage: 'SMS',
|
|
918
|
-
values: {}
|
|
919
|
-
},
|
|
920
|
-
_owner: null,
|
|
921
|
-
_store: {}
|
|
922
|
-
},
|
|
923
|
-
blockData: {
|
|
924
|
-
content: {
|
|
925
|
-
couponOffers: [],
|
|
926
|
-
pointsOffers: [],
|
|
927
|
-
body: 'SMS2'
|
|
928
|
-
},
|
|
929
|
-
deliverySettings: {
|
|
930
|
-
domainId: 3461,
|
|
931
|
-
gsmSenderId: 'TATADG'
|
|
932
|
-
},
|
|
933
|
-
name: 'SMS2'
|
|
934
|
-
},
|
|
935
|
-
isConfigured: true,
|
|
936
|
-
nodePreview: {
|
|
937
|
-
key: null,
|
|
938
|
-
ref: null,
|
|
939
|
-
props: {
|
|
940
|
-
type: 'SMS',
|
|
941
|
-
blockData: {
|
|
942
|
-
content: {
|
|
943
|
-
couponOffers: [],
|
|
944
|
-
pointsOffers: [],
|
|
945
|
-
body: 'SMS2'
|
|
946
|
-
},
|
|
947
|
-
deliverySettings: {
|
|
948
|
-
domainId: 3461,
|
|
949
|
-
gsmSenderId: 'TATADG'
|
|
950
|
-
},
|
|
951
|
-
name: 'SMS2'
|
|
952
|
-
},
|
|
953
|
-
blockId: '04keK6m-H3'
|
|
954
|
-
},
|
|
955
|
-
_owner: null,
|
|
956
|
-
_store: {}
|
|
957
|
-
},
|
|
958
|
-
joinBlockNameArray: ['JOIN3']
|
|
959
|
-
},
|
|
960
|
-
to: ['YsirnCRiSb'],
|
|
961
|
-
from: 'C_Dx-bl4PV',
|
|
962
|
-
type: 'BLOCK_NODE'
|
|
963
|
-
}, {
|
|
964
|
-
id: 'YsirnCRiSb',
|
|
965
|
-
props: {
|
|
966
|
-
iconType: 'join',
|
|
967
|
-
color: '#23cccc',
|
|
968
|
-
id: 'YsirnCRiSb',
|
|
969
|
-
blockType: 'JOIN',
|
|
970
|
-
isMultiPath: false,
|
|
971
|
-
nodeTitle: {
|
|
972
|
-
key: null,
|
|
973
|
-
ref: null,
|
|
974
|
-
props: {
|
|
975
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
|
|
976
|
-
defaultMessage: 'Join',
|
|
977
|
-
values: {}
|
|
978
|
-
},
|
|
979
|
-
_owner: null,
|
|
980
|
-
_store: {}
|
|
981
|
-
},
|
|
982
|
-
blockData: {
|
|
983
|
-
name: 'JOIN2',
|
|
984
|
-
nextBlock: {
|
|
985
|
-
pathBlockId: 'CLN_1RQ9YY',
|
|
986
|
-
pathName: 'SMS1'
|
|
987
|
-
}
|
|
988
|
-
},
|
|
989
|
-
isConfigured: true,
|
|
990
|
-
nodePreview: {
|
|
991
|
-
key: null,
|
|
992
|
-
ref: null,
|
|
993
|
-
props: {
|
|
994
|
-
type: 'JOIN',
|
|
995
|
-
flowControlBlockName: 'JOIN2',
|
|
996
|
-
joinedBlockName: 'SMS1'
|
|
997
|
-
},
|
|
998
|
-
_owner: null,
|
|
999
|
-
_store: {}
|
|
1000
|
-
}
|
|
1001
|
-
},
|
|
1002
|
-
from: '04keK6m-H3',
|
|
1003
|
-
type: 'BLOCK_NODE'
|
|
1004
|
-
}, {
|
|
1005
|
-
id: 'X4pqXQKF7t',
|
|
1006
|
-
props: {
|
|
1007
|
-
iconType: 'sms',
|
|
1008
|
-
color: '#fec52e',
|
|
1009
|
-
id: 'X4pqXQKF7t',
|
|
1010
|
-
blockType: 'SMS',
|
|
1011
|
-
nodeTitle: {
|
|
1012
|
-
key: null,
|
|
1013
|
-
ref: null,
|
|
1014
|
-
props: {
|
|
1015
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
1016
|
-
defaultMessage: 'SMS',
|
|
1017
|
-
values: {}
|
|
1018
|
-
},
|
|
1019
|
-
_owner: null,
|
|
1020
|
-
_store: {}
|
|
1021
|
-
},
|
|
1022
|
-
blockData: {
|
|
1023
|
-
content: {
|
|
1024
|
-
couponOffers: [],
|
|
1025
|
-
pointsOffers: [],
|
|
1026
|
-
body: 'SMS3'
|
|
1027
|
-
},
|
|
1028
|
-
deliverySettings: {
|
|
1029
|
-
domainId: 3461,
|
|
1030
|
-
gsmSenderId: 'TATADG'
|
|
1031
|
-
},
|
|
1032
|
-
name: 'SMS3'
|
|
1033
|
-
},
|
|
1034
|
-
isConfigured: true,
|
|
1035
|
-
nodePreview: {
|
|
1036
|
-
key: null,
|
|
1037
|
-
ref: null,
|
|
1038
|
-
props: {
|
|
1039
|
-
type: 'SMS',
|
|
1040
|
-
blockData: {
|
|
1041
|
-
content: {
|
|
1042
|
-
couponOffers: [],
|
|
1043
|
-
pointsOffers: [],
|
|
1044
|
-
body: 'SMS3'
|
|
1045
|
-
},
|
|
1046
|
-
deliverySettings: {
|
|
1047
|
-
domainId: 3461,
|
|
1048
|
-
gsmSenderId: 'TATADG'
|
|
1049
|
-
},
|
|
1050
|
-
name: 'SMS3'
|
|
1051
|
-
},
|
|
1052
|
-
blockId: 'X4pqXQKF7t'
|
|
1053
|
-
},
|
|
1054
|
-
_owner: null,
|
|
1055
|
-
_store: {}
|
|
1056
|
-
}
|
|
1057
|
-
},
|
|
1058
|
-
to: ['mj3MUxj6CH'],
|
|
1059
|
-
from: 'C_Dx-bl4PV',
|
|
1060
|
-
type: 'BLOCK_NODE'
|
|
1061
|
-
}, {
|
|
1062
|
-
id: 'mj3MUxj6CH',
|
|
1063
|
-
props: {
|
|
1064
|
-
iconType: 'join',
|
|
1065
|
-
color: '#23cccc',
|
|
1066
|
-
id: 'mj3MUxj6CH',
|
|
1067
|
-
blockType: 'JOIN',
|
|
1068
|
-
isMultiPath: false,
|
|
1069
|
-
nodeTitle: {
|
|
1070
|
-
key: null,
|
|
1071
|
-
ref: null,
|
|
1072
|
-
props: {
|
|
1073
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
|
|
1074
|
-
defaultMessage: 'Join',
|
|
1075
|
-
values: {}
|
|
1076
|
-
},
|
|
1077
|
-
_owner: null,
|
|
1078
|
-
_store: {}
|
|
1079
|
-
},
|
|
1080
|
-
blockData: {
|
|
1081
|
-
name: 'JOIN1',
|
|
1082
|
-
nextBlock: {
|
|
1083
|
-
pathBlockId: 'CLN_1RQ9YY',
|
|
1084
|
-
pathName: 'SMS1'
|
|
1085
|
-
}
|
|
1086
|
-
},
|
|
1087
|
-
isConfigured: true,
|
|
1088
|
-
nodePreview: {
|
|
1089
|
-
key: null,
|
|
1090
|
-
ref: null,
|
|
1091
|
-
props: {
|
|
1092
|
-
type: 'JOIN',
|
|
1093
|
-
flowControlBlockName: 'JOIN1',
|
|
1094
|
-
joinedBlockName: 'SMS1'
|
|
1095
|
-
},
|
|
1096
|
-
_owner: null,
|
|
1097
|
-
_store: {}
|
|
1098
|
-
}
|
|
1099
|
-
},
|
|
1100
|
-
from: 'X4pqXQKF7t',
|
|
1101
|
-
type: 'BLOCK_NODE'
|
|
1102
|
-
}, {
|
|
1103
|
-
width: 148,
|
|
1104
|
-
height: 180,
|
|
1105
|
-
id: '59iTeDxv_B',
|
|
1106
|
-
to: [],
|
|
1107
|
-
type: 'EXIT_TRIGGER',
|
|
1108
|
-
pathsInfo: {},
|
|
1109
|
-
props: {
|
|
1110
|
-
blockData: {
|
|
1111
|
-
triggerType: 'USER_EVENT',
|
|
1112
|
-
userEventTrigger: {
|
|
1113
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
1114
|
-
eventType: 'transactionAdded',
|
|
1115
|
-
conditionalPath: {
|
|
1116
|
-
condition: {
|
|
1117
|
-
compoundExpression: {
|
|
1118
|
-
operator: 'OR',
|
|
1119
|
-
expressionGroups: [{
|
|
1120
|
-
operator: 'AND',
|
|
1121
|
-
simpleExpressions: [{
|
|
1122
|
-
fact: {
|
|
1123
|
-
factId: 'tjqr20',
|
|
1124
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
1125
|
-
params: []
|
|
1126
|
-
},
|
|
1127
|
-
functions: [],
|
|
1128
|
-
operator: 'EQ',
|
|
1129
|
-
operand: {
|
|
1130
|
-
type: 'DOUBLE_VALUE',
|
|
1131
|
-
longValue: null,
|
|
1132
|
-
stringValue: null,
|
|
1133
|
-
doubleValue: 50,
|
|
1134
|
-
booleanValue: null,
|
|
1135
|
-
longList: null,
|
|
1136
|
-
stringList: null,
|
|
1137
|
-
doubleList: null
|
|
1138
|
-
},
|
|
1139
|
-
isExcluded: false,
|
|
1140
|
-
excluded: false
|
|
1141
|
-
}]
|
|
1142
|
-
}]
|
|
1143
|
-
}
|
|
1144
|
-
}
|
|
1145
|
-
}
|
|
1146
|
-
}
|
|
1147
|
-
},
|
|
1148
|
-
viewMode: false,
|
|
1149
|
-
blockType: 'EXIT_TRIGGER',
|
|
1150
|
-
grammar: {
|
|
1151
|
-
LqNBP7: 'Bill type of the transaction',
|
|
1152
|
-
'32p234': 'Basket Sum with product',
|
|
1153
|
-
'8arjDE': 'Date of the transaction',
|
|
1154
|
-
'56de3w': 'Extended field in the customer',
|
|
1155
|
-
'3UcyB2': 'Discount on the transaction',
|
|
1156
|
-
sRc59p: 'Customer source',
|
|
1157
|
-
o765rt: 'OrgUnit',
|
|
1158
|
-
'5sLAB9': "Customer's slab name",
|
|
1159
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
1160
|
-
'5zpWFg': 'Transaction number',
|
|
1161
|
-
'87ytre': 'Customer externalId',
|
|
1162
|
-
sNb89U: 'Customer slab number',
|
|
1163
|
-
'3er25q': 'Customer Custom fields filter',
|
|
1164
|
-
'4cP21P': 'Customer points',
|
|
1165
|
-
loY34k: 'Customer is Loyal',
|
|
1166
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
1167
|
-
tjqr20: 'Value of the transaction',
|
|
1168
|
-
cy654u: 'Concept',
|
|
1169
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
1170
|
-
'9i58j1': 'Zone',
|
|
1171
|
-
'23g26d': 'Extended fields in the transaction',
|
|
1172
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
1173
|
-
'17t80a': 'Store',
|
|
1174
|
-
mFL59r: 'Gross amount of the transaction',
|
|
1175
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
1176
|
-
c654er: "Customer's segments"
|
|
1177
|
-
}
|
|
1178
|
-
},
|
|
1179
|
-
isMultiPath: false
|
|
1180
|
-
}, {
|
|
1181
|
-
width: 148,
|
|
1182
|
-
height: 161,
|
|
1183
|
-
id: '5eDwSQu6Fi',
|
|
1184
|
-
type: 'SCHEDULE_BLOCK',
|
|
1185
|
-
isMultiPath: false,
|
|
1186
|
-
props: {
|
|
1187
|
-
id: '5eDwSQu6Fi',
|
|
1188
|
-
blockData: {
|
|
1189
|
-
startType: 'IMMEDIATE',
|
|
1190
|
-
endType: 'NEVER',
|
|
1191
|
-
startsFrom: null,
|
|
1192
|
-
endsAt: 7226562600000
|
|
1193
|
-
},
|
|
1194
|
-
viewMode: false
|
|
1195
|
-
}
|
|
1196
|
-
}],
|
|
1197
|
-
computeJoinGraphNodesDataOutput: {
|
|
1198
|
-
'12pNxGPAma': ['04keK6m-H3', 'JOIN3'],
|
|
1199
|
-
YsirnCRiSb: ['CLN_1RQ9YY', 'JOIN2'],
|
|
1200
|
-
mj3MUxj6CH: ['CLN_1RQ9YY', 'JOIN1']
|
|
1201
|
-
},
|
|
1202
|
-
updateJoinOrJoinedGraphNodePropInput1: [{
|
|
1203
|
-
width: 148,
|
|
1204
|
-
height: 180,
|
|
1205
|
-
id: 'C_Dx-bl4PV',
|
|
1206
|
-
to: ['P9x2uEdq1d', 'X4pqXQKF7t'],
|
|
1207
|
-
type: 'ENTRY_TRIGGER',
|
|
1208
|
-
pathsInfo: {
|
|
1209
|
-
P9x2uEdq1d: {
|
|
1210
|
-
previewComponent: {
|
|
1211
|
-
displayName: 'withStyles__StyledComponent',
|
|
1212
|
-
attrs: [],
|
|
1213
|
-
componentStyle: {
|
|
1214
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
1215
|
-
isStatic: false,
|
|
1216
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
1217
|
-
lastClassName: 'kWaAQH'
|
|
1218
|
-
},
|
|
1219
|
-
foldedComponentIds: [],
|
|
1220
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
1221
|
-
},
|
|
1222
|
-
previewProps: {
|
|
1223
|
-
header: 'entryTrigger',
|
|
1224
|
-
name: 'Path 1',
|
|
1225
|
-
condition: {
|
|
1226
|
-
compoundExpression: {
|
|
1227
|
-
operator: 'OR',
|
|
1228
|
-
expressionGroups: [{
|
|
1229
|
-
operator: 'AND',
|
|
1230
|
-
simpleExpressions: [{
|
|
1231
|
-
fact: {
|
|
1232
|
-
factId: 'tjqr20',
|
|
1233
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
1234
|
-
},
|
|
1235
|
-
operator: 'EQ',
|
|
1236
|
-
operand: {
|
|
1237
|
-
type: 'DOUBLE_VALUE',
|
|
1238
|
-
doubleValue: 50
|
|
1239
|
-
},
|
|
1240
|
-
isExcluded: false
|
|
1241
|
-
}]
|
|
1242
|
-
}]
|
|
1243
|
-
}
|
|
1244
|
-
},
|
|
1245
|
-
blockId: 'C_Dx-bl4PV',
|
|
1246
|
-
events: [{
|
|
1247
|
-
type: 'STANDARD',
|
|
1248
|
-
name: 'CouponRedeem'
|
|
1249
|
-
}, {
|
|
1250
|
-
type: 'STANDARD',
|
|
1251
|
-
name: 'customerAdded'
|
|
1252
|
-
}, {
|
|
1253
|
-
type: 'STANDARD',
|
|
1254
|
-
name: 'transactionAdded'
|
|
1255
|
-
}, {
|
|
1256
|
-
type: 'BEHAVIOURAL',
|
|
1257
|
-
name: 'reviewAdded'
|
|
1258
|
-
}],
|
|
1259
|
-
grammar: {
|
|
1260
|
-
LqNBP7: 'Bill type of the transaction',
|
|
1261
|
-
'32p234': 'Basket Sum with product',
|
|
1262
|
-
'8arjDE': 'Date of the transaction',
|
|
1263
|
-
'56de3w': 'Extended field in the customer',
|
|
1264
|
-
'3UcyB2': 'Discount on the transaction',
|
|
1265
|
-
sRc59p: 'Customer source',
|
|
1266
|
-
o765rt: 'OrgUnit',
|
|
1267
|
-
'5sLAB9': "Customer's slab name",
|
|
1268
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
1269
|
-
'5zpWFg': 'Transaction number',
|
|
1270
|
-
'87ytre': 'Customer externalId',
|
|
1271
|
-
sNb89U: 'Customer slab number',
|
|
1272
|
-
'3er25q': 'Customer Custom fields filter',
|
|
1273
|
-
'4cP21P': 'Customer points',
|
|
1274
|
-
loY34k: 'Customer is Loyal',
|
|
1275
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
1276
|
-
tjqr20: 'Value of the transaction',
|
|
1277
|
-
cy654u: 'Concept',
|
|
1278
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
1279
|
-
'9i58j1': 'Zone',
|
|
1280
|
-
'23g26d': 'Extended fields in the transaction',
|
|
1281
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
1282
|
-
'17t80a': 'Store',
|
|
1283
|
-
mFL59r: 'Gross amount of the transaction',
|
|
1284
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
1285
|
-
c654er: "Customer's segments"
|
|
1286
|
-
},
|
|
1287
|
-
couponsData: {
|
|
1288
|
-
couponsData: {
|
|
1289
|
-
CLN_1RQ9YY: [],
|
|
1290
|
-
'04keK6m-H3': [],
|
|
1291
|
-
X4pqXQKF7t: []
|
|
1292
|
-
}
|
|
1293
|
-
},
|
|
1294
|
-
allAudienceGroups: {},
|
|
1295
|
-
brand: [],
|
|
1296
|
-
category: [],
|
|
1297
|
-
productAttribute: [],
|
|
1298
|
-
customerSegmentValues: [],
|
|
1299
|
-
conceptValues: [],
|
|
1300
|
-
zoneValues: [],
|
|
1301
|
-
storeValues: [],
|
|
1302
|
-
customFieldValues: []
|
|
1303
|
-
}
|
|
1304
|
-
},
|
|
1305
|
-
X4pqXQKF7t: {
|
|
1306
|
-
previewComponent: {
|
|
1307
|
-
displayName: 'withStyles__StyledComponent',
|
|
1308
|
-
attrs: [],
|
|
1309
|
-
componentStyle: {
|
|
1310
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
1311
|
-
isStatic: false,
|
|
1312
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
1313
|
-
lastClassName: 'kWaAQH'
|
|
1314
|
-
},
|
|
1315
|
-
foldedComponentIds: [],
|
|
1316
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
1317
|
-
},
|
|
1318
|
-
previewProps: {
|
|
1319
|
-
header: 'entryTrigger',
|
|
1320
|
-
name: 'Path 2',
|
|
1321
|
-
condition: {
|
|
1322
|
-
compoundExpression: {
|
|
1323
|
-
operator: 'OR',
|
|
1324
|
-
expressionGroups: [{
|
|
1325
|
-
operator: 'AND',
|
|
1326
|
-
simpleExpressions: [{
|
|
1327
|
-
fact: {
|
|
1328
|
-
factId: 'tjqr20',
|
|
1329
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
1330
|
-
},
|
|
1331
|
-
operator: 'EQ',
|
|
1332
|
-
operand: {
|
|
1333
|
-
type: 'DOUBLE_VALUE',
|
|
1334
|
-
doubleValue: 45
|
|
1335
|
-
},
|
|
1336
|
-
isExcluded: false
|
|
1337
|
-
}]
|
|
1338
|
-
}]
|
|
1339
|
-
}
|
|
1340
|
-
},
|
|
1341
|
-
blockId: 'C_Dx-bl4PV',
|
|
1342
|
-
events: [{
|
|
1343
|
-
type: 'STANDARD',
|
|
1344
|
-
name: 'CouponRedeem'
|
|
1345
|
-
}, {
|
|
1346
|
-
type: 'STANDARD',
|
|
1347
|
-
name: 'customerAdded'
|
|
1348
|
-
}, {
|
|
1349
|
-
type: 'STANDARD',
|
|
1350
|
-
name: 'transactionAdded'
|
|
1351
|
-
}, {
|
|
1352
|
-
type: 'BEHAVIOURAL',
|
|
1353
|
-
name: 'reviewAdded'
|
|
1354
|
-
}],
|
|
1355
|
-
grammar: {
|
|
1356
|
-
LqNBP7: 'Bill type of the transaction',
|
|
1357
|
-
'32p234': 'Basket Sum with product',
|
|
1358
|
-
'8arjDE': 'Date of the transaction',
|
|
1359
|
-
'56de3w': 'Extended field in the customer',
|
|
1360
|
-
'3UcyB2': 'Discount on the transaction',
|
|
1361
|
-
sRc59p: 'Customer source',
|
|
1362
|
-
o765rt: 'OrgUnit',
|
|
1363
|
-
'5sLAB9': "Customer's slab name",
|
|
1364
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
1365
|
-
'5zpWFg': 'Transaction number',
|
|
1366
|
-
'87ytre': 'Customer externalId',
|
|
1367
|
-
sNb89U: 'Customer slab number',
|
|
1368
|
-
'3er25q': 'Customer Custom fields filter',
|
|
1369
|
-
'4cP21P': 'Customer points',
|
|
1370
|
-
loY34k: 'Customer is Loyal',
|
|
1371
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
1372
|
-
tjqr20: 'Value of the transaction',
|
|
1373
|
-
cy654u: 'Concept',
|
|
1374
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
1375
|
-
'9i58j1': 'Zone',
|
|
1376
|
-
'23g26d': 'Extended fields in the transaction',
|
|
1377
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
1378
|
-
'17t80a': 'Store',
|
|
1379
|
-
mFL59r: 'Gross amount of the transaction',
|
|
1380
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
1381
|
-
c654er: "Customer's segments"
|
|
1382
|
-
},
|
|
1383
|
-
couponsData: {
|
|
1384
|
-
couponsData: {
|
|
1385
|
-
CLN_1RQ9YY: [],
|
|
1386
|
-
'04keK6m-H3': [],
|
|
1387
|
-
X4pqXQKF7t: []
|
|
1388
|
-
}
|
|
1389
|
-
},
|
|
1390
|
-
allAudienceGroups: {},
|
|
1391
|
-
brand: [],
|
|
1392
|
-
category: [],
|
|
1393
|
-
productAttribute: [],
|
|
1394
|
-
customerSegmentValues: [],
|
|
1395
|
-
conceptValues: [],
|
|
1396
|
-
zoneValues: [],
|
|
1397
|
-
storeValues: [],
|
|
1398
|
-
customFieldValues: []
|
|
1399
|
-
}
|
|
1400
|
-
}
|
|
1401
|
-
},
|
|
1402
|
-
props: {
|
|
1403
|
-
blockData: {
|
|
1404
|
-
triggerType: 'USER_EVENT',
|
|
1405
|
-
userEventTrigger: {
|
|
1406
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
1407
|
-
eventType: 'transactionAdded',
|
|
1408
|
-
conditionalPaths: [{
|
|
1409
|
-
condition: {
|
|
1410
|
-
compoundExpression: {
|
|
1411
|
-
operator: 'OR',
|
|
1412
|
-
expressionGroups: [{
|
|
1413
|
-
operator: 'AND',
|
|
1414
|
-
simpleExpressions: [{
|
|
1415
|
-
fact: {
|
|
1416
|
-
factId: 'tjqr20',
|
|
1417
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
1418
|
-
},
|
|
1419
|
-
operator: 'EQ',
|
|
1420
|
-
operand: {
|
|
1421
|
-
type: 'DOUBLE_VALUE',
|
|
1422
|
-
doubleValue: 50
|
|
1423
|
-
},
|
|
1424
|
-
isExcluded: false
|
|
1425
|
-
}]
|
|
1426
|
-
}]
|
|
1427
|
-
}
|
|
1428
|
-
},
|
|
1429
|
-
path: {
|
|
1430
|
-
pathBlockId: 'P9x2uEdq1d',
|
|
1431
|
-
pathName: null
|
|
1432
|
-
}
|
|
1433
|
-
}, {
|
|
1434
|
-
condition: {
|
|
1435
|
-
compoundExpression: {
|
|
1436
|
-
operator: 'OR',
|
|
1437
|
-
expressionGroups: [{
|
|
1438
|
-
operator: 'AND',
|
|
1439
|
-
simpleExpressions: [{
|
|
1440
|
-
fact: {
|
|
1441
|
-
factId: 'tjqr20',
|
|
1442
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
1443
|
-
},
|
|
1444
|
-
operator: 'EQ',
|
|
1445
|
-
operand: {
|
|
1446
|
-
type: 'DOUBLE_VALUE',
|
|
1447
|
-
doubleValue: 45
|
|
1448
|
-
},
|
|
1449
|
-
isExcluded: false
|
|
1450
|
-
}]
|
|
1451
|
-
}]
|
|
1452
|
-
}
|
|
1453
|
-
},
|
|
1454
|
-
path: {
|
|
1455
|
-
pathBlockId: 'X4pqXQKF7t',
|
|
1456
|
-
pathName: null
|
|
1457
|
-
}
|
|
1458
|
-
}]
|
|
1459
|
-
}
|
|
1460
|
-
},
|
|
1461
|
-
allAudienceGroups: {}
|
|
1462
|
-
},
|
|
1463
|
-
isMultiPath: true,
|
|
1464
|
-
placeholderToIndex: 1
|
|
1465
|
-
}, {
|
|
1466
|
-
id: 'P9x2uEdq1d',
|
|
1467
|
-
name: 'TILL',
|
|
1468
|
-
userEventTrigger: {
|
|
1469
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
1470
|
-
eventType: 'transactionAdded',
|
|
1471
|
-
conditionalPaths: [{
|
|
1472
|
-
path: {
|
|
1473
|
-
pathName: null,
|
|
1474
|
-
pathBlockId: 'aO5-eWUPMk'
|
|
1475
|
-
},
|
|
1476
|
-
condition: {
|
|
1477
|
-
compoundExpression: {
|
|
1478
|
-
operator: 'OR',
|
|
1479
|
-
expressionGroups: [{
|
|
1480
|
-
operator: 'AND',
|
|
1481
|
-
simpleExpressions: [{
|
|
1482
|
-
fact: {
|
|
1483
|
-
factId: 'tjqr20',
|
|
1484
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
1485
|
-
params: []
|
|
1486
|
-
},
|
|
1487
|
-
functions: [],
|
|
1488
|
-
operator: 'EQ',
|
|
1489
|
-
operand: {
|
|
1490
|
-
type: 'DOUBLE_VALUE',
|
|
1491
|
-
longValue: null,
|
|
1492
|
-
stringValue: null,
|
|
1493
|
-
doubleValue: 50,
|
|
1494
|
-
booleanValue: null,
|
|
1495
|
-
longList: null,
|
|
1496
|
-
stringList: null,
|
|
1497
|
-
doubleList: null
|
|
1498
|
-
},
|
|
1499
|
-
isExcluded: false,
|
|
1500
|
-
excluded: false
|
|
1501
|
-
}]
|
|
1502
|
-
}]
|
|
1503
|
-
}
|
|
1504
|
-
}
|
|
1505
|
-
}]
|
|
1506
|
-
},
|
|
1507
|
-
waitDurationRO: {
|
|
1508
|
-
duration: 1,
|
|
1509
|
-
timeUnit: 'HOURS'
|
|
1510
|
-
},
|
|
1511
|
-
postWaitPath: {
|
|
1512
|
-
pathName: 'Wait time expired path',
|
|
1513
|
-
pathBlockId: 'GoPSnp68IE'
|
|
1514
|
-
},
|
|
1515
|
-
props: {
|
|
1516
|
-
iconType: 'waitEvent',
|
|
1517
|
-
color: '#23cccc',
|
|
1518
|
-
blockType: 'WAIT_TILL_EVENT',
|
|
1519
|
-
isConfigured: true,
|
|
1520
|
-
viewMode: false,
|
|
1521
|
-
id: 'P9x2uEdq1d',
|
|
1522
|
-
isMultiPath: true,
|
|
1523
|
-
nodePreview: {
|
|
1524
|
-
key: null,
|
|
1525
|
-
ref: null,
|
|
1526
|
-
props: {
|
|
1527
|
-
blockData: {
|
|
1528
|
-
id: 'P9x2uEdq1d',
|
|
1529
|
-
name: 'TILL',
|
|
1530
|
-
userEventTrigger: {
|
|
1531
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
1532
|
-
eventType: 'transactionAdded',
|
|
1533
|
-
conditionalPaths: [{
|
|
1534
|
-
path: {
|
|
1535
|
-
pathName: null,
|
|
1536
|
-
pathBlockId: 'aO5-eWUPMk'
|
|
1537
|
-
},
|
|
1538
|
-
condition: {
|
|
1539
|
-
compoundExpression: {
|
|
1540
|
-
operator: 'OR',
|
|
1541
|
-
expressionGroups: [{
|
|
1542
|
-
operator: 'AND',
|
|
1543
|
-
simpleExpressions: [{
|
|
1544
|
-
fact: {
|
|
1545
|
-
factId: 'tjqr20',
|
|
1546
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
1547
|
-
params: []
|
|
1548
|
-
},
|
|
1549
|
-
functions: [],
|
|
1550
|
-
operator: 'EQ',
|
|
1551
|
-
operand: {
|
|
1552
|
-
type: 'DOUBLE_VALUE',
|
|
1553
|
-
longValue: null,
|
|
1554
|
-
stringValue: null,
|
|
1555
|
-
doubleValue: 50,
|
|
1556
|
-
booleanValue: null,
|
|
1557
|
-
longList: null,
|
|
1558
|
-
stringList: null,
|
|
1559
|
-
doubleList: null
|
|
1560
|
-
},
|
|
1561
|
-
isExcluded: false,
|
|
1562
|
-
excluded: false
|
|
1563
|
-
}]
|
|
1564
|
-
}]
|
|
1565
|
-
}
|
|
1566
|
-
}
|
|
1567
|
-
}]
|
|
1568
|
-
},
|
|
1569
|
-
waitDurationRO: {
|
|
1570
|
-
duration: 1,
|
|
1571
|
-
timeUnit: 'HOURS'
|
|
1572
|
-
},
|
|
1573
|
-
postWaitPath: {
|
|
1574
|
-
pathName: 'Wait time expired path',
|
|
1575
|
-
pathBlockId: 'GoPSnp68IE'
|
|
1576
|
-
},
|
|
1577
|
-
blockType: 'WAIT_TILL_EVENT'
|
|
1578
|
-
},
|
|
1579
|
-
blockId: 'P9x2uEdq1d',
|
|
1580
|
-
type: 'WAIT_TILL_EVENT'
|
|
1581
|
-
},
|
|
1582
|
-
_owner: null,
|
|
1583
|
-
_store: {}
|
|
1584
|
-
}
|
|
1585
|
-
},
|
|
1586
|
-
type: 'BLOCK_NODE',
|
|
1587
|
-
to: ['CLN_1RQ9YY', '12pNxGPAma'],
|
|
1588
|
-
pathsInfo: {
|
|
1589
|
-
CLN_1RQ9YY: {
|
|
1590
|
-
previewComponent: {
|
|
1591
|
-
displayName: 'withStyles__StyledComponent',
|
|
1592
|
-
attrs: [],
|
|
1593
|
-
componentStyle: {
|
|
1594
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
1595
|
-
isStatic: false,
|
|
1596
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
1597
|
-
lastClassName: 'kWaAQH'
|
|
1598
|
-
},
|
|
1599
|
-
foldedComponentIds: [],
|
|
1600
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
1601
|
-
},
|
|
1602
|
-
previewProps: {
|
|
1603
|
-
header: 'waitTillEvent',
|
|
1604
|
-
name: {
|
|
1605
|
-
key: null,
|
|
1606
|
-
ref: null,
|
|
1607
|
-
props: {
|
|
1608
|
-
id: 'adionaUIApp.common.eventPath',
|
|
1609
|
-
defaultMessage: 'Event path',
|
|
1610
|
-
values: {}
|
|
1611
|
-
},
|
|
1612
|
-
_owner: null,
|
|
1613
|
-
_store: {}
|
|
1614
|
-
},
|
|
1615
|
-
condition: {
|
|
1616
|
-
compoundExpression: {
|
|
1617
|
-
operator: 'OR',
|
|
1618
|
-
expressionGroups: [{
|
|
1619
|
-
operator: 'AND',
|
|
1620
|
-
simpleExpressions: [{
|
|
1621
|
-
fact: {
|
|
1622
|
-
factId: 'tjqr20',
|
|
1623
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
1624
|
-
params: []
|
|
1625
|
-
},
|
|
1626
|
-
functions: [],
|
|
1627
|
-
operator: 'EQ',
|
|
1628
|
-
operand: {
|
|
1629
|
-
type: 'DOUBLE_VALUE',
|
|
1630
|
-
longValue: null,
|
|
1631
|
-
stringValue: null,
|
|
1632
|
-
doubleValue: 50,
|
|
1633
|
-
booleanValue: null,
|
|
1634
|
-
longList: null,
|
|
1635
|
-
stringList: null,
|
|
1636
|
-
doubleList: null
|
|
1637
|
-
},
|
|
1638
|
-
isExcluded: false,
|
|
1639
|
-
excluded: false
|
|
1640
|
-
}]
|
|
1641
|
-
}]
|
|
1642
|
-
}
|
|
1643
|
-
},
|
|
1644
|
-
blockId: 'P9x2uEdq1d',
|
|
1645
|
-
events: [{
|
|
1646
|
-
type: 'STANDARD',
|
|
1647
|
-
name: 'CouponRedeem'
|
|
1648
|
-
}, {
|
|
1649
|
-
type: 'STANDARD',
|
|
1650
|
-
name: 'customerAdded'
|
|
1651
|
-
}, {
|
|
1652
|
-
type: 'STANDARD',
|
|
1653
|
-
name: 'transactionAdded'
|
|
1654
|
-
}, {
|
|
1655
|
-
type: 'BEHAVIOURAL',
|
|
1656
|
-
name: 'reviewAdded'
|
|
1657
|
-
}],
|
|
1658
|
-
grammar: {
|
|
1659
|
-
LqNBP7: 'Bill type of the transaction',
|
|
1660
|
-
'32p234': 'Basket Sum with product',
|
|
1661
|
-
'8arjDE': 'Date of the transaction',
|
|
1662
|
-
'56de3w': 'Extended field in the customer',
|
|
1663
|
-
'3UcyB2': 'Discount on the transaction',
|
|
1664
|
-
sRc59p: 'Customer source',
|
|
1665
|
-
o765rt: 'OrgUnit',
|
|
1666
|
-
'5sLAB9': "Customer's slab name",
|
|
1667
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
1668
|
-
'5zpWFg': 'Transaction number',
|
|
1669
|
-
'87ytre': 'Customer externalId',
|
|
1670
|
-
sNb89U: 'Customer slab number',
|
|
1671
|
-
'3er25q': 'Customer Custom fields filter',
|
|
1672
|
-
'4cP21P': 'Customer points',
|
|
1673
|
-
loY34k: 'Customer is Loyal',
|
|
1674
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
1675
|
-
tjqr20: 'Value of the transaction',
|
|
1676
|
-
cy654u: 'Concept',
|
|
1677
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
1678
|
-
'9i58j1': 'Zone',
|
|
1679
|
-
'23g26d': 'Extended fields in the transaction',
|
|
1680
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
1681
|
-
'17t80a': 'Store',
|
|
1682
|
-
mFL59r: 'Gross amount of the transaction',
|
|
1683
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
1684
|
-
c654er: "Customer's segments"
|
|
1685
|
-
},
|
|
1686
|
-
couponsData: {
|
|
1687
|
-
couponsData: {}
|
|
1688
|
-
},
|
|
1689
|
-
allAudienceGroups: {},
|
|
1690
|
-
brand: [],
|
|
1691
|
-
category: [],
|
|
1692
|
-
productAttribute: [],
|
|
1693
|
-
customerSegmentValues: [],
|
|
1694
|
-
conceptValues: [],
|
|
1695
|
-
zoneValues: [],
|
|
1696
|
-
storeValues: [],
|
|
1697
|
-
customFieldValues: []
|
|
1698
|
-
}
|
|
1699
|
-
},
|
|
1700
|
-
'12pNxGPAma': {
|
|
1701
|
-
previewComponent: {
|
|
1702
|
-
displayName: 'withStyles__StyledComponent',
|
|
1703
|
-
attrs: [],
|
|
1704
|
-
componentStyle: {
|
|
1705
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
1706
|
-
isStatic: false,
|
|
1707
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
1708
|
-
lastClassName: 'kWaAQH'
|
|
1709
|
-
},
|
|
1710
|
-
foldedComponentIds: [],
|
|
1711
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
1712
|
-
},
|
|
1713
|
-
previewProps: {
|
|
1714
|
-
header: 'waitExpiredPath',
|
|
1715
|
-
name: 'Wait time expired path',
|
|
1716
|
-
condition: {
|
|
1717
|
-
duration: 1,
|
|
1718
|
-
timeUnit: 'HOURS'
|
|
1719
|
-
},
|
|
1720
|
-
blockId: 'P9x2uEdq1d',
|
|
1721
|
-
events: [{
|
|
1722
|
-
type: 'STANDARD',
|
|
1723
|
-
name: 'CouponRedeem'
|
|
1724
|
-
}, {
|
|
1725
|
-
type: 'STANDARD',
|
|
1726
|
-
name: 'customerAdded'
|
|
1727
|
-
}, {
|
|
1728
|
-
type: 'STANDARD',
|
|
1729
|
-
name: 'transactionAdded'
|
|
1730
|
-
}, {
|
|
1731
|
-
type: 'BEHAVIOURAL',
|
|
1732
|
-
name: 'reviewAdded'
|
|
1733
|
-
}],
|
|
1734
|
-
grammar: {
|
|
1735
|
-
LqNBP7: 'Bill type of the transaction',
|
|
1736
|
-
'32p234': 'Basket Sum with product',
|
|
1737
|
-
'8arjDE': 'Date of the transaction',
|
|
1738
|
-
'56de3w': 'Extended field in the customer',
|
|
1739
|
-
'3UcyB2': 'Discount on the transaction',
|
|
1740
|
-
sRc59p: 'Customer source',
|
|
1741
|
-
o765rt: 'OrgUnit',
|
|
1742
|
-
'5sLAB9': "Customer's slab name",
|
|
1743
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
1744
|
-
'5zpWFg': 'Transaction number',
|
|
1745
|
-
'87ytre': 'Customer externalId',
|
|
1746
|
-
sNb89U: 'Customer slab number',
|
|
1747
|
-
'3er25q': 'Customer Custom fields filter',
|
|
1748
|
-
'4cP21P': 'Customer points',
|
|
1749
|
-
loY34k: 'Customer is Loyal',
|
|
1750
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
1751
|
-
tjqr20: 'Value of the transaction',
|
|
1752
|
-
cy654u: 'Concept',
|
|
1753
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
1754
|
-
'9i58j1': 'Zone',
|
|
1755
|
-
'23g26d': 'Extended fields in the transaction',
|
|
1756
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
1757
|
-
'17t80a': 'Store',
|
|
1758
|
-
mFL59r: 'Gross amount of the transaction',
|
|
1759
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
1760
|
-
c654er: "Customer's segments"
|
|
1761
|
-
},
|
|
1762
|
-
couponsData: {
|
|
1763
|
-
couponsData: {}
|
|
1764
|
-
},
|
|
1765
|
-
allAudienceGroups: {},
|
|
1766
|
-
brand: [],
|
|
1767
|
-
category: [],
|
|
1768
|
-
productAttribute: [],
|
|
1769
|
-
customerSegmentValues: [],
|
|
1770
|
-
conceptValues: [],
|
|
1771
|
-
zoneValues: [],
|
|
1772
|
-
storeValues: [],
|
|
1773
|
-
customFieldValues: []
|
|
1774
|
-
}
|
|
1775
|
-
}
|
|
1776
|
-
},
|
|
1777
|
-
from: 'C_Dx-bl4PV'
|
|
1778
|
-
}, {
|
|
1779
|
-
id: 'CLN_1RQ9YY',
|
|
1780
|
-
props: {
|
|
1781
|
-
iconType: 'sms',
|
|
1782
|
-
color: '#fec52e',
|
|
1783
|
-
id: 'CLN_1RQ9YY',
|
|
1784
|
-
blockType: 'SMS',
|
|
1785
|
-
nodeTitle: {
|
|
1786
|
-
key: null,
|
|
1787
|
-
ref: null,
|
|
1788
|
-
props: {
|
|
1789
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
1790
|
-
defaultMessage: 'SMS',
|
|
1791
|
-
values: {}
|
|
1792
|
-
},
|
|
1793
|
-
_owner: null,
|
|
1794
|
-
_store: {}
|
|
1795
|
-
},
|
|
1796
|
-
blockData: {
|
|
1797
|
-
content: {
|
|
1798
|
-
couponOffers: [],
|
|
1799
|
-
pointsOffers: [],
|
|
1800
|
-
body: 'SMS1'
|
|
1801
|
-
},
|
|
1802
|
-
deliverySettings: {
|
|
1803
|
-
domainId: 3461,
|
|
1804
|
-
gsmSenderId: 'TATADG'
|
|
1805
|
-
},
|
|
1806
|
-
name: 'SMS1'
|
|
1807
|
-
},
|
|
1808
|
-
isConfigured: true,
|
|
1809
|
-
nodePreview: {
|
|
1810
|
-
key: null,
|
|
1811
|
-
ref: null,
|
|
1812
|
-
props: {
|
|
1813
|
-
type: 'SMS',
|
|
1814
|
-
blockData: {
|
|
1815
|
-
content: {
|
|
1816
|
-
couponOffers: [],
|
|
1817
|
-
pointsOffers: [],
|
|
1818
|
-
body: 'SMS1'
|
|
1819
|
-
},
|
|
1820
|
-
deliverySettings: {
|
|
1821
|
-
domainId: 3461,
|
|
1822
|
-
gsmSenderId: 'TATADG'
|
|
1823
|
-
},
|
|
1824
|
-
name: 'SMS1'
|
|
1825
|
-
},
|
|
1826
|
-
blockId: 'CLN_1RQ9YY'
|
|
1827
|
-
},
|
|
1828
|
-
_owner: null,
|
|
1829
|
-
_store: {}
|
|
1830
|
-
},
|
|
1831
|
-
joinBlockNameArray: ['JOIN1', 'JOIN2']
|
|
1832
|
-
},
|
|
1833
|
-
to: ['aO5-eWUPMk'],
|
|
1834
|
-
from: 'P9x2uEdq1d',
|
|
1835
|
-
type: 'BLOCK_NODE'
|
|
1836
|
-
}, {
|
|
1837
|
-
width: 42,
|
|
1838
|
-
height: 42,
|
|
1839
|
-
id: 'aO5-eWUPMk',
|
|
1840
|
-
props: {
|
|
1841
|
-
type: 'end',
|
|
1842
|
-
style: {
|
|
1843
|
-
color: '#47af46',
|
|
1844
|
-
padding: '9px 0'
|
|
1845
|
-
},
|
|
1846
|
-
textLabel: {
|
|
1847
|
-
type: {
|
|
1848
|
-
displayName: 'CapLabel',
|
|
1849
|
-
attrs: [],
|
|
1850
|
-
componentStyle: {
|
|
1851
|
-
rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
|
|
1852
|
-
isStatic: false,
|
|
1853
|
-
componentId: 'CapLabel-n7zsf5-0',
|
|
1854
|
-
lastClassName: 'hcywYU'
|
|
1855
|
-
},
|
|
1856
|
-
foldedComponentIds: [],
|
|
1857
|
-
styledComponentId: 'CapLabel-n7zsf5-0',
|
|
1858
|
-
target: 'div',
|
|
1859
|
-
propTypes: {},
|
|
1860
|
-
CapLabelInline: {
|
|
1861
|
-
displayName: 'CapLabel__CapLabelInline',
|
|
1862
|
-
attrs: [],
|
|
1863
|
-
componentStyle: {
|
|
1864
|
-
rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
|
|
1865
|
-
isStatic: false,
|
|
1866
|
-
componentId: 'CapLabel__CapLabelInline-n7zsf5-1',
|
|
1867
|
-
lastClassName: 'gBSzRM'
|
|
1868
|
-
},
|
|
1869
|
-
foldedComponentIds: [],
|
|
1870
|
-
styledComponentId: 'CapLabel__CapLabelInline-n7zsf5-1',
|
|
1871
|
-
target: 'span'
|
|
1872
|
-
},
|
|
1873
|
-
_foldedDefaultProps: {
|
|
1874
|
-
type: 'label1'
|
|
1875
|
-
}
|
|
1876
|
-
},
|
|
1877
|
-
key: null,
|
|
1878
|
-
ref: null,
|
|
1879
|
-
props: {
|
|
1880
|
-
type: 'label2',
|
|
1881
|
-
className: 'margin-l-2 margin-t-5',
|
|
1882
|
-
children: {
|
|
1883
|
-
key: null,
|
|
1884
|
-
ref: null,
|
|
1885
|
-
props: {
|
|
1886
|
-
id: 'adionaUIApp.common.end',
|
|
1887
|
-
defaultMessage: 'End',
|
|
1888
|
-
values: {}
|
|
1889
|
-
},
|
|
1890
|
-
_owner: null,
|
|
1891
|
-
_store: {}
|
|
1892
|
-
}
|
|
1893
|
-
},
|
|
1894
|
-
_owner: null,
|
|
1895
|
-
_store: {}
|
|
1896
|
-
}
|
|
1897
|
-
},
|
|
1898
|
-
type: 'END_NODE',
|
|
1899
|
-
from: 'CLN_1RQ9YY'
|
|
1900
|
-
}, {
|
|
1901
|
-
id: '12pNxGPAma',
|
|
1902
|
-
props: {
|
|
1903
|
-
iconType: 'join',
|
|
1904
|
-
color: '#23cccc',
|
|
1905
|
-
id: '12pNxGPAma',
|
|
1906
|
-
blockType: 'JOIN',
|
|
1907
|
-
isMultiPath: false,
|
|
1908
|
-
nodeTitle: {
|
|
1909
|
-
key: null,
|
|
1910
|
-
ref: null,
|
|
1911
|
-
props: {
|
|
1912
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
|
|
1913
|
-
defaultMessage: 'Join',
|
|
1914
|
-
values: {}
|
|
1915
|
-
},
|
|
1916
|
-
_owner: null,
|
|
1917
|
-
_store: {}
|
|
1918
|
-
},
|
|
1919
|
-
blockData: {
|
|
1920
|
-
name: 'JOIN3',
|
|
1921
|
-
nextBlock: {
|
|
1922
|
-
pathBlockId: '04keK6m-H3',
|
|
1923
|
-
pathName: 'SMS2'
|
|
1924
|
-
}
|
|
1925
|
-
},
|
|
1926
|
-
isConfigured: true,
|
|
1927
|
-
nodePreview: {
|
|
1928
|
-
key: null,
|
|
1929
|
-
ref: null,
|
|
1930
|
-
props: {
|
|
1931
|
-
type: 'JOIN',
|
|
1932
|
-
flowControlBlockName: 'JOIN3',
|
|
1933
|
-
joinedBlockName: 'SMS2'
|
|
1934
|
-
},
|
|
1935
|
-
_owner: null,
|
|
1936
|
-
_store: {}
|
|
1937
|
-
}
|
|
1938
|
-
},
|
|
1939
|
-
from: 'P9x2uEdq1d',
|
|
1940
|
-
type: 'BLOCK_NODE'
|
|
1941
|
-
}, {
|
|
1942
|
-
id: 'X4pqXQKF7t',
|
|
1943
|
-
props: {
|
|
1944
|
-
iconType: 'sms',
|
|
1945
|
-
color: '#fec52e',
|
|
1946
|
-
id: 'X4pqXQKF7t',
|
|
1947
|
-
blockType: 'SMS',
|
|
1948
|
-
nodeTitle: {
|
|
1949
|
-
key: null,
|
|
1950
|
-
ref: null,
|
|
1951
|
-
props: {
|
|
1952
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
1953
|
-
defaultMessage: 'SMS',
|
|
1954
|
-
values: {}
|
|
1955
|
-
},
|
|
1956
|
-
_owner: null,
|
|
1957
|
-
_store: {}
|
|
1958
|
-
},
|
|
1959
|
-
blockData: {
|
|
1960
|
-
content: {
|
|
1961
|
-
couponOffers: [],
|
|
1962
|
-
pointsOffers: [],
|
|
1963
|
-
body: 'SMS3'
|
|
1964
|
-
},
|
|
1965
|
-
deliverySettings: {
|
|
1966
|
-
domainId: 3461,
|
|
1967
|
-
gsmSenderId: 'TATADG'
|
|
1968
|
-
},
|
|
1969
|
-
name: 'SMS3'
|
|
1970
|
-
},
|
|
1971
|
-
isConfigured: true,
|
|
1972
|
-
nodePreview: {
|
|
1973
|
-
key: null,
|
|
1974
|
-
ref: null,
|
|
1975
|
-
props: {
|
|
1976
|
-
type: 'SMS',
|
|
1977
|
-
blockData: {
|
|
1978
|
-
content: {
|
|
1979
|
-
couponOffers: [],
|
|
1980
|
-
pointsOffers: [],
|
|
1981
|
-
body: 'SMS3'
|
|
1982
|
-
},
|
|
1983
|
-
deliverySettings: {
|
|
1984
|
-
domainId: 3461,
|
|
1985
|
-
gsmSenderId: 'TATADG'
|
|
1986
|
-
},
|
|
1987
|
-
name: 'SMS3'
|
|
1988
|
-
},
|
|
1989
|
-
blockId: 'X4pqXQKF7t'
|
|
1990
|
-
},
|
|
1991
|
-
_owner: null,
|
|
1992
|
-
_store: {}
|
|
1993
|
-
}
|
|
1994
|
-
},
|
|
1995
|
-
to: ['mj3MUxj6CH'],
|
|
1996
|
-
from: 'C_Dx-bl4PV',
|
|
1997
|
-
type: 'BLOCK_NODE'
|
|
1998
|
-
}, {
|
|
1999
|
-
id: 'mj3MUxj6CH',
|
|
2000
|
-
props: {
|
|
2001
|
-
iconType: 'join',
|
|
2002
|
-
color: '#23cccc',
|
|
2003
|
-
id: 'mj3MUxj6CH',
|
|
2004
|
-
blockType: 'JOIN',
|
|
2005
|
-
isMultiPath: false,
|
|
2006
|
-
nodeTitle: {
|
|
2007
|
-
key: null,
|
|
2008
|
-
ref: null,
|
|
2009
|
-
props: {
|
|
2010
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
|
|
2011
|
-
defaultMessage: 'Join',
|
|
2012
|
-
values: {}
|
|
2013
|
-
},
|
|
2014
|
-
_owner: null,
|
|
2015
|
-
_store: {}
|
|
2016
|
-
},
|
|
2017
|
-
blockData: {
|
|
2018
|
-
name: 'JOIN1',
|
|
2019
|
-
nextBlock: {
|
|
2020
|
-
pathBlockId: 'CLN_1RQ9YY',
|
|
2021
|
-
pathName: 'SMS1'
|
|
2022
|
-
}
|
|
2023
|
-
},
|
|
2024
|
-
isConfigured: true,
|
|
2025
|
-
nodePreview: {
|
|
2026
|
-
key: null,
|
|
2027
|
-
ref: null,
|
|
2028
|
-
props: {
|
|
2029
|
-
type: 'JOIN',
|
|
2030
|
-
flowControlBlockName: 'JOIN1',
|
|
2031
|
-
joinedBlockName: 'SMS1'
|
|
2032
|
-
},
|
|
2033
|
-
_owner: null,
|
|
2034
|
-
_store: {}
|
|
2035
|
-
}
|
|
2036
|
-
},
|
|
2037
|
-
from: 'X4pqXQKF7t',
|
|
2038
|
-
type: 'BLOCK_NODE'
|
|
2039
|
-
}, {
|
|
2040
|
-
width: 148,
|
|
2041
|
-
height: 180,
|
|
2042
|
-
id: '59iTeDxv_B',
|
|
2043
|
-
to: [],
|
|
2044
|
-
type: 'EXIT_TRIGGER',
|
|
2045
|
-
pathsInfo: {},
|
|
2046
|
-
props: {
|
|
2047
|
-
blockData: {
|
|
2048
|
-
triggerType: 'USER_EVENT',
|
|
2049
|
-
userEventTrigger: {
|
|
2050
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
2051
|
-
eventType: 'transactionAdded',
|
|
2052
|
-
conditionalPath: {
|
|
2053
|
-
condition: {
|
|
2054
|
-
compoundExpression: {
|
|
2055
|
-
operator: 'OR',
|
|
2056
|
-
expressionGroups: [{
|
|
2057
|
-
operator: 'AND',
|
|
2058
|
-
simpleExpressions: [{
|
|
2059
|
-
fact: {
|
|
2060
|
-
factId: 'tjqr20',
|
|
2061
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
2062
|
-
params: []
|
|
2063
|
-
},
|
|
2064
|
-
functions: [],
|
|
2065
|
-
operator: 'EQ',
|
|
2066
|
-
operand: {
|
|
2067
|
-
type: 'DOUBLE_VALUE',
|
|
2068
|
-
longValue: null,
|
|
2069
|
-
stringValue: null,
|
|
2070
|
-
doubleValue: 50,
|
|
2071
|
-
booleanValue: null,
|
|
2072
|
-
longList: null,
|
|
2073
|
-
stringList: null,
|
|
2074
|
-
doubleList: null
|
|
2075
|
-
},
|
|
2076
|
-
isExcluded: false,
|
|
2077
|
-
excluded: false
|
|
2078
|
-
}]
|
|
2079
|
-
}]
|
|
2080
|
-
}
|
|
2081
|
-
}
|
|
2082
|
-
}
|
|
2083
|
-
}
|
|
2084
|
-
},
|
|
2085
|
-
viewMode: false,
|
|
2086
|
-
blockType: 'EXIT_TRIGGER',
|
|
2087
|
-
grammar: {
|
|
2088
|
-
LqNBP7: 'Bill type of the transaction',
|
|
2089
|
-
'32p234': 'Basket Sum with product',
|
|
2090
|
-
'8arjDE': 'Date of the transaction',
|
|
2091
|
-
'56de3w': 'Extended field in the customer',
|
|
2092
|
-
'3UcyB2': 'Discount on the transaction',
|
|
2093
|
-
sRc59p: 'Customer source',
|
|
2094
|
-
o765rt: 'OrgUnit',
|
|
2095
|
-
'5sLAB9': "Customer's slab name",
|
|
2096
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
2097
|
-
'5zpWFg': 'Transaction number',
|
|
2098
|
-
'87ytre': 'Customer externalId',
|
|
2099
|
-
sNb89U: 'Customer slab number',
|
|
2100
|
-
'3er25q': 'Customer Custom fields filter',
|
|
2101
|
-
'4cP21P': 'Customer points',
|
|
2102
|
-
loY34k: 'Customer is Loyal',
|
|
2103
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
2104
|
-
tjqr20: 'Value of the transaction',
|
|
2105
|
-
cy654u: 'Concept',
|
|
2106
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
2107
|
-
'9i58j1': 'Zone',
|
|
2108
|
-
'23g26d': 'Extended fields in the transaction',
|
|
2109
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
2110
|
-
'17t80a': 'Store',
|
|
2111
|
-
mFL59r: 'Gross amount of the transaction',
|
|
2112
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
2113
|
-
c654er: "Customer's segments"
|
|
2114
|
-
}
|
|
2115
|
-
},
|
|
2116
|
-
isMultiPath: false
|
|
2117
|
-
}, {
|
|
2118
|
-
width: 148,
|
|
2119
|
-
height: 161,
|
|
2120
|
-
id: '5eDwSQu6Fi',
|
|
2121
|
-
type: 'SCHEDULE_BLOCK',
|
|
2122
|
-
isMultiPath: false,
|
|
2123
|
-
props: {
|
|
2124
|
-
id: '5eDwSQu6Fi',
|
|
2125
|
-
blockData: {
|
|
2126
|
-
startType: 'IMMEDIATE',
|
|
2127
|
-
endType: 'NEVER',
|
|
2128
|
-
startsFrom: null,
|
|
2129
|
-
endsAt: 7226562600000
|
|
2130
|
-
},
|
|
2131
|
-
viewMode: false
|
|
2132
|
-
}
|
|
2133
|
-
}],
|
|
2134
|
-
updateJoinOrJoinedGraphNodePropInput2: {
|
|
2135
|
-
'12pNxGPAma': ['04keK6m-H3', 'JOIN3'],
|
|
2136
|
-
YsirnCRiSb: ['CLN_1RQ9YY', 'JOIN2'],
|
|
2137
|
-
mj3MUxj6CH: ['CLN_1RQ9YY', 'JOIN1']
|
|
2138
|
-
},
|
|
2139
|
-
updateJoinOrJoinedGraphNodePropOutput: [{
|
|
2140
|
-
width: 148,
|
|
2141
|
-
height: 180,
|
|
2142
|
-
id: 'C_Dx-bl4PV',
|
|
2143
|
-
to: ['P9x2uEdq1d', 'X4pqXQKF7t'],
|
|
2144
|
-
type: 'ENTRY_TRIGGER',
|
|
2145
|
-
pathsInfo: {
|
|
2146
|
-
P9x2uEdq1d: {
|
|
2147
|
-
previewComponent: {
|
|
2148
|
-
displayName: 'withStyles__StyledComponent',
|
|
2149
|
-
attrs: [],
|
|
2150
|
-
componentStyle: {
|
|
2151
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
2152
|
-
isStatic: false,
|
|
2153
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
2154
|
-
lastClassName: 'kWaAQH'
|
|
2155
|
-
},
|
|
2156
|
-
foldedComponentIds: [],
|
|
2157
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
2158
|
-
},
|
|
2159
|
-
previewProps: {
|
|
2160
|
-
header: 'entryTrigger',
|
|
2161
|
-
name: 'Path 1',
|
|
2162
|
-
condition: {
|
|
2163
|
-
compoundExpression: {
|
|
2164
|
-
operator: 'OR',
|
|
2165
|
-
expressionGroups: [{
|
|
2166
|
-
operator: 'AND',
|
|
2167
|
-
simpleExpressions: [{
|
|
2168
|
-
fact: {
|
|
2169
|
-
factId: 'tjqr20',
|
|
2170
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
2171
|
-
},
|
|
2172
|
-
operator: 'EQ',
|
|
2173
|
-
operand: {
|
|
2174
|
-
type: 'DOUBLE_VALUE',
|
|
2175
|
-
doubleValue: 50
|
|
2176
|
-
},
|
|
2177
|
-
isExcluded: false
|
|
2178
|
-
}]
|
|
2179
|
-
}]
|
|
2180
|
-
}
|
|
2181
|
-
},
|
|
2182
|
-
blockId: 'C_Dx-bl4PV',
|
|
2183
|
-
events: [{
|
|
2184
|
-
type: 'STANDARD',
|
|
2185
|
-
name: 'CouponRedeem'
|
|
2186
|
-
}, {
|
|
2187
|
-
type: 'STANDARD',
|
|
2188
|
-
name: 'customerAdded'
|
|
2189
|
-
}, {
|
|
2190
|
-
type: 'STANDARD',
|
|
2191
|
-
name: 'transactionAdded'
|
|
2192
|
-
}, {
|
|
2193
|
-
type: 'BEHAVIOURAL',
|
|
2194
|
-
name: 'reviewAdded'
|
|
2195
|
-
}],
|
|
2196
|
-
grammar: {
|
|
2197
|
-
LqNBP7: 'Bill type of the transaction',
|
|
2198
|
-
'32p234': 'Basket Sum with product',
|
|
2199
|
-
'8arjDE': 'Date of the transaction',
|
|
2200
|
-
'56de3w': 'Extended field in the customer',
|
|
2201
|
-
'3UcyB2': 'Discount on the transaction',
|
|
2202
|
-
sRc59p: 'Customer source',
|
|
2203
|
-
o765rt: 'OrgUnit',
|
|
2204
|
-
'5sLAB9': "Customer's slab name",
|
|
2205
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
2206
|
-
'5zpWFg': 'Transaction number',
|
|
2207
|
-
'87ytre': 'Customer externalId',
|
|
2208
|
-
sNb89U: 'Customer slab number',
|
|
2209
|
-
'3er25q': 'Customer Custom fields filter',
|
|
2210
|
-
'4cP21P': 'Customer points',
|
|
2211
|
-
loY34k: 'Customer is Loyal',
|
|
2212
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
2213
|
-
tjqr20: 'Value of the transaction',
|
|
2214
|
-
cy654u: 'Concept',
|
|
2215
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
2216
|
-
'9i58j1': 'Zone',
|
|
2217
|
-
'23g26d': 'Extended fields in the transaction',
|
|
2218
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
2219
|
-
'17t80a': 'Store',
|
|
2220
|
-
mFL59r: 'Gross amount of the transaction',
|
|
2221
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
2222
|
-
c654er: "Customer's segments"
|
|
2223
|
-
},
|
|
2224
|
-
couponsData: {
|
|
2225
|
-
couponsData: {
|
|
2226
|
-
CLN_1RQ9YY: [],
|
|
2227
|
-
'04keK6m-H3': [],
|
|
2228
|
-
X4pqXQKF7t: []
|
|
2229
|
-
}
|
|
2230
|
-
},
|
|
2231
|
-
allAudienceGroups: {},
|
|
2232
|
-
brand: [],
|
|
2233
|
-
category: [],
|
|
2234
|
-
productAttribute: [],
|
|
2235
|
-
customerSegmentValues: [],
|
|
2236
|
-
conceptValues: [],
|
|
2237
|
-
zoneValues: [],
|
|
2238
|
-
storeValues: [],
|
|
2239
|
-
customFieldValues: []
|
|
2240
|
-
}
|
|
2241
|
-
},
|
|
2242
|
-
X4pqXQKF7t: {
|
|
2243
|
-
previewComponent: {
|
|
2244
|
-
displayName: 'withStyles__StyledComponent',
|
|
2245
|
-
attrs: [],
|
|
2246
|
-
componentStyle: {
|
|
2247
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
2248
|
-
isStatic: false,
|
|
2249
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
2250
|
-
lastClassName: 'kWaAQH'
|
|
2251
|
-
},
|
|
2252
|
-
foldedComponentIds: [],
|
|
2253
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
2254
|
-
},
|
|
2255
|
-
previewProps: {
|
|
2256
|
-
header: 'entryTrigger',
|
|
2257
|
-
name: 'Path 2',
|
|
2258
|
-
condition: {
|
|
2259
|
-
compoundExpression: {
|
|
2260
|
-
operator: 'OR',
|
|
2261
|
-
expressionGroups: [{
|
|
2262
|
-
operator: 'AND',
|
|
2263
|
-
simpleExpressions: [{
|
|
2264
|
-
fact: {
|
|
2265
|
-
factId: 'tjqr20',
|
|
2266
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
2267
|
-
},
|
|
2268
|
-
operator: 'EQ',
|
|
2269
|
-
operand: {
|
|
2270
|
-
type: 'DOUBLE_VALUE',
|
|
2271
|
-
doubleValue: 45
|
|
2272
|
-
},
|
|
2273
|
-
isExcluded: false
|
|
2274
|
-
}]
|
|
2275
|
-
}]
|
|
2276
|
-
}
|
|
2277
|
-
},
|
|
2278
|
-
blockId: 'C_Dx-bl4PV',
|
|
2279
|
-
events: [{
|
|
2280
|
-
type: 'STANDARD',
|
|
2281
|
-
name: 'CouponRedeem'
|
|
2282
|
-
}, {
|
|
2283
|
-
type: 'STANDARD',
|
|
2284
|
-
name: 'customerAdded'
|
|
2285
|
-
}, {
|
|
2286
|
-
type: 'STANDARD',
|
|
2287
|
-
name: 'transactionAdded'
|
|
2288
|
-
}, {
|
|
2289
|
-
type: 'BEHAVIOURAL',
|
|
2290
|
-
name: 'reviewAdded'
|
|
2291
|
-
}],
|
|
2292
|
-
grammar: {
|
|
2293
|
-
LqNBP7: 'Bill type of the transaction',
|
|
2294
|
-
'32p234': 'Basket Sum with product',
|
|
2295
|
-
'8arjDE': 'Date of the transaction',
|
|
2296
|
-
'56de3w': 'Extended field in the customer',
|
|
2297
|
-
'3UcyB2': 'Discount on the transaction',
|
|
2298
|
-
sRc59p: 'Customer source',
|
|
2299
|
-
o765rt: 'OrgUnit',
|
|
2300
|
-
'5sLAB9': "Customer's slab name",
|
|
2301
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
2302
|
-
'5zpWFg': 'Transaction number',
|
|
2303
|
-
'87ytre': 'Customer externalId',
|
|
2304
|
-
sNb89U: 'Customer slab number',
|
|
2305
|
-
'3er25q': 'Customer Custom fields filter',
|
|
2306
|
-
'4cP21P': 'Customer points',
|
|
2307
|
-
loY34k: 'Customer is Loyal',
|
|
2308
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
2309
|
-
tjqr20: 'Value of the transaction',
|
|
2310
|
-
cy654u: 'Concept',
|
|
2311
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
2312
|
-
'9i58j1': 'Zone',
|
|
2313
|
-
'23g26d': 'Extended fields in the transaction',
|
|
2314
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
2315
|
-
'17t80a': 'Store',
|
|
2316
|
-
mFL59r: 'Gross amount of the transaction',
|
|
2317
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
2318
|
-
c654er: "Customer's segments"
|
|
2319
|
-
},
|
|
2320
|
-
couponsData: {
|
|
2321
|
-
couponsData: {
|
|
2322
|
-
CLN_1RQ9YY: [],
|
|
2323
|
-
'04keK6m-H3': [],
|
|
2324
|
-
X4pqXQKF7t: []
|
|
2325
|
-
}
|
|
2326
|
-
},
|
|
2327
|
-
allAudienceGroups: {},
|
|
2328
|
-
brand: [],
|
|
2329
|
-
category: [],
|
|
2330
|
-
productAttribute: [],
|
|
2331
|
-
customerSegmentValues: [],
|
|
2332
|
-
conceptValues: [],
|
|
2333
|
-
zoneValues: [],
|
|
2334
|
-
storeValues: [],
|
|
2335
|
-
customFieldValues: []
|
|
2336
|
-
}
|
|
2337
|
-
}
|
|
2338
|
-
},
|
|
2339
|
-
props: {
|
|
2340
|
-
blockData: {
|
|
2341
|
-
triggerType: 'USER_EVENT',
|
|
2342
|
-
userEventTrigger: {
|
|
2343
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
2344
|
-
eventType: 'transactionAdded',
|
|
2345
|
-
conditionalPaths: [{
|
|
2346
|
-
condition: {
|
|
2347
|
-
compoundExpression: {
|
|
2348
|
-
operator: 'OR',
|
|
2349
|
-
expressionGroups: [{
|
|
2350
|
-
operator: 'AND',
|
|
2351
|
-
simpleExpressions: [{
|
|
2352
|
-
fact: {
|
|
2353
|
-
factId: 'tjqr20',
|
|
2354
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
2355
|
-
},
|
|
2356
|
-
operator: 'EQ',
|
|
2357
|
-
operand: {
|
|
2358
|
-
type: 'DOUBLE_VALUE',
|
|
2359
|
-
doubleValue: 50
|
|
2360
|
-
},
|
|
2361
|
-
isExcluded: false
|
|
2362
|
-
}]
|
|
2363
|
-
}]
|
|
2364
|
-
}
|
|
2365
|
-
},
|
|
2366
|
-
path: {
|
|
2367
|
-
pathBlockId: 'P9x2uEdq1d',
|
|
2368
|
-
pathName: null
|
|
2369
|
-
}
|
|
2370
|
-
}, {
|
|
2371
|
-
condition: {
|
|
2372
|
-
compoundExpression: {
|
|
2373
|
-
operator: 'OR',
|
|
2374
|
-
expressionGroups: [{
|
|
2375
|
-
operator: 'AND',
|
|
2376
|
-
simpleExpressions: [{
|
|
2377
|
-
fact: {
|
|
2378
|
-
factId: 'tjqr20',
|
|
2379
|
-
profileId: 'TRANSACTION_PROFILE'
|
|
2380
|
-
},
|
|
2381
|
-
operator: 'EQ',
|
|
2382
|
-
operand: {
|
|
2383
|
-
type: 'DOUBLE_VALUE',
|
|
2384
|
-
doubleValue: 45
|
|
2385
|
-
},
|
|
2386
|
-
isExcluded: false
|
|
2387
|
-
}]
|
|
2388
|
-
}]
|
|
2389
|
-
}
|
|
2390
|
-
},
|
|
2391
|
-
path: {
|
|
2392
|
-
pathBlockId: 'X4pqXQKF7t',
|
|
2393
|
-
pathName: null
|
|
2394
|
-
}
|
|
2395
|
-
}]
|
|
2396
|
-
}
|
|
2397
|
-
},
|
|
2398
|
-
allAudienceGroups: {}
|
|
2399
|
-
},
|
|
2400
|
-
isMultiPath: true,
|
|
2401
|
-
placeholderToIndex: 1
|
|
2402
|
-
}, {
|
|
2403
|
-
id: 'P9x2uEdq1d',
|
|
2404
|
-
name: 'TILL',
|
|
2405
|
-
userEventTrigger: {
|
|
2406
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
2407
|
-
eventType: 'transactionAdded',
|
|
2408
|
-
conditionalPaths: [{
|
|
2409
|
-
path: {
|
|
2410
|
-
pathName: null,
|
|
2411
|
-
pathBlockId: 'aO5-eWUPMk'
|
|
2412
|
-
},
|
|
2413
|
-
condition: {
|
|
2414
|
-
compoundExpression: {
|
|
2415
|
-
operator: 'OR',
|
|
2416
|
-
expressionGroups: [{
|
|
2417
|
-
operator: 'AND',
|
|
2418
|
-
simpleExpressions: [{
|
|
2419
|
-
fact: {
|
|
2420
|
-
factId: 'tjqr20',
|
|
2421
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
2422
|
-
params: []
|
|
2423
|
-
},
|
|
2424
|
-
functions: [],
|
|
2425
|
-
operator: 'EQ',
|
|
2426
|
-
operand: {
|
|
2427
|
-
type: 'DOUBLE_VALUE',
|
|
2428
|
-
longValue: null,
|
|
2429
|
-
stringValue: null,
|
|
2430
|
-
doubleValue: 50,
|
|
2431
|
-
booleanValue: null,
|
|
2432
|
-
longList: null,
|
|
2433
|
-
stringList: null,
|
|
2434
|
-
doubleList: null
|
|
2435
|
-
},
|
|
2436
|
-
isExcluded: false,
|
|
2437
|
-
excluded: false
|
|
2438
|
-
}]
|
|
2439
|
-
}]
|
|
2440
|
-
}
|
|
2441
|
-
}
|
|
2442
|
-
}]
|
|
2443
|
-
},
|
|
2444
|
-
waitDurationRO: {
|
|
2445
|
-
duration: 1,
|
|
2446
|
-
timeUnit: 'HOURS'
|
|
2447
|
-
},
|
|
2448
|
-
postWaitPath: {
|
|
2449
|
-
pathName: 'Wait time expired path',
|
|
2450
|
-
pathBlockId: 'GoPSnp68IE'
|
|
2451
|
-
},
|
|
2452
|
-
props: {
|
|
2453
|
-
iconType: 'waitEvent',
|
|
2454
|
-
color: '#23cccc',
|
|
2455
|
-
blockType: 'WAIT_TILL_EVENT',
|
|
2456
|
-
isConfigured: true,
|
|
2457
|
-
viewMode: false,
|
|
2458
|
-
id: 'P9x2uEdq1d',
|
|
2459
|
-
isMultiPath: true,
|
|
2460
|
-
nodePreview: {
|
|
2461
|
-
key: null,
|
|
2462
|
-
ref: null,
|
|
2463
|
-
props: {
|
|
2464
|
-
blockData: {
|
|
2465
|
-
id: 'P9x2uEdq1d',
|
|
2466
|
-
name: 'TILL',
|
|
2467
|
-
userEventTrigger: {
|
|
2468
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
2469
|
-
eventType: 'transactionAdded',
|
|
2470
|
-
conditionalPaths: [{
|
|
2471
|
-
path: {
|
|
2472
|
-
pathName: null,
|
|
2473
|
-
pathBlockId: 'aO5-eWUPMk'
|
|
2474
|
-
},
|
|
2475
|
-
condition: {
|
|
2476
|
-
compoundExpression: {
|
|
2477
|
-
operator: 'OR',
|
|
2478
|
-
expressionGroups: [{
|
|
2479
|
-
operator: 'AND',
|
|
2480
|
-
simpleExpressions: [{
|
|
2481
|
-
fact: {
|
|
2482
|
-
factId: 'tjqr20',
|
|
2483
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
2484
|
-
params: []
|
|
2485
|
-
},
|
|
2486
|
-
functions: [],
|
|
2487
|
-
operator: 'EQ',
|
|
2488
|
-
operand: {
|
|
2489
|
-
type: 'DOUBLE_VALUE',
|
|
2490
|
-
longValue: null,
|
|
2491
|
-
stringValue: null,
|
|
2492
|
-
doubleValue: 50,
|
|
2493
|
-
booleanValue: null,
|
|
2494
|
-
longList: null,
|
|
2495
|
-
stringList: null,
|
|
2496
|
-
doubleList: null
|
|
2497
|
-
},
|
|
2498
|
-
isExcluded: false,
|
|
2499
|
-
excluded: false
|
|
2500
|
-
}]
|
|
2501
|
-
}]
|
|
2502
|
-
}
|
|
2503
|
-
}
|
|
2504
|
-
}]
|
|
2505
|
-
},
|
|
2506
|
-
waitDurationRO: {
|
|
2507
|
-
duration: 1,
|
|
2508
|
-
timeUnit: 'HOURS'
|
|
2509
|
-
},
|
|
2510
|
-
postWaitPath: {
|
|
2511
|
-
pathName: 'Wait time expired path',
|
|
2512
|
-
pathBlockId: 'GoPSnp68IE'
|
|
2513
|
-
},
|
|
2514
|
-
blockType: 'WAIT_TILL_EVENT'
|
|
2515
|
-
},
|
|
2516
|
-
blockId: 'P9x2uEdq1d',
|
|
2517
|
-
type: 'WAIT_TILL_EVENT'
|
|
2518
|
-
},
|
|
2519
|
-
_owner: null,
|
|
2520
|
-
_store: {}
|
|
2521
|
-
}
|
|
2522
|
-
},
|
|
2523
|
-
type: 'BLOCK_NODE',
|
|
2524
|
-
to: ['CLN_1RQ9YY', '12pNxGPAma'],
|
|
2525
|
-
pathsInfo: {
|
|
2526
|
-
CLN_1RQ9YY: {
|
|
2527
|
-
previewComponent: {
|
|
2528
|
-
displayName: 'withStyles__StyledComponent',
|
|
2529
|
-
attrs: [],
|
|
2530
|
-
componentStyle: {
|
|
2531
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
2532
|
-
isStatic: false,
|
|
2533
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
2534
|
-
lastClassName: 'kWaAQH'
|
|
2535
|
-
},
|
|
2536
|
-
foldedComponentIds: [],
|
|
2537
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
2538
|
-
},
|
|
2539
|
-
previewProps: {
|
|
2540
|
-
header: 'waitTillEvent',
|
|
2541
|
-
name: {
|
|
2542
|
-
key: null,
|
|
2543
|
-
ref: null,
|
|
2544
|
-
props: {
|
|
2545
|
-
id: 'adionaUIApp.common.eventPath',
|
|
2546
|
-
defaultMessage: 'Event path',
|
|
2547
|
-
values: {}
|
|
2548
|
-
},
|
|
2549
|
-
_owner: null,
|
|
2550
|
-
_store: {}
|
|
2551
|
-
},
|
|
2552
|
-
condition: {
|
|
2553
|
-
compoundExpression: {
|
|
2554
|
-
operator: 'OR',
|
|
2555
|
-
expressionGroups: [{
|
|
2556
|
-
operator: 'AND',
|
|
2557
|
-
simpleExpressions: [{
|
|
2558
|
-
fact: {
|
|
2559
|
-
factId: 'tjqr20',
|
|
2560
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
2561
|
-
params: []
|
|
2562
|
-
},
|
|
2563
|
-
functions: [],
|
|
2564
|
-
operator: 'EQ',
|
|
2565
|
-
operand: {
|
|
2566
|
-
type: 'DOUBLE_VALUE',
|
|
2567
|
-
longValue: null,
|
|
2568
|
-
stringValue: null,
|
|
2569
|
-
doubleValue: 50,
|
|
2570
|
-
booleanValue: null,
|
|
2571
|
-
longList: null,
|
|
2572
|
-
stringList: null,
|
|
2573
|
-
doubleList: null
|
|
2574
|
-
},
|
|
2575
|
-
isExcluded: false,
|
|
2576
|
-
excluded: false
|
|
2577
|
-
}]
|
|
2578
|
-
}]
|
|
2579
|
-
}
|
|
2580
|
-
},
|
|
2581
|
-
blockId: 'P9x2uEdq1d',
|
|
2582
|
-
events: [{
|
|
2583
|
-
type: 'STANDARD',
|
|
2584
|
-
name: 'CouponRedeem'
|
|
2585
|
-
}, {
|
|
2586
|
-
type: 'STANDARD',
|
|
2587
|
-
name: 'customerAdded'
|
|
2588
|
-
}, {
|
|
2589
|
-
type: 'STANDARD',
|
|
2590
|
-
name: 'transactionAdded'
|
|
2591
|
-
}, {
|
|
2592
|
-
type: 'BEHAVIOURAL',
|
|
2593
|
-
name: 'reviewAdded'
|
|
2594
|
-
}],
|
|
2595
|
-
grammar: {
|
|
2596
|
-
LqNBP7: 'Bill type of the transaction',
|
|
2597
|
-
'32p234': 'Basket Sum with product',
|
|
2598
|
-
'8arjDE': 'Date of the transaction',
|
|
2599
|
-
'56de3w': 'Extended field in the customer',
|
|
2600
|
-
'3UcyB2': 'Discount on the transaction',
|
|
2601
|
-
sRc59p: 'Customer source',
|
|
2602
|
-
o765rt: 'OrgUnit',
|
|
2603
|
-
'5sLAB9': "Customer's slab name",
|
|
2604
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
2605
|
-
'5zpWFg': 'Transaction number',
|
|
2606
|
-
'87ytre': 'Customer externalId',
|
|
2607
|
-
sNb89U: 'Customer slab number',
|
|
2608
|
-
'3er25q': 'Customer Custom fields filter',
|
|
2609
|
-
'4cP21P': 'Customer points',
|
|
2610
|
-
loY34k: 'Customer is Loyal',
|
|
2611
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
2612
|
-
tjqr20: 'Value of the transaction',
|
|
2613
|
-
cy654u: 'Concept',
|
|
2614
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
2615
|
-
'9i58j1': 'Zone',
|
|
2616
|
-
'23g26d': 'Extended fields in the transaction',
|
|
2617
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
2618
|
-
'17t80a': 'Store',
|
|
2619
|
-
mFL59r: 'Gross amount of the transaction',
|
|
2620
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
2621
|
-
c654er: "Customer's segments"
|
|
2622
|
-
},
|
|
2623
|
-
couponsData: {
|
|
2624
|
-
couponsData: {}
|
|
2625
|
-
},
|
|
2626
|
-
allAudienceGroups: {},
|
|
2627
|
-
brand: [],
|
|
2628
|
-
category: [],
|
|
2629
|
-
productAttribute: [],
|
|
2630
|
-
customerSegmentValues: [],
|
|
2631
|
-
conceptValues: [],
|
|
2632
|
-
zoneValues: [],
|
|
2633
|
-
storeValues: [],
|
|
2634
|
-
customFieldValues: []
|
|
2635
|
-
}
|
|
2636
|
-
},
|
|
2637
|
-
'12pNxGPAma': {
|
|
2638
|
-
previewComponent: {
|
|
2639
|
-
displayName: 'withStyles__StyledComponent',
|
|
2640
|
-
attrs: [],
|
|
2641
|
-
componentStyle: {
|
|
2642
|
-
rules: ['&.entry-trigger-popover,&.decision-split-popover{&.ant-popover.cap-popover-v2{width:650px;max-width:650px;max-height:360px;}.ant-popover-inner-content{max-height:360px;overflow:auto;}.condition-group-block{margin-top:24px;}.condition-simple-block{margin-top:16px;}.condition-divider{margin:0px;}.within-text{display:inline-block;margin-right:5px;}.within-duration{display:inline-block;margin-right:3px;font-size:14px;}.decision-split-condition-wrapper{padding:4px 0px;}.decision-split-condition{padding:2px 0px;}}&.remainder-truncate-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:40px;}.cap-truncate-list{.ant-tooltip-inner{max-height:300px;}}', ';'],
|
|
2643
|
-
isStatic: false,
|
|
2644
|
-
componentId: 'withStyles__StyledComponent-sc-1eghlp0-0',
|
|
2645
|
-
lastClassName: 'kWaAQH'
|
|
2646
|
-
},
|
|
2647
|
-
foldedComponentIds: [],
|
|
2648
|
-
styledComponentId: 'withStyles__StyledComponent-sc-1eghlp0-0'
|
|
2649
|
-
},
|
|
2650
|
-
previewProps: {
|
|
2651
|
-
header: 'waitExpiredPath',
|
|
2652
|
-
name: 'Wait time expired path',
|
|
2653
|
-
condition: {
|
|
2654
|
-
duration: 1,
|
|
2655
|
-
timeUnit: 'HOURS'
|
|
2656
|
-
},
|
|
2657
|
-
blockId: 'P9x2uEdq1d',
|
|
2658
|
-
events: [{
|
|
2659
|
-
type: 'STANDARD',
|
|
2660
|
-
name: 'CouponRedeem'
|
|
2661
|
-
}, {
|
|
2662
|
-
type: 'STANDARD',
|
|
2663
|
-
name: 'customerAdded'
|
|
2664
|
-
}, {
|
|
2665
|
-
type: 'STANDARD',
|
|
2666
|
-
name: 'transactionAdded'
|
|
2667
|
-
}, {
|
|
2668
|
-
type: 'BEHAVIOURAL',
|
|
2669
|
-
name: 'reviewAdded'
|
|
2670
|
-
}],
|
|
2671
|
-
grammar: {
|
|
2672
|
-
LqNBP7: 'Bill type of the transaction',
|
|
2673
|
-
'32p234': 'Basket Sum with product',
|
|
2674
|
-
'8arjDE': 'Date of the transaction',
|
|
2675
|
-
'56de3w': 'Extended field in the customer',
|
|
2676
|
-
'3UcyB2': 'Discount on the transaction',
|
|
2677
|
-
sRc59p: 'Customer source',
|
|
2678
|
-
o765rt: 'OrgUnit',
|
|
2679
|
-
'5sLAB9': "Customer's slab name",
|
|
2680
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
2681
|
-
'5zpWFg': 'Transaction number',
|
|
2682
|
-
'87ytre': 'Customer externalId',
|
|
2683
|
-
sNb89U: 'Customer slab number',
|
|
2684
|
-
'3er25q': 'Customer Custom fields filter',
|
|
2685
|
-
'4cP21P': 'Customer points',
|
|
2686
|
-
loY34k: 'Customer is Loyal',
|
|
2687
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
2688
|
-
tjqr20: 'Value of the transaction',
|
|
2689
|
-
cy654u: 'Concept',
|
|
2690
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
2691
|
-
'9i58j1': 'Zone',
|
|
2692
|
-
'23g26d': 'Extended fields in the transaction',
|
|
2693
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
2694
|
-
'17t80a': 'Store',
|
|
2695
|
-
mFL59r: 'Gross amount of the transaction',
|
|
2696
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
2697
|
-
c654er: "Customer's segments"
|
|
2698
|
-
},
|
|
2699
|
-
couponsData: {
|
|
2700
|
-
couponsData: {}
|
|
2701
|
-
},
|
|
2702
|
-
allAudienceGroups: {},
|
|
2703
|
-
brand: [],
|
|
2704
|
-
category: [],
|
|
2705
|
-
productAttribute: [],
|
|
2706
|
-
customerSegmentValues: [],
|
|
2707
|
-
conceptValues: [],
|
|
2708
|
-
zoneValues: [],
|
|
2709
|
-
storeValues: [],
|
|
2710
|
-
customFieldValues: []
|
|
2711
|
-
}
|
|
2712
|
-
}
|
|
2713
|
-
},
|
|
2714
|
-
from: 'C_Dx-bl4PV'
|
|
2715
|
-
}, {
|
|
2716
|
-
id: 'CLN_1RQ9YY',
|
|
2717
|
-
props: {
|
|
2718
|
-
iconType: 'sms',
|
|
2719
|
-
color: '#fec52e',
|
|
2720
|
-
id: 'CLN_1RQ9YY',
|
|
2721
|
-
blockType: 'SMS',
|
|
2722
|
-
nodeTitle: {
|
|
2723
|
-
key: null,
|
|
2724
|
-
ref: null,
|
|
2725
|
-
props: {
|
|
2726
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
2727
|
-
defaultMessage: 'SMS',
|
|
2728
|
-
values: {}
|
|
2729
|
-
},
|
|
2730
|
-
_owner: null,
|
|
2731
|
-
_store: {}
|
|
2732
|
-
},
|
|
2733
|
-
blockData: {
|
|
2734
|
-
content: {
|
|
2735
|
-
couponOffers: [],
|
|
2736
|
-
pointsOffers: [],
|
|
2737
|
-
body: 'SMS1'
|
|
2738
|
-
},
|
|
2739
|
-
deliverySettings: {
|
|
2740
|
-
domainId: 3461,
|
|
2741
|
-
gsmSenderId: 'TATADG'
|
|
2742
|
-
},
|
|
2743
|
-
name: 'SMS1'
|
|
2744
|
-
},
|
|
2745
|
-
isConfigured: true,
|
|
2746
|
-
nodePreview: {
|
|
2747
|
-
key: null,
|
|
2748
|
-
ref: null,
|
|
2749
|
-
props: {
|
|
2750
|
-
type: 'SMS',
|
|
2751
|
-
blockData: {
|
|
2752
|
-
content: {
|
|
2753
|
-
couponOffers: [],
|
|
2754
|
-
pointsOffers: [],
|
|
2755
|
-
body: 'SMS1'
|
|
2756
|
-
},
|
|
2757
|
-
deliverySettings: {
|
|
2758
|
-
domainId: 3461,
|
|
2759
|
-
gsmSenderId: 'TATADG'
|
|
2760
|
-
},
|
|
2761
|
-
name: 'SMS1'
|
|
2762
|
-
},
|
|
2763
|
-
blockId: 'CLN_1RQ9YY'
|
|
2764
|
-
},
|
|
2765
|
-
_owner: null,
|
|
2766
|
-
_store: {}
|
|
2767
|
-
},
|
|
2768
|
-
joinBlockNameArray: ['JOIN1']
|
|
2769
|
-
},
|
|
2770
|
-
to: ['aO5-eWUPMk'],
|
|
2771
|
-
from: 'P9x2uEdq1d',
|
|
2772
|
-
type: 'BLOCK_NODE'
|
|
2773
|
-
}, {
|
|
2774
|
-
width: 42,
|
|
2775
|
-
height: 42,
|
|
2776
|
-
id: 'aO5-eWUPMk',
|
|
2777
|
-
props: {
|
|
2778
|
-
type: 'end',
|
|
2779
|
-
style: {
|
|
2780
|
-
color: '#47af46',
|
|
2781
|
-
padding: '9px 0'
|
|
2782
|
-
},
|
|
2783
|
-
textLabel: {
|
|
2784
|
-
type: {
|
|
2785
|
-
displayName: 'CapLabel',
|
|
2786
|
-
attrs: [],
|
|
2787
|
-
componentStyle: {
|
|
2788
|
-
rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
|
|
2789
|
-
isStatic: false,
|
|
2790
|
-
componentId: 'CapLabel-n7zsf5-0',
|
|
2791
|
-
lastClassName: 'hcywYU'
|
|
2792
|
-
},
|
|
2793
|
-
foldedComponentIds: [],
|
|
2794
|
-
styledComponentId: 'CapLabel-n7zsf5-0',
|
|
2795
|
-
target: 'div',
|
|
2796
|
-
propTypes: {},
|
|
2797
|
-
CapLabelInline: {
|
|
2798
|
-
displayName: 'CapLabel__CapLabelInline',
|
|
2799
|
-
attrs: [],
|
|
2800
|
-
componentStyle: {
|
|
2801
|
-
rules: ['font-size:', null, ';font-weight:', null, ';color:', null, ';line-height:', null, ';'],
|
|
2802
|
-
isStatic: false,
|
|
2803
|
-
componentId: 'CapLabel__CapLabelInline-n7zsf5-1',
|
|
2804
|
-
lastClassName: 'gBSzRM'
|
|
2805
|
-
},
|
|
2806
|
-
foldedComponentIds: [],
|
|
2807
|
-
styledComponentId: 'CapLabel__CapLabelInline-n7zsf5-1',
|
|
2808
|
-
target: 'span'
|
|
2809
|
-
},
|
|
2810
|
-
_foldedDefaultProps: {
|
|
2811
|
-
type: 'label1'
|
|
2812
|
-
}
|
|
2813
|
-
},
|
|
2814
|
-
key: null,
|
|
2815
|
-
ref: null,
|
|
2816
|
-
props: {
|
|
2817
|
-
type: 'label2',
|
|
2818
|
-
className: 'margin-l-2 margin-t-5',
|
|
2819
|
-
children: {
|
|
2820
|
-
key: null,
|
|
2821
|
-
ref: null,
|
|
2822
|
-
props: {
|
|
2823
|
-
id: 'adionaUIApp.common.end',
|
|
2824
|
-
defaultMessage: 'End',
|
|
2825
|
-
values: {}
|
|
2826
|
-
},
|
|
2827
|
-
_owner: null,
|
|
2828
|
-
_store: {}
|
|
2829
|
-
}
|
|
2830
|
-
},
|
|
2831
|
-
_owner: null,
|
|
2832
|
-
_store: {}
|
|
2833
|
-
}
|
|
2834
|
-
},
|
|
2835
|
-
type: 'END_NODE',
|
|
2836
|
-
from: 'CLN_1RQ9YY'
|
|
2837
|
-
}, {
|
|
2838
|
-
id: '12pNxGPAma',
|
|
2839
|
-
props: {
|
|
2840
|
-
iconType: 'join',
|
|
2841
|
-
color: '#23cccc',
|
|
2842
|
-
id: '12pNxGPAma',
|
|
2843
|
-
blockType: 'JOIN',
|
|
2844
|
-
isMultiPath: false,
|
|
2845
|
-
nodeTitle: 'Join',
|
|
2846
|
-
blockData: {
|
|
2847
|
-
name: 'JOIN3'
|
|
2848
|
-
},
|
|
2849
|
-
isConfigured: false
|
|
2850
|
-
},
|
|
2851
|
-
from: 'P9x2uEdq1d',
|
|
2852
|
-
type: 'BLOCK_NODE'
|
|
2853
|
-
}, {
|
|
2854
|
-
id: 'X4pqXQKF7t',
|
|
2855
|
-
props: {
|
|
2856
|
-
iconType: 'sms',
|
|
2857
|
-
color: '#fec52e',
|
|
2858
|
-
id: 'X4pqXQKF7t',
|
|
2859
|
-
blockType: 'SMS',
|
|
2860
|
-
nodeTitle: {
|
|
2861
|
-
key: null,
|
|
2862
|
-
ref: null,
|
|
2863
|
-
props: {
|
|
2864
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureSms',
|
|
2865
|
-
defaultMessage: 'SMS',
|
|
2866
|
-
values: {}
|
|
2867
|
-
},
|
|
2868
|
-
_owner: null,
|
|
2869
|
-
_store: {}
|
|
2870
|
-
},
|
|
2871
|
-
blockData: {
|
|
2872
|
-
content: {
|
|
2873
|
-
couponOffers: [],
|
|
2874
|
-
pointsOffers: [],
|
|
2875
|
-
body: 'SMS3'
|
|
2876
|
-
},
|
|
2877
|
-
deliverySettings: {
|
|
2878
|
-
domainId: 3461,
|
|
2879
|
-
gsmSenderId: 'TATADG'
|
|
2880
|
-
},
|
|
2881
|
-
name: 'SMS3'
|
|
2882
|
-
},
|
|
2883
|
-
isConfigured: true,
|
|
2884
|
-
nodePreview: {
|
|
2885
|
-
key: null,
|
|
2886
|
-
ref: null,
|
|
2887
|
-
props: {
|
|
2888
|
-
type: 'SMS',
|
|
2889
|
-
blockData: {
|
|
2890
|
-
content: {
|
|
2891
|
-
couponOffers: [],
|
|
2892
|
-
pointsOffers: [],
|
|
2893
|
-
body: 'SMS3'
|
|
2894
|
-
},
|
|
2895
|
-
deliverySettings: {
|
|
2896
|
-
domainId: 3461,
|
|
2897
|
-
gsmSenderId: 'TATADG'
|
|
2898
|
-
},
|
|
2899
|
-
name: 'SMS3'
|
|
2900
|
-
},
|
|
2901
|
-
blockId: 'X4pqXQKF7t'
|
|
2902
|
-
},
|
|
2903
|
-
_owner: null,
|
|
2904
|
-
_store: {}
|
|
2905
|
-
}
|
|
2906
|
-
},
|
|
2907
|
-
to: ['mj3MUxj6CH'],
|
|
2908
|
-
from: 'C_Dx-bl4PV',
|
|
2909
|
-
type: 'BLOCK_NODE'
|
|
2910
|
-
}, {
|
|
2911
|
-
id: 'mj3MUxj6CH',
|
|
2912
|
-
props: {
|
|
2913
|
-
iconType: 'join',
|
|
2914
|
-
color: '#23cccc',
|
|
2915
|
-
id: 'mj3MUxj6CH',
|
|
2916
|
-
blockType: 'JOIN',
|
|
2917
|
-
isMultiPath: false,
|
|
2918
|
-
nodeTitle: {
|
|
2919
|
-
key: null,
|
|
2920
|
-
ref: null,
|
|
2921
|
-
props: {
|
|
2922
|
-
id: 'adionaUIApp.components.pages.JourneyBuilder.configureJoin',
|
|
2923
|
-
defaultMessage: 'Join',
|
|
2924
|
-
values: {}
|
|
2925
|
-
},
|
|
2926
|
-
_owner: null,
|
|
2927
|
-
_store: {}
|
|
2928
|
-
},
|
|
2929
|
-
blockData: {
|
|
2930
|
-
name: 'JOIN1',
|
|
2931
|
-
nextBlock: {
|
|
2932
|
-
pathBlockId: 'CLN_1RQ9YY',
|
|
2933
|
-
pathName: 'SMS1'
|
|
2934
|
-
}
|
|
2935
|
-
},
|
|
2936
|
-
isConfigured: true,
|
|
2937
|
-
nodePreview: {
|
|
2938
|
-
key: null,
|
|
2939
|
-
ref: null,
|
|
2940
|
-
props: {
|
|
2941
|
-
type: 'JOIN',
|
|
2942
|
-
flowControlBlockName: 'JOIN1',
|
|
2943
|
-
joinedBlockName: 'SMS1'
|
|
2944
|
-
},
|
|
2945
|
-
_owner: null,
|
|
2946
|
-
_store: {}
|
|
2947
|
-
}
|
|
2948
|
-
},
|
|
2949
|
-
from: 'X4pqXQKF7t',
|
|
2950
|
-
type: 'BLOCK_NODE'
|
|
2951
|
-
}, {
|
|
2952
|
-
width: 148,
|
|
2953
|
-
height: 180,
|
|
2954
|
-
id: '59iTeDxv_B',
|
|
2955
|
-
to: [],
|
|
2956
|
-
type: 'EXIT_TRIGGER',
|
|
2957
|
-
pathsInfo: {},
|
|
2958
|
-
props: {
|
|
2959
|
-
blockData: {
|
|
2960
|
-
triggerType: 'USER_EVENT',
|
|
2961
|
-
userEventTrigger: {
|
|
2962
|
-
triggerFilterType: 'ALL_CUSTOMERS',
|
|
2963
|
-
eventType: 'transactionAdded',
|
|
2964
|
-
conditionalPath: {
|
|
2965
|
-
condition: {
|
|
2966
|
-
compoundExpression: {
|
|
2967
|
-
operator: 'OR',
|
|
2968
|
-
expressionGroups: [{
|
|
2969
|
-
operator: 'AND',
|
|
2970
|
-
simpleExpressions: [{
|
|
2971
|
-
fact: {
|
|
2972
|
-
factId: 'tjqr20',
|
|
2973
|
-
profileId: 'TRANSACTION_PROFILE',
|
|
2974
|
-
params: []
|
|
2975
|
-
},
|
|
2976
|
-
functions: [],
|
|
2977
|
-
operator: 'EQ',
|
|
2978
|
-
operand: {
|
|
2979
|
-
type: 'DOUBLE_VALUE',
|
|
2980
|
-
longValue: null,
|
|
2981
|
-
stringValue: null,
|
|
2982
|
-
doubleValue: 50,
|
|
2983
|
-
booleanValue: null,
|
|
2984
|
-
longList: null,
|
|
2985
|
-
stringList: null,
|
|
2986
|
-
doubleList: null
|
|
2987
|
-
},
|
|
2988
|
-
isExcluded: false,
|
|
2989
|
-
excluded: false
|
|
2990
|
-
}]
|
|
2991
|
-
}]
|
|
2992
|
-
}
|
|
2993
|
-
}
|
|
2994
|
-
}
|
|
2995
|
-
}
|
|
2996
|
-
},
|
|
2997
|
-
viewMode: false,
|
|
2998
|
-
blockType: 'EXIT_TRIGGER',
|
|
2999
|
-
grammar: {
|
|
3000
|
-
LqNBP7: 'Bill type of the transaction',
|
|
3001
|
-
'32p234': 'Basket Sum with product',
|
|
3002
|
-
'8arjDE': 'Date of the transaction',
|
|
3003
|
-
'56de3w': 'Extended field in the customer',
|
|
3004
|
-
'3UcyB2': 'Discount on the transaction',
|
|
3005
|
-
sRc59p: 'Customer source',
|
|
3006
|
-
o765rt: 'OrgUnit',
|
|
3007
|
-
'5sLAB9': "Customer's slab name",
|
|
3008
|
-
'5LFP9e': 'Customer Lifetime Purchases',
|
|
3009
|
-
'5zpWFg': 'Transaction number',
|
|
3010
|
-
'87ytre': 'Customer externalId',
|
|
3011
|
-
sNb89U: 'Customer slab number',
|
|
3012
|
-
'3er25q': 'Customer Custom fields filter',
|
|
3013
|
-
'4cP21P': 'Customer points',
|
|
3014
|
-
loY34k: 'Customer is Loyal',
|
|
3015
|
-
'5HmDCN': 'Count of line-items in the transaction',
|
|
3016
|
-
tjqr20: 'Value of the transaction',
|
|
3017
|
-
cy654u: 'Concept',
|
|
3018
|
-
t987re: 'Customer Lifetime Transaction Count',
|
|
3019
|
-
'9i58j1': 'Zone',
|
|
3020
|
-
'23g26d': 'Extended fields in the transaction',
|
|
3021
|
-
'9LF38S': 'Customer Lifetime Points',
|
|
3022
|
-
'17t80a': 'Store',
|
|
3023
|
-
mFL59r: 'Gross amount of the transaction',
|
|
3024
|
-
'1wg27d': 'Custom fields in the transaction',
|
|
3025
|
-
c654er: "Customer's segments"
|
|
3026
|
-
}
|
|
3027
|
-
},
|
|
3028
|
-
isMultiPath: false
|
|
3029
|
-
}, {
|
|
3030
|
-
width: 148,
|
|
3031
|
-
height: 161,
|
|
3032
|
-
id: '5eDwSQu6Fi',
|
|
3033
|
-
type: 'SCHEDULE_BLOCK',
|
|
3034
|
-
isMultiPath: false,
|
|
3035
|
-
props: {
|
|
3036
|
-
id: '5eDwSQu6Fi',
|
|
3037
|
-
blockData: {
|
|
3038
|
-
startType: 'IMMEDIATE',
|
|
3039
|
-
endType: 'NEVER',
|
|
3040
|
-
startsFrom: null,
|
|
3041
|
-
endsAt: 7226562600000
|
|
3042
|
-
},
|
|
3043
|
-
viewMode: false
|
|
3044
|
-
}
|
|
3045
|
-
}]
|
|
3046
|
-
};
|