s3db.js 11.0.3 → 11.0.4

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/s3db.cjs.js CHANGED
@@ -6185,7 +6185,7 @@ async function rollupPeriod(period, cohort, sourcePrefix, analyticsResource, con
6185
6185
  } else if (period === "week") {
6186
6186
  sourcePeriod = "day";
6187
6187
  } else if (period === "month") {
6188
- sourcePeriod = "week";
6188
+ sourcePeriod = "day";
6189
6189
  } else {
6190
6190
  sourcePeriod = "day";
6191
6191
  }
@@ -13192,7 +13192,7 @@ class Database extends EventEmitter {
13192
13192
  this.id = idGenerator(7);
13193
13193
  this.version = "1";
13194
13194
  this.s3dbVersion = (() => {
13195
- const [ok, err, version] = tryFn(() => true ? "11.0.3" : "latest");
13195
+ const [ok, err, version] = tryFn(() => true ? "11.0.4" : "latest");
13196
13196
  return ok ? version : "latest";
13197
13197
  })();
13198
13198
  this.resources = {};