\n \n \n \n \n\n\n\n","import mod from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./SidebarItem.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./SidebarItem.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./SidebarItem.vue?vue&type=template&id=3c6264b8\"\nimport script from \"./SidebarItem.vue?vue&type=script&lang=js\"\nexport * from \"./SidebarItem.vue?vue&type=script&lang=js\"\nimport style0 from \"./SidebarItem.vue?vue&type=style&index=0&id=3c6264b8&prod&lang=css\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Sidebar from './SideBar.vue';\nimport SidebarItem from './SidebarItem.vue';\n\nconst SidebarStore = {\n showSidebar: false,\n sidebarLinks: [],\n isMinimized: false,\n displaySidebar(value) {\n this.showSidebar = value;\n },\n toggleMinimize() {\n document.body.classList.toggle('sidebar-mini');\n // we simulate the window Resize so the charts will get updated in realtime.\n const simulateWindowResize = setInterval(() => {\n window.dispatchEvent(new Event('resize'));\n }, 180);\n\n // we stop the simulation of Window Resize after the animations are completed\n setTimeout(() => {\n clearInterval(simulateWindowResize);\n }, 1000);\n\n this.isMinimized = !this.isMinimized;\n }\n};\n\nconst SidebarPlugin = {\n install(Vue, options) {\n if (options && options.sidebarLinks) {\n SidebarStore.sidebarLinks = options.sidebarLinks;\n }\n let app = new Vue({\n data: {\n sidebarStore: SidebarStore\n }\n });\n Vue.prototype.$sidebar = app.sidebarStore;\n Vue.component('SideBar', Sidebar);\n Vue.component('SidebarItem', SidebarItem);\n }\n};\n\nexport default SidebarPlugin;\n","// ! Duplicated of state.js -_-\nexport const CONSTANTS = {\n customer: [\n 'user_type',\n 'user_id',\n 'tenant_created_at',\n 'surname',\n 'sub_category',\n 'status',\n 'shipping_state',\n 'shipping_postcode',\n 'shipping_country',\n 'shipping_city',\n 'shipping_address_line_2',\n 'shipping_address_line_1',\n 'phone',\n 'name',\n 'meta_category',\n 'job_title',\n 'gender',\n 'email_consented',\n 'email',\n 'category',\n 'birthdate',\n 'billing_state',\n 'billing_postcode',\n 'billing_country',\n 'billing_city',\n 'billing_address_line_2',\n 'billing_address_line_1'\n ],\n product: [\n 'item_id',\n 'name',\n 'sku',\n 'description',\n 'brand',\n 'meta_category',\n 'category',\n 'sub_category',\n 'image_url',\n 'item_url',\n 'price',\n 'cost',\n 'tenant_created_at',\n 'channel_name',\n 'status',\n 'stock_qty'\n ],\n segment: ['name', 'id'],\n sale: ['channel_type', 'channel_name', 'event_dt', 'event_type', 'item_id'],\n email: ['delivery', 'open', 'click']\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const customersTypes = {\n module: 'customers',\n getters: {\n // Get single customer\n get getCustomer() {\n return `${customersTypes.module}/getCustomer`;\n },\n // Get all customers\n get getCustomers() {\n return `${customersTypes.module}/getCustomers`;\n },\n get getCount() {\n return `${customersTypes.module}/getCount`;\n },\n get getFields() {\n return `${customersTypes.module}/getFields`;\n }\n },\n actions: {\n setCustomer: 'SET_CUSTOMER',\n setCustomers: 'SET_CUSTOMERS',\n setOtherFields: 'SET_OTHER_FIELDS',\n getRandomCustomer: 'GET_RANDOM_CUSTOMER'\n },\n dispatchers: {\n get setCustomer() {\n return `${customersTypes.module}/${customersTypes.actions.setCustomer}`;\n },\n get setCustomers() {\n return `${customersTypes.module}/${customersTypes.actions.setCustomers}`;\n },\n get setOtherFields() {\n return `${customersTypes.module}/${customersTypes.actions.setOtherFields}`;\n },\n get getRandomCustomer() {\n return `${customersTypes.module}/${customersTypes.actions.getRandomCustomer}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\nexport const datasetTypes = {\n module: 'dataset',\n getters: {\n get getDatasets() {\n return `${datasetTypes.module}/getDatasets`;\n },\n get getDatasetMapping() {\n return `${datasetTypes.module}/getDatasetMapping`;\n },\n get getNewDataset() {\n return `${datasetTypes.module}/getNewDataset`;\n },\n get getDatasetGroup() {\n return `${datasetTypes.module}/getDatasetGroup`;\n },\n get getNewDatasetGroup() {\n return `${datasetTypes.module}/getNewDatasetGroup`;\n }\n },\n actions: {\n getDatasets: 'GET_DATASETS',\n getDatasetMapping: 'GET_DATASET_MAPPING',\n createDataset: 'CREATE_DATASET',\n deleteDataset: 'DELETE_DATASET',\n flushDataset: 'FLUSH_DATASET',\n getDatasetGroup: 'GET_DATASET_GROUP',\n createDatasetGroup: 'CREATE_DATASET_GROUP',\n updateDatasetGroup: 'UPDATE_DATASET_GROUP',\n clearNewDatasetGroup: 'CLEAR_NEW_DATASET_GROUP'\n },\n dispatchers: {\n get getDatasets() {\n return `${datasetTypes.module}/${datasetTypes.actions.getDatasets}`;\n },\n get getDatasetMapping() {\n return `${datasetTypes.module}/${datasetTypes.actions.getDatasetMapping}`;\n },\n get createDataset() {\n return `${datasetTypes.module}/${datasetTypes.actions.createDataset}`;\n },\n get deleteDatasets() {\n return `${datasetTypes.module}/${datasetTypes.actions.deleteDataset}`;\n },\n get flushDataset() {\n return `${datasetTypes.module}/${datasetTypes.actions.flushCampaign}`;\n },\n get getDatasetGroup() {\n return `${datasetTypes.module}/${datasetTypes.actions.getDatasetGroup}`;\n },\n get createDatasetGroup() {\n return `${datasetTypes.module}/${datasetTypes.actions.createDatasetGroup}`;\n },\n get updateDatasetGroup() {\n return `${datasetTypes.module}/${datasetTypes.actions.updateDatasetGroup}`;\n },\n get clearNewDatasetGroup() {\n return `${datasetTypes.module}/${datasetTypes.actions.clearNewDatasetGroup}`;\n }\n }\n};\n","export const filterTypes = {\n module: 'filter',\n getters: {\n get getSqlQuery() {\n return `${filterTypes.module}/getSqlQuery`;\n },\n get getSqlWithHeaders() {\n return `${filterTypes.module}/getSqlWithHeaders`;\n },\n get getTempValue() {\n return `${filterTypes.module}/getTempValue`;\n },\n get getFrequencyCheck() {\n return `${filterTypes.module}/getFrequencyCheck`;\n },\n get getRecencyCheck() {\n return `${filterTypes.module}/getRecencyCheck`;\n },\n get getFilterOperator() {\n return `${filterTypes.module}/getFilterOperator`;\n },\n get getGroups() {\n return `${filterTypes.module}/getGroups`;\n },\n get getFields() {\n return `${filterTypes.module}/getFields`;\n },\n get getConditions() {\n return `${filterTypes.module}/getConditions`;\n },\n get getIsEditing() {\n return `${filterTypes.module}/getIsEditing`;\n },\n get getCurrentlyEditing() {\n return `${filterTypes.module}/getCurrentlyEditing`;\n },\n get getFilters() {\n return `${filterTypes.module}/getFilters`;\n },\n get getStatus() {\n return `${filterTypes.module}/getStatus`;\n },\n get getSelects() {\n return `${filterTypes.module}/getSelects`;\n },\n get getCurrentGroup() {\n return `${filterTypes.module}/getCurrentGroup`;\n },\n get getCurrentTable() {\n return `${filterTypes.module}/getCurrentTable`;\n },\n get getGeneralInformation() {\n return `${filterTypes.module}/getGeneralInformation`;\n },\n get getFilterName() {\n return `${filterTypes.module}/getFilterName`;\n },\n get getDescription() {\n return `${filterTypes.module}/getDescription`;\n },\n get getFilterInfo() {\n return `${filterTypes.module}/getFilterInfo`;\n },\n get getCount() {\n return `${filterTypes.module}/getCount`;\n },\n get getBestSellersWinning() {\n return `${filterTypes.module}/getBestSellersWinning`;\n },\n get getBestSellersLosing() {\n return `${filterTypes.module}/getBestSellersLosing`;\n },\n get getProductSample() {\n return `${filterTypes.module}/getProductSample`;\n }\n },\n actions: {\n setGroup: 'SET_GROUP',\n unsetGroup: 'UNSET_GROUP',\n setGroupOperator: 'SET_GROUP_OPERATOR',\n setField: 'SET_FIELD',\n unsetField: 'UNSET_FIELD',\n setFilterOperator: 'SET_FILTER_OPERATOR',\n setFilter: 'SET_FILTER',\n setNegation: 'SET_NEGATION',\n setGroupEditMode: 'SET_GROUP_EDIT_MODE',\n setGroupConditions: 'SET_GROUP_CONDITIONS',\n setCurrentlyEditing: 'TOGGLE_IS_EDITING',\n resetEditing: 'RESET_EDITING',\n loadFilter: 'LOAD_FILTER',\n populateFields: 'POPULATE_FIELDS',\n getFilters: 'GET_FILTERS',\n // deleteFilter: 'DELETE_FILTER',\n flushFilter: 'FLUSH_FILTER',\n getCampaignFilters: 'GET_CAMPAIGN_FILTERS',\n populateValues: 'POPULATE_VALUES',\n populateOtherFields: 'POPULATE_OTHER_FIELDS',\n setParams: 'SET_PARAMS',\n setMonth: 'SET_MONTH',\n setProductsCount: 'SET_CUSTOMERS_COUNT',\n setBestSellersWinning: 'SET_BEST_SELLERS_WINNING',\n setBestSellersLosing: 'SET_BEST_SELLERS_LOSING',\n setProductSample: 'SET_PRODUCT_SAMPLE',\n setFrequencyCheck: 'SET_FREQUENCY_CHECK',\n setRecencyCheck: 'SET_RECENCY_CHECK',\n loadFormattedFilter: 'LOAD_FORMATTED_FILTER',\n setFilterChoice: 'SET_FILTER_CHOICE',\n // Filter analytics\n setUsersCount: 'SET_USERS_COUNT',\n setAbp: 'SET_ABP',\n setAsv: 'SET_ASV',\n setMostVisitedStores: 'SET_MOST_VISITED_STORES',\n setOtherFilters: 'SET_OTHER_FILTERS',\n setDemography: 'SET_DEMOGRAPHY',\n // end\n setTempValue: 'SET_TEMP_VALUE',\n setGroupValue: 'SET_GROUP_VALUE',\n setFilterStatus: 'SET_FILTER_STATUS',\n rePopulateFilter: 'RE_POPULATE_FILTER'\n },\n dispatchers: {\n get setGroupValue() {\n return `${filterTypes.module}/${filterTypes.actions.setGroupValue}`;\n },\n get loadFormattedFilter() {\n return `${filterTypes.module}/${filterTypes.actions.loadFormattedFilter}`;\n },\n get setFrequencyCheck() {\n return `${filterTypes.module}/${filterTypes.actions.setFrequencyCheck}`;\n },\n get setRecencyCheck() {\n return `${filterTypes.module}/${filterTypes.actions.setRecencyCheck}`;\n },\n get setParams() {\n return `${filterTypes.module}/${filterTypes.actions.setParams}`;\n },\n get setProductsCount() {\n return `${filterTypes.module}/${filterTypes.actions.setProductsCount}`;\n },\n get setBestSellersWinning() {\n return `${filterTypes.module}/${filterTypes.actions.setBestSellersWinning}`;\n },\n // get setBestSellersLosing() {\n // return `${filterTypes.module}/${filterTypes.actions.setBestSellersLosing}`;\n // },\n get setProductSample() {\n return `${filterTypes.module}/${filterTypes.actions.setProductSample}`;\n },\n get setMonth() {\n return `${filterTypes.module}/${filterTypes.actions.setMonth}`;\n },\n get setGroup() {\n return `${filterTypes.module}/${filterTypes.actions.setGroup}`;\n },\n get unsetGroup() {\n return `${filterTypes.module}/${filterTypes.actions.unsetGroup}`;\n },\n get setGroupOperator() {\n return `${filterTypes.module}/${filterTypes.actions.setGroupOperator}`;\n },\n get setField() {\n return `${filterTypes.module}/${filterTypes.actions.setField}`;\n },\n get unsetField() {\n return `${filterTypes.module}/${filterTypes.actions.unsetField}`;\n },\n get setFilterOperator() {\n return `${filterTypes.module}/${filterTypes.actions.setFilterOperator}`;\n },\n get setFilter() {\n return `${filterTypes.module}/${filterTypes.actions.setFilter}`;\n },\n get setNegation() {\n return `${filterTypes.module}/${filterTypes.actions.setNegation}`;\n },\n get setGroupEditMode() {\n return `${filterTypes.module}/${filterTypes.actions.setGroupEditMode}`;\n },\n get setGroupConditions() {\n return `${filterTypes.module}/${filterTypes.actions.setGroupConditions}`;\n },\n get setCurrentlyEditing() {\n return `${filterTypes.module}/${filterTypes.actions.setCurrentlyEditing}`;\n },\n get resetEditing() {\n return `${filterTypes.module}/${filterTypes.actions.resetEditing}`;\n },\n get loadFilter() {\n return `${filterTypes.module}/${filterTypes.actions.loadFilter}`;\n },\n get populateFields() {\n return `${filterTypes.module}/${filterTypes.actions.populateFields}`;\n },\n get getFilters() {\n return `${filterTypes.module}/${filterTypes.actions.getFilters}`;\n },\n // get deleteFilter() {\n // return `${filterTypes.module}/${filterTypes.actions.deleteFilter}`;\n // },\n get flushFilter() {\n return `${filterTypes.module}/${filterTypes.actions.flushFilter}`;\n },\n get getCampaignFilters() {\n return `${filterTypes.module}/${filterTypes.actions.getCampaignFilters}`;\n },\n get populateValues() {\n return `${filterTypes.module}/${filterTypes.actions.populateValues}`;\n },\n get populateOtherFields() {\n return `${filterTypes.module}/${filterTypes.actions.populateOtherFields}`;\n },\n get setFilterChoice() {\n return `${filterTypes.module}/${filterTypes.actions.setFilterChoice}`;\n },\n get setUsersCount() {\n return `${filterTypes.module}/${filterTypes.actions.setUsersCount}`;\n },\n get setAbp() {\n return `${filterTypes.module}/${filterTypes.actions.setAbp}`;\n },\n get setAsv() {\n return `${filterTypes.module}/${filterTypes.actions.setAsv}`;\n },\n get setMostVisitedStores() {\n return `${filterTypes.module}/${filterTypes.actions.setMostVisitedStores}`;\n },\n get setOtherFilters() {\n return `${filterTypes.module}/${filterTypes.actions.setOtherFilters}`;\n },\n get setDemography() {\n return `${filterTypes.module}/${filterTypes.actions.setDemography}`;\n },\n get setTempValue() {\n return `${filterTypes.module}/${filterTypes.actions.setTempValue}`;\n },\n get setFilterStatus() {\n return `${filterTypes.module}/${filterTypes.actions.setFilterStatus}`;\n },\n get rePopulateFilter() {\n return `${filterTypes.module}/${filterTypes.actions.rePopulateFilter}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const databaseChoresTypes = {\n module: 'databaseChores',\n getters: {\n get getDBStatus() {\n return `${databaseChoresTypes.module}/getDBStatus`;\n }\n },\n actions: {\n ping: 'PING'\n },\n dispatchers: {\n get ping() {\n return `${databaseChoresTypes.module}/${databaseChoresTypes.actions.ping}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const campaignTypes = {\n module: 'campaign',\n getters: {\n get getCampaigns() {\n return `${campaignTypes.module}/getCampaigns`;\n },\n get getStatus() {\n return `${campaignTypes.module}/getStatus`;\n },\n get getCampaignDetails() {\n return `${campaignTypes.module}/getCampaignDetails`;\n },\n get getCampaignDetailsA() {\n return `${campaignTypes.module}/getCampaignDetailsA`;\n },\n get getCampaignDetailsB() {\n return `${campaignTypes.module}/getCampaignDetailsB`;\n },\n get getFile() {\n return `${campaignTypes.module}/getFile`;\n },\n get getCheckDefaultCampaignSettings() {\n return `${campaignTypes.module}/getCheckDefaultCampaignSettings`;\n }\n },\n actions: {\n setCampaignDetails: 'SET_CAMPAIGN_DETAILS',\n updateCampaignValue: 'UPDATE_CAMPAIGN_VALUE',\n updateCampaignValueA: 'UPDATE_CAMPAIGN_VALUE_A',\n updateCampaignValueB: 'UPDATE_CAMPAIGN_VALUE_B',\n resetCampaignDetails: 'RESET_CAMPAIGN_DETAILS',\n getAPIcampaigns: 'GET_API_CAMPAIGNS',\n deleteCampaign: 'DELETE_CAMPAIGN',\n loadCampaign: 'LOAD_CAMPAIGN',\n flushCampaign: 'FLUSH_CAMPAIGN',\n saveCSV: 'SAVE_CSV',\n updateSelectedDateAndTime: 'UPDATE_SELECTED_DATE_AND_TIME',\n setCheckDefaultCampaignSettings: 'SET_CHECK_DEFAULT_CAMPAIGN_SETTINGS'\n },\n dispatchers: {\n get setCampaignDetails() {\n return `${campaignTypes.module}/${campaignTypes.actions.setCampaignDetails}`;\n },\n get updateCampaignValue() {\n return `${campaignTypes.module}/${campaignTypes.actions.updateCampaignValue}`;\n },\n get updateCampaignValueA() {\n return `${campaignTypes.module}/${campaignTypes.actions.updateCampaignValueA}`;\n },\n get updateCampaignValueB() {\n return `${campaignTypes.module}/${campaignTypes.actions.updateCampaignValueB}`;\n },\n get resetCampaignDetails() {\n return `${campaignTypes.module}/${campaignTypes.actions.resetCampaignDetails}`;\n },\n get getAPIcampaigns() {\n return `${campaignTypes.module}/${campaignTypes.actions.getAPIcampaigns}`;\n },\n get deleteCampaign() {\n return `${campaignTypes.module}/${campaignTypes.actions.deleteCampaign}`;\n },\n get loadCampaign() {\n return `${campaignTypes.module}/${campaignTypes.actions.loadCampaign}`;\n },\n get flushCampaign() {\n return `${campaignTypes.module}/${campaignTypes.actions.flushCampaign}`;\n },\n get saveCSV() {\n return `${campaignTypes.module}/${campaignTypes.actions.saveCSV}`;\n },\n get updateSelectedDateAndTime() {\n return `${campaignTypes.module}/${campaignTypes.actions.updateSelectedDateAndTime}`;\n },\n get setCheckDefaultCampaignSettings() {\n return `${campaignTypes.module}/${campaignTypes.actions.setCheckDefaultCampaignSettings}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const campaignAnalyticsTypes = {\n module: 'campaignAnalytics',\n getters: {\n get getLiveCustomerCount() {\n return `${campaignAnalyticsTypes.module}/getLiveCustomerCount`;\n },\n get getLiveItemCount() {\n return `${campaignAnalyticsTypes.module}/getLiveItemCount`;\n },\n get getDefaultDodoMailCampaignAnalytics() {\n return `${campaignAnalyticsTypes.module}/getDefaultDodoMailCampaignAnalytics`;\n },\n get getDefaultWebsiteCampaignAnalytics() {\n return `${campaignAnalyticsTypes.module}/getDefaultWebsiteCampaignAnalytics`;\n }\n },\n actions: {\n setLiveCustomerCount: 'SET_LIVE_CUSTOMER_COUNT',\n setLiveItemCount: 'SET_LIVE_ITEM_COUNT',\n loadDefaultCampaignAnalytics: 'LOAD_DEFAULT_CAMPAIGN_ANALYTICS'\n },\n dispatchers: {\n get setLiveCustomerCount() {\n return `${campaignAnalyticsTypes.module}/${campaignAnalyticsTypes.actions.setLiveCustomerCount}`;\n },\n get setLiveItemCount() {\n return `${campaignAnalyticsTypes.module}/${campaignAnalyticsTypes.actions.setLiveItemCount}`;\n },\n get loadDefaultCampaignAnalytics() {\n return `${campaignAnalyticsTypes.module}/${campaignAnalyticsTypes.actions.loadDefaultCampaignAnalytics}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (customerAnalyticsTypes.dispatchers.getCustomer, ...)\n */\n\nexport const customerAnalyticsTypes = {\n module: 'customerAnalytics',\n getters: {\n // Get a single customer\n get getCustomer() {\n return `${customerAnalyticsTypes.module}/getCustomer`;\n },\n get getAvgBasketPrice() {\n return `${customerAnalyticsTypes.module}/getAvgBasketPrice`;\n },\n get getAvgBasketPriceMonth() {\n return `${customerAnalyticsTypes.module}/getAvgBasketPriceMonth`;\n },\n get getVisits() {\n return `${customerAnalyticsTypes.module}/getVisits`;\n },\n get getYearSpending() {\n return `${customerAnalyticsTypes.module}/getYearSpending`;\n },\n get getFavShops() {\n return `${customerAnalyticsTypes.module}/getFavShops`;\n },\n get getCsp() {\n return `${customerAnalyticsTypes.module}/getCsp`;\n },\n get getEngagement() {\n return `${customerAnalyticsTypes.module}/getEngagement`;\n },\n get getSegments() {\n return `${customerAnalyticsTypes.module}/getSegments`;\n },\n get getTimeline() {\n return `${customerAnalyticsTypes.module}/getTimeline`;\n },\n get getRecommendations() {\n return `${customerAnalyticsTypes.module}/getRecommendations`;\n },\n\n get getFavShopsName() {\n return `${customerAnalyticsTypes.module}/getFavShopsName`;\n },\n get getCustomerDayVisits() {\n return `${customerAnalyticsTypes.module}/getCustomerDayVisits`;\n }\n },\n actions: {\n setTenantCustomer: 'SET_TENANT_CUSTOMER',\n setAvgBasketPrice: 'SET_AVERAGE_BASKET_PRICE',\n setAvgBasketPriceMonth: 'SET_AVERAGE_BASKET_PRICE_MONTH',\n setVisits: 'SET_VISITS',\n setYearSpending: 'SET_YEAR_SPENDING',\n setFavShops: 'SET_FAV_SHOPS',\n setCsp: 'SET_CSP',\n setSegments: 'SET_SEGMENTS',\n setEngagement: 'SET_ENGAGEMENT',\n setTimeline: 'SET_TIMELINE',\n setCustomerDayVisits: 'SET_CUSTOMER_DAY_VISITS',\n setRecommendations: 'SET_RECOMMENDATIONS',\n updateTenantCustomer: 'UPDATE_TENANT_CUSTOMER'\n },\n dispatchers: {\n get setRecommendations() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setRecommendations}`;\n },\n get setCustomerDayVisits() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setCustomerDayVisits}`;\n },\n get setTenantCustomer() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setTenantCustomer}`;\n },\n get setAvgBasketPrice() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setAvgBasketPrice}`;\n },\n get setAvgBasketPriceMonth() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setAvgBasketPriceMonth}`;\n },\n get setVisits() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setVisits}`;\n },\n get setYearSpending() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setYearSpending}`;\n },\n get setFavShops() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setFavShops}`;\n },\n get setCsp() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setCsp}`;\n },\n get setEngagement() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setEngagement}`;\n },\n get setTimeline() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setTimeline}`;\n },\n get setSegments() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.setSegments}`;\n },\n get updateTenantCustomer() {\n return `${customerAnalyticsTypes.module}/${customerAnalyticsTypes.actions.updateTenantCustomer}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (customerAnalyticsTypes.dispatchers.getCustomer, ...)\n */\n\nexport const dashboardAnalyticsTypes = {\n module: 'dashboardAnalytics',\n getters: {\n get getBusiness() {\n return `${dashboardAnalyticsTypes.module}/getBusiness`;\n },\n // get getSales() {\n // return `${dashboardAnalyticsTypes.module}/getSales`\n // },\n get getOutlook() {\n return `${dashboardAnalyticsTypes.module}/getOutlook`;\n },\n get getAbp() {\n return `${dashboardAnalyticsTypes.module}/getAbp`;\n },\n get getAbpm() {\n return `${dashboardAnalyticsTypes.module}/getAbpm`;\n },\n\n // get getProfit() {\n // return `${dashboardAnalyticsTypes.module}/getProfit`\n // },\n\n get getBestStores() {\n return `${dashboardAnalyticsTypes.module}/getBestStores`;\n },\n\n get getAvgVisits() {\n return `${dashboardAnalyticsTypes.module}/getAvgVisits`;\n },\n\n get getReturningCustomers() {\n return `${dashboardAnalyticsTypes.module}/getReturningCustomers`;\n },\n get getDayVisits() {\n return `${dashboardAnalyticsTypes.module}/getDayVisits`;\n },\n get getCampaigns() {\n return `${dashboardAnalyticsTypes.module}/getCampaigns`;\n }\n\n // get getChannels() {\n // return `${dashboardAnalyticsTypes.module}/getChannels`\n // }\n },\n actions: {\n //Business\n setBusiness: 'SET_BUSINESS',\n\n //Outlook\n setOutlook: 'SET_OUTLOOK',\n\n //Charts\n //setSales: 'SET_SALES',\n\n //Numbers\n setAbp: 'SET_ABP',\n setAbpm: 'SET_ABPM',\n //setProfit: 'SET_PROFIT',\n setBestStores: 'SET_BEST_STORES',\n setAvgVisits: 'SET_AVG_VISITS',\n setReturningCustomers: 'SET_RETURNING_CUSTOMERS',\n setDayVisits: 'SET_DAY_VISITS',\n setCampaigns: 'SET_CAMPAIGNS'\n //setChannels: 'SET_CHANNELS'\n },\n dispatchers: {\n get setDayVisits() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setDayVisits}`;\n },\n get setBusiness() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setBusiness}`;\n },\n get setOutlook() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setOutlook}`;\n },\n get setAbp() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setAbp}`;\n },\n get setAbpm() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setAbpm}`;\n },\n // get setProfit() {\n // return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setProfit}`\n // },\n get setBestStores() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setBestStores}`;\n },\n get setAvgVisits() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setAvgVisits}`;\n },\n get setReturningCustomers() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setReturningCustomers}`;\n },\n get setCampaigns() {\n return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setCampaigns}`;\n }\n // get setChannels() {\n // return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setChannels}`\n // },\n // get setSales() {\n // return `${dashboardAnalyticsTypes.module}/${dashboardAnalyticsTypes.actions.setSales}`\n // }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (globalTypes.dispatchers.getCustomer, ...)\n */\n\nexport const globalTypes = {\n module: 'global',\n getters: {\n // Get errors\n get getError() {\n return 'getError'; //${globalTypes.module} this time I want the module to be global and not namespaced\n },\n get getLoader() {\n return 'getLoader';\n },\n get getTenant() {\n return 'getTenant';\n },\n get getTierPermissions() {\n return 'getTierPermissions';\n },\n get getTenantOnboardingStatus() {\n return 'getTenantOnboardingStatus';\n },\n get getRolePermissions() {\n return 'getRolePermissions';\n },\n get getTierAndRolePermissionsLoaded() {\n return 'getTierAndRolePermissionsLoaded';\n }\n },\n actions: {\n saveError: 'SAVE_ERROR',\n setError: 'SET_ERROR',\n setLoading: 'SET_LOADING',\n setTenantInfo: 'SET_TENANT_INFORMATION',\n setTierPermissions: 'SET_TIER_PERMISSIONS',\n setRolePermissions: 'SET_ROLE_PERMISSIONS',\n setTenantOnboardingStatus: 'SET_TENANT_ONBOARDING_STATUS',\n setTierAndRolePermissionsLoaded: 'SET_TIER_AND_ROLE_PERMISSIONS_LOADED'\n },\n dispatchers: {\n get setError() {\n return `${globalTypes.actions.setError}`;\n },\n\n get saveError() {\n return `${globalTypes.actions.saveError}`;\n },\n\n get setLoading() {\n return `${globalTypes.actions.setLoading}`;\n },\n\n get setTenantInfo() {\n return `${globalTypes.actions.setTenantInfo}`;\n },\n get setTierPermissions() {\n return `${globalTypes.actions.setTierPermissions}`;\n },\n get setRolePermissions() {\n return `${globalTypes.actions.setRolePermissions}`;\n },\n get setTenantOnboardingStatus() {\n return `${globalTypes.actions.setTenantOnboardingStatus}`;\n },\n get setTierAndRolePermissionsLoaded() {\n return `${globalTypes.actions.setTierAndRolePermissionsLoaded}`;\n }\n }\n};\n","export const recommendationTypes = {\n module: 'recommendation',\n getters: {\n // Get all customers\n get getRecommendations() {\n return `${recommendationTypes.module}/getRecommendations`;\n },\n get getBatchTimestamps() {\n return `${recommendationTypes.module}/getBatchTimestamps`;\n },\n get getFbt() {\n return `${recommendationTypes.module}/getFbt`;\n },\n get getTemplates() {\n return `${recommendationTypes.module}/getTemplates`;\n }\n },\n actions: {\n setRecommendations: 'SET_RECOMMENDATIONS',\n rateRecommendation: 'RATE_RECOMMENDATION',\n commentRecommendation: 'COMMENT_RECOMMENDATION',\n getBatchTimeStamps: 'GET_BATCH_TIMESTAMPS',\n setFbt: 'SET_FBT',\n addTemplate: 'ADD_TEMPLATE',\n flushTemplates: 'FLUSH_TEMPLATES'\n },\n dispatchers: {\n get getBatchTimeStamps() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.getBatchTimeStamps}`;\n },\n get setFbt() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.setFbt}`;\n },\n get setRecommendations() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.setRecommendations}`;\n },\n get rateRecommendation() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.rateRecommendation}`;\n },\n get commentRecommendation() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.commentRecommendation}`;\n },\n get addTemplate() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.addTemplate}`;\n },\n get flushTemplates() {\n return `${recommendationTypes.module}/${recommendationTypes.actions.flushTemplates}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const emailTypes = {\n module: 'email',\n getters: {\n get getRenderedHtml() {\n return `${emailTypes.module}/getRenderedHtml`;\n }\n },\n actions: {\n sendEmail: 'SEND_EMAIL',\n getEmailDetails: 'GET_EMAIL_DETAILS'\n },\n dispatchers: {\n get sendEmail() {\n return `${emailTypes.module}/${emailTypes.actions.sendEmail}`;\n },\n get getEmailDetails() {\n return `${emailTypes.module}/${emailTypes.actions.getEmailDetails}`;\n }\n }\n};\n","export const segmentAnalyticsTypes = {\n module: 'segmentAnalytics',\n getters: {\n get getUsersCount() {\n return `${segmentAnalyticsTypes.module}/getUsersCount`;\n },\n get customersDayVisits() {\n return `${segmentAnalyticsTypes.module}/getCustomersDayVisits`;\n }\n },\n actions: {\n setSegmentQuery: 'SET_SEGMENT_QUERY',\n setSegmentOverview: 'SET_SEGMENT_OVERVIEW',\n setAbp: 'SET_ABP',\n setAsv: 'SET_ASV',\n setMostVisitedStores: 'SET_MOST_VISITED_STORES',\n setOtherSegments: 'SET_OTHER_SEGMENTS',\n setDemography: 'SET_DEMOGRAPHY',\n setCustomersDayVisits: 'SET_CUSTOMERS_DAY_VISITS'\n },\n dispatchers: {\n get setSegmentQuery() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setSegmentQuery}`;\n },\n get setCustomersDayVisits() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setCustomersDayVisits}`;\n },\n get setSegmentOverview() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setSegmentOverview}`;\n },\n get setAbp() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setAbp}`;\n },\n get setAsv() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setAsv}`;\n },\n get setMostVisitedStores() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setMostVisitedStores}`;\n },\n get setOtherSegments() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setOtherSegments}`;\n },\n get setDemography() {\n return `${segmentAnalyticsTypes.module}/${segmentAnalyticsTypes.actions.setDemography}`;\n }\n }\n};\n","export const templateTypes = {\n module: 'template',\n getters: {\n get getTemplates() {\n return `${templateTypes.module}/getTemplates`;\n }\n },\n actions: {\n saveTemplate: 'SAVE_TEMPLATE',\n setTemplates: 'SET_TEMPLATES',\n setTemplate: 'SET_TEMPLATE',\n setImage: 'SET_IMAGE',\n deleteTemplate: 'DELETE_TEMPLATE',\n setMergeTags: 'SET_MERGE_TAGS',\n duplicateTemplate: 'DUPLICATE_TEMPLATE'\n },\n dispatchers: {\n get deleteTemplate() {\n return `${templateTypes.module}/${templateTypes.actions.deleteTemplate}`;\n },\n get saveTemplate() {\n return `${templateTypes.module}/${templateTypes.actions.saveTemplate}`;\n },\n get setTemplates() {\n return `${templateTypes.module}/${templateTypes.actions.setTemplates}`;\n },\n get setTemplate() {\n return `${templateTypes.module}/${templateTypes.actions.setTemplate}`;\n },\n get setImage() {\n return `${templateTypes.module}/${templateTypes.actions.setImage}`;\n },\n get setMergeTags() {\n return `${templateTypes.module}/${templateTypes.actions.setMergeTags}`;\n },\n get duplicateTemplate() {\n return `${templateTypes.module}/${templateTypes.actions.duplicateTemplate}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const marketingAutomationTypes = {\n module: 'marketingAutomation',\n getters: {\n get getMarketingAutomationsDetails() {\n return `${marketingAutomationTypes.module}/getMarketingAutomationsDetails`;\n }\n },\n actions: {\n getAPIMarketingAutomationsDetails: 'GET_API_MARKETING_AUTOMATIONS',\n createMarketingAutomation: 'CREATE_MARKETING_AUTOMATION',\n deleteMarketingAutomation: 'DELETE_MARKETING_AUTOMATION',\n activateMarketingAutomation: 'ACTIVATE_MARKETING_AUTOMATION'\n },\n dispatchers: {\n get getAPIMarketingAutomationsDetails() {\n return `${marketingAutomationTypes.module}/${marketingAutomationTypes.actions.getAPIMarketingAutomationsDetails}`;\n },\n get createMarketingAutomation() {\n return `${marketingAutomationTypes.module}/${marketingAutomationTypes.actions.createMarketingAutomation}`;\n },\n get deleteMarketingAutomation() {\n return `${marketingAutomationTypes.module}/${marketingAutomationTypes.actions.deleteMarketingAutomation}`;\n },\n get activateMarketingAutomation() {\n return `${marketingAutomationTypes.module}/${marketingAutomationTypes.actions.activateMarketingAutomation}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const settingsTypes = {\n module: 'settings',\n getters: {\n get getCampaignDetails() {\n return `${settingsTypes.module}/getCampaignDetails`;\n },\n get getTenantSettings() {\n return `${settingsTypes.module}/getTenantSettings`;\n }\n },\n actions: {\n setSettings: 'setSettings', // TODO: rename as default-campaign-settings\n updateCampaignDetails: 'updateCampaignDetails',\n getTenantSettings: 'GET_TENANT_SETTINGS',\n setTenantSettings: 'SET_TENANT_SETTINGS'\n },\n dispatchers: {\n get setSettings() {\n // TODO: rename as default-campaign-settings\n return `${settingsTypes.module}/${settingsTypes.actions.setSettings}`;\n },\n get updateCampaignDetails() {\n return `${settingsTypes.module}/${settingsTypes.actions.updateCampaignDetails}`;\n },\n // web/src/store/settings/actions.js:20\n get getTenantSettings() {\n return `${settingsTypes.module}/${settingsTypes.actions.getTenantSettings}`;\n },\n // web/src/store/settings/actions.js:32\n get setTenantSettings() {\n return `${settingsTypes.module}/${settingsTypes.actions.setTenantSettings}`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (segmentTypes.dispatchers.setField, ...)\n */\n\nexport const dodoChatTypes = {\n module: 'dodoChat',\n getters: {\n get getConversations() {\n return `${dodoChatTypes.module}/getConversations`;\n },\n get getConversationMessages() {\n return `${dodoChatTypes.module}/getConversationMessages`;\n }\n },\n actions: {\n setConversations: 'SET_CONVERSATIONS',\n setConversationMessages: 'SET_CONVERSATION_MESSAGES',\n clearConversationMessages: 'CLEAR_CONVERSATION_MESSAGES',\n setConversionRatingAndComment: 'SET_CONVERSION_RATING_AND_COMMENT'\n },\n dispatchers: {\n get setConversations() {\n return `${dodoChatTypes.module}/${dodoChatTypes.actions.setConversations}`;\n },\n get setConversationMessages() {\n return `${dodoChatTypes.module}/SET_CONVERSATION_MESSAGES`;\n },\n get setConversionRatingAndComment() {\n return `${dodoChatTypes.module}/SET_CONVERSION_RATING_AND_COMMENT`;\n },\n get clearConversationMessages() {\n return `${dodoChatTypes.module}/CLEAR_CONVERSATION_MESSAGES`;\n }\n }\n};\n","/**\n * This file contains all the types for autocompletion in Vue.\n *\n *\n * CONVENTION: dispatch -> action -> mutate\n * If you want to change the state, add your methods in mutations;\n * API calls etc.. will be in file actions.\n * Normal calls, such as modifying state, shall follow the convention of actions -> mutations.\n *\n * @params getters\n * @params dispatchers\n *\n * @example\n * (customerAnalyticsTypes.dispatchers.getCustomer, ...)\n */\n\nexport const productAnalyticsTypes = {\n module: 'productAnalytics',\n getters: {\n // Get a single product\n get getProduct() {\n return `${productAnalyticsTypes.module}/getProduct`;\n },\n get getAbpp() {\n return `${productAnalyticsTypes.module}/getAbpp`;\n },\n get getSegments() {\n return `${productAnalyticsTypes.module}/getSegments`;\n },\n get getTabulateSegmentUsers() {\n return `${productAnalyticsTypes.module}/getTabulateSegmentUsers`;\n }\n },\n actions: {\n setTenantProduct: 'SET_TENANTS_PRODUCT',\n setAbpp: 'SET_ABPP',\n setSegments: 'SET_SEGMENTS',\n setTabulateSegmentUsers: 'SET_TABULATE_SEGMENT_USERS',\n flush: 'FLUSH_PRODUCT_ANALYTICS',\n updateProduct: 'UPDATE_PRODUCT'\n },\n dispatchers: {\n get setTenantProduct() {\n return `${productAnalyticsTypes.module}/${productAnalyticsTypes.actions.setTenantProduct}`;\n },\n get setAbpp() {\n return `${productAnalyticsTypes.module}/${productAnalyticsTypes.actions.setAbpp}`;\n },\n get setSegments() {\n return `${productAnalyticsTypes.module}/${productAnalyticsTypes.actions.setSegments}`;\n },\n get setTabulateSegmentUsers() {\n return `${productAnalyticsTypes.module}/${productAnalyticsTypes.actions.setTabulateSegmentUsers}`;\n },\n get flush() {\n return `${productAnalyticsTypes.module}/${productAnalyticsTypes.actions.flush}`;\n },\n // web/src/store/productAnalytics/actions.js:89\n get updateProduct() {\n return `${productAnalyticsTypes.module}/${productAnalyticsTypes.actions.updateProduct}`;\n }\n }\n};\n","export const productsTypes = {\n module: 'products',\n getters: {\n get getProducts() {\n return `${productsTypes.module}/getProducts`;\n },\n get getSold() {\n return `${productsTypes.module}/getSold`;\n },\n get getCount() {\n return `${productsTypes.module}/getCount`;\n },\n get getFields() {\n return `${productsTypes.module}/getFields`;\n },\n get getFilters() {\n return `${productsTypes.module}/getFilters`;\n },\n get getSortSelectOptions() {\n return `${productsTypes.module}/getSortSelectOptions`;\n },\n get getSearch() {\n return `${productsTypes.module}/getSearch`;\n },\n get getSearchByField() {\n return `${productsTypes.module}/getSearchByField`;\n },\n get getSortSelectOptionId() {\n return `${productsTypes.module}/getSortSelectOptionId`;\n },\n get getPageCursor() {\n return `${productsTypes.module}/getPageCursor`;\n }\n },\n actions: {\n setProducts: 'SET_PRODUCTS',\n setCategory: 'SET_CATEGORY',\n setSearch: 'SET_SEARCH',\n setSearchByField: 'SET_SEARCH_BY_FIELD',\n setSortSelectOptionId: 'SET_SORT_SELECT_OPTION_ID',\n setPageCursor: 'SET_PAGE_CURSOR',\n flush: 'FLUSH',\n setOtherFields: 'SET_OTHER_FIELDS',\n updateFilterValue: 'UPDATE_FILTER_VALUE',\n getProductDetails: 'GET_PRODUCT_DETAILS',\n syncRouter: 'SYNC_ROUTER'\n },\n dispatchers: {\n get setProducts() {\n return `${productsTypes.module}/${productsTypes.actions.setProducts}`;\n },\n get setCategory() {\n return `${productsTypes.module}/${productsTypes.actions.setCategory}`;\n },\n get setSearch() {\n return `${productsTypes.module}/${productsTypes.actions.setSearch}`;\n },\n get setSearchByField() {\n return `${productsTypes.module}/${productsTypes.actions.setSearchByField}`;\n },\n get setSortSelectOptionId() {\n return `${productsTypes.module}/${productsTypes.actions.setSortSelectOptionId}`;\n },\n get setPageCursor() {\n return `${productsTypes.module}/${productsTypes.actions.setPageCursor}`;\n },\n get flush() {\n return `${productsTypes.module}/${productsTypes.actions.flush}`;\n },\n get setOtherFields() {\n return `${productsTypes.module}/${productsTypes.actions.setOtherFields}`;\n },\n get updateFilterValue() {\n return `${productsTypes.module}/${productsTypes.actions.updateFilterValue}`;\n },\n get getProductDetails() {\n return `${productsTypes.module}/${productsTypes.actions.getProductDetails}`;\n },\n get syncRouter() {\n return `${productsTypes.module}/${productsTypes.actions.syncRouter}`;\n }\n }\n};\n","export const recommendationAnalyticsTypes = {\n module: 'recommendationAnalytics',\n getters: {\n get getBatches() {\n return `${recommendationAnalyticsTypes.module}/getBatches`;\n },\n get getRecommendationId() {\n return `${recommendationAnalyticsTypes.module}/getRecommendationId`;\n },\n get getRecommendationCoverage() {\n return `${recommendationAnalyticsTypes.module}/getRecommendationCoverage`;\n },\n get getBestSellingProducts() {\n return `${recommendationAnalyticsTypes.module}/getBestSellingProducts`;\n },\n get getTopRecommendedProducts() {\n return `${recommendationAnalyticsTypes.module}/getTopRecommendedProducts`;\n },\n get recommendationsCategories() {\n return `${recommendationAnalyticsTypes.module}/getRecommendationsCategories`;\n }\n },\n actions: {\n getBatches: 'GET_BATCHES',\n getRecommendationId: 'GET_RECOMMENDATION_ID',\n getRecommendationCoverage: 'GET_RECOMMENDATION_COVERAGE',\n getBestSellingProducts: 'GET_BEST_SELLING_PRODUCTS',\n getTopRecommendedProducts: 'GET_TOP_RECOMMENDED_PRODUCTS',\n getRecommendationsCategories: 'GET_RECOMMENDATIONS_CATEGORIES',\n\n setRecommendationId: 'SET_RECOMMENDATION_ID'\n },\n dispatchers: {\n get getBatches() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.getBatches}`;\n },\n get getRecommendationId() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.getRecommendationId}`;\n },\n get getRecommendationCoverage() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.getRecommendationCoverage}`;\n },\n get getBestSellingProducts() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.getBestSellingProducts}`;\n },\n get getTopRecommendedProducts() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.getTopRecommendedProducts}`;\n },\n get getRecommendationsCategories() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.getRecommendationsCategories}`;\n },\n get setRecommendationId() {\n return `${recommendationAnalyticsTypes.module}/${recommendationAnalyticsTypes.actions.setRecommendationId}`;\n }\n }\n};\n","export const s3Types = {\n module: 's3',\n getters: {\n get getPresignedURL() {\n return `${s3Types.module}/getPresignedURL`;\n },\n get getFileS3ObjectUrl() {\n return `${s3Types.module}/getFileS3ObjectUrl`;\n }\n },\n actions: {\n getPresignedURL: 'GET_PRESIGNED_URL',\n putFileS3: 'PUT_FILE_S3',\n getFileS3ObjectUrl: 'GET_FILE_S3_OBJECT_URL'\n },\n dispatchers: {\n get getPresignedURL() {\n return `${s3Types.module}/${s3Types.actions.getPresignedURL}`;\n },\n get putFileS3() {\n return `${s3Types.module}/${s3Types.actions.putFileS3}`;\n },\n get getFileS3ObjectUrl() {\n return `${s3Types.module}/GET_FILE_S3_OBJECT_URL`;\n }\n }\n};\n","export const segmentTypes = {\n module: 'segment',\n getters: {\n get getSqlQuery() {\n return `${segmentTypes.module}/getSqlQuery`;\n },\n get getSqlWithHeaders() {\n return `${segmentTypes.module}/getSqlWithHeaders`;\n },\n get getTempValue() {\n return `${segmentTypes.module}/getTempValue`;\n },\n get getFrequencyCheck() {\n return `${segmentTypes.module}/getFrequencyCheck`;\n },\n get getRecencyCheck() {\n return `${segmentTypes.module}/getRecencyCheck`;\n },\n get getSegmentOperator() {\n return `${segmentTypes.module}/getSegmentOperator`;\n },\n get getGroups() {\n return `${segmentTypes.module}/getGroups`;\n },\n get getFields() {\n return `${segmentTypes.module}/getFields`;\n },\n get getConditions() {\n return `${segmentTypes.module}/getConditions`;\n },\n get getIsEditing() {\n return `${segmentTypes.module}/getIsEditing`;\n },\n get getCurrentlyEditing() {\n return `${segmentTypes.module}/getCurrentlyEditing`;\n },\n get getSegments() {\n return `${segmentTypes.module}/getSegments`;\n },\n get getStatus() {\n return `${segmentTypes.module}/getStatus`;\n },\n get getSelects() {\n return `${segmentTypes.module}/getSelects`;\n },\n get getCurrentGroup() {\n return `${segmentTypes.module}/getCurrentGroup`;\n },\n get getCurrentTable() {\n return `${segmentTypes.module}/getCurrentTable`;\n },\n get getGeneralInformation() {\n return `${segmentTypes.module}/getGeneralInformation`;\n },\n get getSegmentName() {\n return `${segmentTypes.module}/getSegmentName`;\n },\n get getDescription() {\n return `${segmentTypes.module}/getDescription`;\n },\n get getSegmentInfo() {\n return `${segmentTypes.module}/getSegmentInfo`;\n },\n get getCount() {\n return `${segmentTypes.module}/getCount`;\n },\n get getBestSellersWinning() {\n return `${segmentTypes.module}/getBestSellersWinning`;\n },\n get getBestSellersLosing() {\n return `${segmentTypes.module}/getBestSellersLosing`;\n }\n },\n actions: {\n setGroup: 'SET_GROUP',\n unsetGroup: 'UNSET_GROUP',\n setGroupOperator: 'SET_GROUP_OPERATOR',\n setField: 'SET_FIELD',\n unsetField: 'UNSET_FIELD',\n setSegmentOperator: 'SET_SEGMENT_OPERATOR',\n setSegment: 'SET_SEGMENT',\n setNegation: 'SET_NEGATION',\n setGroupEditMode: 'SET_GROUP_EDIT_MODE',\n setGroupConditions: 'SET_GROUP_CONDITIONS',\n setCurrentlyEditing: 'TOGGLE_IS_EDITING',\n resetEditing: 'RESET_EDITING',\n loadSegment: 'LOAD_SEGMENT',\n populateFields: 'POPULATE_FIELDS',\n getSegments: 'GET_SEGMENTS',\n // deleteSegment: 'DELETE_SEGMENT',\n flushSegment: 'FLUSH_SEGMENT',\n getCampaignSegments: 'GET_CAMPAIGN_SEGMENTS',\n populateValues: 'POPULATE_VALUES',\n populateOtherFields: 'POPULATE_OTHER_FIELDS',\n setParams: 'SET_PARAMS',\n setMonth: 'SET_MONTH',\n setCustomersCount: 'SET_CUSTOMERS_COUNT',\n setBestSellersWinning: 'SET_BEST_SELLERS_WINNING',\n setBestSellersLosing: 'SET_BEST_SELLERS_LOSING',\n setFrequencyCheck: 'SET_FREQUENCY_CHECK',\n setRecencyCheck: 'SET_RECENCY_CHECK',\n loadFormattedSegment: 'LOAD_FORMATTED_SEGMENT',\n setSegmentChoice: 'SET_SEGMENT_CHOICE',\n // Segment analytics\n setUsersCount: 'SET_USERS_COUNT',\n setAbp: 'SET_ABP',\n setAsv: 'SET_ASV',\n setMostVisitedStores: 'SET_MOST_VISITED_STORES',\n setOtherSegments: 'SET_OTHER_SEGMENTS',\n setDemography: 'SET_DEMOGRAPHY',\n // end\n setTempValue: 'SET_TEMP_VALUE',\n setGroupValue: 'SET_GROUP_VALUE',\n setSegmentStatus: 'SET_SEGMENT_STATUS',\n rePopulateSegment: 'RE_POPULATE_SEGMENT'\n },\n dispatchers: {\n get setGroupValue() {\n return `${segmentTypes.module}/${segmentTypes.actions.setGroupValue}`;\n },\n get loadFormattedSegment() {\n return `${segmentTypes.module}/${segmentTypes.actions.loadFormattedSegment}`;\n },\n get setFrequencyCheck() {\n return `${segmentTypes.module}/${segmentTypes.actions.setFrequencyCheck}`;\n },\n get setRecencyCheck() {\n return `${segmentTypes.module}/${segmentTypes.actions.setRecencyCheck}`;\n },\n get setParams() {\n return `${segmentTypes.module}/${segmentTypes.actions.setParams}`;\n },\n get setCustomersCount() {\n return `${segmentTypes.module}/${segmentTypes.actions.setCustomersCount}`;\n },\n get setBestSellersWinning() {\n return `${segmentTypes.module}/${segmentTypes.actions.setBestSellersWinning}`;\n },\n get setBestSellersLosing() {\n return `${segmentTypes.module}/${segmentTypes.actions.setBestSellersLosing}`;\n },\n get setMonth() {\n return `${segmentTypes.module}/${segmentTypes.actions.setMonth}`;\n },\n get setGroup() {\n return `${segmentTypes.module}/${segmentTypes.actions.setGroup}`;\n },\n get unsetGroup() {\n return `${segmentTypes.module}/${segmentTypes.actions.unsetGroup}`;\n },\n get setGroupOperator() {\n return `${segmentTypes.module}/${segmentTypes.actions.setGroupOperator}`;\n },\n get setField() {\n return `${segmentTypes.module}/${segmentTypes.actions.setField}`;\n },\n get unsetField() {\n return `${segmentTypes.module}/${segmentTypes.actions.unsetField}`;\n },\n get setSegmentOperator() {\n return `${segmentTypes.module}/${segmentTypes.actions.setSegmentOperator}`;\n },\n get setSegment() {\n return `${segmentTypes.module}/${segmentTypes.actions.setSegment}`;\n },\n get setNegation() {\n return `${segmentTypes.module}/${segmentTypes.actions.setNegation}`;\n },\n get setGroupEditMode() {\n return `${segmentTypes.module}/${segmentTypes.actions.setGroupEditMode}`;\n },\n get setGroupConditions() {\n return `${segmentTypes.module}/${segmentTypes.actions.setGroupConditions}`;\n },\n get setCurrentlyEditing() {\n return `${segmentTypes.module}/${segmentTypes.actions.setCurrentlyEditing}`;\n },\n get resetEditing() {\n return `${segmentTypes.module}/${segmentTypes.actions.resetEditing}`;\n },\n get loadSegment() {\n return `${segmentTypes.module}/${segmentTypes.actions.loadSegment}`;\n },\n get populateFields() {\n return `${segmentTypes.module}/${segmentTypes.actions.populateFields}`;\n },\n get getSegments() {\n return `${segmentTypes.module}/${segmentTypes.actions.getSegments}`;\n },\n // get deleteSegment() {\n // return `${segmentTypes.module}/${segmentTypes.actions.deleteSegment}`;\n // },\n get flushSegment() {\n return `${segmentTypes.module}/${segmentTypes.actions.flushSegment}`;\n },\n get getCampaignSegments() {\n return `${segmentTypes.module}/${segmentTypes.actions.getCampaignSegments}`;\n },\n get populateValues() {\n return `${segmentTypes.module}/${segmentTypes.actions.populateValues}`;\n },\n get populateOtherFields() {\n return `${segmentTypes.module}/${segmentTypes.actions.populateOtherFields}`;\n },\n get setSegmentChoice() {\n return `${segmentTypes.module}/${segmentTypes.actions.setSegmentChoice}`;\n },\n get setUsersCount() {\n return `${segmentTypes.module}/${segmentTypes.actions.setUsersCount}`;\n },\n get setAbp() {\n return `${segmentTypes.module}/${segmentTypes.actions.setAbp}`;\n },\n get setAsv() {\n return `${segmentTypes.module}/${segmentTypes.actions.setAsv}`;\n },\n get setMostVisitedStores() {\n return `${segmentTypes.module}/${segmentTypes.actions.setMostVisitedStores}`;\n },\n get setOtherSegments() {\n return `${segmentTypes.module}/${segmentTypes.actions.setOtherSegments}`;\n },\n get setDemography() {\n return `${segmentTypes.module}/${segmentTypes.actions.setDemography}`;\n },\n get setTempValue() {\n return `${segmentTypes.module}/${segmentTypes.actions.setTempValue}`;\n },\n get setSegmentStatus() {\n return `${segmentTypes.module}/${segmentTypes.actions.setSegmentStatus}`;\n },\n get rePopulateSegment() {\n return `${segmentTypes.module}/${segmentTypes.actions.rePopulateSegment}`;\n }\n }\n};\n","export const tenantTypes = {\n module: 'tenant',\n getters: {\n get getTenant() {\n return `${tenantTypes.module}/getTenant`;\n },\n get getMetaParam() {\n return `${tenantTypes.module}/getMetaParam`;\n }\n },\n actions: {\n getTenant: 'GET_TENANT',\n getMetaParam: 'GET_META_PARAM',\n setMetaParam: 'SET_META_PARAM',\n setMailingSyncCredentials: 'SET_MAILING_SYNC_CREDENTIALS',\n setMailingSyncCredential: 'SET_MAILING_SYNC_CREDENTIAL'\n },\n dispatchers: {\n get setMailingSyncCredential() {\n return `${tenantTypes.module}/${tenantTypes.actions.setMailingSyncCredential}`;\n },\n get setMailingSyncCredentials() {\n return `${tenantTypes.module}/${tenantTypes.actions.setMailingSyncCredentials}`;\n },\n get getTenant() {\n return `${tenantTypes.module}/${tenantTypes.actions.getTenant}`;\n },\n get getMetaParam() {\n return `${tenantTypes.module}/${tenantTypes.actions.getMetaParam}`;\n },\n get setMetaParam() {\n return `${tenantTypes.module}/${tenantTypes.actions.setMetaParam}`;\n }\n }\n};\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"notifications\"},[_c('transition-group',{attrs:{\"name\":_vm.transitionName,\"mode\":_vm.transitionMode}},_vm._l((_vm.notifications),function(notification){return _c('notification',_vm._b({key:notification.timestamp.getTime(),attrs:{\"click-handler\":notification.onClick},on:{\"close\":_vm.removeNotification}},'notification',notification,false))}),1)],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/* eslint-disable */\nimport 'es6-promise/auto';\n\nexport default (function initPollyFills() {\n if (!Array.prototype.find) {\n Object.defineProperty(Array.prototype, 'find', {\n value: function (predicate) {\n // 1. Let O be ? ToObject(this value).\n if (this == null) {\n throw new TypeError('\"this\" is null or not defined');\n }\n\n var o = Object(this);\n\n // 2. Let len be ? ToLength(? Get(O, \"length\")).\n var len = o.length >>> 0;\n\n // 3. If IsCallable(predicate) is false, throw a TypeError exception.\n if (typeof predicate !== 'function') {\n throw new TypeError('predicate must be a function');\n }\n\n // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.\n var thisArg = arguments[1];\n\n // 5. Let k be 0.\n var k = 0;\n\n // 6. Repeat, while k < len\n while (k < len) {\n // a. Let Pk be ! ToString(k).\n // b. Let kValue be ? Get(O, Pk).\n // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).\n // d. If testResult is true, return kValue.\n var kValue = o[k];\n if (predicate.call(thisArg, kValue, k, o)) {\n return kValue;\n }\n // e. Increase k by 1.\n k++;\n }\n\n // 7. Return undefined.\n return undefined;\n }\n });\n }\n if (typeof Object.assign !== 'function') {\n // Must be writable: true, enumerable: false, configurable: true\n Object.defineProperty(Object, 'assign', {\n value: function assign(target, varArgs) {\n // .length of function is 2\n 'use strict';\n if (target == null) {\n // TypeError if undefined or null\n throw new TypeError('Cannot convert undefined or null to object');\n }\n\n var to = Object(target);\n\n for (var index = 1; index < arguments.length; index++) {\n var nextSource = arguments[index];\n\n if (nextSource != null) {\n // Skip over if undefined or null\n for (var nextKey in nextSource) {\n // Avoid bugs when hasOwnProperty is shadowed\n if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {\n to[nextKey] = nextSource[nextKey];\n }\n }\n }\n }\n return to;\n },\n writable: true,\n configurable: true\n });\n }\n if (!String.prototype.startsWith) {\n String.prototype.startsWith = function (search, pos) {\n return this.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;\n };\n }\n if (!String.prototype.includes) {\n String.prototype.includes = function (search, start) {\n 'use strict';\n if (typeof start !== 'number') {\n start = 0;\n }\n\n if (start + search.length > this.length) {\n return false;\n } else {\n return this.indexOf(search, start) !== -1;\n }\n };\n }\n})();\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"alert open\",class:[{ 'alert-with-icon': _vm.icon }, _vm.verticalAlign, _vm.horizontalAlign, _vm.alertType],style:(_vm.customPosition),attrs:{\"data-notify\":\"container\",\"role\":\"alert\",\"data-notify-position\":\"top-center\"},on:{\"click\":_vm.tryClose}},[(_vm.showClose)?_c('button',{staticClass:\"close col-xs-1\",attrs:{\"type\":\"button\",\"aria-hidden\":\"true\",\"data-notify\":\"dismiss\"},on:{\"click\":_vm.close}},[_c('i',{staticClass:\"tim-icons icon-simple-remove\"})]):_vm._e(),(_vm.icon)?_c('span',{class:['alert-icon', _vm.icon],attrs:{\"data-notify\":\"icon\"}}):_vm._e(),_c('span',{attrs:{\"data-notify\":\"message\"}},[(_vm.title)?_c('span',{staticClass:\"title\"},[_c('b',[_vm._v(_vm._s(_vm.title)),_c('br')])]):_vm._e(),(_vm.message)?_c('span',{domProps:{\"innerHTML\":_vm._s(_vm.message)}}):_vm._e(),(!_vm.message && _vm.component)?_c('content-render',{attrs:{\"component\":_vm.component}}):_vm._e()],1),(this.type == 'danger')?_c('el-button',{staticClass:\"mt-2 support-btn\",attrs:{\"type\":\"secondary\"},on:{\"click\":function($event){return _vm.sendEmail()}}},[_vm._v(\"Email our support team\")]):_vm._e()],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n
\n \n\n \n \n {{ title }} \n \n \n \n Email our support team\n
\n\n\n\n","import mod from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Notification.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Notification.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Notification.vue?vue&type=template&id=564d560c\"\nimport script from \"./Notification.vue?vue&type=script&lang=js\"\nexport * from \"./Notification.vue?vue&type=script&lang=js\"\nimport style0 from \"./Notification.vue?vue&type=style&index=0&id=564d560c&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","\n
\n \n \n \n
\n\n\n\n","import mod from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./Notifications.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./Notifications.vue?vue&type=template&id=05e878d8\"\nimport script from \"./Notifications.vue?vue&type=script&lang=js\"\nexport * from \"./Notifications.vue?vue&type=script&lang=js\"\nimport style0 from \"./Notifications.vue?vue&type=style&index=0&id=05e878d8&prod&lang=scss\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import Notifications from './Notifications.vue';\n\nconst NotificationStore = {\n state: [], // here the notifications will be added\n settings: {\n overlap: false,\n verticalAlign: 'top',\n horizontalAlign: 'right',\n type: 'info',\n timeout: 5000,\n closeOnClick: false,\n showClose: true,\n order: 'reverse' // normal | reverse (When reverse, each notification will be added on top)\n },\n setOptions(options) {\n this.settings = Object.assign(this.settings, options);\n },\n removeNotification(timestamp) {\n const indexToDelete = this.state.findIndex(n => n.timestamp === timestamp);\n if (indexToDelete !== -1) {\n this.state.splice(indexToDelete, 1);\n }\n },\n addNotification(notification) {\n if (typeof notification === 'string' || notification instanceof String) {\n notification = { message: notification };\n }\n notification.timestamp = new Date();\n notification.timestamp.setMilliseconds(notification.timestamp.getMilliseconds() + this.state.length);\n notification = Object.assign({}, this.settings, notification);\n if (this.settings.order === 'reverse') {\n this.state.unshift(notification);\n } else {\n this.state.push(notification);\n }\n },\n notify(notification) {\n if (Array.isArray(notification)) {\n notification.forEach(notificationInstance => {\n this.addNotification(notificationInstance);\n });\n } else {\n this.addNotification(notification);\n }\n }\n};\n\nconst NotificationsPlugin = {\n install(Vue, options) {\n let app = new Vue({\n data: {\n notificationStore: NotificationStore\n },\n methods: {\n notify(notification) {\n this.notificationStore.notify(notification);\n }\n }\n });\n Vue.prototype.$notify = app.notify;\n Vue.prototype.$notifications = app.notificationStore;\n Vue.component('notifications-component', Notifications);\n if (options) {\n NotificationStore.setOptions(options);\n }\n }\n};\n\nexport default NotificationsPlugin;\n","import BaseInput from '../components/Inputs/BaseInput.vue';\nimport BaseDropdown from '../components/BaseDropdown.vue';\nimport Card from '../components/Cards/Card.vue';\nimport BaseButton from '../components/BaseButton.vue';\nimport BaseCheckbox from '../components/Inputs/BaseCheckbox.vue';\nimport { Input, InputNumber, Tooltip, Popover } from 'element-ui';\n/**\n * You can register global components here and use them as a plugin in your main Vue instance\n */\n\nconst GlobalComponents = {\n install(Vue) {\n Vue.component(BaseInput.name, BaseInput);\n Vue.component(BaseDropdown.name, BaseDropdown);\n Vue.component(Card.name, Card);\n Vue.component(BaseCheckbox.name, BaseCheckbox);\n Vue.component(BaseButton.name, BaseButton);\n Vue.component(Input.name, Input);\n Vue.component(InputNumber.name, InputNumber);\n Vue.use(Tooltip);\n Vue.use(Popover);\n }\n};\n\nexport default GlobalComponents;\n","export default {\n bind: function (el, binding, vnode) {\n el.clickOutsideEvent = function (event) {\n // here I check that click was outside the el and his childrens\n if (!(el == event.target || el.contains(event.target))) {\n // and if it did, call method provided in attribute value\n vnode.context[binding.expression](event);\n }\n };\n document.body.addEventListener('click', el.clickOutsideEvent);\n },\n unbind: function (el) {\n document.body.removeEventListener('click', el.clickOutsideEvent);\n }\n};\n","import clickOutside from '../directives/click-ouside';\n\n/**\n * You can register global directives here and use them as a plugin in your main Vue instance\n */\n\nconst GlobalDirectives = {\n install(Vue) {\n Vue.directive('click-outside', clickOutside);\n }\n};\n\nexport default GlobalDirectives;\n","// Polyfills for js features used in the Dashboard but not supported in some browsers (mainly IE)\nimport '../polyfills';\n// Notifications plugin. Used on Notifications page\nimport Notifications from '../components/NotificationPlugin';\n// Validation plugin used to validate forms\nimport * as VeeValidate from 'vee-validate';\n// A plugin file where you could register global components used across the app\nimport GlobalComponents from './globalComponents';\n// A plugin file where you could register global directives\nimport GlobalDirectives from './globalDirectives';\n// Sidebar on the right. Used as a local plugin in DashboardLayout.vue\nimport SideBar from '../components/SidebarPlugin';\n\n// element ui language configuration\nimport lang from 'element-ui/lib/locale/lang/en';\nimport locale from 'element-ui/lib/locale';\nlocale.use(lang);\n\n// asset imports\nimport '../assets/sass/black-dashboard-pro.scss';\nimport '../assets/css/nucleo-icons.css';\nimport '../assets/css/demo.css';\n\nexport default {\n install(Vue) {\n Vue.use(GlobalComponents);\n Vue.use(GlobalDirectives);\n Vue.use(SideBar);\n Vue.use(Notifications);\n Vue.use(VeeValidate, { fieldsBagName: 'veeFields' });\n }\n};\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('notifications'),(_vm.updateExists)?_c('div',[_c('div',{staticClass:\"text-center update-container\",attrs:{\"bottom\":\"\",\"right\":\"\",\"color\":\"primary\"}},[_vm._v(\" An update is available \"),_c('button',{staticClass:\"btn btn-default\",on:{\"click\":_vm.refreshApp}},[_c('i',{staticClass:\"zmdi zmdi-refresh\"}),_vm._v(\" Click to update!\")])])]):_c('div',[(_vm.isAuthenticated)?_c('div',[_c('router-view')],1):_c('div',[(this.routePathName === '/sign-up')?_c('SignUpFormComp'):(this.routePathName === '/forgot-password')?_c('ForgotPasswordFormComp'):(this.routePathName === '/callback')?_c('CallbackComp'):_c('LoginFormComp',{attrs:{\"isLoading\":_vm.isLoading},on:{\"login\":_vm.submit}})],1)])],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","// src/mixins/update.js\n\nexport default {\n data() {\n return {\n // refresh variables\n refreshing: false,\n registration: null,\n updateExists: false\n };\n },\n\n created() {\n // Listen for our custom event from the SW registration\n document.addEventListener('swUpdated', this.updateAvailable, {\n once: true\n });\n\n // Prevent multiple refreshes\n if (navigator.serviceWorker) {\n navigator.serviceWorker.addEventListener('controllerchange', () => {\n if (this.refreshing) return;\n this.refreshing = true;\n console.log('[INFO] Refreshing the page');\n // Here the actual reload of the page occurs\n window.location.reload(true);\n });\n }\n },\n\n methods: {\n // Store the SW registration so we can send it a message\n // We use `updateExists` to control whatever alert, toast, dialog, etc we want to use\n // To alert the user there is an update they need to refresh for\n updateAvailable(event) {\n this.registration = event.detail;\n this.updateExists = true;\n },\n\n // Called when the user accepts the update\n refreshApp() {\n this.updateExists = false;\n // Make sure we only send a 'skip waiting' message if the SW is waiting\n if (!this.registration || !this.registration.waiting) return;\n // send message to SW to skip the waiting and activate the new SW\n console.log('[INFO] Posting the SKIP_WAITING event');\n this.registration.waiting.postMessage({ type: 'SKIP_WAITING' });\n }\n }\n};\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"vh-100 vw-100 auth-purple-glow-background\"},[_c('div',{staticClass:\"container h-100\"},[_c('div',{staticClass:\"d-flex align-items-center justify-content-center w-100 h-100\"},[_c('ValidationObserver',{staticClass:\"auth-form\",scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar handleSubmit = ref.handleSubmit;\nreturn [_c('form',{on:{\"submit\":function($event){$event.preventDefault();return handleSubmit(_vm.submit)}}},[_c('card',{staticClass:\"card-login card-white p-3\"},[_c('template',{slot:\"header\"},[_c('h1',{staticClass:\"card-title font-weight-bold\"},[_vm._v(\"Sign in with your account\")])]),_c('div',[_c('ValidationProvider',{attrs:{\"name\":\"email\",\"rules\":\"required|email\"},scopedSlots:_vm._u([{key:\"default\",fn:function(ref){\nvar passed = ref.passed;\nvar failed = ref.failed;\nvar errors = ref.errors;\nreturn [_c('label',{attrs:{\"for\":\"email\"}},[_vm._v(\"Email\")]),_c('base-input',{class:[{ 'has-success': passed }, { 'has-danger': failed }],attrs:{\"id\":\"signin-email-input\",\"required\":\"\",\"type\":\"email\",\"placeholder\":\"Email\",\"error\":errors[0]},model:{value:(_vm.email),callback:function ($$v) {_vm.email=$$v},expression:\"email\"}})]}}],null,true)}),_c('PasswordInput',{attrs:{\"name\":\"signin-password-input\",\"label\":\"Password\",\"placeholder\":\"Password\",\"rules\":\"required\"},model:{value:(_vm.password),callback:function ($$v) {_vm.password=$$v},expression:\"password\"}}),_c('base-button',{staticClass:\"auth-submit-button\",attrs:{\"native-type\":\"submit\",\"size\":\"lg\",\"block\":\"\",\"disabled\":_vm.isLoading}},[(!_vm.isLoading)?_c('span',[_vm._v(\"Sign In\")]):_c('i',{staticClass:\"fa fa-spinner fa-spin\"})]),_c('ExternalIdentityProvider',{attrs:{\"action\":'signIn'}})],1),_c('FormFooter',{attrs:{\"leftSide\":'Sign Up',\"rightSide\":'Forgot Password'}})],2)],1)]}}])})],1)])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"d-flex flex-column w-100 align-items-center\"},[_c('p',{staticClass:\"font-weight-bold\"},[_vm._v(\"or\")]),_c('button',{staticClass:\"bsk-btn bsk-btn-default w-100 my-2\",on:{\"click\":function($event){$event.preventDefault();return _vm.entra_login.apply(null, arguments)}}},[_c('i',{staticClass:\"fab fa-microsoft\"}),_vm._v(\" Sign \"+_vm._s(_vm.isSignUp ? 'up' : 'in')+\" with Microsoft \")]),_c('button',{staticClass:\"bsk-btn bsk-btn-default w-100 my-2 disabled\",attrs:{\"disabled\":\"\"}},[_c('i',{staticClass:\"fab fa-google\"}),_vm._v(\" Sign \"+_vm._s(_vm.isSignUp ? 'up' : 'in')+\" with Google \")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n
\n
or
\n \n \n
\n\n\n\n","import mod from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./ExternalIdentityProvider.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../node_modules/thread-loader/dist/cjs.js!../../../node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!../../../node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./ExternalIdentityProvider.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./ExternalIdentityProvider.vue?vue&type=template&id=7a78c448&scoped=true\"\nimport script from \"./ExternalIdentityProvider.vue?vue&type=script&lang=js\"\nexport * from \"./ExternalIdentityProvider.vue?vue&type=script&lang=js\"\nimport style0 from \"./ExternalIdentityProvider.vue?vue&type=style&index=0&id=7a78c448&prod&scoped=true&lang=css\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"7a78c448\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"mt-4\",attrs:{\"slot\":\"footer\"},slot:\"footer\"},[_c('div',{staticClass:\"d-flex justify-content-between align-items-center\"},[(_vm.leftLink)?_c('h6',[_c('a',{staticClass:\"link footer-link font-weight-bold\",attrs:{\"href\":_vm.origin + _vm.leftLink.url}},[_vm._v(\" \"+_vm._s(_vm.leftLink.text)+\" \")])]):_vm._e(),(_vm.rightLink)?_c('h6',[_c('a',{staticClass:\"link footer-link font-weight-bold\",attrs:{\"href\":_vm.origin + _vm.rightLink.url}},[_vm._v(\" \"+_vm._s(_vm.rightLink.text)+\" \")])]):_vm._e()])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n