@514labs/moose-lib 0.6.289-ci-7-ge6ab7015 → 0.6.289-ci-9-g221fb3d9

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.
@@ -2663,6 +2663,18 @@ function getWebApps2() {
2663
2663
  function getWebApp(name) {
2664
2664
  return getMooseInternal().webApps.get(name);
2665
2665
  }
2666
+ function getMaterializedViews() {
2667
+ return getMooseInternal().materializedViews;
2668
+ }
2669
+ function getMaterializedView(name) {
2670
+ return getMooseInternal().materializedViews.get(name);
2671
+ }
2672
+ function getCustomViews() {
2673
+ return getMooseInternal().customViews;
2674
+ }
2675
+ function getCustomView(name) {
2676
+ return getMooseInternal().customViews.get(name);
2677
+ }
2666
2678
  export {
2667
2679
  Api,
2668
2680
  ConsumptionApi,
@@ -2683,8 +2695,12 @@ export {
2683
2695
  createClickhouseParameter,
2684
2696
  getApi,
2685
2697
  getApis2 as getApis,
2698
+ getCustomView,
2699
+ getCustomViews,
2686
2700
  getIngestApi,
2687
2701
  getIngestApis,
2702
+ getMaterializedView,
2703
+ getMaterializedViews,
2688
2704
  getSqlResource,
2689
2705
  getSqlResources,
2690
2706
  getStream,