autoql-fe-utils 1.0.43 → 1.0.44

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.
@@ -15539,10 +15539,10 @@
15539
15539
  let endDate = new Date(endDateStr);
15540
15540
  endDate.setHours(23, 59, 59, 999);
15541
15541
  if (isStartDateUnbounded) {
15542
- startDate = null;
15542
+ startDate = void 0;
15543
15543
  }
15544
15544
  if (isEndDateUnbounded) {
15545
- endDate = null;
15545
+ endDate = void 0;
15546
15546
  }
15547
15547
  return { startDate, endDate };
15548
15548
  };