@capillarytech/creatives-library 1.0.0 → 1.0.1-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.htaccess +52 -0
- package/app.js +158 -0
- package/assets/EmptyStateIllustrationForPromos.png +0 -0
- package/assets/Points.png +0 -0
- package/assets/access.png +0 -0
- package/assets/add-event.png +0 -0
- package/assets/addCustomer.svg +9 -0
- package/assets/addUser.svg +34 -0
- package/assets/advanced-promotion-not-enabled.png +0 -0
- package/assets/atoms-icons-24-gift (1).svg +22 -0
- package/assets/atoms-illustration.png +0 -0
- package/assets/award-point.svg +20 -0
- package/assets/badgeMask.svg +3 -0
- package/assets/bill-point.svg +15 -0
- package/assets/bulb.svg +9 -0
- package/assets/bulk-configs-illustration.svg +198 -0
- package/assets/calendar.svg +24 -0
- package/assets/cap-logo.png +0 -0
- package/assets/cluster.svg +3 -0
- package/assets/color.svg +20 -0
- package/assets/confirmation.png +0 -0
- package/assets/contribute.svg +28 -0
- package/assets/coupon.svg +26 -0
- package/assets/delay.svg +24 -0
- package/assets/delete.svg +14 -0
- package/assets/dotted.png +0 -0
- package/assets/draft-not-exist-Illustration.svg +16 -0
- package/assets/drag.svg +8 -0
- package/assets/dummyIcon.png +0 -0
- package/assets/ebill.svg +15 -0
- package/assets/elephant.svg +1 -0
- package/assets/empty.svg +35 -0
- package/assets/emptyBadge.svg +15 -0
- package/assets/enrolPoints.svg +9 -0
- package/assets/facebook.svg +22 -0
- package/assets/file-selector.svg +11 -0
- package/assets/filled-arrow.svg +3 -0
- package/assets/forward.svg +20 -0
- package/assets/gift.svg +22 -0
- package/assets/group.svg +28 -0
- package/assets/integration.svg +1 -0
- package/assets/link.svg +30 -0
- package/assets/loading_img.gif +0 -0
- package/assets/loyalty.svg +9 -0
- package/assets/membership.svg +24 -0
- package/assets/message.svg +20 -0
- package/assets/mobile-push.svg +22 -0
- package/assets/not-supported-yet.svg +4 -0
- package/assets/notepad.svg +20 -0
- package/assets/offersIllustration.svg +1 -0
- package/assets/penguin.svg +19 -0
- package/assets/pigeon.svg +17 -0
- package/assets/points.svg +28 -0
- package/assets/pointsConversion.svg +15 -0
- package/assets/promotion.svg +9 -0
- package/assets/reEvaluate.svg +17 -0
- package/assets/receipt.svg +14 -0
- package/assets/referal.svg +20 -0
- package/assets/refresh-delay.svg +24 -0
- package/assets/refresh.svg +11 -0
- package/assets/removeCart.svg +24 -0
- package/assets/removeUser.svg +24 -0
- package/assets/renew.svg +11 -0
- package/assets/repair.png +0 -0
- package/assets/return.svg +20 -0
- package/assets/reverse-return.svg +20 -0
- package/assets/reward.svg +18 -0
- package/assets/rewardCurrencyLimitIcon.svg +11 -0
- package/assets/rewards-empty-placeholder.svg +104 -0
- package/assets/search.svg +9 -0
- package/assets/social.svg +20 -0
- package/assets/star.svg +20 -0
- package/assets/storeCode.csv +5 -0
- package/assets/survey-response.svg +9 -0
- package/assets/target.svg +24 -0
- package/assets/thin-close.svg +22 -0
- package/assets/transfer.svg +24 -0
- package/assets/trigger.svg +24 -0
- package/assets/unlink.svg +32 -0
- package/assets/upgrade.svg +26 -0
- package/assets/user_personlaisation.svg +13 -0
- package/assets/users.svg +18 -0
- package/assets/wechat.svg +18 -0
- package/assets/zones.svg +14 -0
- package/components/atoms/AccessDeniedTooltipMessage/AccessDeniedTooltipMessage.js +29 -0
- package/components/atoms/AccessDeniedTooltipMessage/index.js +1 -0
- package/components/atoms/AccessDeniedTooltipMessage/style.js +24 -0
- package/components/atoms/ActionViewModeHeader/ActionViewModeHeader.js +60 -0
- package/components/atoms/ActionViewModeHeader/index.js +1 -0
- package/components/atoms/ActionViewModeHeader/style.js +7 -0
- package/components/atoms/AvatarIcon/AvatarIcon.js +42 -0
- package/components/atoms/AvatarIcon/index.js +1 -0
- package/components/atoms/AvatarIcon/tests/AvatarIcon.test.js +32 -0
- package/components/atoms/AvatarIcon/tests/__snapshots__/AvatarIcon.test.js.snap +116 -0
- package/components/atoms/ButtonDropdown/ButtonDropdown.js +41 -0
- package/components/atoms/ButtonDropdown/index.js +1 -0
- package/components/atoms/ButtonDropdown/tests/ButtonDropdown.test.js +20 -0
- package/components/atoms/CenteredSkeleton/CenteredSkeleton.js +19 -0
- package/components/atoms/CenteredSkeleton/index.js +1 -0
- package/components/atoms/CustomIcons/CustomClose.js +14 -0
- package/components/atoms/CustomIcons/CustomDelete.js +18 -0
- package/components/atoms/CustomIcons/CustomTick.js +14 -0
- package/components/atoms/CustomSkeleton/CustomSkeleton.js +61 -0
- package/components/atoms/CustomSkeleton/index.js +1 -0
- package/components/atoms/CustomSkeleton/stories/CustomSkeleton.stories.js +5 -0
- package/components/atoms/CustomSkeleton/style.js +18 -0
- package/components/atoms/CustomSkeleton/tests/__snapshots__/index.test.js.snap +66 -0
- package/components/atoms/CustomSkeleton/tests/index.test.js +29 -0
- package/components/atoms/DateTimePicker/DateTimePicker.js +68 -0
- package/components/atoms/DateTimePicker/index.js +1 -0
- package/components/atoms/DateTimePicker/style.js +31 -0
- package/components/atoms/DisabledMoreIcon/DisabledMoreIcon.js +29 -0
- package/components/atoms/DisabledMoreIcon/index.js +1 -0
- package/components/atoms/DisabledMoreIcon/styles.js +9 -0
- package/components/atoms/ElementToElementWrap/ElementToElementWrap.js +26 -0
- package/components/atoms/ElementToElementWrap/index.js +1 -0
- package/components/atoms/ElementToElementWrap/stories/ElementToElementWrap.stories.js +5 -0
- package/components/atoms/ElementToElementWrap/style.js +5 -0
- package/components/atoms/ElementToElementWrap/tests/__snapshots__/index.test.js.snap +22 -0
- package/components/atoms/ElementToElementWrap/tests/index.test.js +19 -0
- package/components/atoms/EllipsisText/EllipsisText.js +20 -0
- package/components/atoms/EllipsisText/index.js +1 -0
- package/components/atoms/EllipsisText/tests/__snapshots__/index.test.js.snap +22 -0
- package/components/atoms/EllipsisText/tests/index.test.js +19 -0
- package/components/atoms/Heading/Heading.js +20 -0
- package/components/atoms/Heading/index.js +1 -0
- package/components/atoms/Heading/stories/Heading.stories.js +7 -0
- package/components/atoms/Heading/style.js +6 -0
- package/components/atoms/Heading/tests/__snapshots__/index.test.js.snap +9 -0
- package/components/atoms/Heading/tests/index.test.js +10 -0
- package/components/atoms/HighlightedBackgroundText/HighlightedBackgroundText.js +32 -0
- package/components/atoms/HighlightedBackgroundText/index.js +1 -0
- package/components/atoms/HighlightedBackgroundText/style.js +24 -0
- package/components/atoms/HighlightedBackgroundText/tests/HighlightedBackgroundText.test.js +21 -0
- package/components/atoms/IllustrationWithTitleAndDesc/IllustrationWithTitleAndDesc.js +44 -0
- package/components/atoms/IllustrationWithTitleAndDesc/index.js +1 -0
- package/components/atoms/IllustrationWithTitleAndDesc/tests/IllustrationWithTitleAndDesc.test.js +21 -0
- package/components/atoms/IssuePromotionTooltip/IssuePromotionTooltip.js +66 -0
- package/components/atoms/IssuePromotionTooltip/index.js +1 -0
- package/components/atoms/Label/Label.js +8 -0
- package/components/atoms/Label/index.js +1 -0
- package/components/atoms/Label/tests/__snapshots__/index.test.js.snap +17 -0
- package/components/atoms/Label/tests/index.test.js +19 -0
- package/components/atoms/LabelCustomisation/LabelCustomisation.js +78 -0
- package/components/atoms/LabelCustomisation/index.js +1 -0
- package/components/atoms/LabelCustomisation/style.js +23 -0
- package/components/atoms/LabelCustomisation/tests/LabelCustomisation.test.js +67 -0
- package/components/atoms/LdsErrorState/LdsErrorState.js +148 -0
- package/components/atoms/LdsErrorState/index.js +1 -0
- package/components/atoms/LdsErrorState/tests/__snapshots__/index.test.js.snap +161 -0
- package/components/atoms/LdsErrorState/tests/index.test.js +10 -0
- package/components/atoms/LdsNoDataState/LdsNoDataState.js +113 -0
- package/components/atoms/LdsNoDataState/index.js +1 -0
- package/components/atoms/LdsNoDataState/tests/__snapshots__/index.test.js.snap +100 -0
- package/components/atoms/LdsNoDataState/tests/index.test.js +10 -0
- package/components/atoms/OptionWithTooltip/OptionWithTooltip.js +35 -0
- package/components/atoms/OptionWithTooltip/index.js +1 -0
- package/components/atoms/PrimaryInput/PrimaryInput.js +63 -0
- package/components/atoms/PrimaryInput/constants.js +7 -0
- package/components/atoms/PrimaryInput/index.js +1 -0
- package/components/atoms/PrimaryInput/stories/PrimaryInput.stories.js +25 -0
- package/components/atoms/PrimaryInput/style.js +26 -0
- package/components/atoms/PrimaryInput/tests/__snapshots__/index.test.js.snap +78 -0
- package/components/atoms/PrimaryInput/tests/index.test.js +60 -0
- package/components/atoms/PrimarySelect/PrimarySelect.js +55 -0
- package/components/atoms/PrimarySelect/index.js +1 -0
- package/components/atoms/PrimarySelect/stories/PrimarySelect.stories.js +25 -0
- package/components/atoms/PrimarySelect/style.js +0 -0
- package/components/atoms/PrimarySelect/tests/__snapshots__/index.test.js.snap +116 -0
- package/components/atoms/PrimarySelect/tests/index.test.js +55 -0
- package/components/atoms/RenderRoute/RenderRoute.js +16 -0
- package/components/atoms/RenderRoute/index.js +1 -0
- package/components/atoms/RenderRoute/stories/RenderRoute.stories.js +8 -0
- package/components/atoms/RenderRoute/tests/__snapshots__/index.test.js.snap +179 -0
- package/components/atoms/RenderRoute/tests/index.test.js +16 -0
- package/components/atoms/RenewalExpression/RenewalExpression.js +72 -0
- package/components/atoms/RenewalExpression/index.js +1 -0
- package/components/atoms/RenewalExpression/style.js +47 -0
- package/components/atoms/ReonNotEnabled/ReonNotEnabled.js +399 -0
- package/components/atoms/ReonNotEnabled/index.js +1 -0
- package/components/atoms/ReonNotEnabled/stories/ReonNotEnabled.stories.js +5 -0
- package/components/atoms/ReonNotEnabled/tests/__snapshots__/index.test.js.snap +528 -0
- package/components/atoms/ReonNotEnabled/tests/index.test.js +10 -0
- package/components/atoms/RewardCatalogTooltip/RewardCatalogTooltip.js +106 -0
- package/components/atoms/RewardCatalogTooltip/index.js +1 -0
- package/components/atoms/RoleBasedAuth/RoleBasedAuth.js +28 -0
- package/components/atoms/RoleBasedAuth/index.js +1 -0
- package/components/atoms/RoleBasedAuth/tests/RequireRoleBasedAuth.test.js +55 -0
- package/components/atoms/RoleBasedAuth/tests/mockData.js +303 -0
- package/components/atoms/SelectOptionLabelWithInfo/SelectOptionLabelWithInfo.js +77 -0
- package/components/atoms/SelectOptionLabelWithInfo/index.js +1 -0
- package/components/atoms/SelectOptionLabelWithInfo/tests/__snapshots__/index.test.js.snap +67 -0
- package/components/atoms/SelectOptionLabelWithInfo/tests/index.test.js +23 -0
- package/components/atoms/SortIcon/SortIcon.js +53 -0
- package/components/atoms/SortIcon/index.js +1 -0
- package/components/atoms/SortIcon/stories/SortIcon.stories.js +5 -0
- package/components/atoms/SortIcon/style.js +31 -0
- package/components/atoms/SortIcon/tests/__snapshots__/index.test.js.snap +46 -0
- package/components/atoms/SortIcon/tests/index.test.js +18 -0
- package/components/atoms/StatusColor/StatusColor.js +63 -0
- package/components/atoms/StatusColor/index.js +1 -0
- package/components/atoms/StatusColor/stories/StatusColor.stories.js +7 -0
- package/components/atoms/StatusColor/style.js +9 -0
- package/components/atoms/StatusColor/tests/__snapshots__/index.test.js.snap +28 -0
- package/components/atoms/StatusColor/tests/index.test.js +20 -0
- package/components/atoms/Tag/Tag.js +97 -0
- package/components/atoms/Tag/index.js +1 -0
- package/components/atoms/Tag/stories/Tag.stories.js +14 -0
- package/components/atoms/Tag/style.js +19 -0
- package/components/atoms/Tag/tests/__snapshots__/index.test.js.snap +101 -0
- package/components/atoms/Tag/tests/index.test.js +34 -0
- package/components/atoms/Toaster/Toaster.js +50 -0
- package/components/atoms/Toaster/index.js +1 -0
- package/components/atoms/Toaster/style.js +14 -0
- package/components/atoms/Toaster/tests/Toastr.test.js +32 -0
- package/components/atoms/Toaster/toastrStyle.js +44 -0
- package/components/atoms/ToastrMessage/ToastrMessage.js +68 -0
- package/components/atoms/ToastrMessage/index.js +1 -0
- package/components/atoms/ToastrMessage/style.js +38 -0
- package/components/atoms/ToastrMessage/tests/ToastrMessageTimer.test.js +60 -0
- package/components/atoms/TrackerExpressionCondition/TrackerExpressionCondition.js +118 -0
- package/components/atoms/TrackerExpressionCondition/index.js +1 -0
- package/components/atoms/TrackerExpressionCondition/style.js +38 -0
- package/components/atoms/TrackerExpressionCondition/tests/TrackerExpressionCondition.test.js +19 -0
- package/components/atoms/TriggerAction/TriggerAction.js +42 -0
- package/components/atoms/TriggerAction/index.js +1 -0
- package/components/atoms/TriggerAction/tests/__snapshots__/index.test.js.snap +35 -0
- package/components/atoms/TriggerAction/tests/index.test.js +54 -0
- package/components/atoms/VersioningNote/VersioningNote.js +46 -0
- package/components/atoms/VersioningNote/index.js +1 -0
- package/components/atoms/VersioningNote/style.js +31 -0
- package/components/atoms/VersioningNote/tests/VersioningNote.test.js +27 -0
- package/components/molecules/AccessCard/AccessCard.js +35 -0
- package/components/molecules/AccessCard/index.js +1 -0
- package/components/molecules/AccessCard/messages.js +20 -0
- package/components/molecules/AccessCard/stories/AccessCard.stories.js +7 -0
- package/components/molecules/AccessCard/style.js +22 -0
- package/components/molecules/AccessCard/tests/AccessCard.test.js +13 -0
- package/components/molecules/AccessCard/tests/__snapshots__/AccessCard.test.js.snap +32 -0
- package/components/molecules/AccessDeniedTooltip/AccessDeniedTooltip.js +34 -0
- package/components/molecules/AccessDeniedTooltip/index.js +1 -0
- package/components/molecules/AccessDeniedTooltip/tests/AccessDeniedTooltip.test.js +35 -0
- package/components/molecules/ActionTitle/ActionTitle.js +47 -0
- package/components/molecules/ActionTitle/index.js +1 -0
- package/components/molecules/ActionTitle/tests/ActionTitle.test.js +44 -0
- package/components/molecules/ActionTitle/tests/__snapshots__/ActionTitle.test.js.snap +31 -0
- package/components/molecules/AddActionConditionWorkflow/AddActionConditionWorkflow.js +84 -0
- package/components/molecules/AddActionConditionWorkflow/index.js +1 -0
- package/components/molecules/AddActionConditionWorkflow/style.js +23 -0
- package/components/molecules/AddActionConditionWorkflow/tests/AddActionConditionWorkflow.test.js +16 -0
- package/components/molecules/AddActionConditionWorkflow/tests/__snapshots__/AddActionConditionWorkflow.test.js.snap +40 -0
- package/components/molecules/AddMoreCard/AddMoreCard.js +22 -0
- package/components/molecules/AddMoreCard/index.js +1 -0
- package/components/molecules/AddMoreCard/style.js +23 -0
- package/components/molecules/AddMoreCard/tests/AddMoreCard.test.js +23 -0
- package/components/molecules/AddMoreCard/tests/__snapshots__/AddMoreCard.test.js.snap +30 -0
- package/components/molecules/AddPartnerPrograms/AddPartnerPrograms.js +1012 -0
- package/components/molecules/AddPartnerPrograms/constants.js +2 -0
- package/components/molecules/AddPartnerPrograms/index.js +1 -0
- package/components/molecules/AddPartnerPrograms/messages.js +60 -0
- package/components/molecules/AddPartnerPrograms/style.js +53 -0
- package/components/molecules/AddPartnerPrograms/tests/AddExternalPrograms.test.js +493 -0
- package/components/molecules/AddPartnerPrograms/tests/AddSupplementaryPrograms.test.js +489 -0
- package/components/molecules/AddPartnerPrograms/tests/mockData.js +205 -0
- package/components/molecules/AddPartnerPrograms/utils.js +22 -0
- package/components/molecules/AddPartnerProgramsBasicDetails/AddPartnerProgramsBasicDetails.js +156 -0
- package/components/molecules/AddPartnerProgramsBasicDetails/index.js +1 -0
- package/components/molecules/AddPartnerProgramsBasicDetails/messages.js +53 -0
- package/components/molecules/AddPartnerProgramsBasicDetails/style.js +60 -0
- package/components/molecules/AddPartnerProgramsBasicDetails/tests/AddSupplementaryBasicDetails.test.js +77 -0
- package/components/molecules/AddPartnerProgramsBasicDetails/utils.js +116 -0
- package/components/molecules/AddTierBanner/AddTierBanner.js +45 -0
- package/components/molecules/AddTierBanner/index.js +1 -0
- package/components/molecules/AddTierBanner/tests/AddTierBanner.test.js +27 -0
- package/components/molecules/AddTierBanner/tests/__snapshots__/AddTierBanner.test.js.snap +25 -0
- package/components/molecules/AddTierPrimaryInfo/AddTierPrimaryInfo.js +146 -0
- package/components/molecules/AddTierPrimaryInfo/index.js +1 -0
- package/components/molecules/AddTierPrimaryInfo/messages.js +28 -0
- package/components/molecules/AddTierPrimaryInfo/tests/AddTierPrimaryInfo.test.js +49 -0
- package/components/molecules/AddTierPrimaryInfo/tests/__snapshots__/AddTierPrimaryInfo.test.js.snap +132 -0
- package/components/molecules/AddTrackersInfo/AddTrackersInfo.js +48 -0
- package/components/molecules/AddTrackersInfo/index.js +1 -0
- package/components/molecules/AddTrackersInfo/messages.js +17 -0
- package/components/molecules/AddTrackersInfo/style.js +31 -0
- package/components/molecules/AddTrackersInfo/tests/AddTrackersInfo.test.js +23 -0
- package/components/molecules/AddTrackersInfo/tests/__snapshots__/AddTrackersInfo.test.js.snap +103 -0
- package/components/molecules/AdvanceSettingScrollContainer/AdvanceSettingScrollContainer.js +64 -0
- package/components/molecules/AdvanceSettingScrollContainer/index.js +1 -0
- package/components/molecules/AdvanceSettingScrollContainer/style.js +28 -0
- package/components/molecules/AdvanceSettingScrollContainer/tests/AdvanceSettingScrollContainer.test.js +30 -0
- package/components/molecules/AdvanceSettingScrollContainer/tests/__snapshots__/AdvanceSettingScrollContainer.test.js.snap +82 -0
- package/components/molecules/AlternateCurrencyWorkflowHeader/AlternateCurrencyWorkflowHeader.js +114 -0
- package/components/molecules/AlternateCurrencyWorkflowHeader/index.js +1 -0
- package/components/molecules/AlternateCurrencyWorkflowHeader/messages.js +34 -0
- package/components/molecules/AlternateCurrencyWorkflowHeader/style.js +38 -0
- package/components/molecules/AnyOrCustomPathBlock/AnyOrCustomPathBlock.js +149 -0
- package/components/molecules/AnyOrCustomPathBlock/index.js +1 -0
- package/components/molecules/AnyOrCustomPathBlock/style.js +94 -0
- package/components/molecules/BenefitsAndLimitsList/BenefitsAndLimitsList.js +327 -0
- package/components/molecules/BenefitsAndLimitsList/actions.js +13 -0
- package/components/molecules/BenefitsAndLimitsList/constants.js +3 -0
- package/components/molecules/BenefitsAndLimitsList/index.js +1 -0
- package/components/molecules/BenefitsAndLimitsList/messages.js +56 -0
- package/components/molecules/BenefitsAndLimitsList/reducer.js +33 -0
- package/components/molecules/BenefitsAndLimitsList/saga.js +40 -0
- package/components/molecules/BenefitsAndLimitsList/selectors.js +26 -0
- package/components/molecules/BenefitsAndLimitsList/style.js +71 -0
- package/components/molecules/BenefitsAndLimitsList/tests/BenefitsAndLimitsList.test.js +124 -0
- package/components/molecules/BenefitsAndLimitsList/tests/actions.test.js +10 -0
- package/components/molecules/BenefitsAndLimitsList/tests/mockData.js +551 -0
- package/components/molecules/BenefitsAndLimitsList/tests/reducer.test.js +51 -0
- package/components/molecules/BenefitsAndLimitsList/tests/saga.test.js +62 -0
- package/components/molecules/BenefitsAndLimitsList/tests/selectors.test.js +41 -0
- package/components/molecules/BenefitsAndLimitsList/utils.js +51 -0
- package/components/molecules/BenefitsAndLimitsPane/BenefitsAndLimitsPane.js +120 -0
- package/components/molecules/BenefitsAndLimitsPane/index.js +1 -0
- package/components/molecules/BenefitsAndLimitsPane/messages.js +19 -0
- package/components/molecules/BenefitsAndLimitsPane/style.js +56 -0
- package/components/molecules/BenefitsAndLimitsPane/tests/BenefitsAndLimitsPane.test.js +47 -0
- package/components/molecules/BenefitsAndLimitsPane/tests/mockData.js +14 -0
- package/components/molecules/BulkConfigPulishAlert/BulkConfigPulishAlert.js +98 -0
- package/components/molecules/BulkConfigPulishAlert/index.js +1 -0
- package/components/molecules/BulkConfigPulishAlert/messages.js +28 -0
- package/components/molecules/BulkConfigPulishAlert/style.js +48 -0
- package/components/molecules/BulkConfigPulishAlert/tests/BulkConfigPublishAlert.test.js +57 -0
- package/components/molecules/ButtonWithPagination/ButtonWithPagination.js +51 -0
- package/components/molecules/ButtonWithPagination/index.js +1 -0
- package/components/molecules/ButtonWithPagination/style.js +9 -0
- package/components/molecules/CapReportLink/CapReportLink.js +52 -0
- package/components/molecules/CapReportLink/index.js +1 -0
- package/components/molecules/CapReportLink/style.js +29 -0
- package/components/molecules/CapReportLink/tests/CapReport.test.js +49 -0
- package/components/molecules/CardWithHeadingAction/CardWithHeadingAction.js +47 -0
- package/components/molecules/CardWithHeadingAction/index.js +1 -0
- package/components/molecules/CardWithHeadingAction/style.js +37 -0
- package/components/molecules/CardsCommunication/CardsCommunication.js +142 -0
- package/components/molecules/CardsCommunication/constants.js +5 -0
- package/components/molecules/CardsCommunication/index.js +2 -0
- package/components/molecules/CardsCommunication/messages.js +20 -0
- package/components/molecules/CardsCommunication/style.js +18 -0
- package/components/molecules/CardsCommunication/tests/CardCommunication.test.js +50 -0
- package/components/molecules/CardsCommunication/utils.js +35 -0
- package/components/molecules/CardsWithCheckboxCommunication/CardsWithCheckboxCommunication.js +58 -0
- package/components/molecules/CardsWithCheckboxCommunication/constants.js +1 -0
- package/components/molecules/CardsWithCheckboxCommunication/index.js +1 -0
- package/components/molecules/CardsWithCheckboxCommunication/style.js +14 -0
- package/components/molecules/CartLevelLimits/CartLevelLimits.js +135 -0
- package/components/molecules/CartLevelLimits/index.js +1 -0
- package/components/molecules/CartLevelLimits/style.js +66 -0
- package/components/molecules/CartLevelLimits/tests/CartLevelLimit.test.js +62 -0
- package/components/molecules/CheckboxWithInputPrefix/CheckboxWithInputPrefix.js +118 -0
- package/components/molecules/CheckboxWithInputPrefix/index.js +1 -0
- package/components/molecules/CheckboxWithInputPrefix/style.js +23 -0
- package/components/molecules/CollapsableContent/CollapsableContent.js +185 -0
- package/components/molecules/CollapsableContent/index.js +1 -0
- package/components/molecules/CollapsableContent/style.js +108 -0
- package/components/molecules/CollapsableHeaderContent/CollapsableHeaderContent.js +69 -0
- package/components/molecules/CollapsableHeaderContent/index.js +1 -0
- package/components/molecules/CollapsableHeaderContent/style.js +51 -0
- package/components/molecules/CollapsableHeaderContent/tests/CollapsableHeaderContent.test.js +33 -0
- package/components/molecules/CollapseWithDateRange/CollapseWithDateRange.js +72 -0
- package/components/molecules/CollapseWithDateRange/index.js +1 -0
- package/components/molecules/CollapseWithInput/CollapseWithInput.js +51 -0
- package/components/molecules/CollapseWithInput/index.js +1 -0
- package/components/molecules/CollapseWithMultiSelect/CollapseWithMultiSelect.js +78 -0
- package/components/molecules/CollapseWithMultiSelect/index.js +1 -0
- package/components/molecules/CollapseWithMultiSelect/style.js +9 -0
- package/components/molecules/CollapseWithRadioGroup/CollapseWithRadioGroup.js +67 -0
- package/components/molecules/CollapseWithRadioGroup/index.js +1 -0
- package/components/molecules/CollapseWithSelectAndInput/CollapseWithSelectAndInput.js +93 -0
- package/components/molecules/CollapseWithSelectAndInput/index.js +1 -0
- package/components/molecules/CollapseWithSelectAndInput/style.js +9 -0
- package/components/molecules/CollapseWithStore/CollapseWithStore.js +276 -0
- package/components/molecules/CollapseWithStore/index.js +1 -0
- package/components/molecules/CollapseWithStore/messages.js +68 -0
- package/components/molecules/CollapseWithStore/style.js +108 -0
- package/components/molecules/CollapseWithStore/tests/CollapseWithStore.test.js +30 -0
- package/components/molecules/CollapseWithStore/tests/mockData.js +72 -0
- package/components/molecules/CollapseWithSwitchSelect/CollapseWithSwitchSelect.js +103 -0
- package/components/molecules/CollapseWithSwitchSelect/index.js +1 -0
- package/components/molecules/ColorPatch/ColorPatch.js +26 -0
- package/components/molecules/ColorPatch/index.js +1 -0
- package/components/molecules/ColorPatch/style.js +34 -0
- package/components/molecules/ColorPatch/tests/ColorPatch.test.js +21 -0
- package/components/molecules/ColorPatch/tests/__snapshots__/ColorPatch.test.js.snap +5100 -0
- package/components/molecules/ColorSelector/ColorSelector.js +150 -0
- package/components/molecules/ColorSelector/index.js +1 -0
- package/components/molecules/ColorSelector/style.js +76 -0
- package/components/molecules/ColorSelector/tests/ColorSelector.test.js +62 -0
- package/components/molecules/CommunicationTable/CommunicationTable.js +349 -0
- package/components/molecules/CommunicationTable/constants.js +9 -0
- package/components/molecules/CommunicationTable/index.js +1 -0
- package/components/molecules/CommunicationTable/messages.js +20 -0
- package/components/molecules/CommunicationTable/stories/CommunicationTable.stories.js +15 -0
- package/components/molecules/CommunicationTable/stories/mockData.js +52 -0
- package/components/molecules/CommunicationTable/style.js +129 -0
- package/components/molecules/CommunicationTable/tests/index.test.js +44 -0
- package/components/molecules/ConditionExpressionLayout/ConditionExpressionLayout.js +103 -0
- package/components/molecules/ConditionExpressionLayout/index.js +1 -0
- package/components/molecules/ConfirmationModal/ConfirmationModal.js +118 -0
- package/components/molecules/ConfirmationModal/index.js +1 -0
- package/components/molecules/ConfirmationModal/style.js +171 -0
- package/components/molecules/ContentPreviews/ContentPreviews.js +123 -0
- package/components/molecules/ContentPreviews/constants.js +1 -0
- package/components/molecules/ContentPreviews/index.js +1 -0
- package/components/molecules/ContentPreviews/mockData.js +95 -0
- package/components/molecules/ContentPreviews/style.js +36 -0
- package/components/molecules/ContentPreviews/tests/__snapshots__/index.test.js.snap +103 -0
- package/components/molecules/ContentPreviews/tests/index.test.js +30 -0
- package/components/molecules/ContentWithHeading/ContentWithHeading.js +27 -0
- package/components/molecules/ContentWithHeading/index.js +1 -0
- package/components/molecules/ContentWithHeading/style.js +0 -0
- package/components/molecules/CreateActionButton/CreateActionButton.js +73 -0
- package/components/molecules/CreateActionButton/index.js +1 -0
- package/components/molecules/CreateActionButton/style.js +10 -0
- package/components/molecules/CreateActionButton/tests/CreateActionButton.test.js +27 -0
- package/components/molecules/CreateActionButton/tests/__snapshots__/CreateActionButton.test.js.snap +57 -0
- package/components/molecules/CreateCustomFieldPopover/CreateCustomFieldPopover.js +236 -0
- package/components/molecules/CreateCustomFieldPopover/index.js +1 -0
- package/components/molecules/CreateCustomFieldPopover/style.js +55 -0
- package/components/molecules/CreateCustomFieldPopover/tests/CreateCustomFieldPopover.test.js +137 -0
- package/components/molecules/CreateOfferInfo/CreateOfferInfo.js +65 -0
- package/components/molecules/CreateOfferInfo/index.js +1 -0
- package/components/molecules/CreateOfferInfo/messages.js +17 -0
- package/components/molecules/CreateOfferInfo/style.js +23 -0
- package/components/molecules/CreateOfferInfo/tests/CreateOfferInfo.test.js +23 -0
- package/components/molecules/CreateOfferInfo/tests/__snapshots__/CreateOfferInfo.test.js.snap +127 -0
- package/components/molecules/CreateTierInfo/CreateTierInfo.js +64 -0
- package/components/molecules/CreateTierInfo/index.js +1 -0
- package/components/molecules/CreateTierInfo/messages.js +25 -0
- package/components/molecules/CreateTierInfo/style.js +24 -0
- package/components/molecules/CreateTracker/CreateTracker.js +1300 -0
- package/components/molecules/CreateTracker/actions.js +14 -0
- package/components/molecules/CreateTracker/constants.js +14 -0
- package/components/molecules/CreateTracker/index.js +1 -0
- package/components/molecules/CreateTracker/messages.js +289 -0
- package/components/molecules/CreateTracker/reducer.js +51 -0
- package/components/molecules/CreateTracker/saga.js +64 -0
- package/components/molecules/CreateTracker/selectors.js +32 -0
- package/components/molecules/CreateTracker/style.js +115 -0
- package/components/molecules/CreateTracker/tests/CreateTracker.test.js +426 -0
- package/components/molecules/CreateTracker/tests/__snapshots__/actions.test.js.snap +44 -0
- package/components/molecules/CreateTracker/tests/__snapshots__/reducer.test.js.snap +112 -0
- package/components/molecules/CreateTracker/tests/actions.test.js +19 -0
- package/components/molecules/CreateTracker/tests/mockData.js +876 -0
- package/components/molecules/CreateTracker/tests/reducer.test.js +164 -0
- package/components/molecules/CreateTracker/tests/saga.test.js +178 -0
- package/components/molecules/CreateTracker/tests/selectors.test.js +67 -0
- package/components/molecules/CreativesErrorFallBack/CreativesErrorFallback.js +33 -0
- package/components/molecules/CreativesErrorFallBack/index.js +1 -0
- package/components/molecules/CreativesErrorFallBack/style.js +10 -0
- package/components/molecules/CustomTree/CustomTree.js +315 -0
- package/components/molecules/CustomTree/index.js +1 -0
- package/components/molecules/CustomTree/messages.js +20 -0
- package/components/molecules/CustomTree/style.js +122 -0
- package/components/molecules/CustomTree/tests/CustomTree.test.js +87 -0
- package/components/molecules/CustomTree/tests/mocks/data.js +50 -0
- package/components/molecules/CustomTree/utils.js +40 -0
- package/components/molecules/CustomTreeHelper/CustomTreeHelper.js +284 -0
- package/components/molecules/CustomTreeHelper/constants.js +20 -0
- package/components/molecules/CustomTreeHelper/index.js +1 -0
- package/components/molecules/CustomTreeHelper/messages.js +133 -0
- package/components/molecules/CustomTreeHelper/style.js +183 -0
- package/components/molecules/CustomTreeHelper/tests/CustomTreeHelper.test.js +474 -0
- package/components/molecules/CustomTreeHelper/tests/mocks/data.js +152 -0
- package/components/molecules/CustomerLevelLimits/CustomerLevelLimits.js +203 -0
- package/components/molecules/CustomerLevelLimits/index.js +1 -0
- package/components/molecules/CustomerLevelLimits/messages.js +81 -0
- package/components/molecules/CustomerLevelLimits/style.js +72 -0
- package/components/molecules/CustomerLevelLimits/tests/CustomerLevelLimits.test.js +69 -0
- package/components/molecules/CustomerLevelLimits/tests/mockData.js +189 -0
- package/components/molecules/DateTimeMetaDataAttribute/DateTimeMetaDataAttribute.js +143 -0
- package/components/molecules/DateTimeMetaDataAttribute/index.js +1 -0
- package/components/molecules/DateTimeMetaDataAttribute/style.js +17 -0
- package/components/molecules/DelayCreatives/DelayCreatives.js +262 -0
- package/components/molecules/DelayCreatives/index.js +1 -0
- package/components/molecules/DelayCreatives/messages.js +20 -0
- package/components/molecules/DelayCreatives/style.js +64 -0
- package/components/molecules/DelayCreatives/tests/DelayCreatives.test.js +28 -0
- package/components/molecules/DestinationMapper/DestinationMapper.js +225 -0
- package/components/molecules/DestinationMapper/index.js +1 -0
- package/components/molecules/DestinationMapper/messages.js +59 -0
- package/components/molecules/DestinationMapper/style.js +125 -0
- package/components/molecules/DestinationMapper/tests/DestinationMapper.test.js +73 -0
- package/components/molecules/DifferentDestinationPrograms/DifferentDestinationPrograms.js +692 -0
- package/components/molecules/DifferentDestinationPrograms/index.js +1 -0
- package/components/molecules/DifferentDestinationPrograms/messages.js +90 -0
- package/components/molecules/DifferentDestinationPrograms/style.js +242 -0
- package/components/molecules/DifferentDestinationPrograms/tests/DifferentDestinationPrograms.test.js +195 -0
- package/components/molecules/DifferentDestinationPrograms/tests/mockData.js +256 -0
- package/components/molecules/DifferentDestinationPrograms/utils.js +197 -0
- package/components/molecules/DividerInlinedText/DividerInlinedText.js +42 -0
- package/components/molecules/DividerInlinedText/index.js +1 -0
- package/components/molecules/DividerInlinedText/style.js +22 -0
- package/components/molecules/DividerWithOverlappedText/DividerWithOverlappedText.js +48 -0
- package/components/molecules/DividerWithOverlappedText/index.js +1 -0
- package/components/molecules/DividerWithOverlappedText/style.js +16 -0
- package/components/molecules/DoubleMetaDataAttribute/DoubleMetaDataAttribute.js +92 -0
- package/components/molecules/DoubleMetaDataAttribute/index.js +1 -0
- package/components/molecules/DoubleMetaDataAttribute/messages.js +10 -0
- package/components/molecules/DoubleMetaDataAttribute/style.js +7 -0
- package/components/molecules/DowngradeTier/DowngradeTier.js +778 -0
- package/components/molecules/DowngradeTier/constants.js +18 -0
- package/components/molecules/DowngradeTier/index.js +1 -0
- package/components/molecules/DowngradeTier/messages.js +123 -0
- package/components/molecules/DowngradeTier/style.js +230 -0
- package/components/molecules/DowngradeTier/tests/DowngradeTier.test.js +274 -0
- package/components/molecules/DowngradeTier/utils.js +88 -0
- package/components/molecules/EarnStrategyConditions/EarnStrategyConditions.js +236 -0
- package/components/molecules/EarnStrategyConditions/index.js +1 -0
- package/components/molecules/EarnStrategyConditions/messages.js +42 -0
- package/components/molecules/EarnStrategyConditions/style.js +68 -0
- package/components/molecules/EarnStrategyConditions/tests/EarnStrategyConditions.test.js +64 -0
- package/components/molecules/EarnStrategyConditions/tests/EarnStrategySameConditions.test.js +102 -0
- package/components/molecules/EmptyStateIllustration/EmptyStateIllustration.js +69 -0
- package/components/molecules/EmptyStateIllustration/index.js +1 -0
- package/components/molecules/EmptyStateIllustration/messages.js +21 -0
- package/components/molecules/EmptyStateIllustration/stories/EmptyStateIllustration.stories.js +7 -0
- package/components/molecules/EmptyStateIllustration/style.js +11 -0
- package/components/molecules/EmptyStateIllustration/tests/EmptyStateIllustration.test.js +35 -0
- package/components/molecules/ErrorBoundaryWrapper/ErrorBoundaryWrapper.js +87 -0
- package/components/molecules/ErrorBoundaryWrapper/index.js +1 -0
- package/components/molecules/ErrorBoundaryWrapper/messages.js +24 -0
- package/components/molecules/ExpandedStepsWithContent/ExandedStepsWithContent.js +98 -0
- package/components/molecules/ExpandedStepsWithContent/index.js +1 -0
- package/components/molecules/ExpandedStepsWithContent/messages.js +16 -0
- package/components/molecules/ExpandedStepsWithContent/style.js +63 -0
- package/components/molecules/ExpiryConditionSlideBox/ExpiryConditionSlideBox.js +169 -0
- package/components/molecules/ExpiryConditionSlideBox/constants.js +4 -0
- package/components/molecules/ExpiryConditionSlideBox/index.js +1 -0
- package/components/molecules/ExpiryConditionSlideBox/messages.js +106 -0
- package/components/molecules/ExpiryConditionSlideBox/style.js +36 -0
- package/components/molecules/ExpiryConditionSlideBox/tests/ExpiryConditionSlideBox.test.js +42 -0
- package/components/molecules/ExpiryReminder/ExpiryReminder.js +229 -0
- package/components/molecules/ExpiryReminder/index.js +1 -0
- package/components/molecules/ExpiryReminder/messages.js +23 -0
- package/components/molecules/ExpiryReminder/style.js +61 -0
- package/components/molecules/ExpiryReminder/tests/ExpiryReminder.test.js +204 -0
- package/components/molecules/FileSelector/FileSelector.js +82 -0
- package/components/molecules/FileSelector/index.js +1 -0
- package/components/molecules/FileSelector/messages.js +20 -0
- package/components/molecules/FileSelector/style.js +14 -0
- package/components/molecules/HeaderWithButton/HeaderWithButton.js +49 -0
- package/components/molecules/HeaderWithButton/index.js +1 -0
- package/components/molecules/HeaderWithInput/HeaderWithInput.js +98 -0
- package/components/molecules/HeaderWithInput/index.js +1 -0
- package/components/molecules/HeaderWithInput/style.js +18 -0
- package/components/molecules/HeaderWithSwitch/HeaderWithSwitch.js +121 -0
- package/components/molecules/HeaderWithSwitch/index.js +1 -0
- package/components/molecules/ImageUploadMolecule/UploadImageMolecule.js +137 -0
- package/components/molecules/ImageUploadMolecule/index.js +1 -0
- package/components/molecules/ImageUploadMolecule/messages.js +26 -0
- package/components/molecules/ImageUploadMolecule/style.js +69 -0
- package/components/molecules/ImageUploadMolecule/tests/UploadImageMolecule.test.js +139 -0
- package/components/molecules/InfoBanner/InfoBanner.js +55 -0
- package/components/molecules/InfoBanner/index.js +1 -0
- package/components/molecules/InfoBanner/style.js +41 -0
- package/components/molecules/InputToInput/InputToInput.js +51 -0
- package/components/molecules/InputToInput/index.js +1 -0
- package/components/molecules/InputToInput/stories/InputToInput.stories.js +24 -0
- package/components/molecules/InputToInput/style.js +10 -0
- package/components/molecules/InputToInput/tests/index.test.js +11 -0
- package/components/molecules/InputWithPrefixSufix/InputWithPrefixSufix.js +70 -0
- package/components/molecules/InputWithPrefixSufix/index.js +1 -0
- package/components/molecules/InputWithPrefixSufix/style.js +27 -0
- package/components/molecules/InputWithPrefixSufixAndCommChannel/InputWithPrefixSufixAndCommChannel.js +135 -0
- package/components/molecules/InputWithPrefixSufixAndCommChannel/index.js +1 -0
- package/components/molecules/InputWithPrefixSufixAndCommChannel/messages.js +11 -0
- package/components/molecules/InputWithPrefixSufixAndCommChannel/style.js +65 -0
- package/components/molecules/InstructionList.js/InstructionList.js +41 -0
- package/components/molecules/InstructionList.js/index.js +1 -0
- package/components/molecules/InstructionList.js/style.js +54 -0
- package/components/molecules/IssueRewardsCustomFields/IssueRewardsCustomFields.js +892 -0
- package/components/molecules/IssueRewardsCustomFields/index.js +1 -0
- package/components/molecules/IssueRewardsCustomFields/messages.js +108 -0
- package/components/molecules/IssueRewardsCustomFields/style.js +159 -0
- package/components/molecules/IssueRewardsCustomFields/tests/IssueRewardsCustomFields.test.js +212 -0
- package/components/molecules/IssueRewardsCustomFields/tests/mockData.js +164 -0
- package/components/molecules/IssueRewardsCustomFields/tests/utils.test.js +38 -0
- package/components/molecules/IssueRewardsCustomFields/utils.js +88 -0
- package/components/molecules/LabelValueWithVerticalDivider/LabelValueWithVerticalDivider.js +82 -0
- package/components/molecules/LabelValueWithVerticalDivider/index.js +1 -0
- package/components/molecules/LabelValueWithVerticalDivider/style.js +28 -0
- package/components/molecules/LabelValueWithVerticalDivider/tests/LabelValueWithVerticalDivider.test.js +46 -0
- package/components/molecules/LabelValueWithVerticalDivider/tests/mockData.js +14 -0
- package/components/molecules/LabelWithDivider/LabelWithDivider.js +45 -0
- package/components/molecules/LabelWithDivider/index.js +1 -0
- package/components/molecules/ListDragAndDrop/ListDragAndDrop.js +103 -0
- package/components/molecules/ListDragAndDrop/index.js +1 -0
- package/components/molecules/ListDragAndDrop/tests/ListDragAndDrop.test.js +30 -0
- package/components/molecules/LoyaltyStatus/LoyaltyStatus.js +57 -0
- package/components/molecules/LoyaltyStatus/constants.js +6 -0
- package/components/molecules/LoyaltyStatus/index.js +1 -0
- package/components/molecules/LoyaltyStatus/messages.js +24 -0
- package/components/molecules/LoyaltyStatus/stories/LoyaltyStatus.stories.js +7 -0
- package/components/molecules/LoyaltyStatus/style.js +12 -0
- package/components/molecules/LoyaltyStatus/tests/LoyaltyStatus.test.js +17 -0
- package/components/molecules/LoyaltyStatus/tests/__snapshots__/LoyaltyStatus.test.js.snap +7681 -0
- package/components/molecules/LoyaltyStatus/tests/mockdata.js +1 -0
- package/components/molecules/MoreLabel/MoreLabel.js +56 -0
- package/components/molecules/MoreLabel/index.js +1 -0
- package/components/molecules/NoTargetView/NoTargetView.js +84 -0
- package/components/molecules/NoTargetView/index.js +1 -0
- package/components/molecules/NoTargetView/style.js +55 -0
- package/components/molecules/NoTargetView/tests/NoTargetView.test.js +53 -0
- package/components/molecules/NudgeModal/NudgeModal.js +78 -0
- package/components/molecules/NudgeModal/index.js +1 -0
- package/components/molecules/NudgeModal/style.js +26 -0
- package/components/molecules/NumberInput/NumberInput.js +138 -0
- package/components/molecules/NumberInput/constants.js +8 -0
- package/components/molecules/NumberInput/index.js +1 -0
- package/components/molecules/NumberInput/style.js +10 -0
- package/components/molecules/PageHeaderDescription/PageHeaderDescription.js +123 -0
- package/components/molecules/PageHeaderDescription/constants.js +0 -0
- package/components/molecules/PageHeaderDescription/index.js +1 -0
- package/components/molecules/PageHeaderDescription/messages.js +11 -0
- package/components/molecules/PageHeaderDescription/stories/PageHeaderDescription.stories.js +14 -0
- package/components/molecules/PageHeaderDescription/style.js +45 -0
- package/components/molecules/PageHeaderDescription/tests/PageHeaderDescription.test.js +36 -0
- package/components/molecules/PageHeaderDescription/tests/PageHeaderDescription_jest.test.js +53 -0
- package/components/molecules/PageHeaderDescription/tests/__snapshots__/PageHeaderDescription.test.js.snap +245 -0
- package/components/molecules/PartnerProgramsConfigPane/PartnerProgramsConfigPane.js +263 -0
- package/components/molecules/PartnerProgramsConfigPane/constants.js +2 -0
- package/components/molecules/PartnerProgramsConfigPane/index.js +1 -0
- package/components/molecules/PartnerProgramsConfigPane/messages.js +39 -0
- package/components/molecules/PartnerProgramsConfigPane/style.js +26 -0
- package/components/molecules/PartnerProgramsConfigPane/tests/SupplementaryProgramsConfigPane.test.js +26 -0
- package/components/molecules/PartnerProgramsSettings/PartnerProgramsSettings.js +266 -0
- package/components/molecules/PartnerProgramsSettings/constants.js +5 -0
- package/components/molecules/PartnerProgramsSettings/index.js +1 -0
- package/components/molecules/PartnerProgramsSettings/messages.js +57 -0
- package/components/molecules/PartnerProgramsSettings/style.js +72 -0
- package/components/molecules/PartnerProgramsSettings/tests/SupplementaryProgramsSettings.test.js +116 -0
- package/components/molecules/PartnerProgramsSettings/tests/mockData.js +42 -0
- package/components/molecules/PartnerProgramsSettings/utils.js +32 -0
- package/components/molecules/PointExpiryCommunication/PointExpiryCommunication.js +363 -0
- package/components/molecules/PointExpiryCommunication/constants.js +12 -0
- package/components/molecules/PointExpiryCommunication/index.js +1 -0
- package/components/molecules/PointExpiryCommunication/messages.js +28 -0
- package/components/molecules/PointExpiryCommunication/style.js +50 -0
- package/components/molecules/PointExpiryCommunication/tests/__snapshots__/index.test.js.snap +39 -0
- package/components/molecules/PointExpiryCommunication/tests/index.test.js +13 -0
- package/components/molecules/PointsLimitContent/PointsLimitContent.js +30 -0
- package/components/molecules/PointsLimitContent/index.js +1 -0
- package/components/molecules/PointsTransferCollapseData/PointsTransferCollapseData.js +805 -0
- package/components/molecules/PointsTransferCollapseData/index.js +1 -0
- package/components/molecules/PointsTransferCollapseData/messages.js +92 -0
- package/components/molecules/PointsTransferCollapseData/stories/CollapseData.stories.js +5 -0
- package/components/molecules/PointsTransferCollapseData/style.js +40 -0
- package/components/molecules/PointsTransferCollapseData/tests/index.test.js +680 -0
- package/components/molecules/PointsTransferCollapseData/tests/mockData.js +168 -0
- package/components/molecules/PointsTransferSettings/PointsTransferSettings.js +24 -0
- package/components/molecules/PointsTransferSettings/index.js +1 -0
- package/components/molecules/PointsTransferSettings/messages.js +16 -0
- package/components/molecules/PointsTransferSettings/tests/index.test.js +11 -0
- package/components/molecules/ProgramName/ProgramName.js +167 -0
- package/components/molecules/ProgramName/index.js +1 -0
- package/components/molecules/ProgramName/messages.js +20 -0
- package/components/molecules/ProgramName/style.js +77 -0
- package/components/molecules/ProgramName/tests/ProgramName.test.js +60 -0
- package/components/molecules/ProgramTitle/ProgramTitle.js +65 -0
- package/components/molecules/ProgramTitle/index.js +1 -0
- package/components/molecules/ProgramTitle/tests/index.test.js +11 -0
- package/components/molecules/ProgramValueSkeleton/ProgramValueSkeleton.js +85 -0
- package/components/molecules/ProgramValueSkeleton/index.js +1 -0
- package/components/molecules/ProgramValueSkeleton/style.js +10 -0
- package/components/molecules/ProgramValueSkeleton/tests/index.test.js +11 -0
- package/components/molecules/PromotionCalendarLazyLoad/PromotionCalendarLazyLoad.js +27 -0
- package/components/molecules/PromotionCalendarLazyLoad/index.js +1 -0
- package/components/molecules/PromotionCalendarLazyLoad/style.js +11 -0
- package/components/molecules/PromotionCalendarLazyLoad/tests/PromotionCalendarLazyLoad.test.js +16 -0
- package/components/molecules/PromotionCalendarPopoverContent/PromotionCalendarPopoverContent.js +157 -0
- package/components/molecules/PromotionCalendarPopoverContent/index.js +1 -0
- package/components/molecules/PromotionCalendarPopoverContent/messages.js +23 -0
- package/components/molecules/PromotionCalendarPopoverContent/tests/PromotionCalendarPopoverContent.test.js +52 -0
- package/components/molecules/PromotionCalendarPopoverContent/tests/mockData.js +199 -0
- package/components/molecules/PromotionListLazyLoad/PromotionListLazyLoad.js +24 -0
- package/components/molecules/PromotionListLazyLoad/index.js +1 -0
- package/components/molecules/PromotionListLazyLoad/style.js +13 -0
- package/components/molecules/PromotionSettingsContent/PromotionSettingsContent.js +46 -0
- package/components/molecules/PromotionSettingsContent/index.js +1 -0
- package/components/molecules/PromotionsTableHeader/PromotionsTableHeader.js +303 -0
- package/components/molecules/PromotionsTableHeader/index.js +1 -0
- package/components/molecules/PromotionsTableHeader/style.js +178 -0
- package/components/molecules/PromotionsTableHeader/tests/PromotionsTableHeader.test.js +126 -0
- package/components/molecules/PromotionsTableHeader/tests/mockData.js +81 -0
- package/components/molecules/PublishAndActivateModal/PublishAndActivateModal.js +222 -0
- package/components/molecules/PublishAndActivateModal/index.js +1 -0
- package/components/molecules/PublishAndActivateModal/messages.js +33 -0
- package/components/molecules/PublishAndActivateModal/style.js +53 -0
- package/components/molecules/PublishAndActivateModal/tests/PublishAndActivateModal.test.js +63 -0
- package/components/molecules/RadioContentSlidebox/RadioContentSlidebox.js +57 -0
- package/components/molecules/RadioContentSlidebox/index.js +1 -0
- package/components/molecules/RadioWithInfo/RadioWithInfo.js +60 -0
- package/components/molecules/RadioWithInfo/index.js +1 -0
- package/components/molecules/RadioWithInfo/style.js +62 -0
- package/components/molecules/RadioWithInfo/tests/RadioWithInfo.test.js +15 -0
- package/components/molecules/RadioWithInfo/tests/__snapshots__/RadioWithInfo.test.js.snap +1379 -0
- package/components/molecules/RenewalTier/RenewalTier.js +272 -0
- package/components/molecules/RenewalTier/constants.js +9 -0
- package/components/molecules/RenewalTier/index.js +1 -0
- package/components/molecules/RenewalTier/messages.js +20 -0
- package/components/molecules/RenewalTierV2/RenewalTierV2.js +503 -0
- package/components/molecules/RenewalTierV2/constants.js +9 -0
- package/components/molecules/RenewalTierV2/index.js +1 -0
- package/components/molecules/RenewalTierV2/messages.js +66 -0
- package/components/molecules/RenewalTierV2/tests/RenewalTierV2.test.js +49 -0
- package/components/molecules/RenewalTierV2/utils.js +115 -0
- package/components/molecules/ReplaceExistingDraftNotification/ReplaceExistingDraftNotification.js +161 -0
- package/components/molecules/ReplaceExistingDraftNotification/index.js +1 -0
- package/components/molecules/ReplaceExistingDraftNotification/messages.js +36 -0
- package/components/molecules/ReplaceExistingDraftNotification/style.js +87 -0
- package/components/molecules/ReplaceExistingDraftNotification/tests/ReplaceExistingDraftNotification.test.js +83 -0
- package/components/molecules/ReplaceExistingDraftNotification/tests/mockData.js +73 -0
- package/components/molecules/RestoreModal/RestoreModal.js +159 -0
- package/components/molecules/RestoreModal/index.js +1 -0
- package/components/molecules/RestoreModal/messages.js +39 -0
- package/components/molecules/RestoreModal/style.js +74 -0
- package/components/molecules/RestoreModal/tests/RestoreModal.test.js +57 -0
- package/components/molecules/ReviewTierModal/ReviewTierModal.js +128 -0
- package/components/molecules/ReviewTierModal/index.js +1 -0
- package/components/molecules/ReviewTierModal/messages.js +16 -0
- package/components/molecules/ReviewTierModal/style.js +38 -0
- package/components/molecules/RewardCatalogViewTitle/RewardCatalogViewTitle.js +66 -0
- package/components/molecules/RewardCatalogViewTitle/index.js +1 -0
- package/components/molecules/RootConfirmModal/RootConfirmModal.js +68 -0
- package/components/molecules/RootConfirmModal/index.js +1 -0
- package/components/molecules/RowHeader/RowHeader.js +101 -0
- package/components/molecules/RowHeader/index.js +1 -0
- package/components/molecules/RowHeader/style.js +7 -0
- package/components/molecules/RowHeader/tests/RowHeader.test.js +48 -0
- package/components/molecules/RowHeader/tests/__snapshots__/RowHeader.test.js.snap +291 -0
- package/components/molecules/SameDestinationPrograms/SameDestinationPrograms.js +583 -0
- package/components/molecules/SameDestinationPrograms/index.js +1 -0
- package/components/molecules/SameDestinationPrograms/messages.js +67 -0
- package/components/molecules/SameDestinationPrograms/style.js +224 -0
- package/components/molecules/SameDestinationPrograms/tests/SameDestinationPrograms.test.js +197 -0
- package/components/molecules/SelectApiWrapper/SelectApiWrapper.js +120 -0
- package/components/molecules/SelectApiWrapper/index.js +1 -0
- package/components/molecules/SelectApiWrapper/messages.js +20 -0
- package/components/molecules/SelectApiWrapper/style.js +14 -0
- package/components/molecules/SelectCollection/SelectCollection.js +88 -0
- package/components/molecules/SelectCollection/index.js +2 -0
- package/components/molecules/SelectCollection/style.js +8 -0
- package/components/molecules/SelectCollection/tests/index.test.js +11 -0
- package/components/molecules/SelectsWithAction/SelectsWithAction.js +70 -0
- package/components/molecules/SelectsWithAction/index.js +1 -0
- package/components/molecules/SenderCreatives/SenderCreatives.js +41 -0
- package/components/molecules/SenderCreatives/index.js +0 -0
- package/components/molecules/SenderInformation/SenderInformation.js +194 -0
- package/components/molecules/SenderInformation/index.js +1 -0
- package/components/molecules/SenderInformation/messages.js +68 -0
- package/components/molecules/SenderInformation/style.js +27 -0
- package/components/molecules/SenderInformation/tests/SenderInformation.test.js +34 -0
- package/components/molecules/SenderSlideBox/SenderSlideBox.js +434 -0
- package/components/molecules/SenderSlideBox/index.js +1 -0
- package/components/molecules/SenderSlideBox/style.js +82 -0
- package/components/molecules/SenderSlideBox/tests/SenderSlideBox.test.js +48 -0
- package/components/molecules/SomethingWentWrong/SomethingWentWrong.js +52 -0
- package/components/molecules/SomethingWentWrong/index.js +1 -0
- package/components/molecules/SomethingWentWrong/style.js +5 -0
- package/components/molecules/SortHeader/SortHeader.js +55 -0
- package/components/molecules/SortHeader/index.js +1 -0
- package/components/molecules/SortHeader/tests/index.test.js +11 -0
- package/components/molecules/StepFunctionEarnStrategy/StepFunctionEarnStrategy.js +153 -0
- package/components/molecules/StepFunctionEarnStrategy/index.js +1 -0
- package/components/molecules/StepFunctionEarnStrategy/messages.js +33 -0
- package/components/molecules/StepFunctionEarnStrategy/style.js +56 -0
- package/components/molecules/StepFunctionEarnStrategy/tests/StepFunctionEarnStrategy.test.js +113 -0
- package/components/molecules/StepFunctionEarnStrategy/tests/mockData.js +29 -0
- package/components/molecules/StrategiesTag/StrategiesTag.js +71 -0
- package/components/molecules/StrategiesTag/index.js +1 -0
- package/components/molecules/StrategiesTag/style.js +15 -0
- package/components/molecules/StringMetaDataAttribute/StringMetaDataAttribute.js +86 -0
- package/components/molecules/StringMetaDataAttribute/index.js +1 -0
- package/components/molecules/StringMetaDataAttribute/messages.js +10 -0
- package/components/molecules/StringMetaDataAttribute/style.js +3 -0
- package/components/molecules/SuggestionCard/SuggestionCard.js +121 -0
- package/components/molecules/SuggestionCard/index.js +1 -0
- package/components/molecules/SuggestionCard/messages.js +20 -0
- package/components/molecules/SuggestionCard/style.js +56 -0
- package/components/molecules/SuggestionCard/tests/index.test.js +11 -0
- package/components/molecules/SupplementaryExpiryReminder/SupplementaryExpiryReminder.js +171 -0
- package/components/molecules/SupplementaryExpiryReminder/index.js +1 -0
- package/components/molecules/SupplementaryExpiryReminder/messages.js +19 -0
- package/components/molecules/SupplementaryExpiryReminder/style.js +16 -0
- package/components/molecules/SupplementaryExpiryReminder/tests/SupplementaryExpiryReminder.test.js +77 -0
- package/components/molecules/SupplementaryExpiryReminder/tests/SupplementaryViewExpiryReminder.test.js +58 -0
- package/components/molecules/SupplementaryExpiryReminder/utils.js +7 -0
- package/components/molecules/Switch/Switch.js +113 -0
- package/components/molecules/Switch/index.js +1 -0
- package/components/molecules/Switch/style.js +30 -0
- package/components/molecules/Switch/tests/Switch.test.js +26 -0
- package/components/molecules/Switch/tests/mockData.js +9 -0
- package/components/molecules/SwitchWithDivider/SwitchWithDivider.js +98 -0
- package/components/molecules/SwitchWithDivider/index.js +1 -0
- package/components/molecules/SwitchWithDivider/style.js +29 -0
- package/components/molecules/SwitchWithDivider/tests/SwitchWithDivider.test.js +26 -0
- package/components/molecules/SwitchWithDivider/tests/mockData.js +9 -0
- package/components/molecules/SyncLabel/SyncLabel.js +53 -0
- package/components/molecules/SyncLabel/index.js +1 -0
- package/components/molecules/SyncLabel/style.js +12 -0
- package/components/molecules/SyncLabel/tests/SyncLabel.test.js +22 -0
- package/components/molecules/SyncLabel/tests/__snapshots__/SyncLabel.test.js.snap +5304 -0
- package/components/molecules/TableCommunication/constants.js +9 -0
- package/components/molecules/TableCommunication/index.js +1 -0
- package/components/molecules/TableOption/TableOption.js +149 -0
- package/components/molecules/TableOption/constants.js +1 -0
- package/components/molecules/TableOption/index.js +1 -0
- package/components/molecules/TableOption/style.js +19 -0
- package/components/molecules/TableOption/tests/index.test.js +11 -0
- package/components/molecules/TagForCapAndScope/TagForCapAndScope.js +47 -0
- package/components/molecules/TagForCapAndScope/index.js +1 -0
- package/components/molecules/TagForCapAndScope/style.js +19 -0
- package/components/molecules/TagsTab/TagsTab.js +77 -0
- package/components/molecules/TagsTab/index.js +1 -0
- package/components/molecules/TagsTab/style.js +14 -0
- package/components/molecules/TagsTab/tests/index.test.js +11 -0
- package/components/molecules/TierButtonInput/TierButtonInput.js +56 -0
- package/components/molecules/TierButtonInput/index.js +1 -0
- package/components/molecules/TierButtonInput/style.js +31 -0
- package/components/molecules/TierCard/BlockContent.js +125 -0
- package/components/molecules/TierCard/CardBody.js +433 -0
- package/components/molecules/TierCard/CardContent.js +51 -0
- package/components/molecules/TierCard/TierCard.js +123 -0
- package/components/molecules/TierCard/TierWithContent.js +61 -0
- package/components/molecules/TierCard/constants.js +16 -0
- package/components/molecules/TierCard/index.js +1 -0
- package/components/molecules/TierCard/messages.js +93 -0
- package/components/molecules/TierCard/style.js +147 -0
- package/components/molecules/TierCard/tests/BlockContent.test.js +37 -0
- package/components/molecules/TierCard/tests/CardBody.test.js +497 -0
- package/components/molecules/TierCard/tests/CardContent.test.js +36 -0
- package/components/molecules/TierCard/tests/mockData.js +21 -0
- package/components/molecules/TierCardHeader/TierCardHeader.js +73 -0
- package/components/molecules/TierCardHeader/index.js +1 -0
- package/components/molecules/TierCardHeader/style.js +32 -0
- package/components/molecules/TierRenewalCommunication/TierRenewalCommunication.js +235 -0
- package/components/molecules/TierRenewalCommunication/constants.js +12 -0
- package/components/molecules/TierRenewalCommunication/index.js +1 -0
- package/components/molecules/TierRenewalCommunication/messages.js +24 -0
- package/components/molecules/TierRenewalCommunication/style.js +23 -0
- package/components/molecules/TierRenewalCommunication/tests/__snapshots__/index.test.js.snap +42 -0
- package/components/molecules/TierRenewalCommunication/tests/index.test.js +13 -0
- package/components/molecules/TierUpgradeCommunication/TierUpgradeCommunication.js +105 -0
- package/components/molecules/TierUpgradeCommunication/constants.js +2 -0
- package/components/molecules/TierUpgradeCommunication/index.js +1 -0
- package/components/molecules/TierUpgradeCommunication/style.js +51 -0
- package/components/molecules/TierUpgradeCommunication/tests/__snapshots__/index.test.js.snap +11 -0
- package/components/molecules/TierUpgradeCommunication/tests/index.test.js +13 -0
- package/components/molecules/TitleWithStatus/TitleWithStatus.js +60 -0
- package/components/molecules/TitleWithStatus/index.js +1 -0
- package/components/molecules/TitleWithStatus/style.js +15 -0
- package/components/molecules/TitleWithStatus/tests/index.test.js +11 -0
- package/components/molecules/TrackerValueContent/TrackerValueContent.js +115 -0
- package/components/molecules/TrackerValueContent/index.js +1 -0
- package/components/molecules/TrackerValueContent/style.js +0 -0
- package/components/molecules/UpgradeTier/UpgradeTier.js +357 -0
- package/components/molecules/UpgradeTier/constants.js +0 -0
- package/components/molecules/UpgradeTier/index.js +1 -0
- package/components/molecules/UpgradeTier/messages.js +25 -0
- package/components/molecules/UpgradeTier/tests/UpgradeTier.test.js +48 -0
- package/components/molecules/UpgradeTierV2/UpgradeTierV2.js +912 -0
- package/components/molecules/UpgradeTierV2/constants.js +5 -0
- package/components/molecules/UpgradeTierV2/index.js +1 -0
- package/components/molecules/UpgradeTierV2/messages.js +95 -0
- package/components/molecules/UpgradeTierV2/tests/UpgradeTierV2.test.js +350 -0
- package/components/molecules/UpgradeTierV2/tests/mockData.js +840 -0
- package/components/molecules/UpgradeTierV2/tests/utils.test.js +299 -0
- package/components/molecules/UpgradeTierV2/utils.js +323 -0
- package/components/molecules/UpgradeTrackerTier/UpgradeTrackerTier.js +212 -0
- package/components/molecules/UpgradeTrackerTier/index.js +1 -0
- package/components/molecules/UpgradeTrackerTierV2/UpgradeTrackerTierV2.js +480 -0
- package/components/molecules/UpgradeTrackerTierV2/index.js +1 -0
- package/components/molecules/UpgradeTrackerTierV2/style.js +53 -0
- package/components/molecules/UpgradeTrackerTierV2/tests/UpgradeTrackerTierV2.test.js +276 -0
- package/components/molecules/UpgradeTrackerTierV2/tests/mockData.js +696 -0
- package/components/molecules/VersioningPublishModal/VersioningPublishModal.js +134 -0
- package/components/molecules/VersioningPublishModal/index.js +1 -0
- package/components/molecules/VersioningPublishModal/messages.js +39 -0
- package/components/molecules/VersioningPublishModal/style.js +41 -0
- package/components/molecules/VersioningPublishModal/tests/VersioningPublishModal.test.js +89 -0
- package/components/organisms/ActionExpression/ActionExpression.js +357 -0
- package/components/organisms/ActionExpression/actions.js +12 -0
- package/components/organisms/ActionExpression/constants.js +25 -0
- package/components/organisms/ActionExpression/index.js +1 -0
- package/components/organisms/ActionExpression/messages.js +17 -0
- package/components/organisms/ActionExpression/reducer.js +112 -0
- package/components/organisms/ActionExpression/saga.js +63 -0
- package/components/organisms/ActionExpression/selectors.js +13 -0
- package/components/organisms/ActionExpression/style.js +126 -0
- package/components/organisms/ActionExpression/tests/ActionExpression.test.js +56 -0
- package/components/organisms/ActionExpression/tests/ActionExpression1.test.js +262 -0
- package/components/organisms/ActionExpression/tests/__snapshots__/ActionExpression.test.js.snap +170 -0
- package/components/organisms/ActionExpression/tests/actions.test.js +24 -0
- package/components/organisms/ActionExpression/tests/mockData.js +50 -0
- package/components/organisms/ActionExpression/tests/reducer.test.js +124 -0
- package/components/organisms/ActionExpression/tests/saga.test.js +144 -0
- package/components/organisms/ActionExpression/tests/selectors.test.js +18 -0
- package/components/organisms/ActionExpression/tests/utils.test.js +49 -0
- package/components/organisms/ActionExpression/utils.js +50 -0
- package/components/organisms/ActivityRewardCurrencyCard/ActivityRewardCurrencyCard.js +414 -0
- package/components/organisms/ActivityRewardCurrencyCard/actions.js +21 -0
- package/components/organisms/ActivityRewardCurrencyCard/constants.js +7 -0
- package/components/organisms/ActivityRewardCurrencyCard/index.js +1 -0
- package/components/organisms/ActivityRewardCurrencyCard/messages.js +48 -0
- package/components/organisms/ActivityRewardCurrencyCard/reducer.js +48 -0
- package/components/organisms/ActivityRewardCurrencyCard/saga.js +65 -0
- package/components/organisms/ActivityRewardCurrencyCard/selectors.js +12 -0
- package/components/organisms/ActivityRewardCurrencyCard/style.js +85 -0
- package/components/organisms/ActivityRewardCurrencyCard/tests/actions.test.js +18 -0
- package/components/organisms/ActivityRewardCurrencyCard/tests/activityRewardCurrencyLimit.test.js +93 -0
- package/components/organisms/ActivityRewardCurrencyCard/tests/noTargetGroups.test.js +71 -0
- package/components/organisms/ActivityRewardCurrencyCard/tests/reducer.test.js +93 -0
- package/components/organisms/ActivityRewardCurrencyCard/tests/saga.test.js +140 -0
- package/components/organisms/ActivityRewardCurrencyCard/tests/selectors.test.js +21 -0
- package/components/organisms/ActivityRewardSlider/ConfirmEditModal.js +86 -0
- package/components/organisms/ActivityRewardSlider/actions.js +42 -0
- package/components/organisms/ActivityRewardSlider/activityRewardSlider.js +1135 -0
- package/components/organisms/ActivityRewardSlider/constants.js +77 -0
- package/components/organisms/ActivityRewardSlider/context.js +7 -0
- package/components/organisms/ActivityRewardSlider/index.js +1 -0
- package/components/organisms/ActivityRewardSlider/messages.js +203 -0
- package/components/organisms/ActivityRewardSlider/reducer.js +43 -0
- package/components/organisms/ActivityRewardSlider/saga.js +126 -0
- package/components/organisms/ActivityRewardSlider/selectors.js +29 -0
- package/components/organisms/ActivityRewardSlider/style.js +90 -0
- package/components/organisms/ActivityRewardSlider/tests/actions.test.js +20 -0
- package/components/organisms/ActivityRewardSlider/tests/activityRewardSlider.test.js +163 -0
- package/components/organisms/ActivityRewardSlider/tests/activityRewardSliderEmpty.test.js +92 -0
- package/components/organisms/ActivityRewardSlider/tests/activityRewardSliderRevamp.test.js +292 -0
- package/components/organisms/ActivityRewardSlider/tests/cartLevelLimits.test.js +91 -0
- package/components/organisms/ActivityRewardSlider/tests/mockData.js +528 -0
- package/components/organisms/ActivityRewardSlider/tests/noTargetView.test.js +90 -0
- package/components/organisms/ActivityRewardSlider/tests/reducer.test.js +90 -0
- package/components/organisms/ActivityRewardSlider/tests/saga.test.js +363 -0
- package/components/organisms/ActivityRewardSlider/tests/selector.test.js +21 -0
- package/components/organisms/ActivityRewardSlider/tests/utils.test.js +188 -0
- package/components/organisms/ActivityRewardSlider/utils.js +43 -0
- package/components/organisms/ActivityRewardSliderV1/actions.js +14 -0
- package/components/organisms/ActivityRewardSliderV1/activityRewardSliderV1.js +316 -0
- package/components/organisms/ActivityRewardSliderV1/constants.js +27 -0
- package/components/organisms/ActivityRewardSliderV1/context.js +7 -0
- package/components/organisms/ActivityRewardSliderV1/index.js +1 -0
- package/components/organisms/ActivityRewardSliderV1/messages.js +19 -0
- package/components/organisms/ActivityRewardSliderV1/reducer.js +29 -0
- package/components/organisms/ActivityRewardSliderV1/saga.js +43 -0
- package/components/organisms/ActivityRewardSliderV1/selectors.js +12 -0
- package/components/organisms/ActivityRewardSliderV1/style.js +25 -0
- package/components/organisms/ActivityRewardSliderV1/tests/actions.test.js +12 -0
- package/components/organisms/ActivityRewardSliderV1/tests/activityRewardSliderEmpty.test.js +92 -0
- package/components/organisms/ActivityRewardSliderV1/tests/activityRewardSliderV1.test.js +271 -0
- package/components/organisms/ActivityRewardSliderV1/tests/reducer.test.js +53 -0
- package/components/organisms/ActivityRewardSliderV1/tests/saga.test.js +78 -0
- package/components/organisms/ActivityRewardSliderV1/tests/selector.test.js +21 -0
- package/components/organisms/AddEarnCondition/AddEarnCondition.js +1014 -0
- package/components/organisms/AddEarnCondition/actions.js +13 -0
- package/components/organisms/AddEarnCondition/constants.js +55 -0
- package/components/organisms/AddEarnCondition/context.js +7 -0
- package/components/organisms/AddEarnCondition/index.js +1 -0
- package/components/organisms/AddEarnCondition/messages.js +186 -0
- package/components/organisms/AddEarnCondition/reducer.js +49 -0
- package/components/organisms/AddEarnCondition/saga.js +88 -0
- package/components/organisms/AddEarnCondition/selectors.js +33 -0
- package/components/organisms/AddEarnCondition/style.js +117 -0
- package/components/organisms/AddEarnCondition/tests/AddEarnCondition.test.js +482 -0
- package/components/organisms/AddEarnCondition/tests/actions.test.js +23 -0
- package/components/organisms/AddEarnCondition/tests/mockData.js +107 -0
- package/components/organisms/AddEarnCondition/tests/saga.test.js +156 -0
- package/components/organisms/AddPaymentMethod/AddPaymentMethod.js +245 -0
- package/components/organisms/AddPaymentMethod/constants.js +9 -0
- package/components/organisms/AddPaymentMethod/index.js +1 -0
- package/components/organisms/AddPaymentMethod/style.js +48 -0
- package/components/organisms/AddPaymentMethod/tests/AddPaymentMethod.test.js +20 -0
- package/components/organisms/AddPointsAllocationLimitDetails/AddPointsAllocationLimitDetails.js +1629 -0
- package/components/organisms/AddPointsAllocationLimitDetails/constants.js +37 -0
- package/components/organisms/AddPointsAllocationLimitDetails/index.js +1 -0
- package/components/organisms/AddPointsAllocationLimitDetails/messages.js +364 -0
- package/components/organisms/AddPointsAllocationLimitDetails/style.js +428 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/AddPointsAllocationLimitDetails.test.js +611 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/actions.test.js +53 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/mockData.js +38 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/mocks/data.js +76 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/reducer.test.js +223 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/saga.test.js +275 -0
- package/components/organisms/AddPointsAllocationLimitDetails/tests/selectors.test.js +60 -0
- package/components/organisms/AddPointsAllocationLimitDetails/utils.js +27 -0
- package/components/organisms/AddPointsAllocationLimitSlider/AddPointsAllocationLimitSlider.js +596 -0
- package/components/organisms/AddPointsAllocationLimitSlider/constants.js +40 -0
- package/components/organisms/AddPointsAllocationLimitSlider/index.js +1 -0
- package/components/organisms/AddPointsAllocationLimitSlider/messages.js +44 -0
- package/components/organisms/AddPointsAllocationLimitSlider/style.js +63 -0
- package/components/organisms/AddPointsAllocationLimitSlider/tests/AddPointsAllocationLimitSlider.test.js +274 -0
- package/components/organisms/AddPointsAllocationLimitSlider/tests/mockData.js +533 -0
- package/components/organisms/AddPointsAllocationLimitSlider/tests/utils.test.js +52 -0
- package/components/organisms/AddPointsAllocationLimitSlider/utils.js +64 -0
- package/components/organisms/AddPointsFilterTransaction/AddPointsFilterTransaction.js +577 -0
- package/components/organisms/AddPointsFilterTransaction/constants.js +15 -0
- package/components/organisms/AddPointsFilterTransaction/index.js +1 -0
- package/components/organisms/AddPointsFilterTransaction/messages.js +45 -0
- package/components/organisms/AddPointsFilterTransaction/style.js +97 -0
- package/components/organisms/AddPointsFilterTransaction/tests/AddPointsFilterTransaction.test.js +429 -0
- package/components/organisms/AddPointsFilterTransaction/tests/mockData.js +148 -0
- package/components/organisms/AddTier/AddTier.js +731 -0
- package/components/organisms/AddTier/actions.js +26 -0
- package/components/organisms/AddTier/constants.js +30 -0
- package/components/organisms/AddTier/defaultStates.js +78 -0
- package/components/organisms/AddTier/index.js +1 -0
- package/components/organisms/AddTier/messages.js +101 -0
- package/components/organisms/AddTier/reducer.js +49 -0
- package/components/organisms/AddTier/saga.js +78 -0
- package/components/organisms/AddTier/selectors.js +23 -0
- package/components/organisms/AddTier/style.js +202 -0
- package/components/organisms/AddTier/tests/AddTier.test.js +92 -0
- package/components/organisms/AddTier/tests/AddTier1.test.js +268 -0
- package/components/organisms/AddTier/tests/mocks/data.js +454 -0
- package/components/organisms/AddTier/tests/saga.test.js +199 -0
- package/components/organisms/AddTier/tests/utils.test.js +17 -0
- package/components/organisms/AddTier/utils.js +768 -0
- package/components/organisms/AddTierSetting/AddTierSetting.js +203 -0
- package/components/organisms/AddTierSetting/constants.js +8 -0
- package/components/organisms/AddTierSetting/index.js +1 -0
- package/components/organisms/AddTierSetting/messages.js +65 -0
- package/components/organisms/AddTierSetting/mockData.js +30 -0
- package/components/organisms/AddTierSetting/style.js +20 -0
- package/components/organisms/AddTierSetting/utils.js +16 -0
- package/components/organisms/AdvancedOption/AdvancedOption.js +390 -0
- package/components/organisms/AdvancedOption/actions.js +39 -0
- package/components/organisms/AdvancedOption/constants.js +231 -0
- package/components/organisms/AdvancedOption/index.js +1 -0
- package/components/organisms/AdvancedOption/messages.js +60 -0
- package/components/organisms/AdvancedOption/reducer.js +73 -0
- package/components/organisms/AdvancedOption/saga.js +113 -0
- package/components/organisms/AdvancedOption/selectors.js +25 -0
- package/components/organisms/AdvancedOption/style.js +173 -0
- package/components/organisms/AdvancedOption/tests/AdvancedOption.test.js +128 -0
- package/components/organisms/AdvancedOption/tests/reducer.test.js +191 -0
- package/components/organisms/AdvancedOption/tests/saga.test.js +248 -0
- package/components/organisms/AllocationPointWorkflowAction/AllocationPointWorkflowAction.js +483 -0
- package/components/organisms/AllocationPointWorkflowAction/constants.js +6 -0
- package/components/organisms/AllocationPointWorkflowAction/index.js +1 -0
- package/components/organisms/AllocationPointWorkflowAction/style.js +17 -0
- package/components/organisms/AllocationPointWorkflowAction/tests/AllocationPointWorkflowAction.test.js +343 -0
- package/components/organisms/AllocationStrategy/AllocationStrategy.js +600 -0
- package/components/organisms/AllocationStrategy/constants.js +20 -0
- package/components/organisms/AllocationStrategy/index.js +1 -0
- package/components/organisms/AllocationStrategy/messages.js +98 -0
- package/components/organisms/AllocationStrategy/style.js +19 -0
- package/components/organisms/AllocationStrategy/tests/AllocationStrategy.test.js +53 -0
- package/components/organisms/AllocationStrategy/tests/mockData.js +161 -0
- package/components/organisms/AlternateCurrencyList/AlternateCurrencyList.js +670 -0
- package/components/organisms/AlternateCurrencyList/constants.js +53 -0
- package/components/organisms/AlternateCurrencyList/index.js +1 -0
- package/components/organisms/AlternateCurrencyList/messages.js +74 -0
- package/components/organisms/AlternateCurrencyList/style.js +292 -0
- package/components/organisms/AlternateCurrencyList/tests/AlternateCurrencyList.test.js +99 -0
- package/components/organisms/AlternateCurrencyList/tests/mockData.js +285 -0
- package/components/organisms/AlternateCurrencyList/utils.js +42 -0
- package/components/organisms/AudienceList/AudienceList.js +621 -0
- package/components/organisms/AudienceList/AudienceListContainer.js +244 -0
- package/components/organisms/AudienceList/actions.js +23 -0
- package/components/organisms/AudienceList/constants.js +42 -0
- package/components/organisms/AudienceList/index.js +1 -0
- package/components/organisms/AudienceList/messages.js +100 -0
- package/components/organisms/AudienceList/reducer.js +69 -0
- package/components/organisms/AudienceList/saga.js +99 -0
- package/components/organisms/AudienceList/selector.js +26 -0
- package/components/organisms/AudienceList/styles.js +366 -0
- package/components/organisms/AudienceList/tests/AudienceList.test.js +202 -0
- package/components/organisms/AudienceList/tests/AudienceListContainer.test.js +159 -0
- package/components/organisms/AudienceList/tests/actions.test.js +51 -0
- package/components/organisms/AudienceList/tests/mockData.js +362 -0
- package/components/organisms/AudienceList/tests/reducer.test.js +172 -0
- package/components/organisms/AudienceList/tests/saga.test.js +240 -0
- package/components/organisms/AudienceList/tests/selector.test.js +35 -0
- package/components/organisms/AwardPointsConfig/AwardPointsConfig.js +1577 -0
- package/components/organisms/AwardPointsConfig/constants.js +14 -0
- package/components/organisms/AwardPointsConfig/index.js +1 -0
- package/components/organisms/AwardPointsConfig/messages.js +317 -0
- package/components/organisms/AwardPointsConfig/style.js +177 -0
- package/components/organisms/AwardPointsConfig/tests/AwardPointsConfig.test.js +304 -0
- package/components/organisms/AwardPointsConfig/tests/CapVirtualSelect.test.js +83 -0
- package/components/organisms/AwardPointsConfig/tests/mockData.js +285 -0
- package/components/organisms/AwardRefereePointsWorkflowAction/AwardRefereePointsWorkflowAction.js +315 -0
- package/components/organisms/AwardRefereePointsWorkflowAction/index.js +1 -0
- package/components/organisms/AwardRefereePointsWorkflowAction/style.js +17 -0
- package/components/organisms/AwardRefereePointsWorkflowAction/tests/AwardRefereePointsWorkflowAction.test.js +130 -0
- package/components/organisms/AwardReferrerPointsWorkflowAction/AwardReferrerPointsWorkflowAction.js +312 -0
- package/components/organisms/AwardReferrerPointsWorkflowAction/index.js +1 -0
- package/components/organisms/AwardReferrerPointsWorkflowAction/style.js +17 -0
- package/components/organisms/AwardReferrerPointsWorkflowAction/tests/AwardReferrerPointsWorkflowAction.test.js +130 -0
- package/components/organisms/BulkConfigurationsDetail/BulkConfigurationsDetail.js +689 -0
- package/components/organisms/BulkConfigurationsDetail/actions.js +31 -0
- package/components/organisms/BulkConfigurationsDetail/constants.js +34 -0
- package/components/organisms/BulkConfigurationsDetail/index.js +1 -0
- package/components/organisms/BulkConfigurationsDetail/messages.js +68 -0
- package/components/organisms/BulkConfigurationsDetail/mocks/data.js +531 -0
- package/components/organisms/BulkConfigurationsDetail/reducer.js +68 -0
- package/components/organisms/BulkConfigurationsDetail/saga.js +86 -0
- package/components/organisms/BulkConfigurationsDetail/selectors.js +26 -0
- package/components/organisms/BulkConfigurationsDetail/style.js +197 -0
- package/components/organisms/BulkConfigurationsDetail/tests/BulkConfigurationsDetail.test.js +572 -0
- package/components/organisms/BulkConfigurationsDetail/tests/actions.test.js +52 -0
- package/components/organisms/BulkConfigurationsDetail/tests/reducer.test.js +236 -0
- package/components/organisms/BulkConfigurationsDetail/tests/saga.test.js +197 -0
- package/components/organisms/BulkConfigurationsDetail/tests/selectors.test.js +42 -0
- package/components/organisms/BulkConfigurationsDetail/utils.js +540 -0
- package/components/organisms/CappingSlidebox/CappingSlidebox.js +829 -0
- package/components/organisms/CappingSlidebox/index.js +1 -0
- package/components/organisms/CappingSlidebox/messages.js +74 -0
- package/components/organisms/CappingSlidebox/style.js +88 -0
- package/components/organisms/CappingSlidebox/tests/CappingSlidebox.test.js +659 -0
- package/components/organisms/CappingSlidebox/tests/TrackerCapping.test.js +183 -0
- package/components/organisms/ChangeLog/ChangeLog.js +324 -0
- package/components/organisms/ChangeLog/index.js +1 -0
- package/components/organisms/ChangeLog/messages.js +36 -0
- package/components/organisms/ChangeLog/style.js +24 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/ChangeTierPartnerProgramWorkflowAction.js +330 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/constants.js +17 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/index.js +1 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/messages.js +44 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/style.js +32 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/tests/ChangeTierPartnerProgramWorkflowAction.test.js +148 -0
- package/components/organisms/ChangeTierPartnerProgramWorkflowAction/tests/mockData.js +29 -0
- package/components/organisms/Communication/Communication.js +252 -0
- package/components/organisms/Communication/Loadable.js +7 -0
- package/components/organisms/Communication/actions.js +24 -0
- package/components/organisms/Communication/constants.js +27 -0
- package/components/organisms/Communication/index.js +1 -0
- package/components/organisms/Communication/mockData.js +163 -0
- package/components/organisms/Communication/reducer.js +41 -0
- package/components/organisms/Communication/saga.js +36 -0
- package/components/organisms/Communication/selectors.js +25 -0
- package/components/organisms/Communication/style.js +15 -0
- package/components/organisms/Communication/tests/actions.test.js +13 -0
- package/components/organisms/Communication/tests/index.test.js +54 -0
- package/components/organisms/Communication/tests/mockData.js +146 -0
- package/components/organisms/Communication/tests/reducer.test.js +8 -0
- package/components/organisms/Communication/tests/selectors.test.js +5 -0
- package/components/organisms/CommunicationAdvancedOption/CommunicationAdvancedOption.js +245 -0
- package/components/organisms/CommunicationAdvancedOption/actions.js +12 -0
- package/components/organisms/CommunicationAdvancedOption/constants.js +8 -0
- package/components/organisms/CommunicationAdvancedOption/index.js +1 -0
- package/components/organisms/CommunicationAdvancedOption/reducer.js +31 -0
- package/components/organisms/CommunicationAdvancedOption/saga.js +36 -0
- package/components/organisms/CommunicationAdvancedOption/selectors.js +25 -0
- package/components/organisms/CommunicationAdvancedOption/style.js +8 -0
- package/components/organisms/CommunicationAdvancedOption/tests/mocks/data.js +14 -0
- package/components/organisms/CommunicationAdvancedOption/tests/saga.test.js +87 -0
- package/components/organisms/CommunicationStrategies/CommunicationStrategies.js +326 -0
- package/components/organisms/CommunicationStrategies/actions.js +17 -0
- package/components/organisms/CommunicationStrategies/constants.js +14 -0
- package/components/organisms/CommunicationStrategies/index.js +1 -0
- package/components/organisms/CommunicationStrategies/messages.js +32 -0
- package/components/organisms/CommunicationStrategies/reducer.js +39 -0
- package/components/organisms/CommunicationStrategies/saga.js +62 -0
- package/components/organisms/CommunicationStrategies/selectors.js +25 -0
- package/components/organisms/CommunicationStrategies/style.js +0 -0
- package/components/organisms/CommunicationStrategies/tests/__snapshots__/index.test.js.snap +2561 -0
- package/components/organisms/CommunicationStrategies/tests/index.test.js +13 -0
- package/components/organisms/CommunicationStrategies/tests/mocks/data.js +14 -0
- package/components/organisms/CommunicationStrategies/tests/saga.test.js +157 -0
- package/components/organisms/CommunicationStrategies/utils.js +567 -0
- package/components/organisms/ConfigureKPI/ConfigureKPI.js +298 -0
- package/components/organisms/ConfigureKPI/actions.js +17 -0
- package/components/organisms/ConfigureKPI/constants.js +13 -0
- package/components/organisms/ConfigureKPI/index.js +1 -0
- package/components/organisms/ConfigureKPI/reducer.js +36 -0
- package/components/organisms/ConfigureKPI/saga.js +69 -0
- package/components/organisms/ConfigureKPI/selectors.js +21 -0
- package/components/organisms/ConfigureKPI/style.js +25 -0
- package/components/organisms/ConfigureKPI/tests/ConfigureKPI.test.js +76 -0
- package/components/organisms/ConfigureKPI/tests/__snapshots__/ConfigureKPI.test.js.snap +54 -0
- package/components/organisms/ConfigureKPI/tests/__snapshots__/reducer.test.js.snap +9 -0
- package/components/organisms/ConfigureKPI/tests/mockdata.js +22 -0
- package/components/organisms/ConfigureKPI/tests/reducer.test.js +91 -0
- package/components/organisms/ConfigureKPI/tests/saga.test.js +146 -0
- package/components/organisms/ConfigureKPI/tests/utils.test.js +17 -0
- package/components/organisms/ConfigureKPI/utils.js +9 -0
- package/components/organisms/ConfigureProgramSteps/ConfigureProgramSteps.js +312 -0
- package/components/organisms/ConfigureProgramSteps/constants.js +4 -0
- package/components/organisms/ConfigureProgramSteps/index.js +1 -0
- package/components/organisms/ConfigureProgramSteps/messages.js +65 -0
- package/components/organisms/ConfigureProgramSteps/style.js +110 -0
- package/components/organisms/ConfigureProgramSteps/tests/ConfigureProgramSteps.test.js +109 -0
- package/components/organisms/ConfigureStrategies/ConfigureStrategies.js +632 -0
- package/components/organisms/ConfigureStrategies/actions.js +15 -0
- package/components/organisms/ConfigureStrategies/constants.js +26 -0
- package/components/organisms/ConfigureStrategies/index.js +1 -0
- package/components/organisms/ConfigureStrategies/messages.js +37 -0
- package/components/organisms/ConfigureStrategies/reducer.js +35 -0
- package/components/organisms/ConfigureStrategies/saga.js +44 -0
- package/components/organisms/ConfigureStrategies/selectors.js +33 -0
- package/components/organisms/ConfigureStrategies/style.js +198 -0
- package/components/organisms/ConfigureStrategies/tests/ConfigureStrategies.test.js +363 -0
- package/components/organisms/ConfigureStrategies/tests/mocks/data.js +14 -0
- package/components/organisms/ConfigureStrategies/tests/saga.test.js +87 -0
- package/components/organisms/ConfigureTrackers/ConfigureTrackers.js +193 -0
- package/components/organisms/ConfigureTrackers/index.js +1 -0
- package/components/organisms/ConfigureTrackers/messages.js +10 -0
- package/components/organisms/ConfigureTrackers/style.js +35 -0
- package/components/organisms/ConfigureWorkflows/ConfigureWorkflows.js +798 -0
- package/components/organisms/ConfigureWorkflows/Loadable.js +7 -0
- package/components/organisms/ConfigureWorkflows/PreviewBulkConfiguration.js +131 -0
- package/components/organisms/ConfigureWorkflows/ScopingAndCapping.js +519 -0
- package/components/organisms/ConfigureWorkflows/WorkflowActions.js +455 -0
- package/components/organisms/ConfigureWorkflows/WorkflowConfigurationSection.js +2594 -0
- package/components/organisms/ConfigureWorkflows/actions.js +333 -0
- package/components/organisms/ConfigureWorkflows/constants.js +478 -0
- package/components/organisms/ConfigureWorkflows/context.js +7 -0
- package/components/organisms/ConfigureWorkflows/data.js +11201 -0
- package/components/organisms/ConfigureWorkflows/index.js +1 -0
- package/components/organisms/ConfigureWorkflows/messages.js +233 -0
- package/components/organisms/ConfigureWorkflows/reducer.js +576 -0
- package/components/organisms/ConfigureWorkflows/saga.js +1208 -0
- package/components/organisms/ConfigureWorkflows/selectors.js +203 -0
- package/components/organisms/ConfigureWorkflows/style.js +660 -0
- package/components/organisms/ConfigureWorkflows/tests/ConfigureWorkflows.test.js +210 -0
- package/components/organisms/ConfigureWorkflows/tests/PreviewBulkConfiguration.test.js +46 -0
- package/components/organisms/ConfigureWorkflows/tests/WorkflowActions.test.js +105 -0
- package/components/organisms/ConfigureWorkflows/tests/WorkflowConfigurationSection.test.js +791 -0
- package/components/organisms/ConfigureWorkflows/tests/WorkflowConfigurationSectionView.test.js +342 -0
- package/components/organisms/ConfigureWorkflows/tests/__snapshots__/actions.test.js.snap +15 -0
- package/components/organisms/ConfigureWorkflows/tests/__snapshots__/reducer.test.js.snap +8993 -0
- package/components/organisms/ConfigureWorkflows/tests/actions.test.js +405 -0
- package/components/organisms/ConfigureWorkflows/tests/mockData.js +7161 -0
- package/components/organisms/ConfigureWorkflows/tests/mocks/data.js +171 -0
- package/components/organisms/ConfigureWorkflows/tests/mocks/rulesetsData.js +637 -0
- package/components/organisms/ConfigureWorkflows/tests/reducer.test.js +1640 -0
- package/components/organisms/ConfigureWorkflows/tests/saga.test.js +2543 -0
- package/components/organisms/ConfigureWorkflows/tests/selectors.test.js +67 -0
- package/components/organisms/ConfigureWorkflows/tests/utils.test.js +442 -0
- package/components/organisms/ConfigureWorkflows/utils.js +1485 -0
- package/components/organisms/CouponSlidebox/CouponSlidebox.js +326 -0
- package/components/organisms/CouponSlidebox/_coupons.scss +127 -0
- package/components/organisms/CouponSlidebox/actions.js +13 -0
- package/components/organisms/CouponSlidebox/constants.js +16 -0
- package/components/organisms/CouponSlidebox/index.js +1 -0
- package/components/organisms/CouponSlidebox/messages.js +29 -0
- package/components/organisms/CouponSlidebox/reducer.js +31 -0
- package/components/organisms/CouponSlidebox/selectors.js +22 -0
- package/components/organisms/CouponSlidebox/tests/CouponSlidebox.test.js +20 -0
- package/components/organisms/Coupons/Coupons.js +379 -0
- package/components/organisms/Coupons/Loadable.js +5 -0
- package/components/organisms/Coupons/actions.js +13 -0
- package/components/organisms/Coupons/constants.js +22 -0
- package/components/organisms/Coupons/index.js +1 -0
- package/components/organisms/Coupons/messages.js +20 -0
- package/components/organisms/Coupons/reducer.js +31 -0
- package/components/organisms/Coupons/saga.js +8 -0
- package/components/organisms/Coupons/selectors.js +22 -0
- package/components/organisms/Coupons/style.js +57 -0
- package/components/organisms/Coupons/tests/actions.test.js +13 -0
- package/components/organisms/Coupons/tests/index.test.js +54 -0
- package/components/organisms/Coupons/tests/mockdata.js +2842 -0
- package/components/organisms/Coupons/tests/saga.test.js +11 -0
- package/components/organisms/Coupons/tests/selectors.test.js +8 -0
- package/components/organisms/CreateAlternateCurrency/CreateAlternateCurrency.js +821 -0
- package/components/organisms/CreateAlternateCurrency/actions.js +12 -0
- package/components/organisms/CreateAlternateCurrency/constants.js +7 -0
- package/components/organisms/CreateAlternateCurrency/index.js +1 -0
- package/components/organisms/CreateAlternateCurrency/messages.js +177 -0
- package/components/organisms/CreateAlternateCurrency/reducer.js +34 -0
- package/components/organisms/CreateAlternateCurrency/saga.js +41 -0
- package/components/organisms/CreateAlternateCurrency/selectors.js +17 -0
- package/components/organisms/CreateAlternateCurrency/style.js +168 -0
- package/components/organisms/CreateAlternateCurrency/tests/CreateAlternateCurrency.test.js +381 -0
- package/components/organisms/CreateAlternateCurrency/tests/actions.test.js +29 -0
- package/components/organisms/CreateAlternateCurrency/tests/mockData.js +208 -0
- package/components/organisms/CreateAlternateCurrency/tests/reducer.test.js +70 -0
- package/components/organisms/CreateAlternateCurrency/tests/saga.test.js +103 -0
- package/components/organisms/CreateAlternateCurrency/tests/selectors.test.js +32 -0
- package/components/organisms/CreateAlternateCurrency/utils.js +45 -0
- package/components/organisms/CreateBulkConfigForm/CreateBulkConfigForm.js +56 -0
- package/components/organisms/CreateBulkConfigForm/index.js +1 -0
- package/components/organisms/CreateBulkConfigForm/messages.js +18 -0
- package/components/organisms/CreateBulkConfigForm/style.js +35 -0
- package/components/organisms/CreateBulkConfigForm/tests/CreateBulkConfigForm.test.js +35 -0
- package/components/organisms/CreateProgram/CreateProgram.js +702 -0
- package/components/organisms/CreateProgram/actions.js +17 -0
- package/components/organisms/CreateProgram/constants.js +30 -0
- package/components/organisms/CreateProgram/index.js +1 -0
- package/components/organisms/CreateProgram/messages.js +99 -0
- package/components/organisms/CreateProgram/reducer.js +38 -0
- package/components/organisms/CreateProgram/saga.js +43 -0
- package/components/organisms/CreateProgram/selectors.js +22 -0
- package/components/organisms/CreateProgram/style.js +223 -0
- package/components/organisms/CreateProgram/tests/CreateProgram.test.js +500 -0
- package/components/organisms/CreateProgram/tests/__snapshots__/reducer.test.js.snap +17 -0
- package/components/organisms/CreateProgram/tests/mockdata.js +10 -0
- package/components/organisms/CreateProgram/tests/mocks/initialState.js +4 -0
- package/components/organisms/CreateProgram/tests/reducer.test.js +96 -0
- package/components/organisms/CreateProgram/tests/saga.test.js +163 -0
- package/components/organisms/CreateProgramIllustration/CreateProgramIllustration.js +72 -0
- package/components/organisms/CreateProgramIllustration/constants.js +0 -0
- package/components/organisms/CreateProgramIllustration/index.js +1 -0
- package/components/organisms/CreateProgramIllustration/messages.js +25 -0
- package/components/organisms/CreateProgramIllustration/tests/CreateProgramIllustration.test.js +56 -0
- package/components/organisms/CreatePromotionForm/CreatePromotionForm.js +879 -0
- package/components/organisms/CreatePromotionForm/index.js +1 -0
- package/components/organisms/CreatePromotionForm/messages.js +110 -0
- package/components/organisms/CreatePromotionForm/style.js +253 -0
- package/components/organisms/CreatePromotionForm/tests/CreatePromotionForm.test.js +484 -0
- package/components/organisms/CreatePromotionForm/tests/mockData.js +130 -0
- package/components/organisms/CreatePromotionForm/tests/utils.test.js +38 -0
- package/components/organisms/CreatePromotionForm/utils.js +38 -0
- package/components/organisms/CreateTender/CreateTender.js +485 -0
- package/components/organisms/CreateTender/actions.js +17 -0
- package/components/organisms/CreateTender/constants.js +11 -0
- package/components/organisms/CreateTender/index.js +1 -0
- package/components/organisms/CreateTender/messages.js +51 -0
- package/components/organisms/CreateTender/reducer.js +37 -0
- package/components/organisms/CreateTender/saga.js +45 -0
- package/components/organisms/CreateTender/selectors.js +25 -0
- package/components/organisms/CreateTender/style.js +69 -0
- package/components/organisms/CreateTender/tests/CreateTender.test.js +102 -0
- package/components/organisms/CreateTender/tests/mockData.js +489 -0
- package/components/organisms/CreateTender/tests/mocks/data.js +16 -0
- package/components/organisms/CreateTender/tests/saga.test.js +123 -0
- package/components/organisms/CreateTier/CreateTier.js +218 -0
- package/components/organisms/CreateTier/actions.js +16 -0
- package/components/organisms/CreateTier/constants.js +7 -0
- package/components/organisms/CreateTier/index.js +1 -0
- package/components/organisms/CreateTier/messages.js +20 -0
- package/components/organisms/CreateTier/reducer.js +37 -0
- package/components/organisms/CreateTier/saga.js +47 -0
- package/components/organisms/CreateTier/selectors.js +25 -0
- package/components/organisms/CreateTier/style.js +11 -0
- package/components/organisms/CreateTier/tests/mocks/data.js +15 -0
- package/components/organisms/CreateTier/tests/saga.test.js +136 -0
- package/components/organisms/CreateTier/utils.js +59 -0
- package/components/organisms/Creatives/Creatives.js +1128 -0
- package/components/organisms/Creatives/actions.js +30 -0
- package/components/organisms/Creatives/constants.js +26 -0
- package/components/organisms/Creatives/index.js +1 -0
- package/components/organisms/Creatives/index.scss +170 -0
- package/components/organisms/Creatives/messages.js +16 -0
- package/components/organisms/Creatives/mockdata.js +222 -0
- package/components/organisms/Creatives/reducer.js +194 -0
- package/components/organisms/Creatives/saga.js +57 -0
- package/components/organisms/Creatives/selectors.js +28 -0
- package/components/organisms/Creatives/style.js +40 -0
- package/components/organisms/Creatives/tests/Creatives.test.js +128 -0
- package/components/organisms/Creatives/tests/__snapshots__/index.test.js.snap +217 -0
- package/components/organisms/Creatives/tests/actions.test.js +13 -0
- package/components/organisms/Creatives/tests/index.test.js +91 -0
- package/components/organisms/Creatives/tests/saga.test.js +11 -0
- package/components/organisms/Creatives/tests/selectors.test.js +5 -0
- package/components/organisms/Creatives/useDidMountEffect.js +12 -0
- package/components/organisms/CustomFieldSettings/CustomFieldSettings.js +244 -0
- package/components/organisms/CustomFieldSettings/actions.js +12 -0
- package/components/organisms/CustomFieldSettings/constants.js +12 -0
- package/components/organisms/CustomFieldSettings/index.js +1 -0
- package/components/organisms/CustomFieldSettings/message.js +30 -0
- package/components/organisms/CustomFieldSettings/reducer.js +43 -0
- package/components/organisms/CustomFieldSettings/saga.js +70 -0
- package/components/organisms/CustomFieldSettings/selectors.js +14 -0
- package/components/organisms/CustomFieldSettings/style.js +44 -0
- package/components/organisms/CustomFieldSettings/tests/CustomFieldSettings.test.js +269 -0
- package/components/organisms/CustomFieldSettings/tests/actions.test.js +31 -0
- package/components/organisms/CustomFieldSettings/tests/mockData.js +56 -0
- package/components/organisms/CustomFieldSettings/tests/mocks/data.js +14 -0
- package/components/organisms/CustomFieldSettings/tests/reducer.test.js +102 -0
- package/components/organisms/CustomFieldSettings/tests/saga.test.js +193 -0
- package/components/organisms/CustomFieldSettings/tests/selectors.test.js +35 -0
- package/components/organisms/CustomerActivity/CustomerActivity.js +504 -0
- package/components/organisms/CustomerActivity/constants.js +3 -0
- package/components/organisms/CustomerActivity/index.js +1 -0
- package/components/organisms/CustomerActivity/messages.js +350 -0
- package/components/organisms/CustomerActivity/style.js +92 -0
- package/components/organisms/CustomerActivity/tests/CustomerActivity.test.js +30 -0
- package/components/organisms/CustomerActivity/tests/mockData.js +149 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/CustomerStatusLabelWorkflowAction.js +250 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/actions.js +5 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/constants.js +25 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/index.js +1 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/messages.js +50 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/reducer.js +32 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/saga.js +29 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/selectors.js +15 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/style.js +173 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/CustomerStatusLabelWorkflowAction.test.js +82 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/actions.test.js +11 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/mocks/mockData.js +127 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/reducer.test.js +57 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/saga.test.js +79 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/selectors.test.js +21 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/tests/utils.test.js +143 -0
- package/components/organisms/CustomerStatusLabelWorkflowActions/utils.js +129 -0
- package/components/organisms/DelayedAccrual/DelayedAccrual.js +309 -0
- package/components/organisms/DelayedAccrual/actions.js +27 -0
- package/components/organisms/DelayedAccrual/constants.js +28 -0
- package/components/organisms/DelayedAccrual/index.js +1 -0
- package/components/organisms/DelayedAccrual/messages.js +40 -0
- package/components/organisms/DelayedAccrual/reducer.js +45 -0
- package/components/organisms/DelayedAccrual/saga.js +91 -0
- package/components/organisms/DelayedAccrual/selectors.js +44 -0
- package/components/organisms/DelayedAccrual/style.js +38 -0
- package/components/organisms/DelayedAccrual/tests/DelayedAccuralAdvancedOption.test.js +131 -0
- package/components/organisms/DelayedAccrual/tests/mockData.js +11 -0
- package/components/organisms/DelayedAccrual/tests/reducer.test.js +92 -0
- package/components/organisms/DelayedAccrual/tests/saga.test.js +214 -0
- package/components/organisms/DelayedAccrual/tests/selectors.test.js +33 -0
- package/components/organisms/DiscardDraft/DiscardDraft.js +190 -0
- package/components/organisms/DiscardDraft/actions.js +12 -0
- package/components/organisms/DiscardDraft/constants.js +5 -0
- package/components/organisms/DiscardDraft/index.js +1 -0
- package/components/organisms/DiscardDraft/messages.js +41 -0
- package/components/organisms/DiscardDraft/mocks/data.js +24 -0
- package/components/organisms/DiscardDraft/reducer.js +29 -0
- package/components/organisms/DiscardDraft/saga.js +32 -0
- package/components/organisms/DiscardDraft/selector.js +17 -0
- package/components/organisms/DiscardDraft/style.js +18 -0
- package/components/organisms/DiscardDraft/tests/DiscardDraft.test.js +101 -0
- package/components/organisms/DiscardDraft/tests/action.test.js +10 -0
- package/components/organisms/DiscardDraft/tests/reducer.test.js +44 -0
- package/components/organisms/DiscardDraft/tests/saga.test.js +85 -0
- package/components/organisms/DiscardDraft/tests/selector.test.js +22 -0
- package/components/organisms/EbillWorkflowAction/EbillWorkflowAction.js +304 -0
- package/components/organisms/EbillWorkflowAction/index.js +1 -0
- package/components/organisms/EbillWorkflowAction/messages.js +36 -0
- package/components/organisms/EbillWorkflowAction/style.js +10 -0
- package/components/organisms/EbillWorkflowAction/tests/EbillWorkflowAction.test.js +56 -0
- package/components/organisms/ExpiryCommunication/ExpiryCommunication.js +120 -0
- package/components/organisms/ExpiryCommunication/constants.js +18 -0
- package/components/organisms/ExpiryCommunication/index.js +1 -0
- package/components/organisms/ExpiryCommunication/messages.js +24 -0
- package/components/organisms/ExpiryCommunication/tests/index.test.js +24 -0
- package/components/organisms/ExpiryCommunication/utils.js +259 -0
- package/components/organisms/ExpiryConditions/ExpiryConditions.js +964 -0
- package/components/organisms/ExpiryConditions/actions.js +8 -0
- package/components/organisms/ExpiryConditions/constants.js +12 -0
- package/components/organisms/ExpiryConditions/index.js +1 -0
- package/components/organisms/ExpiryConditions/messages.js +117 -0
- package/components/organisms/ExpiryConditions/reducer.js +33 -0
- package/components/organisms/ExpiryConditions/saga.js +34 -0
- package/components/organisms/ExpiryConditions/selectors.js +21 -0
- package/components/organisms/ExpiryConditions/style.js +209 -0
- package/components/organisms/ExpiryConditions/tests/ExpiryConditions.test.js +400 -0
- package/components/organisms/ExpiryConditions/tests/ExtendedFields.test.js +134 -0
- package/components/organisms/ExpiryConditions/tests/mocks/data.js +30 -0
- package/components/organisms/ExpiryConditions/tests/saga.test.js +87 -0
- package/components/organisms/ExpiryConditions/tests/utils.test.js +47 -0
- package/components/organisms/ExpiryConditions/utils.js +16 -0
- package/components/organisms/ExpiryStrategy/ExpiryStrategy.js +674 -0
- package/components/organisms/ExpiryStrategy/constants.js +13 -0
- package/components/organisms/ExpiryStrategy/index.js +1 -0
- package/components/organisms/ExpiryStrategy/messages.js +40 -0
- package/components/organisms/ExpiryStrategy/style.js +13 -0
- package/components/organisms/ExpiryStrategy/tests/ExpiryStrategy.test.js +70 -0
- package/components/organisms/ExpiryStrategy/tests/mockData.js +125 -0
- package/components/organisms/ForwardToSetWorkflowAction/ForwardToSetWorkflowAction.js +412 -0
- package/components/organisms/ForwardToSetWorkflowAction/constants.js +22 -0
- package/components/organisms/ForwardToSetWorkflowAction/index.js +1 -0
- package/components/organisms/ForwardToSetWorkflowAction/messages.js +70 -0
- package/components/organisms/ForwardToSetWorkflowAction/style.js +16 -0
- package/components/organisms/ForwardToSetWorkflowAction/tests/ForwardToSetWorkflowAction.test.js +123 -0
- package/components/organisms/ForwardToSetWorkflowAction/tests/mockData.js +10 -0
- package/components/organisms/GroupItemLabel/GroupItemLabel.js +471 -0
- package/components/organisms/GroupItemLabel/constants.js +2 -0
- package/components/organisms/GroupItemLabel/index.js +1 -0
- package/components/organisms/GroupItemLabel/messages.js +33 -0
- package/components/organisms/GroupItemLabel/mocks/data.js +142 -0
- package/components/organisms/GroupItemLabel/style.js +54 -0
- package/components/organisms/GroupItemLabel/tests/GroupItemLabel.test.js +366 -0
- package/components/organisms/GroupItemLabel/tests/__snapshots__/index.test.js.snap +296 -0
- package/components/organisms/GroupItemLabel/tests/index.test.js +67 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/InitiateSupplementaryMemberShipWorkflowAction.js +399 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/constants.js +20 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/index.js +1 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/messages.js +52 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/style.js +32 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/tests/InitiateSupplementaryMemberShipWorkflowAction.test.js +168 -0
- package/components/organisms/InitiateSupplementaryMemberShipWorkflowAction/tests/mockData.js +29 -0
- package/components/organisms/IssueBadgeWorkflowAction/IssueBadgeWorkflowAction.js +577 -0
- package/components/organisms/IssueBadgeWorkflowAction/actions.js +19 -0
- package/components/organisms/IssueBadgeWorkflowAction/constants.js +31 -0
- package/components/organisms/IssueBadgeWorkflowAction/index.js +1 -0
- package/components/organisms/IssueBadgeWorkflowAction/messages.js +134 -0
- package/components/organisms/IssueBadgeWorkflowAction/reducer.js +41 -0
- package/components/organisms/IssueBadgeWorkflowAction/saga.js +58 -0
- package/components/organisms/IssueBadgeWorkflowAction/selectors.js +17 -0
- package/components/organisms/IssueBadgeWorkflowAction/style.js +292 -0
- package/components/organisms/IssueBadgeWorkflowAction/tests/IssueBadgeWorkflowAction.test.js +184 -0
- package/components/organisms/IssueBadgeWorkflowAction/tests/mocks/mockData.js +183 -0
- package/components/organisms/IssueBadgeWorkflowAction/tests/reducer.test.js +101 -0
- package/components/organisms/IssueBadgeWorkflowAction/tests/saga.test.js +136 -0
- package/components/organisms/IssueBadgeWorkflowAction/tests/selectors.test.js +22 -0
- package/components/organisms/IssueBadgeWorkflowAction/tests/utils.test.js +30 -0
- package/components/organisms/IssueBadgeWorkflowAction/utils.js +36 -0
- package/components/organisms/IssueCatalogRewardsAction/IssueCatalogRewardsAction.js +1034 -0
- package/components/organisms/IssueCatalogRewardsAction/actions.js +28 -0
- package/components/organisms/IssueCatalogRewardsAction/constants.js +70 -0
- package/components/organisms/IssueCatalogRewardsAction/index.js +1 -0
- package/components/organisms/IssueCatalogRewardsAction/messages.js +275 -0
- package/components/organisms/IssueCatalogRewardsAction/reducer.js +83 -0
- package/components/organisms/IssueCatalogRewardsAction/saga.js +141 -0
- package/components/organisms/IssueCatalogRewardsAction/selectors.js +31 -0
- package/components/organisms/IssueCatalogRewardsAction/style.js +362 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/IssueCatalogRewardsAction.test.js +788 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/actions.test.js +23 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/mockData.js +534 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/reducer.test.js +184 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/saga.test.js +277 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/selectors.test.js +53 -0
- package/components/organisms/IssueCatalogRewardsAction/tests/utils.test.js +33 -0
- package/components/organisms/IssueCatalogRewardsAction/utils.js +125 -0
- package/components/organisms/IssueCouponsWorkflowAction/IssueCouponsWorkflowAction.js +1393 -0
- package/components/organisms/IssueCouponsWorkflowAction/actions.js +12 -0
- package/components/organisms/IssueCouponsWorkflowAction/constants.js +24 -0
- package/components/organisms/IssueCouponsWorkflowAction/index.js +1 -0
- package/components/organisms/IssueCouponsWorkflowAction/messages.js +207 -0
- package/components/organisms/IssueCouponsWorkflowAction/mockData.js +12 -0
- package/components/organisms/IssueCouponsWorkflowAction/reducer.js +35 -0
- package/components/organisms/IssueCouponsWorkflowAction/saga.js +36 -0
- package/components/organisms/IssueCouponsWorkflowAction/selectors.js +29 -0
- package/components/organisms/IssueCouponsWorkflowAction/style.js +356 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/IssueCouponWorkflowAction.test.js +551 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/actions.test.js +18 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/index.test.js +219 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/mocks/data.js +244 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/reducer.test.js +76 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/saga.test.js +80 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/selectors.test.js +21 -0
- package/components/organisms/IssueCouponsWorkflowAction/tests/utils.test.js +15 -0
- package/components/organisms/IssueCouponsWorkflowAction/utils.js +13 -0
- package/components/organisms/IssuePromotionWorkflowAction/IssuePromotionWorkflowAction.js +608 -0
- package/components/organisms/IssuePromotionWorkflowAction/actions.js +10 -0
- package/components/organisms/IssuePromotionWorkflowAction/constants.js +14 -0
- package/components/organisms/IssuePromotionWorkflowAction/index.js +1 -0
- package/components/organisms/IssuePromotionWorkflowAction/messages.js +73 -0
- package/components/organisms/IssuePromotionWorkflowAction/reducer.js +32 -0
- package/components/organisms/IssuePromotionWorkflowAction/saga.js +33 -0
- package/components/organisms/IssuePromotionWorkflowAction/selectors.js +18 -0
- package/components/organisms/IssuePromotionWorkflowAction/style.js +317 -0
- package/components/organisms/IssuePromotionWorkflowAction/tests/IssuePromotionWorkflowAction.test.js +211 -0
- package/components/organisms/IssuePromotionWorkflowAction/tests/mocks/mockData.js +126 -0
- package/components/organisms/IssuePromotionWorkflowAction/tests/reducer.test.js +60 -0
- package/components/organisms/IssuePromotionWorkflowAction/tests/saga.test.js +84 -0
- package/components/organisms/IssuePromotionWorkflowAction/tests/selectors.test.js +22 -0
- package/components/organisms/IssuePromotionWorkflowAction/tests/utils.test.js +29 -0
- package/components/organisms/IssuePromotionWorkflowAction/utils.js +38 -0
- package/components/organisms/LiabilitySettings/LiabilitySettings.js +899 -0
- package/components/organisms/LiabilitySettings/actions.js +33 -0
- package/components/organisms/LiabilitySettings/constants.js +38 -0
- package/components/organisms/LiabilitySettings/index.js +1 -0
- package/components/organisms/LiabilitySettings/messages.js +58 -0
- package/components/organisms/LiabilitySettings/mockData.js +30 -0
- package/components/organisms/LiabilitySettings/reducer.js +95 -0
- package/components/organisms/LiabilitySettings/saga.js +151 -0
- package/components/organisms/LiabilitySettings/selectors.js +21 -0
- package/components/organisms/LiabilitySettings/style.js +48 -0
- package/components/organisms/LiabilitySettings/tests/LiabilitySettings.test.js +488 -0
- package/components/organisms/LiabilitySettings/tests/actions.test.js +72 -0
- package/components/organisms/LiabilitySettings/tests/mockData.js +34 -0
- package/components/organisms/LiabilitySettings/tests/reducer.test.js +205 -0
- package/components/organisms/LiabilitySettings/tests/saga.test.js +353 -0
- package/components/organisms/LiabilitySettings/tests/selectors.test.js +32 -0
- package/components/organisms/LoyaltyDetail/LoyaltyDetail.js +467 -0
- package/components/organisms/LoyaltyDetail/actions.js +14 -0
- package/components/organisms/LoyaltyDetail/constants.js +32 -0
- package/components/organisms/LoyaltyDetail/index.js +1 -0
- package/components/organisms/LoyaltyDetail/messages.js +61 -0
- package/components/organisms/LoyaltyDetail/reducer.js +51 -0
- package/components/organisms/LoyaltyDetail/saga.js +65 -0
- package/components/organisms/LoyaltyDetail/selectors.js +36 -0
- package/components/organisms/LoyaltyDetail/style.js +87 -0
- package/components/organisms/LoyaltyDetail/tests/LoyaltyDetail.test.js +89 -0
- package/components/organisms/LoyaltyDetail/tests/__snapshots__/reducer.test.js.snap +12 -0
- package/components/organisms/LoyaltyDetail/tests/mockdata.js +39 -0
- package/components/organisms/LoyaltyDetail/tests/reducer.test.js +92 -0
- package/components/organisms/LoyaltyDetail/tests/saga.test.js +132 -0
- package/components/organisms/LoyaltyDetail/utils.js +219 -0
- package/components/organisms/LoyaltyGraph/LoyaltyGraph.js +455 -0
- package/components/organisms/LoyaltyGraph/actions.js +6 -0
- package/components/organisms/LoyaltyGraph/constants.js +21 -0
- package/components/organisms/LoyaltyGraph/index.js +1 -0
- package/components/organisms/LoyaltyGraph/messages.js +49 -0
- package/components/organisms/LoyaltyGraph/reducer.js +33 -0
- package/components/organisms/LoyaltyGraph/saga.js +51 -0
- package/components/organisms/LoyaltyGraph/selectors.js +23 -0
- package/components/organisms/LoyaltyGraph/style.js +141 -0
- package/components/organisms/LoyaltyGraph/tests/LoyaltyGraph.test.js +49 -0
- package/components/organisms/LoyaltyGraph/tests/__snapshots__/LoyaltyGraph.test.js.snap +77 -0
- package/components/organisms/LoyaltyGraph/tests/mockdata.js +87 -0
- package/components/organisms/LoyaltyGraph/tests/saga.test.js +86 -0
- package/components/organisms/LoyaltyGraph/utils.js +61 -0
- package/components/organisms/LoyaltyPromotions/LoyaltyPromotions.js +626 -0
- package/components/organisms/LoyaltyPromotions/constants.js +15 -0
- package/components/organisms/LoyaltyPromotions/index.js +1 -0
- package/components/organisms/LoyaltyPromotions/messages.js +142 -0
- package/components/organisms/LoyaltyPromotions/style.js +257 -0
- package/components/organisms/LoyaltyPromotions/tests/LoyaltyPromotions.test.js +283 -0
- package/components/organisms/LoyaltyPromotions/tests/utils.test.js +120 -0
- package/components/organisms/LoyaltyPromotions/utils.js +102 -0
- package/components/organisms/MandatoryAndPriorityChannel/MandatoryAndPriorityChannel.js +260 -0
- package/components/organisms/MandatoryAndPriorityChannel/index.js +1 -0
- package/components/organisms/MandatoryAndPriorityChannel/messages.js +23 -0
- package/components/organisms/MandatoryAndPriorityChannel/style.js +31 -0
- package/components/organisms/NavigationBar/NavigationBar.js +299 -0
- package/components/organisms/NavigationBar/constants.js +10 -0
- package/components/organisms/NavigationBar/index.js +1 -0
- package/components/organisms/NavigationBar/messages.js +33 -0
- package/components/organisms/NavigationBar/saga.js +11 -0
- package/components/organisms/NavigationBar/style.js +116 -0
- package/components/organisms/NavigationBar/tests/NavigationBar.test.js +325 -0
- package/components/organisms/NavigationBar/tests/mockdata.js +143 -0
- package/components/organisms/NoConfigWorkflowAction/NoConfigWorkflowAction.js +111 -0
- package/components/organisms/NoConfigWorkflowAction/index.js +1 -0
- package/components/organisms/Nudges/Nudges.js +297 -0
- package/components/organisms/Nudges/actions.js +6 -0
- package/components/organisms/Nudges/constants.js +5 -0
- package/components/organisms/Nudges/index.js +1 -0
- package/components/organisms/Nudges/messages.js +20 -0
- package/components/organisms/Nudges/reducer.js +35 -0
- package/components/organisms/Nudges/saga.js +32 -0
- package/components/organisms/Nudges/selectors.js +21 -0
- package/components/organisms/Nudges/style.js +117 -0
- package/components/organisms/Nudges/tests/mocks/data.js +12 -0
- package/components/organisms/Nudges/tests/saga.test.js +77 -0
- package/components/organisms/OrgChange/OrgChange.js +250 -0
- package/components/organisms/OrgChange/constants.js +2 -0
- package/components/organisms/OrgChange/index.js +1 -0
- package/components/organisms/OrgChange/message.js +38 -0
- package/components/organisms/OrgChange/style.js +15 -0
- package/components/organisms/OrgChange/tests/OrgChange.test.js +71 -0
- package/components/organisms/OrgChange/tests/__snapshots__/OrgChange.test.js.snap +23490 -0
- package/components/organisms/PageHeader/PageHeader.js +328 -0
- package/components/organisms/PageHeader/index.js +1 -0
- package/components/organisms/PageHeader/messages.js +14 -0
- package/components/organisms/PageHeader/style.js +82 -0
- package/components/organisms/PageHeader/tests/PageHeader.test.js +110 -0
- package/components/organisms/PageHeader/tests/__snapshots__/PageHeader.test.js.snap +35058 -0
- package/components/organisms/PageHeaderButton/PageHeaderButton.js +166 -0
- package/components/organisms/PageHeaderButton/index.js +1 -0
- package/components/organisms/PageHeaderButton/messages.js +43 -0
- package/components/organisms/PageHeaderButton/style.js +37 -0
- package/components/organisms/PageHeaderVersioning/PageHeaderVersioning.js +237 -0
- package/components/organisms/PageHeaderVersioning/index.js +1 -0
- package/components/organisms/PageHeaderVersioning/messages.js +29 -0
- package/components/organisms/PageHeaderVersioning/style.js +100 -0
- package/components/organisms/PartnerProgramAdvancedOption/PartnerProgramAdvancedOption.js +169 -0
- package/components/organisms/PartnerProgramAdvancedOption/constants.js +8 -0
- package/components/organisms/PartnerProgramAdvancedOption/index.js +1 -0
- package/components/organisms/PartnerProgramAdvancedOption/messages.js +26 -0
- package/components/organisms/PartnerProgramAdvancedOption/style.js +15 -0
- package/components/organisms/PartnerProgramAdvancedOption/tests/PartnerProgramAdvancedOption.test.js +249 -0
- package/components/organisms/PartnerProgramDashboard/Loadable.js +7 -0
- package/components/organisms/PartnerProgramDashboard/PartnerProgramDashboard.js +416 -0
- package/components/organisms/PartnerProgramDashboard/actions.js +38 -0
- package/components/organisms/PartnerProgramDashboard/constants.js +34 -0
- package/components/organisms/PartnerProgramDashboard/context.js +7 -0
- package/components/organisms/PartnerProgramDashboard/index.js +1 -0
- package/components/organisms/PartnerProgramDashboard/messages.js +62 -0
- package/components/organisms/PartnerProgramDashboard/reducer.js +82 -0
- package/components/organisms/PartnerProgramDashboard/saga.js +128 -0
- package/components/organisms/PartnerProgramDashboard/selectors.js +66 -0
- package/components/organisms/PartnerProgramDashboard/style.js +32 -0
- package/components/organisms/PartnerProgramDashboard/test/PartnerProgramDashboard.test.js +151 -0
- package/components/organisms/PartnerProgramDashboard/test/actions.test.js +12 -0
- package/components/organisms/PartnerProgramDashboard/test/mocks/data.js +321 -0
- package/components/organisms/PartnerProgramDashboard/test/reducer.test.js +322 -0
- package/components/organisms/PartnerProgramDashboard/test/saga.test.js +308 -0
- package/components/organisms/PartnerProgramDashboard/test/selectors.test.js +58 -0
- package/components/organisms/PartnerProgramDashboard/test/utils.test.js +14 -0
- package/components/organisms/PartnerProgramDashboard/utils.js +32 -0
- package/components/organisms/PartnerProgramTierSettings/PartnerProgramTierSettings.js +409 -0
- package/components/organisms/PartnerProgramTierSettings/index.js +1 -0
- package/components/organisms/PartnerProgramTierSettings/messages.js +46 -0
- package/components/organisms/PartnerProgramTierSettings/style.js +88 -0
- package/components/organisms/PartnerProgramTierSettings/tests/PartnerProgramTierSettings.test.js +297 -0
- package/components/organisms/PartnerProgramTierSettings/tests/mocks/data.js +67 -0
- package/components/organisms/PaymentMethodsAdvanced/PaymentSettingsAdvanced.js +516 -0
- package/components/organisms/PaymentMethodsAdvanced/actions.js +26 -0
- package/components/organisms/PaymentMethodsAdvanced/constants.js +42 -0
- package/components/organisms/PaymentMethodsAdvanced/index.js +1 -0
- package/components/organisms/PaymentMethodsAdvanced/messages.js +34 -0
- package/components/organisms/PaymentMethodsAdvanced/reducer.js +76 -0
- package/components/organisms/PaymentMethodsAdvanced/saga.js +129 -0
- package/components/organisms/PaymentMethodsAdvanced/selectors.js +25 -0
- package/components/organisms/PaymentMethodsAdvanced/style.js +22 -0
- package/components/organisms/PaymentMethodsAdvanced/tests/PaymentSettingsAdvanced.test.js +18 -0
- package/components/organisms/PaymentMethodsAdvanced/tests/mocks/data.js +17 -0
- package/components/organisms/PaymentMethodsAdvanced/tests/saga.test.js +284 -0
- package/components/organisms/PerformanceCard/PerformanceCard.js +161 -0
- package/components/organisms/PerformanceCard/index.js +1 -0
- package/components/organisms/PerformanceCard/messages.js +49 -0
- package/components/organisms/PerformanceCard/style.js +70 -0
- package/components/organisms/PerformanceCard/tests/PerformanceCard.test.js +85 -0
- package/components/organisms/PerformanceCard/tests/__snapshots__/PerformanceCard.test.js.snap +8174 -0
- package/components/organisms/PerformanceCard/tests/mockdata.js +6 -0
- package/components/organisms/PerformanceStats/PerformanceStats.js +490 -0
- package/components/organisms/PerformanceStats/actions.js +15 -0
- package/components/organisms/PerformanceStats/constants.js +32 -0
- package/components/organisms/PerformanceStats/index.js +1 -0
- package/components/organisms/PerformanceStats/messages.js +45 -0
- package/components/organisms/PerformanceStats/reducer.js +42 -0
- package/components/organisms/PerformanceStats/saga.js +41 -0
- package/components/organisms/PerformanceStats/selectors.js +21 -0
- package/components/organisms/PerformanceStats/style.js +84 -0
- package/components/organisms/PerformanceStats/tests/PerformanceStats.test.js +52 -0
- package/components/organisms/PerformanceStats/tests/__snapshots__/PerformanceStats.test.js.snap +27832 -0
- package/components/organisms/PerformanceStats/tests/__snapshots__/reducer.test.js.snap +10 -0
- package/components/organisms/PerformanceStats/tests/mockdata.js +45 -0
- package/components/organisms/PerformanceStats/tests/reducer.test.js +58 -0
- package/components/organisms/PerformanceStats/tests/saga.test.js +74 -0
- package/components/organisms/PointContributionToGroup/PointContributionToGroup.js +320 -0
- package/components/organisms/PointContributionToGroup/constants.js +26 -0
- package/components/organisms/PointContributionToGroup/index.js +1 -0
- package/components/organisms/PointContributionToGroup/messages.js +20 -0
- package/components/organisms/PointContributionToGroup/style.js +17 -0
- package/components/organisms/PointContributionToGroup/tests/PointContribution.test.js +20 -0
- package/components/organisms/PointStrategies/PointStrategies.js +276 -0
- package/components/organisms/PointStrategies/constants.js +4 -0
- package/components/organisms/PointStrategies/index.js +1 -0
- package/components/organisms/PointStrategies/style.js +10 -0
- package/components/organisms/PointStrategies/tests/PointStrategies.test.js +51 -0
- package/components/organisms/PointStrategies/tests/utils.test.js +66 -0
- package/components/organisms/PointStrategies/utils.js +60 -0
- package/components/organisms/PointsAdvancedOption/PointsAdvancedOption.js +265 -0
- package/components/organisms/PointsAdvancedOption/actions.js +12 -0
- package/components/organisms/PointsAdvancedOption/constants.js +20 -0
- package/components/organisms/PointsAdvancedOption/index.js +1 -0
- package/components/organisms/PointsAdvancedOption/messages.js +85 -0
- package/components/organisms/PointsAdvancedOption/reducer.js +31 -0
- package/components/organisms/PointsAdvancedOption/saga.js +35 -0
- package/components/organisms/PointsAdvancedOption/selectors.js +25 -0
- package/components/organisms/PointsAdvancedOption/style.js +43 -0
- package/components/organisms/PointsAdvancedOption/tests/PointsAdvancedoption.test.js +99 -0
- package/components/organisms/PointsAdvancedOption/tests/mocks/data.js +89 -0
- package/components/organisms/PointsAdvancedOption/tests/saga.test.js +87 -0
- package/components/organisms/PointsAdvancedOption/utils.js +62 -0
- package/components/organisms/PointsAllocationAccordion/PointsAllocationAccordion.js +135 -0
- package/components/organisms/PointsAllocationAccordion/index.js +1 -0
- package/components/organisms/PointsAllocationAccordion/style.js +70 -0
- package/components/organisms/PointsAllocationLimit/PointsAllocationLimit.js +107 -0
- package/components/organisms/PointsAllocationLimit/actions.js +21 -0
- package/components/organisms/PointsAllocationLimit/constants.js +20 -0
- package/components/organisms/PointsAllocationLimit/index.js +1 -0
- package/components/organisms/PointsAllocationLimit/messages.js +122 -0
- package/components/organisms/PointsAllocationLimit/reducer.js +48 -0
- package/components/organisms/PointsAllocationLimit/saga.js +99 -0
- package/components/organisms/PointsAllocationLimit/selectors.js +12 -0
- package/components/organisms/PointsAllocationLimit/style.js +0 -0
- package/components/organisms/PointsAllocationLimit/tests/PointsAllocationLimit.test.js +34 -0
- package/components/organisms/PointsAllocationLimit/tests/reducers.test.js +93 -0
- package/components/organisms/PointsAllocationLimit/tests/saga.test.js +189 -0
- package/components/organisms/PointsAllocationLimit/tests/selectors.test.js +43 -0
- package/components/organisms/PointsBudgetList/PointsBudgetList.js +1220 -0
- package/components/organisms/PointsBudgetList/constants.js +201 -0
- package/components/organisms/PointsBudgetList/index.js +1 -0
- package/components/organisms/PointsBudgetList/messages.js +329 -0
- package/components/organisms/PointsBudgetList/style.js +265 -0
- package/components/organisms/PointsBudgetList/tests/PointsBudgetList.test.js +271 -0
- package/components/organisms/PointsBudgetList/tests/mockData.js +788 -0
- package/components/organisms/PointsBudgetList/tests/utils.test.js +16 -0
- package/components/organisms/PointsBudgetList/utils.js +24 -0
- package/components/organisms/PointsGroupRedemptionWorkflowAction/PointsGroupRedemptionWorkflowAction.js +146 -0
- package/components/organisms/PointsGroupRedemptionWorkflowAction/index.js +1 -0
- package/components/organisms/PointsGroupRedemptionWorkflowAction/style.js +17 -0
- package/components/organisms/PointsRedemptionReversalWorkflowAction/PointsRedemptionReversalWorkflowAction.js +259 -0
- package/components/organisms/PointsRedemptionReversalWorkflowAction/index.js +1 -0
- package/components/organisms/PointsRedemptionReversalWorkflowAction/style.js +17 -0
- package/components/organisms/PointsRedemptionReversalWorkflowAction/tests/PointsRedemptionReversalWorkflowAction.test.js +42 -0
- package/components/organisms/PointsRedemptionWorkflowAction/PointsRedemptionWorkflowAction.js +162 -0
- package/components/organisms/PointsRedemptionWorkflowAction/index.js +1 -0
- package/components/organisms/PointsRedemptionWorkflowAction/style.js +17 -0
- package/components/organisms/PointsRollingExpiry/PointsRollingExpiry.js +637 -0
- package/components/organisms/PointsRollingExpiry/actions.js +10 -0
- package/components/organisms/PointsRollingExpiry/constants.js +48 -0
- package/components/organisms/PointsRollingExpiry/index.js +1 -0
- package/components/organisms/PointsRollingExpiry/messages.js +210 -0
- package/components/organisms/PointsRollingExpiry/reducer.js +51 -0
- package/components/organisms/PointsRollingExpiry/saga.js +72 -0
- package/components/organisms/PointsRollingExpiry/selectors.js +48 -0
- package/components/organisms/PointsRollingExpiry/style.js +190 -0
- package/components/organisms/PointsRollingExpiry/tests/PointsRollingExpiry.test.js +279 -0
- package/components/organisms/PointsRollingExpiry/tests/mocks/mockData.js +62 -0
- package/components/organisms/PointsRollingExpiry/tests/reducer.test.js +81 -0
- package/components/organisms/PointsRollingExpiry/tests/saga.test.js +166 -0
- package/components/organisms/PointsRollingExpiry/tests/selectors.test.js +35 -0
- package/components/organisms/PointsRollingExpiry/tests/utils.test.js +54 -0
- package/components/organisms/PointsRollingExpiry/utils.js +257 -0
- package/components/organisms/PointsTransferOrgSettings/ProgramTransferOrgSettings.js +246 -0
- package/components/organisms/PointsTransferOrgSettings/actions.js +11 -0
- package/components/organisms/PointsTransferOrgSettings/constants.js +47 -0
- package/components/organisms/PointsTransferOrgSettings/index.js +1 -0
- package/components/organisms/PointsTransferOrgSettings/messages.js +57 -0
- package/components/organisms/PointsTransferOrgSettings/reducer.js +36 -0
- package/components/organisms/PointsTransferOrgSettings/saga.js +68 -0
- package/components/organisms/PointsTransferOrgSettings/selectors.js +30 -0
- package/components/organisms/PointsTransferOrgSettings/style.js +19 -0
- package/components/organisms/PointsTransferOrgSettings/tests/PointsTransferOrgSettings.test.js +176 -0
- package/components/organisms/PointsTransferOrgSettings/tests/actions.test.js +19 -0
- package/components/organisms/PointsTransferOrgSettings/tests/mocks/data.js +15 -0
- package/components/organisms/PointsTransferOrgSettings/tests/reducer.test.js +142 -0
- package/components/organisms/PointsTransferOrgSettings/tests/saga.test.js +138 -0
- package/components/organisms/PointsTransferOrgSettings/tests/selectors.test.js +21 -0
- package/components/organisms/PointsTransferSettings/PointsTransferSettings.js +334 -0
- package/components/organisms/PointsTransferSettings/constants.js +60 -0
- package/components/organisms/PointsTransferSettings/index.js +1 -0
- package/components/organisms/PointsTransferSettings/messages.js +43 -0
- package/components/organisms/PointsTransferSettings/style.js +50 -0
- package/components/organisms/PointsTransferSettings/tests/index.test.js +56 -0
- package/components/organisms/Preview/Preview.js +177 -0
- package/components/organisms/Preview/index.js +1 -0
- package/components/organisms/Preview/reducer.js +15 -0
- package/components/organisms/Preview/style.js +12 -0
- package/components/organisms/Preview/tests/__snapshots__/index.test.js.snap +112 -0
- package/components/organisms/Preview/tests/index.test.js +63 -0
- package/components/organisms/ProgramDestinationMapper/ProgramDestinationMapper.js +195 -0
- package/components/organisms/ProgramDestinationMapper/actions.js +9 -0
- package/components/organisms/ProgramDestinationMapper/constants.js +4 -0
- package/components/organisms/ProgramDestinationMapper/index.js +1 -0
- package/components/organisms/ProgramDestinationMapper/messages.js +10 -0
- package/components/organisms/ProgramDestinationMapper/mocks/data.js +22 -0
- package/components/organisms/ProgramDestinationMapper/reducer.js +38 -0
- package/components/organisms/ProgramDestinationMapper/saga.js +33 -0
- package/components/organisms/ProgramDestinationMapper/selectors.js +21 -0
- package/components/organisms/ProgramDestinationMapper/style.js +21 -0
- package/components/organisms/ProgramDestinationMapper/tests/ProgramDestinationMapper.test.js +91 -0
- package/components/organisms/ProgramDestinationMapper/tests/saga.test.js +80 -0
- package/components/organisms/ProgramPerformance/Loadable.js +7 -0
- package/components/organisms/ProgramPerformance/ProgramPerformance.js +101 -0
- package/components/organisms/ProgramPerformance/actions.js +13 -0
- package/components/organisms/ProgramPerformance/constants.js +7 -0
- package/components/organisms/ProgramPerformance/data.js +26 -0
- package/components/organisms/ProgramPerformance/index.js +1 -0
- package/components/organisms/ProgramPerformance/messages.js +16 -0
- package/components/organisms/ProgramPerformance/reducer.js +20 -0
- package/components/organisms/ProgramPerformance/saga.js +6 -0
- package/components/organisms/ProgramPerformance/selectors.js +25 -0
- package/components/organisms/ProgramPerformance/style.js +25 -0
- package/components/organisms/ProgramPerformance/tests/actions.test.js +13 -0
- package/components/organisms/ProgramPerformance/tests/index.test.js +11 -0
- package/components/organisms/ProgramPerformance/tests/reducer.test.js +10 -0
- package/components/organisms/ProgramPerformance/tests/saga.test.js +11 -0
- package/components/organisms/ProgramPerformance/tests/selectors.test.js +8 -0
- package/components/organisms/ProgramSettings/ProgramSettings.js +440 -0
- package/components/organisms/ProgramSettings/constants.js +18 -0
- package/components/organisms/ProgramSettings/index.js +1 -0
- package/components/organisms/ProgramSettings/messages.js +57 -0
- package/components/organisms/ProgramSettings/style.js +18 -0
- package/components/organisms/ProgramSettings/tests/ProgramSettings.test.js +176 -0
- package/components/organisms/ProgramSettings/tests/mocks/data.js +22 -0
- package/components/organisms/ProgramSettings/utils.js +17 -0
- package/components/organisms/ProgramWorkflows/ProgramWorkflows.js +293 -0
- package/components/organisms/ProgramWorkflows/actions.js +13 -0
- package/components/organisms/ProgramWorkflows/constants.js +16 -0
- package/components/organisms/ProgramWorkflows/data.js +44 -0
- package/components/organisms/ProgramWorkflows/index.js +1 -0
- package/components/organisms/ProgramWorkflows/messages.js +44 -0
- package/components/organisms/ProgramWorkflows/reducer.js +20 -0
- package/components/organisms/ProgramWorkflows/selectors.js +26 -0
- package/components/organisms/ProgramWorkflows/style.js +19 -0
- package/components/organisms/ProgramWorkflows/tests/actions.test.js +13 -0
- package/components/organisms/ProgramWorkflows/tests/index.test.js +18 -0
- package/components/organisms/ProgramWorkflows/tests/reducer.test.js +10 -0
- package/components/organisms/ProgramWorkflows/tests/selectors.test.js +8 -0
- package/components/organisms/PromisedPointToCurrentPointWorkflowAction/PromisedPointToCurrentPointWorkflowAction.js +143 -0
- package/components/organisms/PromisedPointToCurrentPointWorkflowAction/index.js +1 -0
- package/components/organisms/PromisedPointToCurrentPointWorkflowAction/style.js +17 -0
- package/components/organisms/PromotionAdvancedSettings/PromotionAdvancedSettings.js +1580 -0
- package/components/organisms/PromotionAdvancedSettings/actions.js +14 -0
- package/components/organisms/PromotionAdvancedSettings/constants.js +18 -0
- package/components/organisms/PromotionAdvancedSettings/index.js +1 -0
- package/components/organisms/PromotionAdvancedSettings/messages.js +259 -0
- package/components/organisms/PromotionAdvancedSettings/reducer.js +30 -0
- package/components/organisms/PromotionAdvancedSettings/saga.js +33 -0
- package/components/organisms/PromotionAdvancedSettings/selectors.js +25 -0
- package/components/organisms/PromotionAdvancedSettings/style.js +251 -0
- package/components/organisms/PromotionAdvancedSettings/tests/PromotionAdvancedSettings.test.js +642 -0
- package/components/organisms/PromotionAdvancedSettings/tests/PromotionAdvancedSettingsRevamp.test.js +146 -0
- package/components/organisms/PromotionAdvancedSettings/tests/mockData.js +197 -0
- package/components/organisms/PromotionAdvancedSettings/tests/utils.test.js +48 -0
- package/components/organisms/PromotionAdvancedSettings/utils.js +44 -0
- package/components/organisms/PromotionSettings/PromotionSettings.js +469 -0
- package/components/organisms/PromotionSettings/constants.js +9 -0
- package/components/organisms/PromotionSettings/index.js +1 -0
- package/components/organisms/PromotionSettings/messages.js +93 -0
- package/components/organisms/PromotionSettings/style.js +137 -0
- package/components/organisms/PromotionsDetail/Loadable.js +7 -0
- package/components/organisms/PromotionsDetail/PromotionsDetail.js +1411 -0
- package/components/organisms/PromotionsDetail/actions.js +36 -0
- package/components/organisms/PromotionsDetail/constants.js +124 -0
- package/components/organisms/PromotionsDetail/index.js +1 -0
- package/components/organisms/PromotionsDetail/messages.js +249 -0
- package/components/organisms/PromotionsDetail/reducer.js +183 -0
- package/components/organisms/PromotionsDetail/saga.js +261 -0
- package/components/organisms/PromotionsDetail/selectors.js +56 -0
- package/components/organisms/PromotionsDetail/style.js +317 -0
- package/components/organisms/PromotionsDetail/tests/PromotionsDetail.test.js +511 -0
- package/components/organisms/PromotionsDetail/tests/mockData.js +306 -0
- package/components/organisms/PromotionsDetail/tests/utils.test.js +112 -0
- package/components/organisms/PromotionsDetail/utils.js +618 -0
- package/components/organisms/RadioTreeSelect/RadioTreeSelect.js +135 -0
- package/components/organisms/RadioTreeSelect/constants.js +3 -0
- package/components/organisms/RadioTreeSelect/index.js +1 -0
- package/components/organisms/RadioTreeSelect/style.js +108 -0
- package/components/organisms/ReconfigurePromotions/ReconfigurePromotions.js +128 -0
- package/components/organisms/ReconfigurePromotions/index.js +1 -0
- package/components/organisms/ReconfigurePromotions/messages.js +43 -0
- package/components/organisms/ReconfigurePromotions/style.js +66 -0
- package/components/organisms/ReconfigurePromotions/tests/ReconfigurePromotions.test.js +60 -0
- package/components/organisms/RedeemConditionFields/RedeemConditionFields.js +214 -0
- package/components/organisms/RedeemConditionFields/index.js +1 -0
- package/components/organisms/RedeemConditionFields/messages.js +78 -0
- package/components/organisms/RedeemConditionFields/tests/index.test.js +21 -0
- package/components/organisms/RedeemConditions/RedeemConditions.js +434 -0
- package/components/organisms/RedeemConditions/actions.js +12 -0
- package/components/organisms/RedeemConditions/constants.js +13 -0
- package/components/organisms/RedeemConditions/index.js +1 -0
- package/components/organisms/RedeemConditions/messages.js +32 -0
- package/components/organisms/RedeemConditions/reducer.js +35 -0
- package/components/organisms/RedeemConditions/saga.js +33 -0
- package/components/organisms/RedeemConditions/selectors.js +21 -0
- package/components/organisms/RedeemConditions/style.js +22 -0
- package/components/organisms/RedeemConditions/tests/RedeemConditions.test.js +216 -0
- package/components/organisms/RedeemConditions/tests/mocks/data.js +131 -0
- package/components/organisms/RedeemConditions/tests/saga.test.js +83 -0
- package/components/organisms/RedemptionStrategy/RedemptionStrategy.js +631 -0
- package/components/organisms/RedemptionStrategy/constants.js +13 -0
- package/components/organisms/RedemptionStrategy/index.js +1 -0
- package/components/organisms/RedemptionStrategy/messages.js +60 -0
- package/components/organisms/RedemptionStrategy/style.js +32 -0
- package/components/organisms/RedemptionStrategy/tests/RedemptionStrategy.test.js +80 -0
- package/components/organisms/RedemptionStrategy/tests/mockData.js +46 -0
- package/components/organisms/RenewTierWorkflowAction/RenewTierWorkflowAction.js +137 -0
- package/components/organisms/RenewTierWorkflowAction/index.js +1 -0
- package/components/organisms/RenewTierWorkflowAction/style.js +17 -0
- package/components/organisms/RenewalCommunication/RenewalCommunication.js +148 -0
- package/components/organisms/RenewalCommunication/constants.js +0 -0
- package/components/organisms/RenewalCommunication/index.js +1 -0
- package/components/organisms/RenewalCommunication/messages.js +48 -0
- package/components/organisms/RenewalCommunication/tests/index.test.js +24 -0
- package/components/organisms/RenewalCommunication/utils.js +287 -0
- package/components/organisms/ReturnConditions/ReturnConditions.js +583 -0
- package/components/organisms/ReturnConditions/actions.js +12 -0
- package/components/organisms/ReturnConditions/constants.js +8 -0
- package/components/organisms/ReturnConditions/index.js +1 -0
- package/components/organisms/ReturnConditions/messages.js +91 -0
- package/components/organisms/ReturnConditions/reducer.js +35 -0
- package/components/organisms/ReturnConditions/saga.js +34 -0
- package/components/organisms/ReturnConditions/selectors.js +21 -0
- package/components/organisms/ReturnConditions/style.js +39 -0
- package/components/organisms/ReturnConditions/tests/ReturnConditions.test.js +59 -0
- package/components/organisms/ReturnConditions/tests/mocks/data.js +14 -0
- package/components/organisms/ReturnConditions/tests/mocks/mockData.js +148 -0
- package/components/organisms/ReturnConditions/tests/saga.test.js +87 -0
- package/components/organisms/ReturnStrategy/ReturnStrategy.js +492 -0
- package/components/organisms/ReturnStrategy/constants.js +7 -0
- package/components/organisms/ReturnStrategy/index.js +1 -0
- package/components/organisms/ReturnStrategy/messages.js +24 -0
- package/components/organisms/ReturnStrategy/style.js +14 -0
- package/components/organisms/ReturnStrategy/tests/ReturnStrategy.test.js +73 -0
- package/components/organisms/ReviewPromotionSlider/ReviewPromotionSlider.js +76 -0
- package/components/organisms/ReviewPromotionSlider/index.js +1 -0
- package/components/organisms/ReviewPromotionSlider/style.js +59 -0
- package/components/organisms/ReviewPromotionSlider/tests/ReviewPromotionSlider.test.js +58 -0
- package/components/organisms/ReviewPromotionSlider/tests/mockData.js +535 -0
- package/components/organisms/ReviewPromotionSlider/tests/utils.test.js +11 -0
- package/components/organisms/ReviewPromotionSlider/utils.js +176 -0
- package/components/organisms/ReviewTierUnloadModal/ReviewTierUnloadModal.js +106 -0
- package/components/organisms/ReviewTierUnloadModal/index.js +1 -0
- package/components/organisms/ReviewTierUnloadModal/messages.js +16 -0
- package/components/organisms/ScopeSlidebox/ScopeContentDescription.js +67 -0
- package/components/organisms/ScopeSlidebox/ScopeContentHeader.js +25 -0
- package/components/organisms/ScopeSlidebox/ScopeSlidebox.js +2616 -0
- package/components/organisms/ScopeSlidebox/constants.js +134 -0
- package/components/organisms/ScopeSlidebox/index.js +1 -0
- package/components/organisms/ScopeSlidebox/messages.js +148 -0
- package/components/organisms/ScopeSlidebox/style.js +109 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlDisabled/ScopeSlideBoxWithoutFeature.test.js +1342 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlDisabled/mockData.js +3226 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlDisabled/processedRulesetsData.js +374 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlDisabled/rulesetsData.js +462 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlEnabled/ScopeSlidebox.test.js +1907 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlEnabled/mockData.js +3661 -0
- package/components/organisms/ScopeSlidebox/tests/featureControlEnabled/processedRulesetsData.js +242 -0
- package/components/organisms/ScopeSlidebox/tests/mockData.js +50 -0
- package/components/organisms/ScopeSlidebox/tests/scope-utils.test.js +39 -0
- package/components/organisms/ScopeSlidebox/utils.js +88 -0
- package/components/organisms/SelectLabelWorkflowAction/SelectLabelWorkflowAction.js +70 -0
- package/components/organisms/SelectLabelWorkflowAction/index.js +1 -0
- package/components/organisms/SelectTargetSlider/SelectTargetSlider.js +406 -0
- package/components/organisms/SelectTargetSlider/index.js +1 -0
- package/components/organisms/SelectTargetSlider/messages.js +126 -0
- package/components/organisms/SelectTargetSlider/mockData.js +704 -0
- package/components/organisms/SelectTargetSlider/style.js +97 -0
- package/components/organisms/SelectTargetSlider/tests/NoTargetView.test.js +74 -0
- package/components/organisms/SelectTargetSlider/tests/SelectTargetSlider.test.js +209 -0
- package/components/organisms/SelectTargetSlider/utils.js +186 -0
- package/components/organisms/SendEmailWorkflowAction/SendEmailWorkflowAction.js +159 -0
- package/components/organisms/SendEmailWorkflowAction/index.js +1 -0
- package/components/organisms/SendEmailWorkflowAction/tests/SendEmailWorkflowAction.test.js +23 -0
- package/components/organisms/SendMessagesWorkflowAction/SendMessagesWorkflowAction.js +204 -0
- package/components/organisms/SendMessagesWorkflowAction/index.js +1 -0
- package/components/organisms/SendMessagesWorkflowAction/style.js +17 -0
- package/components/organisms/SendMessagesWorkflowAction/tests/SendMessagesWorflowAction.test.js +23 -0
- package/components/organisms/SendMobilePushWorkflowAction/SendMobilePushWorkflowAction.js +156 -0
- package/components/organisms/SendMobilePushWorkflowAction/index.js +1 -0
- package/components/organisms/SendMobilePushWorkflowAction/tests/SendMobilePushWorkflowAction.test.js +23 -0
- package/components/organisms/SendSmsWorkflowAction/SendSmsWorkflowAction.js +158 -0
- package/components/organisms/SendSmsWorkflowAction/index.js +1 -0
- package/components/organisms/SocialConnectWorkflowAction/SocialConnectWorkflowAction.js +152 -0
- package/components/organisms/SocialConnectWorkflowAction/index.js +1 -0
- package/components/organisms/SocialConnectWorkflowAction/tests/SocialConnectWorkflowAction.test.js +23 -0
- package/components/organisms/StrategyDashboard/Loadable.js +5 -0
- package/components/organisms/StrategyDashboard/StrategyDashboard.js +253 -0
- package/components/organisms/StrategyDashboard/actions.js +7 -0
- package/components/organisms/StrategyDashboard/constants.js +9 -0
- package/components/organisms/StrategyDashboard/context.js +7 -0
- package/components/organisms/StrategyDashboard/index.js +1 -0
- package/components/organisms/StrategyDashboard/messages.js +21 -0
- package/components/organisms/StrategyDashboard/reducer.js +36 -0
- package/components/organisms/StrategyDashboard/saga.js +32 -0
- package/components/organisms/StrategyDashboard/selectors.js +33 -0
- package/components/organisms/StrategyDashboard/style.js +55 -0
- package/components/organisms/StrategyDashboard/tests/StrategyDashboard.test.js +80 -0
- package/components/organisms/StrategyDashboard/tests/mocks/data.js +110 -0
- package/components/organisms/StrategyDashboard/tests/saga.test.js +80 -0
- package/components/organisms/TagCustomerAction/TagCustomerAction.js +170 -0
- package/components/organisms/TagCustomerAction/index.js +1 -0
- package/components/organisms/TagCustomerAction/messages.js +20 -0
- package/components/organisms/TagCustomerAction/tests/TagCustomerAction.test.js +29 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/TargetPointAllocationWorkflowAction.js +623 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/actions.js +32 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/constants.js +37 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/index.js +1 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/reducer.js +88 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/saga.js +128 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/selectors.js +22 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/style.js +17 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/TargetPointAllocationWorkFlowAction.test.js +577 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/__snapshots__/action.test.js.snap +16 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/__snapshots__/reducer.test.js.snap +166 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/action.test.js +31 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/mockData.js +243 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/reducer.test.js +172 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/saga.test.js +290 -0
- package/components/organisms/TargetPointAllocationWorkflowAction/tests/selectors.test.js +16 -0
- package/components/organisms/TierUpgradeAndDowngrade/TierUpgradeAndDowngrade.js +849 -0
- package/components/organisms/TierUpgradeAndDowngrade/constants.js +2 -0
- package/components/organisms/TierUpgradeAndDowngrade/index.js +1 -0
- package/components/organisms/TierUpgradeAndDowngrade/messages.js +174 -0
- package/components/organisms/TierUpgradeAndDowngrade/style.js +709 -0
- package/components/organisms/TierUpgradeAndDowngrade/tests/TierUpgradeAndDowngrade.test.js +326 -0
- package/components/organisms/TierUpgradeAndDowngrade/tests/TiersTooltips.test.js +75 -0
- package/components/organisms/TierUpgradeAndDowngrade/tests/ValidityModal.test.js +82 -0
- package/components/organisms/TierUpgradeAndDowngrade/tests/mocks/data.js +230 -0
- package/components/organisms/TierUpgradeAndDowngrade/tests/utils.test.js +196 -0
- package/components/organisms/TierUpgradeAndDowngrade/utils.js +417 -0
- package/components/organisms/TieradvancedOption/TierAdvancedOption.js +460 -0
- package/components/organisms/TieradvancedOption/actions.js +12 -0
- package/components/organisms/TieradvancedOption/constants.js +25 -0
- package/components/organisms/TieradvancedOption/index.js +1 -0
- package/components/organisms/TieradvancedOption/messages.js +57 -0
- package/components/organisms/TieradvancedOption/reducer.js +31 -0
- package/components/organisms/TieradvancedOption/saga.js +33 -0
- package/components/organisms/TieradvancedOption/selectors.js +25 -0
- package/components/organisms/TieradvancedOption/style.js +53 -0
- package/components/organisms/TieradvancedOption/tests/TierAdvancedOption.test.js +108 -0
- package/components/organisms/TieradvancedOption/tests/mocks/data.js +14 -0
- package/components/organisms/TieradvancedOption/tests/saga.test.js +83 -0
- package/components/organisms/TieradvancedOption/utils.js +162 -0
- package/components/organisms/Tiers/Loadable.js +5 -0
- package/components/organisms/Tiers/Tiers.js +1092 -0
- package/components/organisms/Tiers/actions.js +17 -0
- package/components/organisms/Tiers/constants.js +27 -0
- package/components/organisms/Tiers/context.js +7 -0
- package/components/organisms/Tiers/index.js +1 -0
- package/components/organisms/Tiers/messages.js +33 -0
- package/components/organisms/Tiers/reducer.js +66 -0
- package/components/organisms/Tiers/saga.js +44 -0
- package/components/organisms/Tiers/selectors.js +21 -0
- package/components/organisms/Tiers/style.js +162 -0
- package/components/organisms/Tiers/tests/actions.test.js +28 -0
- package/components/organisms/Tiers/tests/index.test.js +126 -0
- package/components/organisms/Tiers/tests/mock.js +403 -0
- package/components/organisms/Tiers/tests/reducer.test.js +64 -0
- package/components/organisms/Tiers/tests/saga.test.js +94 -0
- package/components/organisms/Tiers/tests/selectors.test.js +27 -0
- package/components/organisms/Tiers/tests/utils.test.js +15 -0
- package/components/organisms/Tiers/utils.js +10 -0
- package/components/organisms/TrackerEvaluationWorkflowAction/TrackerEvaluationWorkflowAction.js +216 -0
- package/components/organisms/TrackerEvaluationWorkflowAction/index.js +1 -0
- package/components/organisms/TrackerEvaluationWorkflowAction/style.js +17 -0
- package/components/organisms/TrackerEvaluationWorkflowAction/tests/TrackerEvaluationWorkflowAction.test.js +100 -0
- package/components/organisms/Trackers/Loadable.js +5 -0
- package/components/organisms/Trackers/Trackers.js +567 -0
- package/components/organisms/Trackers/constants.js +14 -0
- package/components/organisms/Trackers/index.js +1 -0
- package/components/organisms/Trackers/messages.js +48 -0
- package/components/organisms/Trackers/style.js +82 -0
- package/components/organisms/Trackers/tests/Trackers.test.js +45 -0
- package/components/organisms/Trackers/tests/mockData.js +342 -0
- package/components/organisms/TransactionAllocationPointWorkflowAction/TransactionAllocationPointWorkflowAction.js +457 -0
- package/components/organisms/TransactionAllocationPointWorkflowAction/constants.js +3 -0
- package/components/organisms/TransactionAllocationPointWorkflowAction/index.js +1 -0
- package/components/organisms/TransactionAllocationPointWorkflowAction/style.js +17 -0
- package/components/organisms/TransactionAllocationPointWorkflowAction/tests/TransactionAllocationPointWorkflowAction.test.js +134 -0
- package/components/organisms/TransactionAllocationPointWorkflowAction/tests/mockData.js +349 -0
- package/components/organisms/TransferGroupPoints/TransferGroupPoints.js +665 -0
- package/components/organisms/TransferGroupPoints/constants.js +21 -0
- package/components/organisms/TransferGroupPoints/index.js +1 -0
- package/components/organisms/TransferGroupPoints/messages.js +24 -0
- package/components/organisms/TransferGroupPoints/style.js +24 -0
- package/components/organisms/TransferGroupPoints/tests/TransferGroupPoints.test.js +143 -0
- package/components/organisms/TransferGroupPoints/tests/mockData.js +236 -0
- package/components/organisms/UpgradeCommunication/UpgradeCommunication.js +135 -0
- package/components/organisms/UpgradeCommunication/index.js +1 -0
- package/components/organisms/UpgradeCommunication/tests/index.test.js +24 -0
- package/components/organisms/UpgradeCommunication/utils.js +170 -0
- package/components/organisms/UpgradeToTierSettingsWorkflowAction/UpgradeToTierSettingsWorkflowAction.js +214 -0
- package/components/organisms/UpgradeToTierSettingsWorkflowAction/index.js +1 -0
- package/components/organisms/UpgradeToTierSettingsWorkflowAction/style.js +17 -0
- package/components/organisms/UpgradeToTierWorkflowAction/UpgradeToTierWorkflowAction.js +349 -0
- package/components/organisms/UpgradeToTierWorkflowAction/index.js +1 -0
- package/components/organisms/UpgradeToTierWorkflowAction/messages.js +16 -0
- package/components/organisms/UpgradeToTierWorkflowAction/style.js +17 -0
- package/components/organisms/UpgradeToTierWorkflowAction/tests/UpgradeToTierWorkflowAction.test.js +45 -0
- package/components/organisms/VersioningDropdown/VersioningDropdown.js +271 -0
- package/components/organisms/VersioningDropdown/index.js +1 -0
- package/components/organisms/VersioningDropdown/messages.js +18 -0
- package/components/organisms/VersioningDropdown/mocks/data.js +75 -0
- package/components/organisms/VersioningDropdown/style.js +18 -0
- package/components/organisms/VersioningDropdown/tests/VersioningDropdown.test.js +37 -0
- package/components/organisms/VersioningDropdown/utils.js +16 -0
- package/components/pages/AccessForbidden/AccessForbidden.js +20 -0
- package/components/pages/AccessForbidden/index.js +1 -0
- package/components/pages/AccessForbidden/messages.js +14 -0
- package/components/pages/AccessForbidden/style.js +6 -0
- package/components/pages/App/constants.js +705 -0
- package/components/pages/App/index.js +48 -0
- package/components/pages/BulkConfiguration/BulkConfigurations.js +877 -0
- package/components/pages/BulkConfiguration/actions.js +30 -0
- package/components/pages/BulkConfiguration/constants.js +31 -0
- package/components/pages/BulkConfiguration/index.js +1 -0
- package/components/pages/BulkConfiguration/messages.js +144 -0
- package/components/pages/BulkConfiguration/reducer.js +74 -0
- package/components/pages/BulkConfiguration/saga.js +119 -0
- package/components/pages/BulkConfiguration/selector.js +33 -0
- package/components/pages/BulkConfiguration/style.js +222 -0
- package/components/pages/BulkConfiguration/tests/BulkConfigurations.test.js +595 -0
- package/components/pages/BulkConfiguration/tests/BulkConfigurations1.test.js +114 -0
- package/components/pages/BulkConfiguration/tests/BulkConfigurationsEdit.test.js +128 -0
- package/components/pages/BulkConfiguration/tests/actions.test.js +53 -0
- package/components/pages/BulkConfiguration/tests/mockData.js +163 -0
- package/components/pages/BulkConfiguration/tests/reducer.test.js +318 -0
- package/components/pages/BulkConfiguration/tests/saga.test.js +363 -0
- package/components/pages/BulkConfiguration/tests/selectors.test.js +61 -0
- package/components/pages/Cap/Cap.js +443 -0
- package/components/pages/Cap/Loadable.js +14 -0
- package/components/pages/Cap/actions.js +300 -0
- package/components/pages/Cap/constants.js +306 -0
- package/components/pages/Cap/context.js +7 -0
- package/components/pages/Cap/index.js +1 -0
- package/components/pages/Cap/messages.js +2532 -0
- package/components/pages/Cap/mocks/data.js +623 -0
- package/components/pages/Cap/reducer.js +514 -0
- package/components/pages/Cap/routes.js +68 -0
- package/components/pages/Cap/saga.js +1118 -0
- package/components/pages/Cap/selectors.js +325 -0
- package/components/pages/Cap/style.js +79 -0
- package/components/pages/Cap/tests/Cap.test.js +217 -0
- package/components/pages/Cap/tests/__snapshots__/reducer.test.js.snap +111 -0
- package/components/pages/Cap/tests/actions.test.js +76 -0
- package/components/pages/Cap/tests/reducer.test.js +424 -0
- package/components/pages/Cap/tests/saga.test.js +2661 -0
- package/components/pages/Cap/tests/selectors.test.js +118 -0
- package/components/pages/Cap/tests/utils.test.js +37 -0
- package/components/pages/Cap/utils.js +20 -0
- package/components/pages/ConfigureProgram/ConfigureProgram.js +90 -0
- package/components/pages/ConfigureProgram/constants.js +0 -0
- package/components/pages/ConfigureProgram/data.js +17 -0
- package/components/pages/ConfigureProgram/index.js +1 -0
- package/components/pages/ConfigureProgram/tests/ConfigureProgram.test.js +45 -0
- package/components/pages/Dashboard/Dashboard.js +181 -0
- package/components/pages/Dashboard/Loadable.js +12 -0
- package/components/pages/Dashboard/constants.js +9 -0
- package/components/pages/Dashboard/data.js +364 -0
- package/components/pages/Dashboard/index.js +1 -0
- package/components/pages/Dashboard/style.js +5 -0
- package/components/pages/Dashboard/tests/Dashboard.test.js +44 -0
- package/components/pages/LanguageProvider/index.js +68 -0
- package/components/pages/LanguageProvider/saga.js +11 -0
- package/components/pages/LanguageProvider/style.js +8 -0
- package/components/pages/Login/Loadable.js +12 -0
- package/components/pages/Login/Login.js +84 -0
- package/components/pages/Login/index.js +1 -0
- package/components/pages/Login/messages.js +32 -0
- package/components/pages/LoyaltySetting/LoyaltySetting.js +85 -0
- package/components/pages/LoyaltySetting/index.js +1 -0
- package/components/pages/LoyaltySetting/style.js +7 -0
- package/components/pages/LoyaltySetting/tests/LoyaltySetting.test.js +37 -0
- package/components/pages/NotFoundPage/NotFoundPage.js +26 -0
- package/components/pages/NotFoundPage/index.js +1 -0
- package/components/pages/NotFoundPage/messages.js +15 -0
- package/components/pages/NotFoundPage/tests/NotFoundPage.test.js +11 -0
- package/components/pages/NotFoundPage/tests/__snapshots__/NotFoundPage.test.js.snap +18 -0
- package/components/pages/PermissionDeniedPage/Loadable.js +11 -0
- package/components/pages/PermissionDeniedPage/PermissionDeniedPage.js +28 -0
- package/components/pages/PermissionDeniedPage/index.js +1 -0
- package/components/pages/PermissionDeniedPage/messages.js +14 -0
- package/components/pages/PermissionDeniedPage/style.js +13 -0
- package/components/pages/PermissionDeniedPage/tests/index.test.js +26 -0
- package/components/pages/ProgramSummary/ProgramSummary.js +1164 -0
- package/components/pages/ProgramSummary/actions.js +78 -0
- package/components/pages/ProgramSummary/constants.js +73 -0
- package/components/pages/ProgramSummary/context.js +7 -0
- package/components/pages/ProgramSummary/index.js +1 -0
- package/components/pages/ProgramSummary/messages.js +77 -0
- package/components/pages/ProgramSummary/reducer.js +173 -0
- package/components/pages/ProgramSummary/saga.js +355 -0
- package/components/pages/ProgramSummary/selectors.js +103 -0
- package/components/pages/ProgramSummary/style.js +235 -0
- package/components/pages/ProgramSummary/tests/ProgramSummary.test.js +713 -0
- package/components/pages/ProgramSummary/tests/actions.test.js +118 -0
- package/components/pages/ProgramSummary/tests/mockData.js +801 -0
- package/components/pages/ProgramSummary/tests/reducer.test.js +160 -0
- package/components/pages/ProgramSummary/tests/saga.test.js +658 -0
- package/components/pages/ProgramSummary/tests/selectors.test.js +98 -0
- package/components/pages/ProgramSummary/utils.js +7 -0
- package/components/pages/Promotions/Promotions.js +1698 -0
- package/components/pages/Promotions/actions.js +23 -0
- package/components/pages/Promotions/constants.js +65 -0
- package/components/pages/Promotions/index.js +1 -0
- package/components/pages/Promotions/initialState.js +39 -0
- package/components/pages/Promotions/messages.js +129 -0
- package/components/pages/Promotions/reducer.js +58 -0
- package/components/pages/Promotions/saga.js +112 -0
- package/components/pages/Promotions/selectors.js +43 -0
- package/components/pages/Promotions/style.js +152 -0
- package/components/pages/Promotions/tests/Promotions.test.js +906 -0
- package/components/pages/Promotions/tests/mockData.js +454 -0
- package/components/pages/PromotionsDashboard/PromotionsDashboard.js +127 -0
- package/components/pages/PromotionsDashboard/index.js +1 -0
- package/components/pages/PromotionsDashboard/style.js +5 -0
- package/components/pages/PromotionsDashboard/tests/PromotionsDashboard.test.js +90 -0
- package/components/templates/PageTemplate/index.js +1 -0
- package/components/templates/PageTemplate/pageTemplate.js +28 -0
- package/components/templates/PageTemplate/tests/pageTemplate.test.js +15 -0
- package/config/app.js +54 -0
- package/config/constants.js +4 -0
- package/config/path.js +4 -0
- package/config/request.js +134 -0
- package/config/urls.js +4 -0
- package/entry.js +4 -0
- package/favicon.ico +0 -0
- package/global-styles.js +575 -0
- package/i18n.js +48 -0
- package/index.html +56 -0
- package/initialReducer.js +14 -0
- package/initialState.js +109 -0
- package/lib/CustomHooks/useInterval/index.js +1 -0
- package/lib/CustomHooks/useInterval/useInterval.js +29 -0
- package/package.json +63 -8
- package/services/api.js +1206 -0
- package/services/localStorageApi.js +41 -0
- package/services/requestConstructor.js +169 -0
- package/tests/i18n.test.js +28 -0
- package/tests/integration/CreateProgram/CreateProgram.integration.test.js +148 -0
- package/tests/integration/CreateProgram/helper.js +216 -0
- package/tests/integration/CreateProgram/mocks/apiResponse.js +7 -0
- package/tests/integration/CreateProgram/mocks/constants.js +1 -0
- package/tests/integration/CreateProgram/mocks/msw-handler.js +26 -0
- package/tests/integration/EditProgram/EditProgram.integration.test.js +159 -0
- package/tests/integration/EditProgram/helper.js +104 -0
- package/tests/integration/EditProgram/mocks/apiResponse.js +327 -0
- package/tests/integration/EditProgram/mocks/msw-handler.js +56 -0
- package/tests/integration/Login/Login.integration.test.js +96 -0
- package/tests/integration/Login/mocks/apiResponse.js +235 -0
- package/tests/integration/Login/mocks/msw-handler.js +34 -0
- package/tests/integration/PartnerProgram/CreatePartnerProgram.integration.test.js +117 -0
- package/tests/integration/PartnerProgram/helper.js +256 -0
- package/tests/integration/PartnerProgram/mocks/apiResponse.js +689 -0
- package/tests/integration/PartnerProgram/mocks/msw-handler.js +210 -0
- package/tests/integration/Promotion/CreatePromotion.integration.test.js +237 -0
- package/tests/integration/Promotion/EditPromotion.integration.test.js +94 -0
- package/tests/integration/Promotion/helper.js +656 -0
- package/tests/integration/Promotion/mocks/apiResponse.js +2683 -0
- package/tests/integration/Promotion/mocks/constants.js +7 -0
- package/tests/integration/Promotion/mocks/msw-handler.js +183 -0
- package/tests/integration/Versioning/mocks/apiResponse.js +14333 -0
- package/tests/integration/commonMocks/apiResponse.js +1624 -0
- package/tests/integration/commonMocks/helper.js +31 -0
- package/tests/integration/commonMocks/initialState.js +4 -0
- package/tests/integration/commonMocks/msw-handler.js +100 -0
- package/tests/store.test.js +46 -0
- package/tests/test-utils-it.js +64 -0
- package/tests/test-utils.js +68 -0
- package/translations/en.json +2516 -0
- package/utils/audience.js +46 -0
- package/utils/authWrapper.js +138 -0
- package/utils/bugsnag.js +43 -0
- package/utils/checkStore.js +21 -0
- package/utils/clearDataOnUnmount.js +17 -0
- package/utils/commonUtils.js +959 -0
- package/utils/communication.js +301 -0
- package/utils/constants.js +2 -0
- package/utils/coupons.js +26 -0
- package/utils/createComponentWithIntl.js +8 -0
- package/utils/gtmTrackers/gtmEvents/bulkConfigDetails.js +155 -0
- package/utils/gtmTrackers/gtmEvents/cappingDetails.js +33 -0
- package/utils/gtmTrackers/gtmEvents/commChannelDetails.js +29 -0
- package/utils/gtmTrackers/gtmEvents/commDetails.js +142 -0
- package/utils/gtmTrackers/gtmEvents/configureKpis.js +20 -0
- package/utils/gtmTrackers/gtmEvents/earnPointDetails.js +44 -0
- package/utils/gtmTrackers/gtmEvents/errorScreen.js +7 -0
- package/utils/gtmTrackers/gtmEvents/expiryPointDetails.js +35 -0
- package/utils/gtmTrackers/gtmEvents/nudgeDetails.js +10 -0
- package/utils/gtmTrackers/gtmEvents/pointsSettingDetails.js +14 -0
- package/utils/gtmTrackers/gtmEvents/programDetails.js +28 -0
- package/utils/gtmTrackers/gtmEvents/programSettingDetails.js +38 -0
- package/utils/gtmTrackers/gtmEvents/promotionDetails.js +116 -0
- package/utils/gtmTrackers/gtmEvents/publishChanges.js +13 -0
- package/utils/gtmTrackers/gtmEvents/redeemPointDetails.js +37 -0
- package/utils/gtmTrackers/gtmEvents/returnPointDetails.js +26 -0
- package/utils/gtmTrackers/gtmEvents/scopingDetails.js +33 -0
- package/utils/gtmTrackers/gtmEvents/tenderDetails.js +43 -0
- package/utils/gtmTrackers/gtmEvents/tierDetails.js +110 -0
- package/utils/gtmTrackers/gtmEvents/trackerDetails.js +61 -0
- package/utils/gtmTrackers/gtmEvents/viewBulkConfigDetails.js +25 -0
- package/utils/gtmTrackers/gtmEvents/viewPromotionDetails.js +28 -0
- package/utils/gtmTrackers/gtmEvents/workflowActions.js +29 -0
- package/utils/gtmTrackers/gtmEvents/workflowDetails.js +14 -0
- package/utils/gtmTrackers/index.js +17 -0
- package/utils/gtmTrackers/tests/errorScreen.test.js +13 -0
- package/utils/gtmTrackers/tests/mockData.js +4 -0
- package/utils/gtmTrackers/tests/programDetails.test.js +24 -0
- package/utils/history.js +3 -0
- package/utils/injectReducer.js +2 -0
- package/utils/injectSaga.js +3 -0
- package/utils/intlWrapper.js +40 -0
- package/utils/parseSenderDetails.js +49 -0
- package/utils/promotions.js +53 -0
- package/utils/tests/checkStore.test.js +33 -0
- package/utils/tests/commonUtils.test.js +37 -0
- package/utils/tiers.js +457 -0
- package/utils/usePersistantState.js +64 -0
- package/utils/userUtils.js +7 -0
- package/utils/validationHelper.js +24 -0
- package/utils/withDynamicLazyLoading.js +17 -0
- package/utils/withErrorBoundary.js +24 -0
- package/utils/withStyles.js +9 -0
- package/utils/workflow.js +813 -0
- package/index.js +0 -9
|
@@ -0,0 +1,3226 @@
|
|
|
1
|
+
export const props = {
|
|
2
|
+
rulesets: [
|
|
3
|
+
{
|
|
4
|
+
id: 8146,
|
|
5
|
+
orgName: 'Consistency',
|
|
6
|
+
contextID: 968,
|
|
7
|
+
orgID: 1685,
|
|
8
|
+
contextType: 'program',
|
|
9
|
+
ruleScope: 'SERVER',
|
|
10
|
+
startDate: {
|
|
11
|
+
buffer: {
|
|
12
|
+
type: 'Buffer',
|
|
13
|
+
data: [0, 0, 0, 195, 161, 4, 71, 184],
|
|
14
|
+
},
|
|
15
|
+
offset: 0,
|
|
16
|
+
},
|
|
17
|
+
endDate: {
|
|
18
|
+
buffer: {
|
|
19
|
+
type: 'Buffer',
|
|
20
|
+
data: [0, 0, 1, 160, 11, 211, 243, 184],
|
|
21
|
+
},
|
|
22
|
+
offset: 0,
|
|
23
|
+
},
|
|
24
|
+
createdOn: {
|
|
25
|
+
buffer: {
|
|
26
|
+
type: 'Buffer',
|
|
27
|
+
data: [0, 0, 1, 86, 148, 155, 131, 184],
|
|
28
|
+
},
|
|
29
|
+
offset: 0,
|
|
30
|
+
},
|
|
31
|
+
createdBy: 0,
|
|
32
|
+
modifiedBy: 15000449,
|
|
33
|
+
modifiedOn: {
|
|
34
|
+
buffer: {
|
|
35
|
+
type: 'Buffer',
|
|
36
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
37
|
+
},
|
|
38
|
+
offset: 0,
|
|
39
|
+
},
|
|
40
|
+
name: 'NewBill_RS_Start',
|
|
41
|
+
packageName: '',
|
|
42
|
+
description: 'NewBill_RS_Start',
|
|
43
|
+
isPrivate: false,
|
|
44
|
+
eventName: 'TransactionAdd',
|
|
45
|
+
rules: [
|
|
46
|
+
{
|
|
47
|
+
id: 9002,
|
|
48
|
+
exp: 'currentTxn.basketIncludes("hello there","how are you")',
|
|
49
|
+
expJSON:
|
|
50
|
+
'{"arity":"method_call","type":"boolean:primitive","operands":[{"arity":"name","value":"currentTxn","type":"tx:object:primitive"},{"arity":"name","value":"basketIncludes","type":"anonymous:function:primitive"},{"arity":"literal","value":"hello there","type":"EEnum__InvAttr:enum:string:object:primitive"},{"arity":"literal","value":"how are you","type":"EEnum__InvAttr__EDepEnum__InvAttrVal__hello there:string:object:primitive"}]}',
|
|
51
|
+
jsonType: 'JNODE',
|
|
52
|
+
isActive: false,
|
|
53
|
+
priority: 1,
|
|
54
|
+
startDate: {
|
|
55
|
+
buffer: {
|
|
56
|
+
type: 'Buffer',
|
|
57
|
+
data: [0, 0, 0, 195, 161, 4, 71, 184],
|
|
58
|
+
},
|
|
59
|
+
offset: 0,
|
|
60
|
+
},
|
|
61
|
+
endDate: {
|
|
62
|
+
buffer: {
|
|
63
|
+
type: 'Buffer',
|
|
64
|
+
data: [0, 0, 1, 160, 11, 211, 243, 184],
|
|
65
|
+
},
|
|
66
|
+
offset: 0,
|
|
67
|
+
},
|
|
68
|
+
createdOn: {
|
|
69
|
+
buffer: {
|
|
70
|
+
type: 'Buffer',
|
|
71
|
+
data: [0, 0, 1, 86, 148, 155, 131, 184],
|
|
72
|
+
},
|
|
73
|
+
offset: 0,
|
|
74
|
+
},
|
|
75
|
+
ruleScope: 'SERVER',
|
|
76
|
+
createdBy: 0,
|
|
77
|
+
modifiedBy: 15000449,
|
|
78
|
+
modifiedOn: {
|
|
79
|
+
buffer: {
|
|
80
|
+
type: 'Buffer',
|
|
81
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
82
|
+
},
|
|
83
|
+
offset: 0,
|
|
84
|
+
},
|
|
85
|
+
name: 'rule0',
|
|
86
|
+
description: 'default_rule',
|
|
87
|
+
expDataType: null,
|
|
88
|
+
ruleSetId: 8146,
|
|
89
|
+
caseToActions: {
|
|
90
|
+
true: [
|
|
91
|
+
{
|
|
92
|
+
id: 75890,
|
|
93
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
94
|
+
actionClass:
|
|
95
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
96
|
+
mandatoryPropertiesValues: {
|
|
97
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
98
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
99
|
+
ExpiryStrategy: '25087',
|
|
100
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
101
|
+
AwardStrategy: '79955',
|
|
102
|
+
DelayExtendedFieldName: '',
|
|
103
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
104
|
+
},
|
|
105
|
+
mandatoryComplexPropertiesValues: {},
|
|
106
|
+
description: 'WDA',
|
|
107
|
+
},
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
filterInfo: [],
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
id: 51161,
|
|
114
|
+
exp: 'currentCustomer.avgBasketSize>900',
|
|
115
|
+
expJSON:
|
|
116
|
+
'{"arity":"binary_operation","value":">","type":"boolean:primitive","operands":[{"arity":"object_dereference","type":"integer:number:primitive","operands":[{"arity":"name","value":"currentCustomer","type":"customer:object:primitive"},{"arity":"name","value":"avgBasketSize","type":"integer:number:primitive"}]},{"arity":"literal","value":"900","type":"number:primitive"}]}',
|
|
117
|
+
jsonType: 'JNODE',
|
|
118
|
+
isActive: false,
|
|
119
|
+
priority: -1,
|
|
120
|
+
startDate: {
|
|
121
|
+
buffer: {
|
|
122
|
+
type: 'Buffer',
|
|
123
|
+
data: [0, 0, 0, 234, 57, 239, 36, 104],
|
|
124
|
+
},
|
|
125
|
+
offset: 0,
|
|
126
|
+
},
|
|
127
|
+
endDate: {
|
|
128
|
+
buffer: {
|
|
129
|
+
type: 'Buffer',
|
|
130
|
+
data: [0, 0, 1, 198, 164, 190, 208, 104],
|
|
131
|
+
},
|
|
132
|
+
offset: 0,
|
|
133
|
+
},
|
|
134
|
+
createdOn: {
|
|
135
|
+
buffer: {
|
|
136
|
+
type: 'Buffer',
|
|
137
|
+
data: [0, 0, 1, 125, 45, 134, 100, 80],
|
|
138
|
+
},
|
|
139
|
+
offset: 0,
|
|
140
|
+
},
|
|
141
|
+
ruleScope: 'SERVER',
|
|
142
|
+
createdBy: 0,
|
|
143
|
+
modifiedBy: 15000449,
|
|
144
|
+
modifiedOn: {
|
|
145
|
+
buffer: {
|
|
146
|
+
type: 'Buffer',
|
|
147
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
148
|
+
},
|
|
149
|
+
offset: 0,
|
|
150
|
+
},
|
|
151
|
+
name: 'Rule2',
|
|
152
|
+
description: '',
|
|
153
|
+
expDataType: null,
|
|
154
|
+
ruleSetId: 8146,
|
|
155
|
+
caseToActions: {},
|
|
156
|
+
filterInfo: [],
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
id: 51162,
|
|
160
|
+
exp: 'true',
|
|
161
|
+
expJSON:
|
|
162
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
163
|
+
jsonType: 'JNODE',
|
|
164
|
+
isActive: false,
|
|
165
|
+
priority: -1,
|
|
166
|
+
startDate: {
|
|
167
|
+
buffer: {
|
|
168
|
+
type: 'Buffer',
|
|
169
|
+
data: [0, 0, 0, 234, 57, 239, 36, 104],
|
|
170
|
+
},
|
|
171
|
+
offset: 0,
|
|
172
|
+
},
|
|
173
|
+
endDate: {
|
|
174
|
+
buffer: {
|
|
175
|
+
type: 'Buffer',
|
|
176
|
+
data: [0, 0, 1, 198, 164, 190, 208, 104],
|
|
177
|
+
},
|
|
178
|
+
offset: 0,
|
|
179
|
+
},
|
|
180
|
+
createdOn: {
|
|
181
|
+
buffer: {
|
|
182
|
+
type: 'Buffer',
|
|
183
|
+
data: [0, 0, 1, 125, 45, 134, 100, 80],
|
|
184
|
+
},
|
|
185
|
+
offset: 0,
|
|
186
|
+
},
|
|
187
|
+
ruleScope: 'SERVER',
|
|
188
|
+
createdBy: 0,
|
|
189
|
+
modifiedBy: 15000449,
|
|
190
|
+
modifiedOn: {
|
|
191
|
+
buffer: {
|
|
192
|
+
type: 'Buffer',
|
|
193
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
194
|
+
},
|
|
195
|
+
offset: 0,
|
|
196
|
+
},
|
|
197
|
+
name: 'Rule3',
|
|
198
|
+
description: '',
|
|
199
|
+
expDataType: null,
|
|
200
|
+
ruleSetId: 8146,
|
|
201
|
+
caseToActions: {},
|
|
202
|
+
filterInfo: [],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
id: 51163,
|
|
206
|
+
exp: 'false',
|
|
207
|
+
expJSON:
|
|
208
|
+
'{"arity":"literal","value":"false","type":"boolean:primitive"}',
|
|
209
|
+
jsonType: 'JNODE',
|
|
210
|
+
isActive: false,
|
|
211
|
+
priority: -1,
|
|
212
|
+
startDate: {
|
|
213
|
+
buffer: {
|
|
214
|
+
type: 'Buffer',
|
|
215
|
+
data: [0, 0, 0, 234, 57, 239, 36, 104],
|
|
216
|
+
},
|
|
217
|
+
offset: 0,
|
|
218
|
+
},
|
|
219
|
+
endDate: {
|
|
220
|
+
buffer: {
|
|
221
|
+
type: 'Buffer',
|
|
222
|
+
data: [0, 0, 1, 198, 164, 190, 208, 104],
|
|
223
|
+
},
|
|
224
|
+
offset: 0,
|
|
225
|
+
},
|
|
226
|
+
createdOn: {
|
|
227
|
+
buffer: {
|
|
228
|
+
type: 'Buffer',
|
|
229
|
+
data: [0, 0, 1, 125, 45, 134, 100, 80],
|
|
230
|
+
},
|
|
231
|
+
offset: 0,
|
|
232
|
+
},
|
|
233
|
+
ruleScope: 'SERVER',
|
|
234
|
+
createdBy: 0,
|
|
235
|
+
modifiedBy: 15000449,
|
|
236
|
+
modifiedOn: {
|
|
237
|
+
buffer: {
|
|
238
|
+
type: 'Buffer',
|
|
239
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
240
|
+
},
|
|
241
|
+
offset: 0,
|
|
242
|
+
},
|
|
243
|
+
name: 'Rule4',
|
|
244
|
+
description: '',
|
|
245
|
+
expDataType: null,
|
|
246
|
+
ruleSetId: 8146,
|
|
247
|
+
caseToActions: {},
|
|
248
|
+
filterInfo: [],
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
id: 51276,
|
|
252
|
+
exp: 'true',
|
|
253
|
+
expJSON:
|
|
254
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
255
|
+
jsonType: 'JNODE',
|
|
256
|
+
isActive: false,
|
|
257
|
+
priority: -1,
|
|
258
|
+
startDate: {
|
|
259
|
+
buffer: {
|
|
260
|
+
type: 'Buffer',
|
|
261
|
+
data: [0, 0, 0, 234, 63, 32, 15, 136],
|
|
262
|
+
},
|
|
263
|
+
offset: 0,
|
|
264
|
+
},
|
|
265
|
+
endDate: {
|
|
266
|
+
buffer: {
|
|
267
|
+
type: 'Buffer',
|
|
268
|
+
data: [0, 0, 1, 198, 169, 239, 187, 136],
|
|
269
|
+
},
|
|
270
|
+
offset: 0,
|
|
271
|
+
},
|
|
272
|
+
createdOn: {
|
|
273
|
+
buffer: {
|
|
274
|
+
type: 'Buffer',
|
|
275
|
+
data: [0, 0, 1, 125, 50, 183, 75, 136],
|
|
276
|
+
},
|
|
277
|
+
offset: 0,
|
|
278
|
+
},
|
|
279
|
+
ruleScope: 'SERVER',
|
|
280
|
+
createdBy: 0,
|
|
281
|
+
modifiedBy: 15000449,
|
|
282
|
+
modifiedOn: {
|
|
283
|
+
buffer: {
|
|
284
|
+
type: 'Buffer',
|
|
285
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
286
|
+
},
|
|
287
|
+
offset: 0,
|
|
288
|
+
},
|
|
289
|
+
name: 'Rule5',
|
|
290
|
+
description: '',
|
|
291
|
+
expDataType: null,
|
|
292
|
+
ruleSetId: 8146,
|
|
293
|
+
caseToActions: {},
|
|
294
|
+
filterInfo: [],
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
id: 51334,
|
|
298
|
+
exp: 'true',
|
|
299
|
+
expJSON:
|
|
300
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
301
|
+
jsonType: 'JNODE',
|
|
302
|
+
isActive: false,
|
|
303
|
+
priority: -1,
|
|
304
|
+
startDate: {
|
|
305
|
+
buffer: {
|
|
306
|
+
type: 'Buffer',
|
|
307
|
+
data: [0, 0, 0, 234, 67, 221, 198, 120],
|
|
308
|
+
},
|
|
309
|
+
offset: 0,
|
|
310
|
+
},
|
|
311
|
+
endDate: {
|
|
312
|
+
buffer: {
|
|
313
|
+
type: 'Buffer',
|
|
314
|
+
data: [0, 0, 1, 198, 174, 173, 114, 120],
|
|
315
|
+
},
|
|
316
|
+
offset: 0,
|
|
317
|
+
},
|
|
318
|
+
createdOn: {
|
|
319
|
+
buffer: {
|
|
320
|
+
type: 'Buffer',
|
|
321
|
+
data: [0, 0, 1, 125, 55, 117, 2, 120],
|
|
322
|
+
},
|
|
323
|
+
offset: 0,
|
|
324
|
+
},
|
|
325
|
+
ruleScope: 'SERVER',
|
|
326
|
+
createdBy: 0,
|
|
327
|
+
modifiedBy: 15000449,
|
|
328
|
+
modifiedOn: {
|
|
329
|
+
buffer: {
|
|
330
|
+
type: 'Buffer',
|
|
331
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
332
|
+
},
|
|
333
|
+
offset: 0,
|
|
334
|
+
},
|
|
335
|
+
name: 'Rule6',
|
|
336
|
+
description: '',
|
|
337
|
+
expDataType: null,
|
|
338
|
+
ruleSetId: 8146,
|
|
339
|
+
caseToActions: {},
|
|
340
|
+
filterInfo: [],
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
id: 51335,
|
|
344
|
+
exp: 'currentCustomer.avgBasketSize>12',
|
|
345
|
+
expJSON:
|
|
346
|
+
'{"arity":"binary_operation","value":">","type":"boolean:primitive","operands":[{"arity":"object_dereference","type":"integer:number:primitive","operands":[{"arity":"name","value":"currentCustomer","type":"customer:object:primitive"},{"arity":"name","value":"avgBasketSize","type":"integer:number:primitive"}]},{"arity":"literal","value":"12","type":"number:primitive"}]}',
|
|
347
|
+
jsonType: 'JNODE',
|
|
348
|
+
isActive: false,
|
|
349
|
+
priority: -1,
|
|
350
|
+
startDate: {
|
|
351
|
+
buffer: {
|
|
352
|
+
type: 'Buffer',
|
|
353
|
+
data: [0, 0, 0, 234, 67, 229, 166, 24],
|
|
354
|
+
},
|
|
355
|
+
offset: 0,
|
|
356
|
+
},
|
|
357
|
+
endDate: {
|
|
358
|
+
buffer: {
|
|
359
|
+
type: 'Buffer',
|
|
360
|
+
data: [0, 0, 1, 198, 174, 181, 82, 24],
|
|
361
|
+
},
|
|
362
|
+
offset: 0,
|
|
363
|
+
},
|
|
364
|
+
createdOn: {
|
|
365
|
+
buffer: {
|
|
366
|
+
type: 'Buffer',
|
|
367
|
+
data: [0, 0, 1, 125, 55, 124, 226, 24],
|
|
368
|
+
},
|
|
369
|
+
offset: 0,
|
|
370
|
+
},
|
|
371
|
+
ruleScope: 'SERVER',
|
|
372
|
+
createdBy: 0,
|
|
373
|
+
modifiedBy: 15000449,
|
|
374
|
+
modifiedOn: {
|
|
375
|
+
buffer: {
|
|
376
|
+
type: 'Buffer',
|
|
377
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
378
|
+
},
|
|
379
|
+
offset: 0,
|
|
380
|
+
},
|
|
381
|
+
name: 'Rule7',
|
|
382
|
+
description: '',
|
|
383
|
+
expDataType: null,
|
|
384
|
+
ruleSetId: 8146,
|
|
385
|
+
caseToActions: {
|
|
386
|
+
true: [
|
|
387
|
+
{
|
|
388
|
+
id: 76331,
|
|
389
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
390
|
+
actionClass:
|
|
391
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
392
|
+
mandatoryPropertiesValues: {
|
|
393
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
394
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
395
|
+
ExpiryStrategy: '34165',
|
|
396
|
+
PointType: 'Main',
|
|
397
|
+
AwardStrategy: '34166',
|
|
398
|
+
DelayExtendedFieldName: '',
|
|
399
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
400
|
+
},
|
|
401
|
+
mandatoryComplexPropertiesValues: {},
|
|
402
|
+
description: '4th slab',
|
|
403
|
+
},
|
|
404
|
+
],
|
|
405
|
+
},
|
|
406
|
+
filterInfo: [],
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
id: 51339,
|
|
410
|
+
exp: 'false',
|
|
411
|
+
expJSON:
|
|
412
|
+
'{"arity":"literal","value":"false","type":"boolean:primitive"}',
|
|
413
|
+
jsonType: 'JNODE',
|
|
414
|
+
isActive: false,
|
|
415
|
+
priority: -1,
|
|
416
|
+
startDate: {
|
|
417
|
+
buffer: {
|
|
418
|
+
type: 'Buffer',
|
|
419
|
+
data: [0, 0, 0, 234, 68, 73, 42, 168],
|
|
420
|
+
},
|
|
421
|
+
offset: 0,
|
|
422
|
+
},
|
|
423
|
+
endDate: {
|
|
424
|
+
buffer: {
|
|
425
|
+
type: 'Buffer',
|
|
426
|
+
data: [0, 0, 1, 198, 175, 24, 214, 168],
|
|
427
|
+
},
|
|
428
|
+
offset: 0,
|
|
429
|
+
},
|
|
430
|
+
createdOn: {
|
|
431
|
+
buffer: {
|
|
432
|
+
type: 'Buffer',
|
|
433
|
+
data: [0, 0, 1, 125, 55, 224, 106, 144],
|
|
434
|
+
},
|
|
435
|
+
offset: 0,
|
|
436
|
+
},
|
|
437
|
+
ruleScope: 'SERVER',
|
|
438
|
+
createdBy: 0,
|
|
439
|
+
modifiedBy: 15000449,
|
|
440
|
+
modifiedOn: {
|
|
441
|
+
buffer: {
|
|
442
|
+
type: 'Buffer',
|
|
443
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
444
|
+
},
|
|
445
|
+
offset: 0,
|
|
446
|
+
},
|
|
447
|
+
name: 'Rule8',
|
|
448
|
+
description: '',
|
|
449
|
+
expDataType: null,
|
|
450
|
+
ruleSetId: 8146,
|
|
451
|
+
caseToActions: {},
|
|
452
|
+
filterInfo: [],
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
id: 51340,
|
|
456
|
+
exp: 'true',
|
|
457
|
+
expJSON:
|
|
458
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
459
|
+
jsonType: 'JNODE',
|
|
460
|
+
isActive: false,
|
|
461
|
+
priority: -1,
|
|
462
|
+
startDate: {
|
|
463
|
+
buffer: {
|
|
464
|
+
type: 'Buffer',
|
|
465
|
+
data: [0, 0, 0, 234, 68, 73, 42, 168],
|
|
466
|
+
},
|
|
467
|
+
offset: 0,
|
|
468
|
+
},
|
|
469
|
+
endDate: {
|
|
470
|
+
buffer: {
|
|
471
|
+
type: 'Buffer',
|
|
472
|
+
data: [0, 0, 1, 198, 175, 24, 214, 168],
|
|
473
|
+
},
|
|
474
|
+
offset: 0,
|
|
475
|
+
},
|
|
476
|
+
createdOn: {
|
|
477
|
+
buffer: {
|
|
478
|
+
type: 'Buffer',
|
|
479
|
+
data: [0, 0, 1, 125, 55, 224, 106, 144],
|
|
480
|
+
},
|
|
481
|
+
offset: 0,
|
|
482
|
+
},
|
|
483
|
+
ruleScope: 'SERVER',
|
|
484
|
+
createdBy: 0,
|
|
485
|
+
modifiedBy: 15000449,
|
|
486
|
+
modifiedOn: {
|
|
487
|
+
buffer: {
|
|
488
|
+
type: 'Buffer',
|
|
489
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
490
|
+
},
|
|
491
|
+
offset: 0,
|
|
492
|
+
},
|
|
493
|
+
name: 'Rule9',
|
|
494
|
+
description: '',
|
|
495
|
+
expDataType: null,
|
|
496
|
+
ruleSetId: 8146,
|
|
497
|
+
caseToActions: {},
|
|
498
|
+
filterInfo: [],
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
id: 51341,
|
|
502
|
+
exp: 'currentCustomer.avgBasketSize==5000',
|
|
503
|
+
expJSON:
|
|
504
|
+
'{"arity":"binary_operation","value":"==","type":"boolean:primitive","operands":[{"arity":"object_dereference","type":"integer:number:primitive","operands":[{"arity":"name","value":"currentCustomer","type":"customer:object:primitive"},{"arity":"name","value":"avgBasketSize","type":"integer:number:primitive"}]},{"arity":"literal","value":"5000","type":"number:primitive"}]}',
|
|
505
|
+
jsonType: 'JNODE',
|
|
506
|
+
isActive: false,
|
|
507
|
+
priority: -1,
|
|
508
|
+
startDate: {
|
|
509
|
+
buffer: {
|
|
510
|
+
type: 'Buffer',
|
|
511
|
+
data: [0, 0, 0, 234, 68, 75, 46, 72],
|
|
512
|
+
},
|
|
513
|
+
offset: 0,
|
|
514
|
+
},
|
|
515
|
+
endDate: {
|
|
516
|
+
buffer: {
|
|
517
|
+
type: 'Buffer',
|
|
518
|
+
data: [0, 0, 1, 198, 175, 26, 218, 72],
|
|
519
|
+
},
|
|
520
|
+
offset: 0,
|
|
521
|
+
},
|
|
522
|
+
createdOn: {
|
|
523
|
+
buffer: {
|
|
524
|
+
type: 'Buffer',
|
|
525
|
+
data: [0, 0, 1, 125, 55, 226, 106, 72],
|
|
526
|
+
},
|
|
527
|
+
offset: 0,
|
|
528
|
+
},
|
|
529
|
+
ruleScope: 'SERVER',
|
|
530
|
+
createdBy: 0,
|
|
531
|
+
modifiedBy: 15000449,
|
|
532
|
+
modifiedOn: {
|
|
533
|
+
buffer: {
|
|
534
|
+
type: 'Buffer',
|
|
535
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
536
|
+
},
|
|
537
|
+
offset: 0,
|
|
538
|
+
},
|
|
539
|
+
name: 'Rule6',
|
|
540
|
+
description: '',
|
|
541
|
+
expDataType: null,
|
|
542
|
+
ruleSetId: 8146,
|
|
543
|
+
caseToActions: {
|
|
544
|
+
true: [
|
|
545
|
+
{
|
|
546
|
+
id: 76911,
|
|
547
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
548
|
+
actionClass:
|
|
549
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
550
|
+
mandatoryPropertiesValues: {
|
|
551
|
+
shouldRenewSlab: 'true',
|
|
552
|
+
EvaluatedEntity: 'USER',
|
|
553
|
+
},
|
|
554
|
+
mandatoryComplexPropertiesValues: {},
|
|
555
|
+
description: null,
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
id: 77074,
|
|
559
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
560
|
+
actionClass:
|
|
561
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
562
|
+
mandatoryPropertiesValues: {
|
|
563
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
564
|
+
ToSlabSerialNumber: '2',
|
|
565
|
+
},
|
|
566
|
+
mandatoryComplexPropertiesValues: {},
|
|
567
|
+
description: null,
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
id: 77611,
|
|
571
|
+
actionName: 'BILL_POINTS_ACTION',
|
|
572
|
+
actionClass:
|
|
573
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.BillAwardPointsActionImpl',
|
|
574
|
+
mandatoryPropertiesValues: {
|
|
575
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
576
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
577
|
+
EvaluatedEntity: 'USER',
|
|
578
|
+
ZeroAwardStrategy: '79956',
|
|
579
|
+
ExpiryStrategy: '46797',
|
|
580
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
581
|
+
AwardStrategy: '80007',
|
|
582
|
+
DelayExtendedFieldName: '',
|
|
583
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
584
|
+
},
|
|
585
|
+
mandatoryComplexPropertiesValues: {},
|
|
586
|
+
description: 'delayed accrual1',
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
id: 77656,
|
|
590
|
+
actionName: 'AWARD_REFERRER_POINTS_ACTION',
|
|
591
|
+
actionClass:
|
|
592
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardReferrerPointsActionImpl',
|
|
593
|
+
mandatoryPropertiesValues: {
|
|
594
|
+
ExpiryStrategy: '59392',
|
|
595
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
596
|
+
AwardStrategy: '80009',
|
|
597
|
+
},
|
|
598
|
+
mandatoryComplexPropertiesValues: {},
|
|
599
|
+
description: 'DelayedAccrualNightly',
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
id: 77657,
|
|
603
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
604
|
+
actionClass:
|
|
605
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
606
|
+
mandatoryPropertiesValues: {
|
|
607
|
+
ExpiryStrategy: '59392',
|
|
608
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
609
|
+
AwardStrategy: '80009',
|
|
610
|
+
},
|
|
611
|
+
mandatoryComplexPropertiesValues: {},
|
|
612
|
+
description: 'DelayedAccrualNightly',
|
|
613
|
+
},
|
|
614
|
+
],
|
|
615
|
+
},
|
|
616
|
+
filterInfo: [],
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
id: 51342,
|
|
620
|
+
exp: 'true',
|
|
621
|
+
expJSON:
|
|
622
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
623
|
+
jsonType: 'JNODE',
|
|
624
|
+
isActive: false,
|
|
625
|
+
priority: -1,
|
|
626
|
+
startDate: {
|
|
627
|
+
buffer: {
|
|
628
|
+
type: 'Buffer',
|
|
629
|
+
data: [0, 0, 0, 234, 68, 75, 46, 72],
|
|
630
|
+
},
|
|
631
|
+
offset: 0,
|
|
632
|
+
},
|
|
633
|
+
endDate: {
|
|
634
|
+
buffer: {
|
|
635
|
+
type: 'Buffer',
|
|
636
|
+
data: [0, 0, 1, 198, 175, 26, 218, 72],
|
|
637
|
+
},
|
|
638
|
+
offset: 0,
|
|
639
|
+
},
|
|
640
|
+
createdOn: {
|
|
641
|
+
buffer: {
|
|
642
|
+
type: 'Buffer',
|
|
643
|
+
data: [0, 0, 1, 125, 55, 226, 106, 72],
|
|
644
|
+
},
|
|
645
|
+
offset: 0,
|
|
646
|
+
},
|
|
647
|
+
ruleScope: 'SERVER',
|
|
648
|
+
createdBy: 0,
|
|
649
|
+
modifiedBy: 15000449,
|
|
650
|
+
modifiedOn: {
|
|
651
|
+
buffer: {
|
|
652
|
+
type: 'Buffer',
|
|
653
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
654
|
+
},
|
|
655
|
+
offset: 0,
|
|
656
|
+
},
|
|
657
|
+
name: 'Rule7',
|
|
658
|
+
description: '',
|
|
659
|
+
expDataType: null,
|
|
660
|
+
ruleSetId: 8146,
|
|
661
|
+
caseToActions: {
|
|
662
|
+
true: [
|
|
663
|
+
{
|
|
664
|
+
id: 77380,
|
|
665
|
+
actionName: 'PE_MOBILE_PUSH_ACTION',
|
|
666
|
+
actionClass:
|
|
667
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineMobilePushActionImpl',
|
|
668
|
+
mandatoryPropertiesValues: {
|
|
669
|
+
mobilePushAccId: 'mpush_1234',
|
|
670
|
+
androidMobilePushTitle: 'shgs',
|
|
671
|
+
iosMobilePushTitle: 'shds',
|
|
672
|
+
androidMobilePushMessageBlob:
|
|
673
|
+
'{"luid":"{{luid}}","cuid":"{{cuid}}","communicationId":"{{communicationId}}","title":"shgs","message":"android immmsd sdgysgdsdd","expandableDetails":{"style":"BIG_PICTURE","message":"android immmsd sdgysgdsdd","image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/644dabb6-f91e-4430-b1de-2ca906ab.jpg"},"custom":[]}',
|
|
674
|
+
mobilePushDelay: '0',
|
|
675
|
+
PointType: 'Main',
|
|
676
|
+
mobilePushDelayJSON: '{"sec":"0"}',
|
|
677
|
+
mobilePushTemplateId: '615b029bd401fc0767c5b67a',
|
|
678
|
+
iosMobilePushMessageBlob:
|
|
679
|
+
'{"luid":"{{luid}}","cuid":"{{cuid}}","communicationId":"{{communicationId}}","title":"shds","message":"ios image{{store_address}}","expandableDetails":{"style":"BIG_PICTURE","message":"shds","ctas":[],"image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/283c98ca-b645-4ee6-80f1-a768f8e8.jpg"},"custom":[]}',
|
|
680
|
+
},
|
|
681
|
+
mandatoryComplexPropertiesValues: {},
|
|
682
|
+
description: null,
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
id: 77612,
|
|
686
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
687
|
+
actionClass:
|
|
688
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
689
|
+
mandatoryPropertiesValues: {
|
|
690
|
+
ExpiryStrategy: '59391',
|
|
691
|
+
PointType: 'Main',
|
|
692
|
+
AwardStrategy: '80007',
|
|
693
|
+
},
|
|
694
|
+
mandatoryComplexPropertiesValues: {},
|
|
695
|
+
description: 'delayed accrual1',
|
|
696
|
+
},
|
|
697
|
+
],
|
|
698
|
+
},
|
|
699
|
+
filterInfo: [],
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
id: 52639,
|
|
703
|
+
exp: 'true',
|
|
704
|
+
expJSON:
|
|
705
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
706
|
+
jsonType: 'JNODE',
|
|
707
|
+
isActive: true,
|
|
708
|
+
priority: -1,
|
|
709
|
+
startDate: {
|
|
710
|
+
buffer: {
|
|
711
|
+
type: 'Buffer',
|
|
712
|
+
data: [0, 0, 0, 234, 164, 245, 253, 224],
|
|
713
|
+
},
|
|
714
|
+
offset: 0,
|
|
715
|
+
},
|
|
716
|
+
endDate: {
|
|
717
|
+
buffer: {
|
|
718
|
+
type: 'Buffer',
|
|
719
|
+
data: [0, 0, 1, 199, 15, 197, 169, 224],
|
|
720
|
+
},
|
|
721
|
+
offset: 0,
|
|
722
|
+
},
|
|
723
|
+
createdOn: {
|
|
724
|
+
buffer: {
|
|
725
|
+
type: 'Buffer',
|
|
726
|
+
data: [0, 0, 1, 125, 152, 141, 57, 224],
|
|
727
|
+
},
|
|
728
|
+
offset: 0,
|
|
729
|
+
},
|
|
730
|
+
ruleScope: 'SERVER',
|
|
731
|
+
createdBy: 0,
|
|
732
|
+
modifiedBy: 15000449,
|
|
733
|
+
modifiedOn: {
|
|
734
|
+
buffer: {
|
|
735
|
+
type: 'Buffer',
|
|
736
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
737
|
+
},
|
|
738
|
+
offset: 0,
|
|
739
|
+
},
|
|
740
|
+
name: 'Rule10',
|
|
741
|
+
description: '',
|
|
742
|
+
expDataType: null,
|
|
743
|
+
ruleSetId: 8146,
|
|
744
|
+
caseToActions: {
|
|
745
|
+
true: [
|
|
746
|
+
{
|
|
747
|
+
id: 77658,
|
|
748
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
749
|
+
actionClass:
|
|
750
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
751
|
+
mandatoryPropertiesValues: {
|
|
752
|
+
SmsCDMASenderId: '',
|
|
753
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
754
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
755
|
+
ExpiryStrategy: '34165',
|
|
756
|
+
SmsDomain: '',
|
|
757
|
+
channelPriority:
|
|
758
|
+
'[{"type":"mobile","isMandatory":true,"priority":0}]',
|
|
759
|
+
AwardStrategy: '59386',
|
|
760
|
+
SmsSenderId: '',
|
|
761
|
+
SmsTemplate: 'test SMS',
|
|
762
|
+
EvaluatedEntity: 'USER',
|
|
763
|
+
SmsDelay: '0',
|
|
764
|
+
PointType: 'Main',
|
|
765
|
+
DelayExtendedFieldName: '',
|
|
766
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
767
|
+
SmsDelayJSON: '{"sec":"0"}',
|
|
768
|
+
ShortenUrlCheck: '',
|
|
769
|
+
},
|
|
770
|
+
mandatoryComplexPropertiesValues: {},
|
|
771
|
+
description: '4perc',
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
id: 77660,
|
|
775
|
+
actionName: 'BILL_POINTS_ACTION',
|
|
776
|
+
actionClass:
|
|
777
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.BillAwardPointsActionImpl',
|
|
778
|
+
mandatoryPropertiesValues: {
|
|
779
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
780
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
781
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
782
|
+
ZeroAwardStrategy: '59386',
|
|
783
|
+
ExpiryStrategy: '46797',
|
|
784
|
+
PointType: 'Main',
|
|
785
|
+
AwardStrategy: '34166',
|
|
786
|
+
DelayExtendedFieldName: '',
|
|
787
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
788
|
+
},
|
|
789
|
+
mandatoryComplexPropertiesValues: {},
|
|
790
|
+
description: '4th slab',
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
id: 77662,
|
|
794
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
795
|
+
actionClass:
|
|
796
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
797
|
+
mandatoryPropertiesValues: {
|
|
798
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
799
|
+
ToSlabSerialNumber: '5',
|
|
800
|
+
},
|
|
801
|
+
mandatoryComplexPropertiesValues: {},
|
|
802
|
+
description: null,
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
id: 77664,
|
|
806
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
807
|
+
actionClass:
|
|
808
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
809
|
+
mandatoryPropertiesValues: {
|
|
810
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
811
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
812
|
+
UpgradeSlabStrategy: '25086',
|
|
813
|
+
ExpiryStrategy: '34165',
|
|
814
|
+
PointType: 'Main',
|
|
815
|
+
AwardStrategy: '34166',
|
|
816
|
+
},
|
|
817
|
+
mandatoryComplexPropertiesValues: {},
|
|
818
|
+
description: 'CUMULATIVE_PURCHASES',
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
id: 77666,
|
|
822
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
823
|
+
actionClass:
|
|
824
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
825
|
+
mandatoryPropertiesValues: {
|
|
826
|
+
shouldRenewSlab: 'true',
|
|
827
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
828
|
+
},
|
|
829
|
+
mandatoryComplexPropertiesValues: {},
|
|
830
|
+
description: null,
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
id: 77947,
|
|
834
|
+
actionName: 'PE_SMS_ACTION',
|
|
835
|
+
actionClass:
|
|
836
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineSmsActionImpl',
|
|
837
|
+
mandatoryPropertiesValues: {
|
|
838
|
+
SmsCDMASenderId: '',
|
|
839
|
+
SmsDomain: '',
|
|
840
|
+
SmsDelay: '0',
|
|
841
|
+
PointType: 'Main',
|
|
842
|
+
SmsSenderId: '',
|
|
843
|
+
SmsTemplate: 'new test',
|
|
844
|
+
SmsDelayJSON: '{"sec":"0"}',
|
|
845
|
+
ShortenUrlCheck: '',
|
|
846
|
+
},
|
|
847
|
+
mandatoryComplexPropertiesValues: {},
|
|
848
|
+
description: 'new test',
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
id: 77948,
|
|
852
|
+
actionName: 'PE_MOBILE_PUSH_ACTION',
|
|
853
|
+
actionClass:
|
|
854
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineMobilePushActionImpl',
|
|
855
|
+
mandatoryPropertiesValues: {
|
|
856
|
+
mobilePushAccId: 'mpush_1234',
|
|
857
|
+
androidMobilePushTitle: 'new title',
|
|
858
|
+
iosMobilePushTitle: 'wefge',
|
|
859
|
+
androidMobilePushMessageBlob:
|
|
860
|
+
'{"title":"new title","message":"wegrewg","expandableDetails":{"style":"BIG_PICTURE","message":"wegrewg","image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/f63c43c0-3ff8-4891-b4b8-02df6c9c.jpg"},"custom":{},"type":"IMAGE","deviceType":"ANDROID"}',
|
|
861
|
+
mobilePushDelay: '0',
|
|
862
|
+
PointType: 'Main',
|
|
863
|
+
mobilePushDelayJSON: '{"sec":"0"}',
|
|
864
|
+
mobilePushTemplateId: 'new_ui_mobilepush_template_id',
|
|
865
|
+
iosMobilePushMessageBlob:
|
|
866
|
+
'{"title":"wefge","message":"wegrewg","expandableDetails":{"style":"BIG_PICTURE","message":"wefge","ctas":[],"image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/1abc7af9-01a9-4b4e-be1c-231ccf2b.jpg"},"custom":{},"type":"IMAGE","deviceType":"IOS"}',
|
|
867
|
+
},
|
|
868
|
+
mandatoryComplexPropertiesValues: {},
|
|
869
|
+
description: null,
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
id: 77949,
|
|
873
|
+
actionName: 'PE_EMAIL_ACTION',
|
|
874
|
+
actionClass:
|
|
875
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineEmailActionImpl',
|
|
876
|
+
mandatoryPropertiesValues: {
|
|
877
|
+
EmailBody:
|
|
878
|
+
'<html>\n<head>\n\t<title></title>\n</head>\n<body>\n<p>{{first_name}}</p>\n</body>\n</html>\n',
|
|
879
|
+
EmailSubject: 'Renamed Email ',
|
|
880
|
+
PointType: 'Main',
|
|
881
|
+
EmailSenderId: '',
|
|
882
|
+
EmailDomain: '',
|
|
883
|
+
EmailDelayJSON: '{"sec":"0"}',
|
|
884
|
+
EmailSenderLabel: '',
|
|
885
|
+
EmailDelay: '0',
|
|
886
|
+
},
|
|
887
|
+
mandatoryComplexPropertiesValues: {},
|
|
888
|
+
description: 'Subject: Renamed Email ',
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
id: 77950,
|
|
892
|
+
actionName: 'PE_MESSAGE_ACTION',
|
|
893
|
+
actionClass:
|
|
894
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineMessageActionImpl',
|
|
895
|
+
mandatoryPropertiesValues: {
|
|
896
|
+
SmsCDMASenderId: '',
|
|
897
|
+
SmsDomain: '',
|
|
898
|
+
channelPriority:
|
|
899
|
+
'[{"type":"mobile","isMandatory":true,"priority":0},{"type":"email","isMandatory":true,"priority":0}]',
|
|
900
|
+
SmsSenderId: '',
|
|
901
|
+
EmailDomain: '',
|
|
902
|
+
SmsTemplate: 'qwerty',
|
|
903
|
+
EmailDelayJSON: '{"sec":"0"}',
|
|
904
|
+
EmailSenderLabel: '',
|
|
905
|
+
EmailDelay: '0',
|
|
906
|
+
EmailBody:
|
|
907
|
+
'<html>\n<head>\n\t<title></title>\n</head>\n<body>\n<p>{{first_name}}</p>\n</body>\n</html>\n',
|
|
908
|
+
EmailSubject: 'Renamed Email ',
|
|
909
|
+
SmsDelay: '0',
|
|
910
|
+
PointType: 'Main',
|
|
911
|
+
EmailSenderId: '',
|
|
912
|
+
SmsDelayJSON: '{"sec":"0"}',
|
|
913
|
+
ShortenUrlCheck: '',
|
|
914
|
+
},
|
|
915
|
+
mandatoryComplexPropertiesValues: {},
|
|
916
|
+
description: 'messages template',
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
id: 78184,
|
|
920
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
921
|
+
actionClass:
|
|
922
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
923
|
+
mandatoryPropertiesValues: {
|
|
924
|
+
ExpiryStrategy: '59391',
|
|
925
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
926
|
+
AwardStrategy: '80008',
|
|
927
|
+
},
|
|
928
|
+
mandatoryComplexPropertiesValues: {},
|
|
929
|
+
description: 'delay',
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
id: 78185,
|
|
933
|
+
actionName: 'AWARD_REFERRER_POINTS_ACTION',
|
|
934
|
+
actionClass:
|
|
935
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardReferrerPointsActionImpl',
|
|
936
|
+
mandatoryPropertiesValues: {
|
|
937
|
+
ExpiryStrategy: '79585',
|
|
938
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
939
|
+
AwardStrategy: '80008',
|
|
940
|
+
},
|
|
941
|
+
mandatoryComplexPropertiesValues: {},
|
|
942
|
+
description: 'delay',
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
id: 87301,
|
|
946
|
+
actionName: 'PE_ISSUE_VOUCHER_ACTION',
|
|
947
|
+
actionClass:
|
|
948
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineIssueVoucherActionImpl',
|
|
949
|
+
mandatoryPropertiesValues: {
|
|
950
|
+
VoucherSeriesId: '107497',
|
|
951
|
+
},
|
|
952
|
+
mandatoryComplexPropertiesValues: {},
|
|
953
|
+
description: 'CPN_1587271857121',
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
id: 87302,
|
|
957
|
+
actionName: 'FORWARD',
|
|
958
|
+
actionClass:
|
|
959
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
960
|
+
mandatoryPropertiesValues: {
|
|
961
|
+
shouldTenderUnroll: 'true',
|
|
962
|
+
ruleset: 'ruleset_20220614101956',
|
|
963
|
+
useProportions: 'true',
|
|
964
|
+
shouldUnroll: 'true',
|
|
965
|
+
maximizePoints: 'true',
|
|
966
|
+
},
|
|
967
|
+
mandatoryComplexPropertiesValues: {},
|
|
968
|
+
description: 'ruleset_20220614101956',
|
|
969
|
+
},
|
|
970
|
+
],
|
|
971
|
+
false: [
|
|
972
|
+
{
|
|
973
|
+
id: 86725,
|
|
974
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
975
|
+
actionClass:
|
|
976
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
977
|
+
mandatoryPropertiesValues: {
|
|
978
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
979
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
980
|
+
EvaluatedEntity: 'USER',
|
|
981
|
+
ExpiryStrategy: '34165',
|
|
982
|
+
PointType: 'Main',
|
|
983
|
+
AwardStrategy: '34166',
|
|
984
|
+
DelayExtendedFieldName: '',
|
|
985
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
986
|
+
},
|
|
987
|
+
mandatoryComplexPropertiesValues: {},
|
|
988
|
+
description: '4th slab',
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
id: 86726,
|
|
992
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
993
|
+
actionClass:
|
|
994
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
995
|
+
mandatoryPropertiesValues: {
|
|
996
|
+
EvaluatedEntity: 'USER',
|
|
997
|
+
UpgradeSlabStrategy: '25086',
|
|
998
|
+
},
|
|
999
|
+
mandatoryComplexPropertiesValues: {},
|
|
1000
|
+
description: 'CUMULATIVE_PURCHASES',
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
id: 86727,
|
|
1004
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
1005
|
+
actionClass:
|
|
1006
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
1007
|
+
mandatoryPropertiesValues: {
|
|
1008
|
+
EvaluatedEntity: 'USER',
|
|
1009
|
+
ToSlabSerialNumber: '3',
|
|
1010
|
+
},
|
|
1011
|
+
mandatoryComplexPropertiesValues: {},
|
|
1012
|
+
description: null,
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
id: 86728,
|
|
1016
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
1017
|
+
actionClass:
|
|
1018
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
1019
|
+
mandatoryPropertiesValues: {
|
|
1020
|
+
ExpiryStrategy: '34165',
|
|
1021
|
+
PointType: 'Main',
|
|
1022
|
+
AwardStrategy: '46718',
|
|
1023
|
+
},
|
|
1024
|
+
mandatoryComplexPropertiesValues: {},
|
|
1025
|
+
description: '5',
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
id: 86729,
|
|
1029
|
+
actionName: 'AWARD_REFERRER_POINTS_ACTION',
|
|
1030
|
+
actionClass:
|
|
1031
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardReferrerPointsActionImpl',
|
|
1032
|
+
mandatoryPropertiesValues: {
|
|
1033
|
+
ExpiryStrategy: '25087',
|
|
1034
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
1035
|
+
AwardStrategy: '80009',
|
|
1036
|
+
},
|
|
1037
|
+
mandatoryComplexPropertiesValues: {},
|
|
1038
|
+
description: 'DelayedAccrualNightly',
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
id: 86730,
|
|
1042
|
+
actionName: 'PE_ISSUE_VOUCHER_ACTION',
|
|
1043
|
+
actionClass:
|
|
1044
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineIssueVoucherActionImpl',
|
|
1045
|
+
mandatoryPropertiesValues: {
|
|
1046
|
+
VoucherSeriesId: '107497',
|
|
1047
|
+
},
|
|
1048
|
+
mandatoryComplexPropertiesValues: {},
|
|
1049
|
+
description: 'CPN_1587271857121',
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
id: 86731,
|
|
1053
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
1054
|
+
actionClass:
|
|
1055
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
1056
|
+
mandatoryPropertiesValues: {
|
|
1057
|
+
shouldRenewSlab: 'true',
|
|
1058
|
+
EvaluatedEntity: 'USER',
|
|
1059
|
+
},
|
|
1060
|
+
mandatoryComplexPropertiesValues: {},
|
|
1061
|
+
description: null,
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
id: 86732,
|
|
1065
|
+
actionName: 'BILL_POINTS_ACTION',
|
|
1066
|
+
actionClass:
|
|
1067
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.BillAwardPointsActionImpl',
|
|
1068
|
+
mandatoryPropertiesValues: {
|
|
1069
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
1070
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
1071
|
+
EvaluatedEntity: 'USER',
|
|
1072
|
+
ZeroAwardStrategy: '80007',
|
|
1073
|
+
ExpiryStrategy: '25087',
|
|
1074
|
+
PointType: 'Main',
|
|
1075
|
+
AwardStrategy: '59386',
|
|
1076
|
+
DelayExtendedFieldName: '',
|
|
1077
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
1078
|
+
},
|
|
1079
|
+
mandatoryComplexPropertiesValues: {},
|
|
1080
|
+
description: '4perc',
|
|
1081
|
+
},
|
|
1082
|
+
],
|
|
1083
|
+
},
|
|
1084
|
+
filterInfo: [],
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
id: 61553,
|
|
1088
|
+
exp: 'true',
|
|
1089
|
+
expJSON:
|
|
1090
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1091
|
+
jsonType: 'JNODE',
|
|
1092
|
+
isActive: false,
|
|
1093
|
+
priority: -1,
|
|
1094
|
+
startDate: {
|
|
1095
|
+
buffer: {
|
|
1096
|
+
type: 'Buffer',
|
|
1097
|
+
data: [0, 0, 0, 237, 164, 180, 159, 240],
|
|
1098
|
+
},
|
|
1099
|
+
offset: 0,
|
|
1100
|
+
},
|
|
1101
|
+
endDate: {
|
|
1102
|
+
buffer: {
|
|
1103
|
+
type: 'Buffer',
|
|
1104
|
+
data: [0, 0, 1, 202, 20, 170, 167, 240],
|
|
1105
|
+
},
|
|
1106
|
+
offset: 0,
|
|
1107
|
+
},
|
|
1108
|
+
createdOn: {
|
|
1109
|
+
buffer: {
|
|
1110
|
+
type: 'Buffer',
|
|
1111
|
+
data: [0, 0, 1, 128, 152, 75, 219, 240],
|
|
1112
|
+
},
|
|
1113
|
+
offset: 0,
|
|
1114
|
+
},
|
|
1115
|
+
ruleScope: 'SERVER',
|
|
1116
|
+
createdBy: 0,
|
|
1117
|
+
modifiedBy: 15000449,
|
|
1118
|
+
modifiedOn: {
|
|
1119
|
+
buffer: {
|
|
1120
|
+
type: 'Buffer',
|
|
1121
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1122
|
+
},
|
|
1123
|
+
offset: 0,
|
|
1124
|
+
},
|
|
1125
|
+
name: 'Rule13',
|
|
1126
|
+
description: '',
|
|
1127
|
+
expDataType: null,
|
|
1128
|
+
ruleSetId: 8146,
|
|
1129
|
+
caseToActions: {
|
|
1130
|
+
true: [
|
|
1131
|
+
{
|
|
1132
|
+
id: 86720,
|
|
1133
|
+
actionName: 'FORWARD',
|
|
1134
|
+
actionClass:
|
|
1135
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
1136
|
+
mandatoryPropertiesValues: {
|
|
1137
|
+
shouldTenderUnroll: 'false',
|
|
1138
|
+
ruleset: 'ruleset_20220506130528',
|
|
1139
|
+
useProportions: 'false',
|
|
1140
|
+
shouldUnroll: 'false',
|
|
1141
|
+
maximizePoints: 'false',
|
|
1142
|
+
},
|
|
1143
|
+
mandatoryComplexPropertiesValues: {},
|
|
1144
|
+
description: 'ruleset_20220506130528',
|
|
1145
|
+
},
|
|
1146
|
+
],
|
|
1147
|
+
},
|
|
1148
|
+
filterInfo: [],
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
id: 61554,
|
|
1152
|
+
exp: 'true',
|
|
1153
|
+
expJSON:
|
|
1154
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1155
|
+
jsonType: 'JNODE',
|
|
1156
|
+
isActive: false,
|
|
1157
|
+
priority: -1,
|
|
1158
|
+
startDate: {
|
|
1159
|
+
buffer: {
|
|
1160
|
+
type: 'Buffer',
|
|
1161
|
+
data: [0, 0, 0, 237, 164, 180, 206, 208],
|
|
1162
|
+
},
|
|
1163
|
+
offset: 0,
|
|
1164
|
+
},
|
|
1165
|
+
endDate: {
|
|
1166
|
+
buffer: {
|
|
1167
|
+
type: 'Buffer',
|
|
1168
|
+
data: [0, 0, 1, 202, 20, 170, 214, 208],
|
|
1169
|
+
},
|
|
1170
|
+
offset: 0,
|
|
1171
|
+
},
|
|
1172
|
+
createdOn: {
|
|
1173
|
+
buffer: {
|
|
1174
|
+
type: 'Buffer',
|
|
1175
|
+
data: [0, 0, 1, 128, 152, 76, 18, 160],
|
|
1176
|
+
},
|
|
1177
|
+
offset: 0,
|
|
1178
|
+
},
|
|
1179
|
+
ruleScope: 'SERVER',
|
|
1180
|
+
createdBy: 0,
|
|
1181
|
+
modifiedBy: 15000449,
|
|
1182
|
+
modifiedOn: {
|
|
1183
|
+
buffer: {
|
|
1184
|
+
type: 'Buffer',
|
|
1185
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1186
|
+
},
|
|
1187
|
+
offset: 0,
|
|
1188
|
+
},
|
|
1189
|
+
name: 'Rule13',
|
|
1190
|
+
description: '',
|
|
1191
|
+
expDataType: null,
|
|
1192
|
+
ruleSetId: 8146,
|
|
1193
|
+
caseToActions: {
|
|
1194
|
+
true: [
|
|
1195
|
+
{
|
|
1196
|
+
id: 86721,
|
|
1197
|
+
actionName: 'FORWARD',
|
|
1198
|
+
actionClass:
|
|
1199
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
1200
|
+
mandatoryPropertiesValues: {
|
|
1201
|
+
shouldTenderUnroll: 'false',
|
|
1202
|
+
ruleset: 'ruleset_20220506130528',
|
|
1203
|
+
useProportions: 'false',
|
|
1204
|
+
shouldUnroll: 'false',
|
|
1205
|
+
maximizePoints: 'false',
|
|
1206
|
+
},
|
|
1207
|
+
mandatoryComplexPropertiesValues: {},
|
|
1208
|
+
description: 'ruleset_20220506130528',
|
|
1209
|
+
},
|
|
1210
|
+
],
|
|
1211
|
+
},
|
|
1212
|
+
filterInfo: [],
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
id: 61555,
|
|
1216
|
+
exp: 'true',
|
|
1217
|
+
expJSON:
|
|
1218
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1219
|
+
jsonType: 'JNODE',
|
|
1220
|
+
isActive: false,
|
|
1221
|
+
priority: -1,
|
|
1222
|
+
startDate: {
|
|
1223
|
+
buffer: {
|
|
1224
|
+
type: 'Buffer',
|
|
1225
|
+
data: [0, 0, 0, 237, 164, 181, 220, 88],
|
|
1226
|
+
},
|
|
1227
|
+
offset: 0,
|
|
1228
|
+
},
|
|
1229
|
+
endDate: {
|
|
1230
|
+
buffer: {
|
|
1231
|
+
type: 'Buffer',
|
|
1232
|
+
data: [0, 0, 1, 202, 20, 171, 228, 88],
|
|
1233
|
+
},
|
|
1234
|
+
offset: 0,
|
|
1235
|
+
},
|
|
1236
|
+
createdOn: {
|
|
1237
|
+
buffer: {
|
|
1238
|
+
type: 'Buffer',
|
|
1239
|
+
data: [0, 0, 1, 128, 152, 77, 28, 64],
|
|
1240
|
+
},
|
|
1241
|
+
offset: 0,
|
|
1242
|
+
},
|
|
1243
|
+
ruleScope: 'SERVER',
|
|
1244
|
+
createdBy: 0,
|
|
1245
|
+
modifiedBy: 15000449,
|
|
1246
|
+
modifiedOn: {
|
|
1247
|
+
buffer: {
|
|
1248
|
+
type: 'Buffer',
|
|
1249
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1250
|
+
},
|
|
1251
|
+
offset: 0,
|
|
1252
|
+
},
|
|
1253
|
+
name: 'Rule13',
|
|
1254
|
+
description: '',
|
|
1255
|
+
expDataType: null,
|
|
1256
|
+
ruleSetId: 8146,
|
|
1257
|
+
caseToActions: {
|
|
1258
|
+
true: [
|
|
1259
|
+
{
|
|
1260
|
+
id: 86722,
|
|
1261
|
+
actionName: 'FORWARD',
|
|
1262
|
+
actionClass:
|
|
1263
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
1264
|
+
mandatoryPropertiesValues: {
|
|
1265
|
+
shouldTenderUnroll: 'false',
|
|
1266
|
+
ruleset: 'ruleset_20220506130528',
|
|
1267
|
+
useProportions: 'false',
|
|
1268
|
+
shouldUnroll: 'false',
|
|
1269
|
+
maximizePoints: 'false',
|
|
1270
|
+
},
|
|
1271
|
+
mandatoryComplexPropertiesValues: {},
|
|
1272
|
+
description: 'ruleset_20220506130528',
|
|
1273
|
+
},
|
|
1274
|
+
],
|
|
1275
|
+
},
|
|
1276
|
+
filterInfo: [],
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
id: 61556,
|
|
1280
|
+
exp: 'true',
|
|
1281
|
+
expJSON:
|
|
1282
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1283
|
+
jsonType: 'JNODE',
|
|
1284
|
+
isActive: true,
|
|
1285
|
+
priority: -1,
|
|
1286
|
+
startDate: {
|
|
1287
|
+
buffer: {
|
|
1288
|
+
type: 'Buffer',
|
|
1289
|
+
data: [0, 0, 0, 237, 164, 183, 130, 56],
|
|
1290
|
+
},
|
|
1291
|
+
offset: 0,
|
|
1292
|
+
},
|
|
1293
|
+
endDate: {
|
|
1294
|
+
buffer: {
|
|
1295
|
+
type: 'Buffer',
|
|
1296
|
+
data: [0, 0, 1, 202, 20, 173, 138, 56],
|
|
1297
|
+
},
|
|
1298
|
+
offset: 0,
|
|
1299
|
+
},
|
|
1300
|
+
createdOn: {
|
|
1301
|
+
buffer: {
|
|
1302
|
+
type: 'Buffer',
|
|
1303
|
+
data: [0, 0, 1, 128, 152, 78, 194, 32],
|
|
1304
|
+
},
|
|
1305
|
+
offset: 0,
|
|
1306
|
+
},
|
|
1307
|
+
ruleScope: 'SERVER',
|
|
1308
|
+
createdBy: 0,
|
|
1309
|
+
modifiedBy: 15000449,
|
|
1310
|
+
modifiedOn: {
|
|
1311
|
+
buffer: {
|
|
1312
|
+
type: 'Buffer',
|
|
1313
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1314
|
+
},
|
|
1315
|
+
offset: 0,
|
|
1316
|
+
},
|
|
1317
|
+
name: 'Rule13',
|
|
1318
|
+
description: '',
|
|
1319
|
+
expDataType: null,
|
|
1320
|
+
ruleSetId: 8146,
|
|
1321
|
+
caseToActions: {
|
|
1322
|
+
true: [
|
|
1323
|
+
{
|
|
1324
|
+
id: 86723,
|
|
1325
|
+
actionName: 'FORWARD',
|
|
1326
|
+
actionClass:
|
|
1327
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
1328
|
+
mandatoryPropertiesValues: {
|
|
1329
|
+
shouldTenderUnroll: 'false',
|
|
1330
|
+
ruleset: 'ruleset_20220506130528',
|
|
1331
|
+
useProportions: 'false',
|
|
1332
|
+
shouldUnroll: 'false',
|
|
1333
|
+
maximizePoints: 'false',
|
|
1334
|
+
},
|
|
1335
|
+
mandatoryComplexPropertiesValues: {},
|
|
1336
|
+
description: 'ruleset_20220506130528',
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
id: 87054,
|
|
1340
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
1341
|
+
actionClass:
|
|
1342
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
1343
|
+
mandatoryPropertiesValues: {
|
|
1344
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
1345
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
1346
|
+
EvaluatedEntity: 'USER',
|
|
1347
|
+
ExpiryStrategy: '46797',
|
|
1348
|
+
PointType: 'Main',
|
|
1349
|
+
AwardStrategy: '46718',
|
|
1350
|
+
DelayExtendedFieldName: '',
|
|
1351
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
1352
|
+
},
|
|
1353
|
+
mandatoryComplexPropertiesValues: {},
|
|
1354
|
+
description: '5',
|
|
1355
|
+
},
|
|
1356
|
+
],
|
|
1357
|
+
},
|
|
1358
|
+
filterInfo: [],
|
|
1359
|
+
},
|
|
1360
|
+
],
|
|
1361
|
+
filterInfo: [],
|
|
1362
|
+
cappingInfo: [
|
|
1363
|
+
{
|
|
1364
|
+
id: 49,
|
|
1365
|
+
orgId: 1685,
|
|
1366
|
+
name: 'TotalPointsCapping',
|
|
1367
|
+
className:
|
|
1368
|
+
'com.capillary.shopbook.emf.impl.capping.TotalPointsCappingImpl',
|
|
1369
|
+
propertyValuesJson: '{"totalPointsLimit":"2323"}',
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
id: 50,
|
|
1373
|
+
orgId: 1685,
|
|
1374
|
+
name: 'TenderSumSourceValueCapping',
|
|
1375
|
+
className:
|
|
1376
|
+
'com.capillary.shopbook.emf.impl.capping.TenderSumSourceValueCappingImpl',
|
|
1377
|
+
propertyValuesJson:
|
|
1378
|
+
'{"isInclude":"true","selectedTenderCombinationIds":["752"]}',
|
|
1379
|
+
},
|
|
1380
|
+
],
|
|
1381
|
+
},
|
|
1382
|
+
],
|
|
1383
|
+
eventType: 'TransactionAdd',
|
|
1384
|
+
selectedRuleset: '8146',
|
|
1385
|
+
selectedTab: '',
|
|
1386
|
+
rulesetData: {
|
|
1387
|
+
getRulesetsStatus: 'SUCCESS',
|
|
1388
|
+
},
|
|
1389
|
+
scopingData: {
|
|
1390
|
+
getStoresRequest: 'SUCCESS',
|
|
1391
|
+
getZonesRequest: 'SUCCESS',
|
|
1392
|
+
getConceptsRequest: 'SUCCESS',
|
|
1393
|
+
getStoresError: null,
|
|
1394
|
+
getConceptsError: null,
|
|
1395
|
+
getZonesError: null,
|
|
1396
|
+
stores: [
|
|
1397
|
+
{
|
|
1398
|
+
id: 50018137,
|
|
1399
|
+
isActive: 1,
|
|
1400
|
+
code: 'campaign_points_store',
|
|
1401
|
+
name: 'CAMPAIGN_POINTS_STORE',
|
|
1402
|
+
description: '',
|
|
1403
|
+
lastUpdatedBy: 15000449,
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
id: 15149075,
|
|
1407
|
+
isActive: 1,
|
|
1408
|
+
code: 'store1',
|
|
1409
|
+
name: 'Store One',
|
|
1410
|
+
description: 'first store',
|
|
1411
|
+
lastUpdatedBy: 15000449,
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
id: 50016639,
|
|
1415
|
+
isActive: 1,
|
|
1416
|
+
code: 'store2',
|
|
1417
|
+
name: 'Store Two',
|
|
1418
|
+
description: 'Second store',
|
|
1419
|
+
lastUpdatedBy: 15000449,
|
|
1420
|
+
},
|
|
1421
|
+
],
|
|
1422
|
+
concepts: [
|
|
1423
|
+
{
|
|
1424
|
+
id: 50140676,
|
|
1425
|
+
isActive: 1,
|
|
1426
|
+
code: 'concept.01',
|
|
1427
|
+
name: 'one',
|
|
1428
|
+
description: 'desc',
|
|
1429
|
+
lastUpdatedBy: 15000449,
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
id: 15135723,
|
|
1433
|
+
isActive: 1,
|
|
1434
|
+
code: 'root',
|
|
1435
|
+
name: 'ROOT',
|
|
1436
|
+
description: 'This Is The Auto Generated Root Concept',
|
|
1437
|
+
lastUpdatedBy: 15000449,
|
|
1438
|
+
},
|
|
1439
|
+
],
|
|
1440
|
+
zones: [
|
|
1441
|
+
{
|
|
1442
|
+
id: 50016637,
|
|
1443
|
+
isActive: 1,
|
|
1444
|
+
code: 'north',
|
|
1445
|
+
name: 'North',
|
|
1446
|
+
description: 'Second zone',
|
|
1447
|
+
lastUpdatedBy: 15000449,
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
id: 15135724,
|
|
1451
|
+
isActive: 1,
|
|
1452
|
+
code: 'root',
|
|
1453
|
+
name: 'ROOT',
|
|
1454
|
+
description: 'This Is The Auto Generated Root Zone',
|
|
1455
|
+
lastUpdatedBy: 15000449,
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
id: 15149074,
|
|
1459
|
+
isActive: 1,
|
|
1460
|
+
code: 'south',
|
|
1461
|
+
name: 'South',
|
|
1462
|
+
description: 'First zone',
|
|
1463
|
+
lastUpdatedBy: 15000449,
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
id: 50653677,
|
|
1467
|
+
isActive: 1,
|
|
1468
|
+
code: 'west',
|
|
1469
|
+
name: 'WEST',
|
|
1470
|
+
description: 'WEST zone',
|
|
1471
|
+
lastUpdatedBy: 15000449,
|
|
1472
|
+
},
|
|
1473
|
+
],
|
|
1474
|
+
getEventSource: 'SUCCESS',
|
|
1475
|
+
eventSource: [
|
|
1476
|
+
'WEB_ENGAGE__mpush_1234',
|
|
1477
|
+
'LINE__5db19831219b0531c703c05e56a8b727',
|
|
1478
|
+
'VIBER__test_account_id',
|
|
1479
|
+
'RCS__DetailsForGW1',
|
|
1480
|
+
'INSTORE',
|
|
1481
|
+
],
|
|
1482
|
+
getEventSourceError: null,
|
|
1483
|
+
getClusterRequest: 'SUCCESS',
|
|
1484
|
+
cluster: [
|
|
1485
|
+
{
|
|
1486
|
+
id: 'TestSanity',
|
|
1487
|
+
orgId: 1492,
|
|
1488
|
+
name: 'TestSanity',
|
|
1489
|
+
status: 'ACTIVE',
|
|
1490
|
+
segmentValues: [
|
|
1491
|
+
{
|
|
1492
|
+
id: 'TestSanity',
|
|
1493
|
+
value: 'TestSanity',
|
|
1494
|
+
},
|
|
1495
|
+
],
|
|
1496
|
+
},
|
|
1497
|
+
{
|
|
1498
|
+
id: 'Migration1',
|
|
1499
|
+
orgId: 1492,
|
|
1500
|
+
name: 'Migration1',
|
|
1501
|
+
status: 'ACTIVE',
|
|
1502
|
+
segmentValues: [
|
|
1503
|
+
{
|
|
1504
|
+
id: 'High',
|
|
1505
|
+
value: 'High',
|
|
1506
|
+
},
|
|
1507
|
+
{
|
|
1508
|
+
id: 'Medium',
|
|
1509
|
+
value: 'Medium',
|
|
1510
|
+
},
|
|
1511
|
+
],
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
id: 'test_segments',
|
|
1515
|
+
orgId: 1492,
|
|
1516
|
+
name: 'test_segments',
|
|
1517
|
+
status: 'ACTIVE',
|
|
1518
|
+
segmentValues: [
|
|
1519
|
+
{
|
|
1520
|
+
id: 'Active',
|
|
1521
|
+
value: 'Active',
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
id: 'lapsed',
|
|
1525
|
+
value: 'lapsed',
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
id: 'lost',
|
|
1529
|
+
value: 'lost',
|
|
1530
|
+
},
|
|
1531
|
+
],
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
id: 'sssh filter',
|
|
1535
|
+
orgId: 1492,
|
|
1536
|
+
name: 'sssh filter',
|
|
1537
|
+
status: 'ACTIVE',
|
|
1538
|
+
segmentValues: [
|
|
1539
|
+
{
|
|
1540
|
+
id: 'ssh er12',
|
|
1541
|
+
value: 'ssh er12',
|
|
1542
|
+
},
|
|
1543
|
+
],
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
id: 'QSIWriteETL',
|
|
1547
|
+
orgId: 1492,
|
|
1548
|
+
name: 'QSIWriteETL',
|
|
1549
|
+
status: 'ACTIVE',
|
|
1550
|
+
segmentValues: [
|
|
1551
|
+
{
|
|
1552
|
+
id: 'High',
|
|
1553
|
+
value: 'High',
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
id: 'Low',
|
|
1557
|
+
value: 'Low',
|
|
1558
|
+
},
|
|
1559
|
+
{
|
|
1560
|
+
id: 'Medium',
|
|
1561
|
+
value: 'Medium',
|
|
1562
|
+
},
|
|
1563
|
+
],
|
|
1564
|
+
},
|
|
1565
|
+
],
|
|
1566
|
+
getClusterError: null,
|
|
1567
|
+
},
|
|
1568
|
+
status: {
|
|
1569
|
+
saveScopingStatus: 'SUCCESS',
|
|
1570
|
+
},
|
|
1571
|
+
actions: {},
|
|
1572
|
+
capActions: {},
|
|
1573
|
+
history: {
|
|
1574
|
+
length: 4,
|
|
1575
|
+
action: 'PUSH',
|
|
1576
|
+
location: {
|
|
1577
|
+
pathname: '/loyalty/ui/program/968/configure',
|
|
1578
|
+
search: '',
|
|
1579
|
+
hash: '',
|
|
1580
|
+
key: 'qn3cnn',
|
|
1581
|
+
},
|
|
1582
|
+
},
|
|
1583
|
+
location: {
|
|
1584
|
+
pathname: '/loyalty/ui/program/968/configure',
|
|
1585
|
+
search: '',
|
|
1586
|
+
hash: '',
|
|
1587
|
+
key: 'qn3cnn',
|
|
1588
|
+
},
|
|
1589
|
+
match: {
|
|
1590
|
+
path: '/loyalty/ui/program/:programId/:mode',
|
|
1591
|
+
url: '/loyalty/ui/program/968/configure',
|
|
1592
|
+
isExact: true,
|
|
1593
|
+
params: {
|
|
1594
|
+
programId: '968',
|
|
1595
|
+
mode: 'configure',
|
|
1596
|
+
},
|
|
1597
|
+
},
|
|
1598
|
+
primary: [],
|
|
1599
|
+
isSaveDisabled: false,
|
|
1600
|
+
};
|
|
1601
|
+
|
|
1602
|
+
export const editRulesetData = {
|
|
1603
|
+
rulesets: [
|
|
1604
|
+
{
|
|
1605
|
+
id: 8146,
|
|
1606
|
+
orgName: 'Consistency',
|
|
1607
|
+
contextID: 968,
|
|
1608
|
+
orgID: 1685,
|
|
1609
|
+
contextType: 'program',
|
|
1610
|
+
ruleScope: 'SERVER',
|
|
1611
|
+
startDate: {
|
|
1612
|
+
buffer: {
|
|
1613
|
+
type: 'Buffer',
|
|
1614
|
+
data: [0, 0, 0, 195, 161, 4, 71, 184],
|
|
1615
|
+
},
|
|
1616
|
+
offset: 0,
|
|
1617
|
+
},
|
|
1618
|
+
endDate: {
|
|
1619
|
+
buffer: {
|
|
1620
|
+
type: 'Buffer',
|
|
1621
|
+
data: [0, 0, 1, 160, 11, 211, 243, 184],
|
|
1622
|
+
},
|
|
1623
|
+
offset: 0,
|
|
1624
|
+
},
|
|
1625
|
+
createdOn: {
|
|
1626
|
+
buffer: {
|
|
1627
|
+
type: 'Buffer',
|
|
1628
|
+
data: [0, 0, 1, 86, 148, 155, 131, 184],
|
|
1629
|
+
},
|
|
1630
|
+
offset: 0,
|
|
1631
|
+
},
|
|
1632
|
+
createdBy: 0,
|
|
1633
|
+
modifiedBy: 15000449,
|
|
1634
|
+
modifiedOn: {
|
|
1635
|
+
buffer: {
|
|
1636
|
+
type: 'Buffer',
|
|
1637
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1638
|
+
},
|
|
1639
|
+
offset: 0,
|
|
1640
|
+
},
|
|
1641
|
+
name: 'NewBill_RS_Start',
|
|
1642
|
+
packageName: '',
|
|
1643
|
+
description: 'NewBill_RS_Start',
|
|
1644
|
+
isPrivate: false,
|
|
1645
|
+
eventName: 'TransactionAdd',
|
|
1646
|
+
rules: [
|
|
1647
|
+
{
|
|
1648
|
+
id: 9002,
|
|
1649
|
+
exp: 'currentTxn.basketIncludes("hello there","how are you")',
|
|
1650
|
+
expJSON:
|
|
1651
|
+
'{"arity":"method_call","type":"boolean:primitive","operands":[{"arity":"name","value":"currentTxn","type":"tx:object:primitive"},{"arity":"name","value":"basketIncludes","type":"anonymous:function:primitive"},{"arity":"literal","value":"hello there","type":"EEnum__InvAttr:enum:string:object:primitive"},{"arity":"literal","value":"how are you","type":"EEnum__InvAttr__EDepEnum__InvAttrVal__hello there:string:object:primitive"}]}',
|
|
1652
|
+
jsonType: 'JNODE',
|
|
1653
|
+
isActive: false,
|
|
1654
|
+
priority: 1,
|
|
1655
|
+
startDate: {
|
|
1656
|
+
buffer: {
|
|
1657
|
+
type: 'Buffer',
|
|
1658
|
+
data: [0, 0, 0, 195, 161, 4, 71, 184],
|
|
1659
|
+
},
|
|
1660
|
+
offset: 0,
|
|
1661
|
+
},
|
|
1662
|
+
endDate: {
|
|
1663
|
+
buffer: {
|
|
1664
|
+
type: 'Buffer',
|
|
1665
|
+
data: [0, 0, 1, 160, 11, 211, 243, 184],
|
|
1666
|
+
},
|
|
1667
|
+
offset: 0,
|
|
1668
|
+
},
|
|
1669
|
+
createdOn: {
|
|
1670
|
+
buffer: {
|
|
1671
|
+
type: 'Buffer',
|
|
1672
|
+
data: [0, 0, 1, 86, 148, 155, 131, 184],
|
|
1673
|
+
},
|
|
1674
|
+
offset: 0,
|
|
1675
|
+
},
|
|
1676
|
+
ruleScope: 'SERVER',
|
|
1677
|
+
createdBy: 0,
|
|
1678
|
+
modifiedBy: 15000449,
|
|
1679
|
+
modifiedOn: {
|
|
1680
|
+
buffer: {
|
|
1681
|
+
type: 'Buffer',
|
|
1682
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1683
|
+
},
|
|
1684
|
+
offset: 0,
|
|
1685
|
+
},
|
|
1686
|
+
name: 'rule0',
|
|
1687
|
+
description: 'default_rule',
|
|
1688
|
+
expDataType: null,
|
|
1689
|
+
ruleSetId: 8146,
|
|
1690
|
+
caseToActions: {
|
|
1691
|
+
true: [
|
|
1692
|
+
{
|
|
1693
|
+
id: 75890,
|
|
1694
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
1695
|
+
actionClass:
|
|
1696
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
1697
|
+
mandatoryPropertiesValues: {
|
|
1698
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
1699
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
1700
|
+
ExpiryStrategy: '25087',
|
|
1701
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
1702
|
+
AwardStrategy: '79955',
|
|
1703
|
+
DelayExtendedFieldName: '',
|
|
1704
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
1705
|
+
},
|
|
1706
|
+
mandatoryComplexPropertiesValues: {},
|
|
1707
|
+
description: 'WDA',
|
|
1708
|
+
},
|
|
1709
|
+
],
|
|
1710
|
+
},
|
|
1711
|
+
filterInfo: [],
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
id: 51161,
|
|
1715
|
+
exp: 'currentCustomer.avgBasketSize>900',
|
|
1716
|
+
expJSON:
|
|
1717
|
+
'{"arity":"binary_operation","value":">","type":"boolean:primitive","operands":[{"arity":"object_dereference","type":"integer:number:primitive","operands":[{"arity":"name","value":"currentCustomer","type":"customer:object:primitive"},{"arity":"name","value":"avgBasketSize","type":"integer:number:primitive"}]},{"arity":"literal","value":"900","type":"number:primitive"}]}',
|
|
1718
|
+
jsonType: 'JNODE',
|
|
1719
|
+
isActive: false,
|
|
1720
|
+
priority: -1,
|
|
1721
|
+
startDate: {
|
|
1722
|
+
buffer: {
|
|
1723
|
+
type: 'Buffer',
|
|
1724
|
+
data: [0, 0, 0, 234, 57, 239, 36, 104],
|
|
1725
|
+
},
|
|
1726
|
+
offset: 0,
|
|
1727
|
+
},
|
|
1728
|
+
endDate: {
|
|
1729
|
+
buffer: {
|
|
1730
|
+
type: 'Buffer',
|
|
1731
|
+
data: [0, 0, 1, 198, 164, 190, 208, 104],
|
|
1732
|
+
},
|
|
1733
|
+
offset: 0,
|
|
1734
|
+
},
|
|
1735
|
+
createdOn: {
|
|
1736
|
+
buffer: {
|
|
1737
|
+
type: 'Buffer',
|
|
1738
|
+
data: [0, 0, 1, 125, 45, 134, 100, 80],
|
|
1739
|
+
},
|
|
1740
|
+
offset: 0,
|
|
1741
|
+
},
|
|
1742
|
+
ruleScope: 'SERVER',
|
|
1743
|
+
createdBy: 0,
|
|
1744
|
+
modifiedBy: 15000449,
|
|
1745
|
+
modifiedOn: {
|
|
1746
|
+
buffer: {
|
|
1747
|
+
type: 'Buffer',
|
|
1748
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1749
|
+
},
|
|
1750
|
+
offset: 0,
|
|
1751
|
+
},
|
|
1752
|
+
name: 'Rule2',
|
|
1753
|
+
description: '',
|
|
1754
|
+
expDataType: null,
|
|
1755
|
+
ruleSetId: 8146,
|
|
1756
|
+
caseToActions: {},
|
|
1757
|
+
filterInfo: [],
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
id: 51162,
|
|
1761
|
+
exp: 'true',
|
|
1762
|
+
expJSON:
|
|
1763
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1764
|
+
jsonType: 'JNODE',
|
|
1765
|
+
isActive: false,
|
|
1766
|
+
priority: -1,
|
|
1767
|
+
startDate: {
|
|
1768
|
+
buffer: {
|
|
1769
|
+
type: 'Buffer',
|
|
1770
|
+
data: [0, 0, 0, 234, 57, 239, 36, 104],
|
|
1771
|
+
},
|
|
1772
|
+
offset: 0,
|
|
1773
|
+
},
|
|
1774
|
+
endDate: {
|
|
1775
|
+
buffer: {
|
|
1776
|
+
type: 'Buffer',
|
|
1777
|
+
data: [0, 0, 1, 198, 164, 190, 208, 104],
|
|
1778
|
+
},
|
|
1779
|
+
offset: 0,
|
|
1780
|
+
},
|
|
1781
|
+
createdOn: {
|
|
1782
|
+
buffer: {
|
|
1783
|
+
type: 'Buffer',
|
|
1784
|
+
data: [0, 0, 1, 125, 45, 134, 100, 80],
|
|
1785
|
+
},
|
|
1786
|
+
offset: 0,
|
|
1787
|
+
},
|
|
1788
|
+
ruleScope: 'SERVER',
|
|
1789
|
+
createdBy: 0,
|
|
1790
|
+
modifiedBy: 15000449,
|
|
1791
|
+
modifiedOn: {
|
|
1792
|
+
buffer: {
|
|
1793
|
+
type: 'Buffer',
|
|
1794
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1795
|
+
},
|
|
1796
|
+
offset: 0,
|
|
1797
|
+
},
|
|
1798
|
+
name: 'Rule3',
|
|
1799
|
+
description: '',
|
|
1800
|
+
expDataType: null,
|
|
1801
|
+
ruleSetId: 8146,
|
|
1802
|
+
caseToActions: {},
|
|
1803
|
+
filterInfo: [],
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
id: 51163,
|
|
1807
|
+
exp: 'false',
|
|
1808
|
+
expJSON:
|
|
1809
|
+
'{"arity":"literal","value":"false","type":"boolean:primitive"}',
|
|
1810
|
+
jsonType: 'JNODE',
|
|
1811
|
+
isActive: false,
|
|
1812
|
+
priority: -1,
|
|
1813
|
+
startDate: {
|
|
1814
|
+
buffer: {
|
|
1815
|
+
type: 'Buffer',
|
|
1816
|
+
data: [0, 0, 0, 234, 57, 239, 36, 104],
|
|
1817
|
+
},
|
|
1818
|
+
offset: 0,
|
|
1819
|
+
},
|
|
1820
|
+
endDate: {
|
|
1821
|
+
buffer: {
|
|
1822
|
+
type: 'Buffer',
|
|
1823
|
+
data: [0, 0, 1, 198, 164, 190, 208, 104],
|
|
1824
|
+
},
|
|
1825
|
+
offset: 0,
|
|
1826
|
+
},
|
|
1827
|
+
createdOn: {
|
|
1828
|
+
buffer: {
|
|
1829
|
+
type: 'Buffer',
|
|
1830
|
+
data: [0, 0, 1, 125, 45, 134, 100, 80],
|
|
1831
|
+
},
|
|
1832
|
+
offset: 0,
|
|
1833
|
+
},
|
|
1834
|
+
ruleScope: 'SERVER',
|
|
1835
|
+
createdBy: 0,
|
|
1836
|
+
modifiedBy: 15000449,
|
|
1837
|
+
modifiedOn: {
|
|
1838
|
+
buffer: {
|
|
1839
|
+
type: 'Buffer',
|
|
1840
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1841
|
+
},
|
|
1842
|
+
offset: 0,
|
|
1843
|
+
},
|
|
1844
|
+
name: 'Rule4',
|
|
1845
|
+
description: '',
|
|
1846
|
+
expDataType: null,
|
|
1847
|
+
ruleSetId: 8146,
|
|
1848
|
+
caseToActions: {},
|
|
1849
|
+
filterInfo: [],
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
id: 51276,
|
|
1853
|
+
exp: 'true',
|
|
1854
|
+
expJSON:
|
|
1855
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1856
|
+
jsonType: 'JNODE',
|
|
1857
|
+
isActive: false,
|
|
1858
|
+
priority: -1,
|
|
1859
|
+
startDate: {
|
|
1860
|
+
buffer: {
|
|
1861
|
+
type: 'Buffer',
|
|
1862
|
+
data: [0, 0, 0, 234, 63, 32, 15, 136],
|
|
1863
|
+
},
|
|
1864
|
+
offset: 0,
|
|
1865
|
+
},
|
|
1866
|
+
endDate: {
|
|
1867
|
+
buffer: {
|
|
1868
|
+
type: 'Buffer',
|
|
1869
|
+
data: [0, 0, 1, 198, 169, 239, 187, 136],
|
|
1870
|
+
},
|
|
1871
|
+
offset: 0,
|
|
1872
|
+
},
|
|
1873
|
+
createdOn: {
|
|
1874
|
+
buffer: {
|
|
1875
|
+
type: 'Buffer',
|
|
1876
|
+
data: [0, 0, 1, 125, 50, 183, 75, 136],
|
|
1877
|
+
},
|
|
1878
|
+
offset: 0,
|
|
1879
|
+
},
|
|
1880
|
+
ruleScope: 'SERVER',
|
|
1881
|
+
createdBy: 0,
|
|
1882
|
+
modifiedBy: 15000449,
|
|
1883
|
+
modifiedOn: {
|
|
1884
|
+
buffer: {
|
|
1885
|
+
type: 'Buffer',
|
|
1886
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1887
|
+
},
|
|
1888
|
+
offset: 0,
|
|
1889
|
+
},
|
|
1890
|
+
name: 'Rule5',
|
|
1891
|
+
description: '',
|
|
1892
|
+
expDataType: null,
|
|
1893
|
+
ruleSetId: 8146,
|
|
1894
|
+
caseToActions: {},
|
|
1895
|
+
filterInfo: [],
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
id: 51334,
|
|
1899
|
+
exp: 'true',
|
|
1900
|
+
expJSON:
|
|
1901
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
1902
|
+
jsonType: 'JNODE',
|
|
1903
|
+
isActive: false,
|
|
1904
|
+
priority: -1,
|
|
1905
|
+
startDate: {
|
|
1906
|
+
buffer: {
|
|
1907
|
+
type: 'Buffer',
|
|
1908
|
+
data: [0, 0, 0, 234, 67, 221, 198, 120],
|
|
1909
|
+
},
|
|
1910
|
+
offset: 0,
|
|
1911
|
+
},
|
|
1912
|
+
endDate: {
|
|
1913
|
+
buffer: {
|
|
1914
|
+
type: 'Buffer',
|
|
1915
|
+
data: [0, 0, 1, 198, 174, 173, 114, 120],
|
|
1916
|
+
},
|
|
1917
|
+
offset: 0,
|
|
1918
|
+
},
|
|
1919
|
+
createdOn: {
|
|
1920
|
+
buffer: {
|
|
1921
|
+
type: 'Buffer',
|
|
1922
|
+
data: [0, 0, 1, 125, 55, 117, 2, 120],
|
|
1923
|
+
},
|
|
1924
|
+
offset: 0,
|
|
1925
|
+
},
|
|
1926
|
+
ruleScope: 'SERVER',
|
|
1927
|
+
createdBy: 0,
|
|
1928
|
+
modifiedBy: 15000449,
|
|
1929
|
+
modifiedOn: {
|
|
1930
|
+
buffer: {
|
|
1931
|
+
type: 'Buffer',
|
|
1932
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1933
|
+
},
|
|
1934
|
+
offset: 0,
|
|
1935
|
+
},
|
|
1936
|
+
name: 'Rule6',
|
|
1937
|
+
description: '',
|
|
1938
|
+
expDataType: null,
|
|
1939
|
+
ruleSetId: 8146,
|
|
1940
|
+
caseToActions: {},
|
|
1941
|
+
filterInfo: [],
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
id: 51335,
|
|
1945
|
+
exp: 'currentCustomer.avgBasketSize>12',
|
|
1946
|
+
expJSON:
|
|
1947
|
+
'{"arity":"binary_operation","value":">","type":"boolean:primitive","operands":[{"arity":"object_dereference","type":"integer:number:primitive","operands":[{"arity":"name","value":"currentCustomer","type":"customer:object:primitive"},{"arity":"name","value":"avgBasketSize","type":"integer:number:primitive"}]},{"arity":"literal","value":"12","type":"number:primitive"}]}',
|
|
1948
|
+
jsonType: 'JNODE',
|
|
1949
|
+
isActive: false,
|
|
1950
|
+
priority: -1,
|
|
1951
|
+
startDate: {
|
|
1952
|
+
buffer: {
|
|
1953
|
+
type: 'Buffer',
|
|
1954
|
+
data: [0, 0, 0, 234, 67, 229, 166, 24],
|
|
1955
|
+
},
|
|
1956
|
+
offset: 0,
|
|
1957
|
+
},
|
|
1958
|
+
endDate: {
|
|
1959
|
+
buffer: {
|
|
1960
|
+
type: 'Buffer',
|
|
1961
|
+
data: [0, 0, 1, 198, 174, 181, 82, 24],
|
|
1962
|
+
},
|
|
1963
|
+
offset: 0,
|
|
1964
|
+
},
|
|
1965
|
+
createdOn: {
|
|
1966
|
+
buffer: {
|
|
1967
|
+
type: 'Buffer',
|
|
1968
|
+
data: [0, 0, 1, 125, 55, 124, 226, 24],
|
|
1969
|
+
},
|
|
1970
|
+
offset: 0,
|
|
1971
|
+
},
|
|
1972
|
+
ruleScope: 'SERVER',
|
|
1973
|
+
createdBy: 0,
|
|
1974
|
+
modifiedBy: 15000449,
|
|
1975
|
+
modifiedOn: {
|
|
1976
|
+
buffer: {
|
|
1977
|
+
type: 'Buffer',
|
|
1978
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
1979
|
+
},
|
|
1980
|
+
offset: 0,
|
|
1981
|
+
},
|
|
1982
|
+
name: 'Rule7',
|
|
1983
|
+
description: '',
|
|
1984
|
+
expDataType: null,
|
|
1985
|
+
ruleSetId: 8146,
|
|
1986
|
+
caseToActions: {
|
|
1987
|
+
true: [
|
|
1988
|
+
{
|
|
1989
|
+
id: 76331,
|
|
1990
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
1991
|
+
actionClass:
|
|
1992
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
1993
|
+
mandatoryPropertiesValues: {
|
|
1994
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
1995
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
1996
|
+
ExpiryStrategy: '34165',
|
|
1997
|
+
PointType: 'Main',
|
|
1998
|
+
AwardStrategy: '34166',
|
|
1999
|
+
DelayExtendedFieldName: '',
|
|
2000
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2001
|
+
},
|
|
2002
|
+
mandatoryComplexPropertiesValues: {},
|
|
2003
|
+
description: '4th slab',
|
|
2004
|
+
},
|
|
2005
|
+
],
|
|
2006
|
+
},
|
|
2007
|
+
filterInfo: [],
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
id: 51339,
|
|
2011
|
+
exp: 'false',
|
|
2012
|
+
expJSON:
|
|
2013
|
+
'{"arity":"literal","value":"false","type":"boolean:primitive"}',
|
|
2014
|
+
jsonType: 'JNODE',
|
|
2015
|
+
isActive: false,
|
|
2016
|
+
priority: -1,
|
|
2017
|
+
startDate: {
|
|
2018
|
+
buffer: {
|
|
2019
|
+
type: 'Buffer',
|
|
2020
|
+
data: [0, 0, 0, 234, 68, 73, 42, 168],
|
|
2021
|
+
},
|
|
2022
|
+
offset: 0,
|
|
2023
|
+
},
|
|
2024
|
+
endDate: {
|
|
2025
|
+
buffer: {
|
|
2026
|
+
type: 'Buffer',
|
|
2027
|
+
data: [0, 0, 1, 198, 175, 24, 214, 168],
|
|
2028
|
+
},
|
|
2029
|
+
offset: 0,
|
|
2030
|
+
},
|
|
2031
|
+
createdOn: {
|
|
2032
|
+
buffer: {
|
|
2033
|
+
type: 'Buffer',
|
|
2034
|
+
data: [0, 0, 1, 125, 55, 224, 106, 144],
|
|
2035
|
+
},
|
|
2036
|
+
offset: 0,
|
|
2037
|
+
},
|
|
2038
|
+
ruleScope: 'SERVER',
|
|
2039
|
+
createdBy: 0,
|
|
2040
|
+
modifiedBy: 15000449,
|
|
2041
|
+
modifiedOn: {
|
|
2042
|
+
buffer: {
|
|
2043
|
+
type: 'Buffer',
|
|
2044
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2045
|
+
},
|
|
2046
|
+
offset: 0,
|
|
2047
|
+
},
|
|
2048
|
+
name: 'Rule8',
|
|
2049
|
+
description: '',
|
|
2050
|
+
expDataType: null,
|
|
2051
|
+
ruleSetId: 8146,
|
|
2052
|
+
caseToActions: {},
|
|
2053
|
+
filterInfo: [],
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
id: 51340,
|
|
2057
|
+
exp: 'true',
|
|
2058
|
+
expJSON:
|
|
2059
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2060
|
+
jsonType: 'JNODE',
|
|
2061
|
+
isActive: false,
|
|
2062
|
+
priority: -1,
|
|
2063
|
+
startDate: {
|
|
2064
|
+
buffer: {
|
|
2065
|
+
type: 'Buffer',
|
|
2066
|
+
data: [0, 0, 0, 234, 68, 73, 42, 168],
|
|
2067
|
+
},
|
|
2068
|
+
offset: 0,
|
|
2069
|
+
},
|
|
2070
|
+
endDate: {
|
|
2071
|
+
buffer: {
|
|
2072
|
+
type: 'Buffer',
|
|
2073
|
+
data: [0, 0, 1, 198, 175, 24, 214, 168],
|
|
2074
|
+
},
|
|
2075
|
+
offset: 0,
|
|
2076
|
+
},
|
|
2077
|
+
createdOn: {
|
|
2078
|
+
buffer: {
|
|
2079
|
+
type: 'Buffer',
|
|
2080
|
+
data: [0, 0, 1, 125, 55, 224, 106, 144],
|
|
2081
|
+
},
|
|
2082
|
+
offset: 0,
|
|
2083
|
+
},
|
|
2084
|
+
ruleScope: 'SERVER',
|
|
2085
|
+
createdBy: 0,
|
|
2086
|
+
modifiedBy: 15000449,
|
|
2087
|
+
modifiedOn: {
|
|
2088
|
+
buffer: {
|
|
2089
|
+
type: 'Buffer',
|
|
2090
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2091
|
+
},
|
|
2092
|
+
offset: 0,
|
|
2093
|
+
},
|
|
2094
|
+
name: 'Rule9',
|
|
2095
|
+
description: '',
|
|
2096
|
+
expDataType: null,
|
|
2097
|
+
ruleSetId: 8146,
|
|
2098
|
+
caseToActions: {},
|
|
2099
|
+
filterInfo: [],
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
id: 51341,
|
|
2103
|
+
exp: 'currentCustomer.avgBasketSize==5000',
|
|
2104
|
+
expJSON:
|
|
2105
|
+
'{"arity":"binary_operation","value":"==","type":"boolean:primitive","operands":[{"arity":"object_dereference","type":"integer:number:primitive","operands":[{"arity":"name","value":"currentCustomer","type":"customer:object:primitive"},{"arity":"name","value":"avgBasketSize","type":"integer:number:primitive"}]},{"arity":"literal","value":"5000","type":"number:primitive"}]}',
|
|
2106
|
+
jsonType: 'JNODE',
|
|
2107
|
+
isActive: false,
|
|
2108
|
+
priority: -1,
|
|
2109
|
+
startDate: {
|
|
2110
|
+
buffer: {
|
|
2111
|
+
type: 'Buffer',
|
|
2112
|
+
data: [0, 0, 0, 234, 68, 75, 46, 72],
|
|
2113
|
+
},
|
|
2114
|
+
offset: 0,
|
|
2115
|
+
},
|
|
2116
|
+
endDate: {
|
|
2117
|
+
buffer: {
|
|
2118
|
+
type: 'Buffer',
|
|
2119
|
+
data: [0, 0, 1, 198, 175, 26, 218, 72],
|
|
2120
|
+
},
|
|
2121
|
+
offset: 0,
|
|
2122
|
+
},
|
|
2123
|
+
createdOn: {
|
|
2124
|
+
buffer: {
|
|
2125
|
+
type: 'Buffer',
|
|
2126
|
+
data: [0, 0, 1, 125, 55, 226, 106, 72],
|
|
2127
|
+
},
|
|
2128
|
+
offset: 0,
|
|
2129
|
+
},
|
|
2130
|
+
ruleScope: 'SERVER',
|
|
2131
|
+
createdBy: 0,
|
|
2132
|
+
modifiedBy: 15000449,
|
|
2133
|
+
modifiedOn: {
|
|
2134
|
+
buffer: {
|
|
2135
|
+
type: 'Buffer',
|
|
2136
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2137
|
+
},
|
|
2138
|
+
offset: 0,
|
|
2139
|
+
},
|
|
2140
|
+
name: 'Rule6',
|
|
2141
|
+
description: '',
|
|
2142
|
+
expDataType: null,
|
|
2143
|
+
ruleSetId: 8146,
|
|
2144
|
+
caseToActions: {
|
|
2145
|
+
true: [
|
|
2146
|
+
{
|
|
2147
|
+
id: 76911,
|
|
2148
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2149
|
+
actionClass:
|
|
2150
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2151
|
+
mandatoryPropertiesValues: {
|
|
2152
|
+
shouldRenewSlab: 'true',
|
|
2153
|
+
EvaluatedEntity: 'USER',
|
|
2154
|
+
},
|
|
2155
|
+
mandatoryComplexPropertiesValues: {},
|
|
2156
|
+
description: null,
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
id: 77074,
|
|
2160
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2161
|
+
actionClass:
|
|
2162
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2163
|
+
mandatoryPropertiesValues: {
|
|
2164
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
2165
|
+
ToSlabSerialNumber: '2',
|
|
2166
|
+
},
|
|
2167
|
+
mandatoryComplexPropertiesValues: {},
|
|
2168
|
+
description: null,
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
id: 77611,
|
|
2172
|
+
actionName: 'BILL_POINTS_ACTION',
|
|
2173
|
+
actionClass:
|
|
2174
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.BillAwardPointsActionImpl',
|
|
2175
|
+
mandatoryPropertiesValues: {
|
|
2176
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
2177
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2178
|
+
EvaluatedEntity: 'USER',
|
|
2179
|
+
ZeroAwardStrategy: '79956',
|
|
2180
|
+
ExpiryStrategy: '46797',
|
|
2181
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
2182
|
+
AwardStrategy: '80007',
|
|
2183
|
+
DelayExtendedFieldName: '',
|
|
2184
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2185
|
+
},
|
|
2186
|
+
mandatoryComplexPropertiesValues: {},
|
|
2187
|
+
description: 'delayed accrual1',
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
id: 77656,
|
|
2191
|
+
actionName: 'AWARD_REFERRER_POINTS_ACTION',
|
|
2192
|
+
actionClass:
|
|
2193
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardReferrerPointsActionImpl',
|
|
2194
|
+
mandatoryPropertiesValues: {
|
|
2195
|
+
ExpiryStrategy: '59392',
|
|
2196
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
2197
|
+
AwardStrategy: '80009',
|
|
2198
|
+
},
|
|
2199
|
+
mandatoryComplexPropertiesValues: {},
|
|
2200
|
+
description: 'DelayedAccrualNightly',
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
id: 77657,
|
|
2204
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
2205
|
+
actionClass:
|
|
2206
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
2207
|
+
mandatoryPropertiesValues: {
|
|
2208
|
+
ExpiryStrategy: '59392',
|
|
2209
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
2210
|
+
AwardStrategy: '80009',
|
|
2211
|
+
},
|
|
2212
|
+
mandatoryComplexPropertiesValues: {},
|
|
2213
|
+
description: 'DelayedAccrualNightly',
|
|
2214
|
+
},
|
|
2215
|
+
],
|
|
2216
|
+
},
|
|
2217
|
+
filterInfo: [],
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
id: 51342,
|
|
2221
|
+
exp: 'true',
|
|
2222
|
+
expJSON:
|
|
2223
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2224
|
+
jsonType: 'JNODE',
|
|
2225
|
+
isActive: false,
|
|
2226
|
+
priority: -1,
|
|
2227
|
+
startDate: {
|
|
2228
|
+
buffer: {
|
|
2229
|
+
type: 'Buffer',
|
|
2230
|
+
data: [0, 0, 0, 234, 68, 75, 46, 72],
|
|
2231
|
+
},
|
|
2232
|
+
offset: 0,
|
|
2233
|
+
},
|
|
2234
|
+
endDate: {
|
|
2235
|
+
buffer: {
|
|
2236
|
+
type: 'Buffer',
|
|
2237
|
+
data: [0, 0, 1, 198, 175, 26, 218, 72],
|
|
2238
|
+
},
|
|
2239
|
+
offset: 0,
|
|
2240
|
+
},
|
|
2241
|
+
createdOn: {
|
|
2242
|
+
buffer: {
|
|
2243
|
+
type: 'Buffer',
|
|
2244
|
+
data: [0, 0, 1, 125, 55, 226, 106, 72],
|
|
2245
|
+
},
|
|
2246
|
+
offset: 0,
|
|
2247
|
+
},
|
|
2248
|
+
ruleScope: 'SERVER',
|
|
2249
|
+
createdBy: 0,
|
|
2250
|
+
modifiedBy: 15000449,
|
|
2251
|
+
modifiedOn: {
|
|
2252
|
+
buffer: {
|
|
2253
|
+
type: 'Buffer',
|
|
2254
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2255
|
+
},
|
|
2256
|
+
offset: 0,
|
|
2257
|
+
},
|
|
2258
|
+
name: 'Rule7',
|
|
2259
|
+
description: '',
|
|
2260
|
+
expDataType: null,
|
|
2261
|
+
ruleSetId: 8146,
|
|
2262
|
+
caseToActions: {
|
|
2263
|
+
true: [
|
|
2264
|
+
{
|
|
2265
|
+
id: 77380,
|
|
2266
|
+
actionName: 'PE_MOBILE_PUSH_ACTION',
|
|
2267
|
+
actionClass:
|
|
2268
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineMobilePushActionImpl',
|
|
2269
|
+
mandatoryPropertiesValues: {
|
|
2270
|
+
mobilePushAccId: 'mpush_1234',
|
|
2271
|
+
androidMobilePushTitle: 'shgs',
|
|
2272
|
+
iosMobilePushTitle: 'shds',
|
|
2273
|
+
androidMobilePushMessageBlob:
|
|
2274
|
+
'{"luid":"{{luid}}","cuid":"{{cuid}}","communicationId":"{{communicationId}}","title":"shgs","message":"android immmsd sdgysgdsdd","expandableDetails":{"style":"BIG_PICTURE","message":"android immmsd sdgysgdsdd","image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/644dabb6-f91e-4430-b1de-2ca906ab.jpg"},"custom":[]}',
|
|
2275
|
+
mobilePushDelay: '0',
|
|
2276
|
+
PointType: 'Main',
|
|
2277
|
+
mobilePushDelayJSON: '{"sec":"0"}',
|
|
2278
|
+
mobilePushTemplateId: '615b029bd401fc0767c5b67a',
|
|
2279
|
+
iosMobilePushMessageBlob:
|
|
2280
|
+
'{"luid":"{{luid}}","cuid":"{{cuid}}","communicationId":"{{communicationId}}","title":"shds","message":"ios image{{store_address}}","expandableDetails":{"style":"BIG_PICTURE","message":"shds","ctas":[],"image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/283c98ca-b645-4ee6-80f1-a768f8e8.jpg"},"custom":[]}',
|
|
2281
|
+
},
|
|
2282
|
+
mandatoryComplexPropertiesValues: {},
|
|
2283
|
+
description: null,
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
id: 77612,
|
|
2287
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
2288
|
+
actionClass:
|
|
2289
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
2290
|
+
mandatoryPropertiesValues: {
|
|
2291
|
+
ExpiryStrategy: '59391',
|
|
2292
|
+
PointType: 'Main',
|
|
2293
|
+
AwardStrategy: '80007',
|
|
2294
|
+
},
|
|
2295
|
+
mandatoryComplexPropertiesValues: {},
|
|
2296
|
+
description: 'delayed accrual1',
|
|
2297
|
+
},
|
|
2298
|
+
],
|
|
2299
|
+
},
|
|
2300
|
+
filterInfo: [],
|
|
2301
|
+
},
|
|
2302
|
+
{
|
|
2303
|
+
id: 52639,
|
|
2304
|
+
exp: 'true',
|
|
2305
|
+
expJSON:
|
|
2306
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2307
|
+
jsonType: 'JNODE',
|
|
2308
|
+
isActive: true,
|
|
2309
|
+
priority: -1,
|
|
2310
|
+
startDate: {
|
|
2311
|
+
buffer: {
|
|
2312
|
+
type: 'Buffer',
|
|
2313
|
+
data: [0, 0, 0, 234, 164, 245, 253, 224],
|
|
2314
|
+
},
|
|
2315
|
+
offset: 0,
|
|
2316
|
+
},
|
|
2317
|
+
endDate: {
|
|
2318
|
+
buffer: {
|
|
2319
|
+
type: 'Buffer',
|
|
2320
|
+
data: [0, 0, 1, 199, 15, 197, 169, 224],
|
|
2321
|
+
},
|
|
2322
|
+
offset: 0,
|
|
2323
|
+
},
|
|
2324
|
+
createdOn: {
|
|
2325
|
+
buffer: {
|
|
2326
|
+
type: 'Buffer',
|
|
2327
|
+
data: [0, 0, 1, 125, 152, 141, 57, 224],
|
|
2328
|
+
},
|
|
2329
|
+
offset: 0,
|
|
2330
|
+
},
|
|
2331
|
+
ruleScope: 'SERVER',
|
|
2332
|
+
createdBy: 0,
|
|
2333
|
+
modifiedBy: 15000449,
|
|
2334
|
+
modifiedOn: {
|
|
2335
|
+
buffer: {
|
|
2336
|
+
type: 'Buffer',
|
|
2337
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2338
|
+
},
|
|
2339
|
+
offset: 0,
|
|
2340
|
+
},
|
|
2341
|
+
name: 'Rule10',
|
|
2342
|
+
description: '',
|
|
2343
|
+
expDataType: null,
|
|
2344
|
+
ruleSetId: 8146,
|
|
2345
|
+
caseToActions: {
|
|
2346
|
+
true: [
|
|
2347
|
+
{
|
|
2348
|
+
id: 77658,
|
|
2349
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
2350
|
+
actionClass:
|
|
2351
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
2352
|
+
mandatoryPropertiesValues: {
|
|
2353
|
+
SmsCDMASenderId: '',
|
|
2354
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
2355
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2356
|
+
ExpiryStrategy: '34165',
|
|
2357
|
+
SmsDomain: '',
|
|
2358
|
+
channelPriority:
|
|
2359
|
+
'[{"type":"mobile","isMandatory":true,"priority":0}]',
|
|
2360
|
+
AwardStrategy: '59386',
|
|
2361
|
+
SmsSenderId: '',
|
|
2362
|
+
SmsTemplate: 'test SMS',
|
|
2363
|
+
EvaluatedEntity: 'USER',
|
|
2364
|
+
SmsDelay: '0',
|
|
2365
|
+
PointType: 'Main',
|
|
2366
|
+
DelayExtendedFieldName: '',
|
|
2367
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2368
|
+
SmsDelayJSON: '{"sec":"0"}',
|
|
2369
|
+
ShortenUrlCheck: '',
|
|
2370
|
+
},
|
|
2371
|
+
mandatoryComplexPropertiesValues: {},
|
|
2372
|
+
description: '4perc',
|
|
2373
|
+
},
|
|
2374
|
+
{
|
|
2375
|
+
id: 77660,
|
|
2376
|
+
actionName: 'BILL_POINTS_ACTION',
|
|
2377
|
+
actionClass:
|
|
2378
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.BillAwardPointsActionImpl',
|
|
2379
|
+
mandatoryPropertiesValues: {
|
|
2380
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
2381
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2382
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
2383
|
+
ZeroAwardStrategy: '59386',
|
|
2384
|
+
ExpiryStrategy: '46797',
|
|
2385
|
+
PointType: 'Main',
|
|
2386
|
+
AwardStrategy: '34166',
|
|
2387
|
+
DelayExtendedFieldName: '',
|
|
2388
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2389
|
+
},
|
|
2390
|
+
mandatoryComplexPropertiesValues: {},
|
|
2391
|
+
description: '4th slab',
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
id: 77662,
|
|
2395
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2396
|
+
actionClass:
|
|
2397
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2398
|
+
mandatoryPropertiesValues: {
|
|
2399
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
2400
|
+
ToSlabSerialNumber: '5',
|
|
2401
|
+
},
|
|
2402
|
+
mandatoryComplexPropertiesValues: {},
|
|
2403
|
+
description: null,
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
id: 77664,
|
|
2407
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2408
|
+
actionClass:
|
|
2409
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2410
|
+
mandatoryPropertiesValues: {
|
|
2411
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2412
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
2413
|
+
UpgradeSlabStrategy: '25086',
|
|
2414
|
+
ExpiryStrategy: '34165',
|
|
2415
|
+
PointType: 'Main',
|
|
2416
|
+
AwardStrategy: '34166',
|
|
2417
|
+
},
|
|
2418
|
+
mandatoryComplexPropertiesValues: {},
|
|
2419
|
+
description: 'CUMULATIVE_PURCHASES',
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
id: 77666,
|
|
2423
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2424
|
+
actionClass:
|
|
2425
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2426
|
+
mandatoryPropertiesValues: {
|
|
2427
|
+
shouldRenewSlab: 'true',
|
|
2428
|
+
EvaluatedEntity: 'USER_ENTITY_REFERENCE',
|
|
2429
|
+
},
|
|
2430
|
+
mandatoryComplexPropertiesValues: {},
|
|
2431
|
+
description: null,
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
id: 77947,
|
|
2435
|
+
actionName: 'PE_SMS_ACTION',
|
|
2436
|
+
actionClass:
|
|
2437
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineSmsActionImpl',
|
|
2438
|
+
mandatoryPropertiesValues: {
|
|
2439
|
+
SmsCDMASenderId: '',
|
|
2440
|
+
SmsDomain: '',
|
|
2441
|
+
SmsDelay: '0',
|
|
2442
|
+
PointType: 'Main',
|
|
2443
|
+
SmsSenderId: '',
|
|
2444
|
+
SmsTemplate: 'sample template.',
|
|
2445
|
+
SmsDelayJSON: '{"sec":"0"}',
|
|
2446
|
+
ShortenUrlCheck: '',
|
|
2447
|
+
},
|
|
2448
|
+
mandatoryComplexPropertiesValues: {},
|
|
2449
|
+
description: 'description',
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
id: 77948,
|
|
2453
|
+
actionName: 'PE_MOBILE_PUSH_ACTION',
|
|
2454
|
+
actionClass:
|
|
2455
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineMobilePushActionImpl',
|
|
2456
|
+
mandatoryPropertiesValues: {
|
|
2457
|
+
mobilePushAccId: 'mpush_1234',
|
|
2458
|
+
androidMobilePushTitle: 'new title',
|
|
2459
|
+
iosMobilePushTitle: 'wefge',
|
|
2460
|
+
androidMobilePushMessageBlob:
|
|
2461
|
+
'{"title":"new title","message":"wegrewg","expandableDetails":{"style":"BIG_PICTURE","message":"wegrewg","image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/f63c43c0-3ff8-4891-b4b8-02df6c9c.jpg"},"custom":{},"type":"IMAGE","deviceType":"ANDROID"}',
|
|
2462
|
+
mobilePushDelay: '0',
|
|
2463
|
+
PointType: 'Main',
|
|
2464
|
+
mobilePushDelayJSON: '{"sec":"0"}',
|
|
2465
|
+
mobilePushTemplateId: 'new_ui_mobilepush_template_id',
|
|
2466
|
+
iosMobilePushMessageBlob:
|
|
2467
|
+
'{"title":"wefge","message":"wegrewg","expandableDetails":{"style":"BIG_PICTURE","message":"wefge","ctas":[],"image":"https://crm-nightly-new-fileservice.s3.amazonaws.com/intouch_creative_assets/1abc7af9-01a9-4b4e-be1c-231ccf2b.jpg"},"custom":{},"type":"IMAGE","deviceType":"IOS"}',
|
|
2468
|
+
},
|
|
2469
|
+
mandatoryComplexPropertiesValues: {},
|
|
2470
|
+
description: null,
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
id: 77949,
|
|
2474
|
+
actionName: 'PE_EMAIL_ACTION',
|
|
2475
|
+
actionClass:
|
|
2476
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineEmailActionImpl',
|
|
2477
|
+
mandatoryPropertiesValues: {
|
|
2478
|
+
EmailBody:
|
|
2479
|
+
'<html>\n<head>\n\t<title></title>\n</head>\n<body>\n<p>{{first_name}}</p>\n</body>\n</html>\n',
|
|
2480
|
+
EmailSubject: 'Renamed Email ',
|
|
2481
|
+
PointType: 'Main',
|
|
2482
|
+
EmailSenderId: '',
|
|
2483
|
+
EmailDomain: '',
|
|
2484
|
+
EmailDelayJSON: '{"sec":"0"}',
|
|
2485
|
+
EmailSenderLabel: '',
|
|
2486
|
+
EmailDelay: '0',
|
|
2487
|
+
},
|
|
2488
|
+
mandatoryComplexPropertiesValues: {},
|
|
2489
|
+
description: 'Subject: Renamed Email ',
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
id: 77950,
|
|
2493
|
+
actionName: 'PE_MESSAGE_ACTION',
|
|
2494
|
+
actionClass:
|
|
2495
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineMessageActionImpl',
|
|
2496
|
+
mandatoryPropertiesValues: {
|
|
2497
|
+
SmsCDMASenderId: '',
|
|
2498
|
+
SmsDomain: '',
|
|
2499
|
+
channelPriority:
|
|
2500
|
+
'[{"type":"mobile","isMandatory":true,"priority":0},{"type":"email","isMandatory":true,"priority":0}]',
|
|
2501
|
+
SmsSenderId: '',
|
|
2502
|
+
EmailDomain: '',
|
|
2503
|
+
SmsTemplate:
|
|
2504
|
+
'நிலையான உள்ளடக்கத்திற்கான சோதனை தரவு நான், தயவுசெய்து என்னையும் சோதிக்கவும்{{',
|
|
2505
|
+
EmailDelayJSON: '{"sec":"0"}',
|
|
2506
|
+
EmailSenderLabel: '',
|
|
2507
|
+
EmailDelay: '0',
|
|
2508
|
+
EmailBody:
|
|
2509
|
+
'<html>\n<head>\n\t<title></title>\n</head>\n<body>\n<p>{{first_name}}</p>\n</body>\n</html>\n',
|
|
2510
|
+
EmailSubject: 'Renamed Email ',
|
|
2511
|
+
SmsDelay: '0',
|
|
2512
|
+
PointType: 'Main',
|
|
2513
|
+
EmailSenderId: '',
|
|
2514
|
+
SmsDelayJSON: '{"sec":"0"}',
|
|
2515
|
+
ShortenUrlCheck: '',
|
|
2516
|
+
},
|
|
2517
|
+
mandatoryComplexPropertiesValues: {},
|
|
2518
|
+
description: 'messages template',
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
id: 78184,
|
|
2522
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
2523
|
+
actionClass:
|
|
2524
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
2525
|
+
mandatoryPropertiesValues: {
|
|
2526
|
+
ExpiryStrategy: '59391',
|
|
2527
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
2528
|
+
AwardStrategy: '80008',
|
|
2529
|
+
},
|
|
2530
|
+
mandatoryComplexPropertiesValues: {},
|
|
2531
|
+
description: 'delay',
|
|
2532
|
+
},
|
|
2533
|
+
{
|
|
2534
|
+
id: 78185,
|
|
2535
|
+
actionName: 'AWARD_REFERRER_POINTS_ACTION',
|
|
2536
|
+
actionClass:
|
|
2537
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardReferrerPointsActionImpl',
|
|
2538
|
+
mandatoryPropertiesValues: {
|
|
2539
|
+
ExpiryStrategy: '79585',
|
|
2540
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
2541
|
+
AwardStrategy: '80008',
|
|
2542
|
+
},
|
|
2543
|
+
mandatoryComplexPropertiesValues: {},
|
|
2544
|
+
description: 'delay',
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
id: 87301,
|
|
2548
|
+
actionName: 'PE_ISSUE_VOUCHER_ACTION',
|
|
2549
|
+
actionClass:
|
|
2550
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineIssueVoucherActionImpl',
|
|
2551
|
+
mandatoryPropertiesValues: {
|
|
2552
|
+
VoucherSeriesId: '107497',
|
|
2553
|
+
},
|
|
2554
|
+
mandatoryComplexPropertiesValues: {},
|
|
2555
|
+
description: 'CPN_1587271857121',
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
id: 87302,
|
|
2559
|
+
actionName: 'FORWARD',
|
|
2560
|
+
actionClass:
|
|
2561
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
2562
|
+
mandatoryPropertiesValues: {
|
|
2563
|
+
shouldTenderUnroll: 'true',
|
|
2564
|
+
ruleset: 'ruleset_20220614101956',
|
|
2565
|
+
useProportions: 'true',
|
|
2566
|
+
shouldUnroll: 'true',
|
|
2567
|
+
maximizePoints: 'true',
|
|
2568
|
+
},
|
|
2569
|
+
mandatoryComplexPropertiesValues: {},
|
|
2570
|
+
description: 'ruleset_20220614101956',
|
|
2571
|
+
},
|
|
2572
|
+
],
|
|
2573
|
+
false: [
|
|
2574
|
+
{
|
|
2575
|
+
id: 86725,
|
|
2576
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
2577
|
+
actionClass:
|
|
2578
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
2579
|
+
mandatoryPropertiesValues: {
|
|
2580
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
2581
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2582
|
+
EvaluatedEntity: 'USER',
|
|
2583
|
+
ExpiryStrategy: '34165',
|
|
2584
|
+
PointType: 'Main',
|
|
2585
|
+
AwardStrategy: '34166',
|
|
2586
|
+
DelayExtendedFieldName: '',
|
|
2587
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2588
|
+
},
|
|
2589
|
+
mandatoryComplexPropertiesValues: {},
|
|
2590
|
+
description: '4th slab',
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
id: 86726,
|
|
2594
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2595
|
+
actionClass:
|
|
2596
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2597
|
+
mandatoryPropertiesValues: {
|
|
2598
|
+
EvaluatedEntity: 'USER',
|
|
2599
|
+
UpgradeSlabStrategy: '25086',
|
|
2600
|
+
},
|
|
2601
|
+
mandatoryComplexPropertiesValues: {},
|
|
2602
|
+
description: 'CUMULATIVE_PURCHASES',
|
|
2603
|
+
},
|
|
2604
|
+
{
|
|
2605
|
+
id: 86727,
|
|
2606
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2607
|
+
actionClass:
|
|
2608
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2609
|
+
mandatoryPropertiesValues: {
|
|
2610
|
+
EvaluatedEntity: 'USER',
|
|
2611
|
+
ToSlabSerialNumber: '3',
|
|
2612
|
+
},
|
|
2613
|
+
mandatoryComplexPropertiesValues: {},
|
|
2614
|
+
description: null,
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
id: 86728,
|
|
2618
|
+
actionName: 'AWARD_REFEREE_POINTS_ACTION',
|
|
2619
|
+
actionClass:
|
|
2620
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardRefereePointsActionImpl',
|
|
2621
|
+
mandatoryPropertiesValues: {
|
|
2622
|
+
ExpiryStrategy: '34165',
|
|
2623
|
+
PointType: 'Main',
|
|
2624
|
+
AwardStrategy: '46718',
|
|
2625
|
+
},
|
|
2626
|
+
mandatoryComplexPropertiesValues: {},
|
|
2627
|
+
description: '5',
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
id: 86729,
|
|
2631
|
+
actionName: 'AWARD_REFERRER_POINTS_ACTION',
|
|
2632
|
+
actionClass:
|
|
2633
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardReferrerPointsActionImpl',
|
|
2634
|
+
mandatoryPropertiesValues: {
|
|
2635
|
+
ExpiryStrategy: '25087',
|
|
2636
|
+
PointType: 'DelayedAccrualPointCategory',
|
|
2637
|
+
AwardStrategy: '80009',
|
|
2638
|
+
},
|
|
2639
|
+
mandatoryComplexPropertiesValues: {},
|
|
2640
|
+
description: 'DelayedAccrualNightly',
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
id: 86730,
|
|
2644
|
+
actionName: 'PE_ISSUE_VOUCHER_ACTION',
|
|
2645
|
+
actionClass:
|
|
2646
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.PointsEngineIssueVoucherActionImpl',
|
|
2647
|
+
mandatoryPropertiesValues: {
|
|
2648
|
+
VoucherSeriesId: '107497',
|
|
2649
|
+
},
|
|
2650
|
+
mandatoryComplexPropertiesValues: {},
|
|
2651
|
+
description: 'CPN_1587271857121',
|
|
2652
|
+
},
|
|
2653
|
+
{
|
|
2654
|
+
id: 86731,
|
|
2655
|
+
actionName: 'UPGRADE_SLAB_ACTION',
|
|
2656
|
+
actionClass:
|
|
2657
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.UpgradeSlabActionImpl',
|
|
2658
|
+
mandatoryPropertiesValues: {
|
|
2659
|
+
shouldRenewSlab: 'true',
|
|
2660
|
+
EvaluatedEntity: 'USER',
|
|
2661
|
+
},
|
|
2662
|
+
mandatoryComplexPropertiesValues: {},
|
|
2663
|
+
description: null,
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
id: 86732,
|
|
2667
|
+
actionName: 'BILL_POINTS_ACTION',
|
|
2668
|
+
actionClass:
|
|
2669
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.BillAwardPointsActionImpl',
|
|
2670
|
+
mandatoryPropertiesValues: {
|
|
2671
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
2672
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2673
|
+
EvaluatedEntity: 'USER',
|
|
2674
|
+
ZeroAwardStrategy: '80007',
|
|
2675
|
+
ExpiryStrategy: '25087',
|
|
2676
|
+
PointType: 'Main',
|
|
2677
|
+
AwardStrategy: '59386',
|
|
2678
|
+
DelayExtendedFieldName: '',
|
|
2679
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2680
|
+
},
|
|
2681
|
+
mandatoryComplexPropertiesValues: {},
|
|
2682
|
+
description: '4perc',
|
|
2683
|
+
},
|
|
2684
|
+
],
|
|
2685
|
+
},
|
|
2686
|
+
filterInfo: [],
|
|
2687
|
+
},
|
|
2688
|
+
{
|
|
2689
|
+
id: 61553,
|
|
2690
|
+
exp: 'true',
|
|
2691
|
+
expJSON:
|
|
2692
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2693
|
+
jsonType: 'JNODE',
|
|
2694
|
+
isActive: false,
|
|
2695
|
+
priority: -1,
|
|
2696
|
+
startDate: {
|
|
2697
|
+
buffer: {
|
|
2698
|
+
type: 'Buffer',
|
|
2699
|
+
data: [0, 0, 0, 237, 164, 180, 159, 240],
|
|
2700
|
+
},
|
|
2701
|
+
offset: 0,
|
|
2702
|
+
},
|
|
2703
|
+
endDate: {
|
|
2704
|
+
buffer: {
|
|
2705
|
+
type: 'Buffer',
|
|
2706
|
+
data: [0, 0, 1, 202, 20, 170, 167, 240],
|
|
2707
|
+
},
|
|
2708
|
+
offset: 0,
|
|
2709
|
+
},
|
|
2710
|
+
createdOn: {
|
|
2711
|
+
buffer: {
|
|
2712
|
+
type: 'Buffer',
|
|
2713
|
+
data: [0, 0, 1, 128, 152, 75, 219, 240],
|
|
2714
|
+
},
|
|
2715
|
+
offset: 0,
|
|
2716
|
+
},
|
|
2717
|
+
ruleScope: 'SERVER',
|
|
2718
|
+
createdBy: 0,
|
|
2719
|
+
modifiedBy: 15000449,
|
|
2720
|
+
modifiedOn: {
|
|
2721
|
+
buffer: {
|
|
2722
|
+
type: 'Buffer',
|
|
2723
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2724
|
+
},
|
|
2725
|
+
offset: 0,
|
|
2726
|
+
},
|
|
2727
|
+
name: 'Rule13',
|
|
2728
|
+
description: '',
|
|
2729
|
+
expDataType: null,
|
|
2730
|
+
ruleSetId: 8146,
|
|
2731
|
+
caseToActions: {
|
|
2732
|
+
true: [
|
|
2733
|
+
{
|
|
2734
|
+
id: 86720,
|
|
2735
|
+
actionName: 'FORWARD',
|
|
2736
|
+
actionClass:
|
|
2737
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
2738
|
+
mandatoryPropertiesValues: {
|
|
2739
|
+
shouldTenderUnroll: 'false',
|
|
2740
|
+
ruleset: 'ruleset_20220506130528',
|
|
2741
|
+
useProportions: 'false',
|
|
2742
|
+
shouldUnroll: 'false',
|
|
2743
|
+
maximizePoints: 'false',
|
|
2744
|
+
},
|
|
2745
|
+
mandatoryComplexPropertiesValues: {},
|
|
2746
|
+
description: 'ruleset_20220506130528',
|
|
2747
|
+
},
|
|
2748
|
+
],
|
|
2749
|
+
},
|
|
2750
|
+
filterInfo: [],
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
id: 61554,
|
|
2754
|
+
exp: 'true',
|
|
2755
|
+
expJSON:
|
|
2756
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2757
|
+
jsonType: 'JNODE',
|
|
2758
|
+
isActive: false,
|
|
2759
|
+
priority: -1,
|
|
2760
|
+
startDate: {
|
|
2761
|
+
buffer: {
|
|
2762
|
+
type: 'Buffer',
|
|
2763
|
+
data: [0, 0, 0, 237, 164, 180, 206, 208],
|
|
2764
|
+
},
|
|
2765
|
+
offset: 0,
|
|
2766
|
+
},
|
|
2767
|
+
endDate: {
|
|
2768
|
+
buffer: {
|
|
2769
|
+
type: 'Buffer',
|
|
2770
|
+
data: [0, 0, 1, 202, 20, 170, 214, 208],
|
|
2771
|
+
},
|
|
2772
|
+
offset: 0,
|
|
2773
|
+
},
|
|
2774
|
+
createdOn: {
|
|
2775
|
+
buffer: {
|
|
2776
|
+
type: 'Buffer',
|
|
2777
|
+
data: [0, 0, 1, 128, 152, 76, 18, 160],
|
|
2778
|
+
},
|
|
2779
|
+
offset: 0,
|
|
2780
|
+
},
|
|
2781
|
+
ruleScope: 'SERVER',
|
|
2782
|
+
createdBy: 0,
|
|
2783
|
+
modifiedBy: 15000449,
|
|
2784
|
+
modifiedOn: {
|
|
2785
|
+
buffer: {
|
|
2786
|
+
type: 'Buffer',
|
|
2787
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2788
|
+
},
|
|
2789
|
+
offset: 0,
|
|
2790
|
+
},
|
|
2791
|
+
name: 'Rule13',
|
|
2792
|
+
description: '',
|
|
2793
|
+
expDataType: null,
|
|
2794
|
+
ruleSetId: 8146,
|
|
2795
|
+
caseToActions: {
|
|
2796
|
+
true: [
|
|
2797
|
+
{
|
|
2798
|
+
id: 86721,
|
|
2799
|
+
actionName: 'FORWARD',
|
|
2800
|
+
actionClass:
|
|
2801
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
2802
|
+
mandatoryPropertiesValues: {
|
|
2803
|
+
shouldTenderUnroll: 'false',
|
|
2804
|
+
ruleset: 'ruleset_20220506130528',
|
|
2805
|
+
useProportions: 'false',
|
|
2806
|
+
shouldUnroll: 'false',
|
|
2807
|
+
maximizePoints: 'false',
|
|
2808
|
+
},
|
|
2809
|
+
mandatoryComplexPropertiesValues: {},
|
|
2810
|
+
description: 'ruleset_20220506130528',
|
|
2811
|
+
},
|
|
2812
|
+
],
|
|
2813
|
+
},
|
|
2814
|
+
filterInfo: [],
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
id: 61555,
|
|
2818
|
+
exp: 'true',
|
|
2819
|
+
expJSON:
|
|
2820
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2821
|
+
jsonType: 'JNODE',
|
|
2822
|
+
isActive: false,
|
|
2823
|
+
priority: -1,
|
|
2824
|
+
startDate: {
|
|
2825
|
+
buffer: {
|
|
2826
|
+
type: 'Buffer',
|
|
2827
|
+
data: [0, 0, 0, 237, 164, 181, 220, 88],
|
|
2828
|
+
},
|
|
2829
|
+
offset: 0,
|
|
2830
|
+
},
|
|
2831
|
+
endDate: {
|
|
2832
|
+
buffer: {
|
|
2833
|
+
type: 'Buffer',
|
|
2834
|
+
data: [0, 0, 1, 202, 20, 171, 228, 88],
|
|
2835
|
+
},
|
|
2836
|
+
offset: 0,
|
|
2837
|
+
},
|
|
2838
|
+
createdOn: {
|
|
2839
|
+
buffer: {
|
|
2840
|
+
type: 'Buffer',
|
|
2841
|
+
data: [0, 0, 1, 128, 152, 77, 28, 64],
|
|
2842
|
+
},
|
|
2843
|
+
offset: 0,
|
|
2844
|
+
},
|
|
2845
|
+
ruleScope: 'SERVER',
|
|
2846
|
+
createdBy: 0,
|
|
2847
|
+
modifiedBy: 15000449,
|
|
2848
|
+
modifiedOn: {
|
|
2849
|
+
buffer: {
|
|
2850
|
+
type: 'Buffer',
|
|
2851
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2852
|
+
},
|
|
2853
|
+
offset: 0,
|
|
2854
|
+
},
|
|
2855
|
+
name: 'Rule13',
|
|
2856
|
+
description: '',
|
|
2857
|
+
expDataType: null,
|
|
2858
|
+
ruleSetId: 8146,
|
|
2859
|
+
caseToActions: {
|
|
2860
|
+
true: [
|
|
2861
|
+
{
|
|
2862
|
+
id: 86722,
|
|
2863
|
+
actionName: 'FORWARD',
|
|
2864
|
+
actionClass:
|
|
2865
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
2866
|
+
mandatoryPropertiesValues: {
|
|
2867
|
+
shouldTenderUnroll: 'false',
|
|
2868
|
+
ruleset: 'ruleset_20220506130528',
|
|
2869
|
+
useProportions: 'false',
|
|
2870
|
+
shouldUnroll: 'false',
|
|
2871
|
+
maximizePoints: 'false',
|
|
2872
|
+
},
|
|
2873
|
+
mandatoryComplexPropertiesValues: {},
|
|
2874
|
+
description: 'ruleset_20220506130528',
|
|
2875
|
+
},
|
|
2876
|
+
],
|
|
2877
|
+
},
|
|
2878
|
+
filterInfo: [],
|
|
2879
|
+
},
|
|
2880
|
+
{
|
|
2881
|
+
id: 61556,
|
|
2882
|
+
exp: 'true',
|
|
2883
|
+
expJSON:
|
|
2884
|
+
'{ "arity": "literal", "value": "true", "type": "boolean:primitive" }',
|
|
2885
|
+
jsonType: 'JNODE',
|
|
2886
|
+
isActive: true,
|
|
2887
|
+
priority: -1,
|
|
2888
|
+
startDate: {
|
|
2889
|
+
buffer: {
|
|
2890
|
+
type: 'Buffer',
|
|
2891
|
+
data: [0, 0, 0, 237, 164, 183, 130, 56],
|
|
2892
|
+
},
|
|
2893
|
+
offset: 0,
|
|
2894
|
+
},
|
|
2895
|
+
endDate: {
|
|
2896
|
+
buffer: {
|
|
2897
|
+
type: 'Buffer',
|
|
2898
|
+
data: [0, 0, 1, 202, 20, 173, 138, 56],
|
|
2899
|
+
},
|
|
2900
|
+
offset: 0,
|
|
2901
|
+
},
|
|
2902
|
+
createdOn: {
|
|
2903
|
+
buffer: {
|
|
2904
|
+
type: 'Buffer',
|
|
2905
|
+
data: [0, 0, 1, 128, 152, 78, 194, 32],
|
|
2906
|
+
},
|
|
2907
|
+
offset: 0,
|
|
2908
|
+
},
|
|
2909
|
+
ruleScope: 'SERVER',
|
|
2910
|
+
createdBy: 0,
|
|
2911
|
+
modifiedBy: 15000449,
|
|
2912
|
+
modifiedOn: {
|
|
2913
|
+
buffer: {
|
|
2914
|
+
type: 'Buffer',
|
|
2915
|
+
data: [0, 0, 1, 129, 246, 66, 248, 40],
|
|
2916
|
+
},
|
|
2917
|
+
offset: 0,
|
|
2918
|
+
},
|
|
2919
|
+
name: 'Rule13',
|
|
2920
|
+
description: '',
|
|
2921
|
+
expDataType: null,
|
|
2922
|
+
ruleSetId: 8146,
|
|
2923
|
+
caseToActions: {
|
|
2924
|
+
true: [
|
|
2925
|
+
{
|
|
2926
|
+
id: 86723,
|
|
2927
|
+
actionName: 'FORWARD',
|
|
2928
|
+
actionClass:
|
|
2929
|
+
'com.capillary.shopbook.nrules.impl.action.ForwardAction',
|
|
2930
|
+
mandatoryPropertiesValues: {
|
|
2931
|
+
shouldTenderUnroll: 'false',
|
|
2932
|
+
ruleset: 'ruleset_20220506130528',
|
|
2933
|
+
useProportions: 'false',
|
|
2934
|
+
shouldUnroll: 'false',
|
|
2935
|
+
maximizePoints: 'false',
|
|
2936
|
+
},
|
|
2937
|
+
mandatoryComplexPropertiesValues: {},
|
|
2938
|
+
description: 'ruleset_20220506130528',
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
id: 87054,
|
|
2942
|
+
actionName: 'AWARD_POINTS_ACTION',
|
|
2943
|
+
actionClass:
|
|
2944
|
+
'com.capillary.shopbook.pointsengine.endpoint.impl.action.AwardPointsActionImpl',
|
|
2945
|
+
mandatoryPropertiesValues: {
|
|
2946
|
+
DelayStrategy: 'AS_DEFINED_IN_ALLOCATION_STRATEGY',
|
|
2947
|
+
ProRateOnSourceValue: 'EVENT_DEFAULT_VALUE',
|
|
2948
|
+
EvaluatedEntity: 'USER',
|
|
2949
|
+
ExpiryStrategy: '46797',
|
|
2950
|
+
PointType: 'Main',
|
|
2951
|
+
AwardStrategy: '46718',
|
|
2952
|
+
DelayExtendedFieldName: '',
|
|
2953
|
+
PointsRoundingStrategy: 'ACTUAL',
|
|
2954
|
+
},
|
|
2955
|
+
mandatoryComplexPropertiesValues: {},
|
|
2956
|
+
description: '5',
|
|
2957
|
+
},
|
|
2958
|
+
],
|
|
2959
|
+
},
|
|
2960
|
+
filterInfo: [],
|
|
2961
|
+
},
|
|
2962
|
+
],
|
|
2963
|
+
filterInfo: [
|
|
2964
|
+
{
|
|
2965
|
+
id: 80276,
|
|
2966
|
+
orgID: 1685,
|
|
2967
|
+
ruleID: -1,
|
|
2968
|
+
name: 'DateRange',
|
|
2969
|
+
className:
|
|
2970
|
+
'com.capillary.shopbook.emf.impl.filter.DateRangeFilterImpl',
|
|
2971
|
+
isInclude: false,
|
|
2972
|
+
propertyToValues: {
|
|
2973
|
+
endDate: ['2021-11-27 20:01:40'],
|
|
2974
|
+
startDate: ['2021-11-25 20:01:38'],
|
|
2975
|
+
},
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
id: 80277,
|
|
2979
|
+
orgID: 1685,
|
|
2980
|
+
ruleID: -1,
|
|
2981
|
+
name: 'Stores',
|
|
2982
|
+
className: 'com.capillary.shopbook.emf.impl.filter.Store',
|
|
2983
|
+
isInclude: true,
|
|
2984
|
+
propertyToValues: {
|
|
2985
|
+
storeIds: ['store1', 'store2'],
|
|
2986
|
+
},
|
|
2987
|
+
},
|
|
2988
|
+
{
|
|
2989
|
+
id: -1,
|
|
2990
|
+
orgID: 50146,
|
|
2991
|
+
ruleID: -1,
|
|
2992
|
+
name: 'Zones',
|
|
2993
|
+
className: 'com.capillary.shopbook.emf.impl.filter.ZoneFilterImpl',
|
|
2994
|
+
isInclude: true,
|
|
2995
|
+
propertyToValues: {
|
|
2996
|
+
zoneIds: [50007992, 50007990],
|
|
2997
|
+
},
|
|
2998
|
+
scopingId: 'temp_Zones',
|
|
2999
|
+
},
|
|
3000
|
+
{
|
|
3001
|
+
id: -1,
|
|
3002
|
+
orgID: 50146,
|
|
3003
|
+
ruleID: -1,
|
|
3004
|
+
name: 'Concepts',
|
|
3005
|
+
className: 'com.capillary.shopbook.emf.impl.filter.ConceptFilterImpl',
|
|
3006
|
+
isInclude: true,
|
|
3007
|
+
propertyToValues: {
|
|
3008
|
+
conceptIds: ['50007997'],
|
|
3009
|
+
},
|
|
3010
|
+
scopingId: 'temp_Concepts',
|
|
3011
|
+
},
|
|
3012
|
+
{
|
|
3013
|
+
id: -1,
|
|
3014
|
+
orgID: 50146,
|
|
3015
|
+
ruleID: -1,
|
|
3016
|
+
name: 'CustomerCluster',
|
|
3017
|
+
className:
|
|
3018
|
+
'com.capillary.shopbook.emf.impl.filter.CustomerClusterFilterImpl',
|
|
3019
|
+
isInclude: true,
|
|
3020
|
+
propertyToValues: {
|
|
3021
|
+
clusterName: ['segmentjavaapiautomationtest_1604423566158'],
|
|
3022
|
+
clusterValues: ['Low Loyal'],
|
|
3023
|
+
clusterNameStr: ['segmentjavaapiautomationtest_1604423566158'],
|
|
3024
|
+
clusterValuesStr: ['Low Loyal'],
|
|
3025
|
+
},
|
|
3026
|
+
scopingId: 'temp_CustomerCluster',
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
id: -1,
|
|
3030
|
+
orgID: 50146,
|
|
3031
|
+
ruleID: -1,
|
|
3032
|
+
name: 'EventSource',
|
|
3033
|
+
className:
|
|
3034
|
+
'com.capillary.shopbook.emf.impl.filter.EventSourceFilterImpl',
|
|
3035
|
+
isInclude: true,
|
|
3036
|
+
propertyToValues: {
|
|
3037
|
+
eventSource: ['WEB_ENGAGE__~sjdhbfhjsd'],
|
|
3038
|
+
},
|
|
3039
|
+
scopingId: 'temp_EventSource',
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
id: -1,
|
|
3043
|
+
orgID: 50146,
|
|
3044
|
+
ruleID: -1,
|
|
3045
|
+
name: 'LoyaltyType',
|
|
3046
|
+
className:
|
|
3047
|
+
'com.capillary.shopbook.emf.impl.filter.LoyaltyTypeFilterImpl',
|
|
3048
|
+
isInclude: true,
|
|
3049
|
+
propertyToValues: {
|
|
3050
|
+
loyaltyType: ['loyalty'],
|
|
3051
|
+
},
|
|
3052
|
+
scopingId: 'temp_LoyaltyType',
|
|
3053
|
+
},
|
|
3054
|
+
],
|
|
3055
|
+
cappingInfo: [
|
|
3056
|
+
{
|
|
3057
|
+
id: 49,
|
|
3058
|
+
orgId: 1685,
|
|
3059
|
+
name: 'TotalPointsCapping',
|
|
3060
|
+
className:
|
|
3061
|
+
'com.capillary.shopbook.emf.impl.capping.TotalPointsCappingImpl',
|
|
3062
|
+
propertyValuesJson: '{"totalPointsLimit":"2323"}',
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
id: 50,
|
|
3066
|
+
orgId: 1685,
|
|
3067
|
+
name: 'TenderSumSourceValueCapping',
|
|
3068
|
+
className:
|
|
3069
|
+
'com.capillary.shopbook.emf.impl.capping.TenderSumSourceValueCappingImpl',
|
|
3070
|
+
propertyValuesJson:
|
|
3071
|
+
'{"isInclude":"true","selectedTenderCombinationIds":["752"]}',
|
|
3072
|
+
},
|
|
3073
|
+
],
|
|
3074
|
+
},
|
|
3075
|
+
],
|
|
3076
|
+
};
|
|
3077
|
+
|
|
3078
|
+
export const userDataWithoutFeatureFlag = {
|
|
3079
|
+
user: {
|
|
3080
|
+
id: '14783',
|
|
3081
|
+
refID: '14783',
|
|
3082
|
+
orgID: 0,
|
|
3083
|
+
},
|
|
3084
|
+
currentOrgDetails: {
|
|
3085
|
+
basic_details: {
|
|
3086
|
+
org_id: '50672',
|
|
3087
|
+
name: 'Sahana_TestOrg',
|
|
3088
|
+
address: 'hrs layout',
|
|
3089
|
+
phone: '',
|
|
3090
|
+
fiscal_year_start: '-1',
|
|
3091
|
+
language: '',
|
|
3092
|
+
base_language: '',
|
|
3093
|
+
base_lang_locale: '',
|
|
3094
|
+
base_currency_name: '',
|
|
3095
|
+
base_currency: '',
|
|
3096
|
+
base_currency_symbol: '',
|
|
3097
|
+
timezone: 'Asia/Kolkata',
|
|
3098
|
+
timezone_offset: '+05:30',
|
|
3099
|
+
min_sms_hour: 2,
|
|
3100
|
+
max_sms_hour: 21,
|
|
3101
|
+
is_active: 1,
|
|
3102
|
+
value_sms_credits: '',
|
|
3103
|
+
bulk_sms_credits: '',
|
|
3104
|
+
base_country: 'India',
|
|
3105
|
+
base_country_code: 'IN',
|
|
3106
|
+
base_language_iso: {
|
|
3107
|
+
lang: '',
|
|
3108
|
+
locale: '',
|
|
3109
|
+
},
|
|
3110
|
+
base_timezone_iso: {
|
|
3111
|
+
label: 'Asia/Kolkata',
|
|
3112
|
+
offset: '+05:30',
|
|
3113
|
+
},
|
|
3114
|
+
base_country_iso: {
|
|
3115
|
+
code: 'IN',
|
|
3116
|
+
name: 'India',
|
|
3117
|
+
},
|
|
3118
|
+
base_currency_iso: {
|
|
3119
|
+
label: '',
|
|
3120
|
+
symbol: '',
|
|
3121
|
+
},
|
|
3122
|
+
},
|
|
3123
|
+
sender_details: {
|
|
3124
|
+
GSM: '917057170721',
|
|
3125
|
+
CDMA: '918830046834',
|
|
3126
|
+
label: 'BooksTesting',
|
|
3127
|
+
replyToEmail: 'labhavyas09@gmail.com',
|
|
3128
|
+
senderEmail: 'labhavyas09@gmail.com',
|
|
3129
|
+
},
|
|
3130
|
+
accessibleFeatures: [
|
|
3131
|
+
'PROMO_ENGINE',
|
|
3132
|
+
'GIFT_CARDS',
|
|
3133
|
+
'LOYALTY_PROMOTION_ENABLED',
|
|
3134
|
+
'ENABLE_CUSTOM_AUDIENCE_UPLOAD',
|
|
3135
|
+
],
|
|
3136
|
+
org_loyalty_v2_status: false,
|
|
3137
|
+
module_details: [
|
|
3138
|
+
{
|
|
3139
|
+
code: 'intouchHomePage',
|
|
3140
|
+
display_order: 1,
|
|
3141
|
+
id: -1,
|
|
3142
|
+
name: 'HOME',
|
|
3143
|
+
namespace: 'intouchHomePage',
|
|
3144
|
+
url: '/home/ui',
|
|
3145
|
+
version: '1.0.0',
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
id: 44,
|
|
3149
|
+
name: 'ENGAGE+',
|
|
3150
|
+
code: 'campaigns/ui/list',
|
|
3151
|
+
version: '1.0.0.1',
|
|
3152
|
+
namespace: 'campaign',
|
|
3153
|
+
display_order: 9,
|
|
3154
|
+
url: '/campaigns/ui/list',
|
|
3155
|
+
},
|
|
3156
|
+
{
|
|
3157
|
+
id: 41,
|
|
3158
|
+
name: 'LOYALTY+',
|
|
3159
|
+
code: 'loyaltyProgram',
|
|
3160
|
+
version: '1.0.0.1',
|
|
3161
|
+
namespace: 'loyaltyProgram',
|
|
3162
|
+
display_order: 6,
|
|
3163
|
+
url: '/loyaltyProgram/index',
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
id: 39,
|
|
3167
|
+
name: 'MEMBER CARE',
|
|
3168
|
+
code: 'memberCare',
|
|
3169
|
+
version: '1.0.0.1',
|
|
3170
|
+
namespace: 'memberCare',
|
|
3171
|
+
display_order: 5,
|
|
3172
|
+
url: '/memberCare/index',
|
|
3173
|
+
},
|
|
3174
|
+
{
|
|
3175
|
+
id: 27,
|
|
3176
|
+
name: 'MASTERS',
|
|
3177
|
+
code: 'org',
|
|
3178
|
+
version: '1.0.0.1',
|
|
3179
|
+
namespace: 'org',
|
|
3180
|
+
display_order: 0,
|
|
3181
|
+
url: '/org/index',
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
id: 26,
|
|
3185
|
+
name: 'WORKBENCH',
|
|
3186
|
+
code: 'businessProcesses',
|
|
3187
|
+
version: '1.0.0.1',
|
|
3188
|
+
namespace: 'businessProcesses',
|
|
3189
|
+
display_order: 10,
|
|
3190
|
+
url: '/businessProcesses/index',
|
|
3191
|
+
},
|
|
3192
|
+
],
|
|
3193
|
+
org_campaign_v2_status: true,
|
|
3194
|
+
orgNamespaceInfo: {
|
|
3195
|
+
orgNamespaceEnabled: '0',
|
|
3196
|
+
namespace: {},
|
|
3197
|
+
},
|
|
3198
|
+
},
|
|
3199
|
+
systemTimeZone: 'Asia/Calcutta',
|
|
3200
|
+
systemCurrentDate: '2023-04-13 17:26:19',
|
|
3201
|
+
currentDate: '2023-04-13 17:26:19',
|
|
3202
|
+
};
|
|
3203
|
+
|
|
3204
|
+
export const groupTreeListMock = [
|
|
3205
|
+
{
|
|
3206
|
+
name: 'grandpa-1',
|
|
3207
|
+
id: 1234,
|
|
3208
|
+
children: [
|
|
3209
|
+
{ name: 'father-1', id: 132321, children: [] },
|
|
3210
|
+
{
|
|
3211
|
+
name: 'son-1',
|
|
3212
|
+
id: 1235,
|
|
3213
|
+
children: [
|
|
3214
|
+
{
|
|
3215
|
+
name: 'grandson-1',
|
|
3216
|
+
id: 1236,
|
|
3217
|
+
children: [
|
|
3218
|
+
{ name: 'great-grandson-1', id: 1217, children: [] },
|
|
3219
|
+
{ name: 'great-grandson-2', id: 12221, children: [] },
|
|
3220
|
+
],
|
|
3221
|
+
},
|
|
3222
|
+
],
|
|
3223
|
+
},
|
|
3224
|
+
],
|
|
3225
|
+
},
|
|
3226
|
+
];
|