@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
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,
|