UNPKG

@shopgate/engage

Version:
7 lines 564 B
import{APP_RATING_RESET_ORDERS_PLACED_COUNT,APP_RATING_INCREASE_ORDERS_PLACED_COUNT}from"../constants";/** * Increment the orders placed count * @return {Object} The dispatched action object. */export var increaseOrdersPlacedCount=function increaseOrdersPlacedCount(){return{type:APP_RATING_INCREASE_ORDERS_PLACED_COUNT};};/** * Reset the orders placed count, and increment reset counts * @return {Object} The dispatched action object. */export var resetOrdersPlacedCount=function resetOrdersPlacedCount(){return{type:APP_RATING_RESET_ORDERS_PLACED_COUNT};};