@514labs/moose-lib 0.6.297-ci-30-g6530526d → 0.6.297-ci-32-g6119ebc8

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.
@@ -1993,7 +1993,7 @@ var init_internal = __esm({
1993
1993
  workflows: /* @__PURE__ */ new Map(),
1994
1994
  webApps: /* @__PURE__ */ new Map(),
1995
1995
  materializedViews: /* @__PURE__ */ new Map(),
1996
- customViews: /* @__PURE__ */ new Map()
1996
+ views: /* @__PURE__ */ new Map()
1997
1997
  };
1998
1998
  defaultRetentionPeriod = 60 * 60 * 24 * 7;
1999
1999
  toInfraMap = (registry) => {
@@ -2005,7 +2005,7 @@ var init_internal = __esm({
2005
2005
  const workflows = {};
2006
2006
  const webApps = {};
2007
2007
  const materializedViews = {};
2008
- const customViews = {};
2008
+ const views = {};
2009
2009
  registry.tables.forEach((table) => {
2010
2010
  const id = table.config.version ? `${table.name}_${table.config.version}` : table.name;
2011
2011
  let metadata = table.metadata;
@@ -2206,8 +2206,8 @@ var init_internal = __esm({
2206
2206
  metadata: mv.metadata
2207
2207
  };
2208
2208
  });
2209
- registry.customViews.forEach((view) => {
2210
- customViews[view.name] = {
2209
+ registry.views.forEach((view) => {
2210
+ views[view.name] = {
2211
2211
  name: view.name,
2212
2212
  selectSql: view.selectSql,
2213
2213
  sourceTables: view.sourceTables,
@@ -2223,7 +2223,7 @@ var init_internal = __esm({
2223
2223
  workflows,
2224
2224
  webApps,
2225
2225
  materializedViews,
2226
- customViews
2226
+ views
2227
2227
  };
2228
2228
  };
2229
2229
  getMooseInternal = () => globalThis.moose_internal;
@@ -2248,7 +2248,7 @@ var init_internal = __esm({
2248
2248
  registry.workflows.clear();
2249
2249
  registry.webApps.clear();
2250
2250
  registry.materializedViews.clear();
2251
- registry.customViews.clear();
2251
+ registry.views.clear();
2252
2252
  const appDir = `${import_process.default.cwd()}/${getSourceDir()}`;
2253
2253
  Object.keys(require.cache).forEach((key) => {
2254
2254
  if (key.startsWith(appDir)) {