@yuuvis/client-core 2.3.28 → 2.3.29

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.
@@ -4956,9 +4956,9 @@ class SearchUtils {
4956
4956
  break;
4957
4957
  }
4958
4958
  }
4959
- const startString = start.toISOString().split('T')[0] + 'T00:00:00.000Z';
4959
+ const startString = start?.toISOString().split('T')[0] + Utils.DEFAULT_RANGE_TIME_V1;
4960
4960
  start = new Date(startString);
4961
- const endString = end.toISOString().split('T')[0] + 'T23:59:59.999Z';
4961
+ const endString = end?.toISOString().split('T')[0] + Utils.DEFAULT_RANGE_TIME_V2;
4962
4962
  end = new Date(endString);
4963
4963
  return { start, end };
4964
4964
  }