@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.
- package/dist/{browserCompatible-DVf1GCzu.d.mts → browserCompatible-DCCiBirg.d.mts} +1 -1
- package/dist/{browserCompatible-B2F3r37v.d.ts → browserCompatible-DhVPp9qX.d.ts} +1 -1
- package/dist/browserCompatible.d.mts +2 -2
- package/dist/browserCompatible.d.ts +2 -2
- package/dist/browserCompatible.js +20 -0
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +16 -0
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.d.mts +1 -1
- package/dist/dmv2/index.d.ts +1 -1
- package/dist/{index-C0jZ1bu4.d.mts → index-CcZRaA0b.d.mts} +1 -1
- package/dist/{index-C0jZ1bu4.d.ts → index-CcZRaA0b.d.ts} +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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,
|