@514labs/moose-lib 0.6.289-ci-7-ge6ab7015 → 0.6.289-ci-10-g2356dcc0

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.mjs CHANGED
@@ -2701,6 +2701,18 @@ function getWebApps() {
2701
2701
  function getWebApp(name) {
2702
2702
  return getMooseInternal().webApps.get(name);
2703
2703
  }
2704
+ function getMaterializedViews() {
2705
+ return getMooseInternal().materializedViews;
2706
+ }
2707
+ function getMaterializedView(name) {
2708
+ return getMooseInternal().materializedViews.get(name);
2709
+ }
2710
+ function getCustomViews() {
2711
+ return getMooseInternal().customViews;
2712
+ }
2713
+ function getCustomView(name) {
2714
+ return getMooseInternal().customViews.get(name);
2715
+ }
2704
2716
 
2705
2717
  // src/index.ts
2706
2718
  init_commons();
@@ -3402,11 +3414,15 @@ export {
3402
3414
  getApi,
3403
3415
  getApis,
3404
3416
  getClickhouseClient,
3417
+ getCustomView,
3418
+ getCustomViews,
3405
3419
  getFileName,
3406
3420
  getIngestApi,
3407
3421
  getIngestApis,
3408
3422
  getKafkaClient,
3409
3423
  getKafkaProducer,
3424
+ getMaterializedView,
3425
+ getMaterializedViews,
3410
3426
  getMooseClients,
3411
3427
  getMooseUtils,
3412
3428
  getSqlResource,