@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.
@@ -1978,7 +1978,7 @@ var init_internal = __esm({
1978
1978
  workflows: /* @__PURE__ */ new Map(),
1979
1979
  webApps: /* @__PURE__ */ new Map(),
1980
1980
  materializedViews: /* @__PURE__ */ new Map(),
1981
- customViews: /* @__PURE__ */ new Map()
1981
+ views: /* @__PURE__ */ new Map()
1982
1982
  };
1983
1983
  defaultRetentionPeriod = 60 * 60 * 24 * 7;
1984
1984
  toInfraMap = (registry) => {
@@ -1990,7 +1990,7 @@ var init_internal = __esm({
1990
1990
  const workflows = {};
1991
1991
  const webApps = {};
1992
1992
  const materializedViews = {};
1993
- const customViews = {};
1993
+ const views = {};
1994
1994
  registry.tables.forEach((table) => {
1995
1995
  const id = table.config.version ? `${table.name}_${table.config.version}` : table.name;
1996
1996
  let metadata = table.metadata;
@@ -2191,8 +2191,8 @@ var init_internal = __esm({
2191
2191
  metadata: mv.metadata
2192
2192
  };
2193
2193
  });
2194
- registry.customViews.forEach((view) => {
2195
- customViews[view.name] = {
2194
+ registry.views.forEach((view) => {
2195
+ views[view.name] = {
2196
2196
  name: view.name,
2197
2197
  selectSql: view.selectSql,
2198
2198
  sourceTables: view.sourceTables,
@@ -2208,7 +2208,7 @@ var init_internal = __esm({
2208
2208
  workflows,
2209
2209
  webApps,
2210
2210
  materializedViews,
2211
- customViews
2211
+ views
2212
2212
  };
2213
2213
  };
2214
2214
  getMooseInternal = () => globalThis.moose_internal;
@@ -2233,7 +2233,7 @@ var init_internal = __esm({
2233
2233
  registry.workflows.clear();
2234
2234
  registry.webApps.clear();
2235
2235
  registry.materializedViews.clear();
2236
- registry.customViews.clear();
2236
+ registry.views.clear();
2237
2237
  const appDir = `${process2.cwd()}/${getSourceDir()}`;
2238
2238
  Object.keys(__require.cache).forEach((key) => {
2239
2239
  if (key.startsWith(appDir)) {