hydrousdb 3.5.0 → 3.5.1

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.
package/dist/index.cjs CHANGED
@@ -561,6 +561,7 @@ function buildQueryParams(options = {}) {
561
561
  if (options.fields !== void 0) params.set("fields", options.fields);
562
562
  if (options.startAfter !== void 0) params.set("cursor", options.startAfter);
563
563
  if (options.startAt !== void 0) params.set("cursor", options.startAt);
564
+ if (options.timeScope !== void 0) params.set("timeScope", options.timeScope);
564
565
  if (options.dateRange?.start !== void 0)
565
566
  params.set("startDate", new Date(options.dateRange.start).toISOString().split("T")[0]);
566
567
  if (options.dateRange?.end !== void 0)