@timardex/cluemart-shared 1.6.1 → 1.6.11

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.
@@ -659,9 +659,16 @@ function filterEventsByDateStatusPeriod(events, period) {
659
659
  // src/calendar/eventCalendar.ts
660
660
  var import_dayjs2 = __toESM(require("dayjs"));
661
661
  var KNOWN_EVENT_SCHEDULE_STATUSES = /* @__PURE__ */ new Set([
662
- "Started" /* STARTED */,
663
662
  "Starting_Soon" /* STARTING_SOON */,
664
- "Ended" /* ENDED */
663
+ "Started" /* STARTED */,
664
+ "Today" /* TODAY */,
665
+ "Tomorrow" /* TOMORROW */,
666
+ "This_Week" /* THIS_WEEK */,
667
+ "Next_Week" /* NEXT_WEEK */,
668
+ "Upcoming" /* UPCOMING */,
669
+ "Ended" /* ENDED */,
670
+ "Rescheduled" /* RE_SCHEDULED */,
671
+ "Canceled" /* CANCELED */
665
672
  ]);
666
673
  function toCalendarIsoDate(startDate) {
667
674
  const formatted = (0, import_dayjs2.default)(startDate, dateFormat).format("YYYY-MM-DD");