@514labs/moose-lib 0.6.252-ci-5-g451c6103 → 0.6.252-ci-7-g42a5abc7

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
@@ -617,6 +617,8 @@ var ClickHouseEngines = /* @__PURE__ */ ((ClickHouseEngines2) => {
617
617
  ClickHouseEngines2["ReplicatedReplacingMergeTree"] = "ReplicatedReplacingMergeTree";
618
618
  ClickHouseEngines2["ReplicatedAggregatingMergeTree"] = "ReplicatedAggregatingMergeTree";
619
619
  ClickHouseEngines2["ReplicatedSummingMergeTree"] = "ReplicatedSummingMergeTree";
620
+ ClickHouseEngines2["ReplicatedCollapsingMergeTree"] = "ReplicatedCollapsingMergeTree";
621
+ ClickHouseEngines2["ReplicatedVersionedCollapsingMergeTree"] = "ReplicatedVersionedCollapsingMergeTree";
620
622
  return ClickHouseEngines2;
621
623
  })(ClickHouseEngines || {});
622
624
  function dropView(name) {
@@ -2514,11 +2516,8 @@ var WebApp = class {
2514
2516
  return app.callback();
2515
2517
  }
2516
2518
  if (typeof app.routing === "function") {
2517
- const routing = app.routing;
2518
- const readyPromise = typeof app.ready === "function" ? app.ready() : Promise.resolve();
2519
- return async (req, res) => {
2520
- await readyPromise;
2521
- routing(req, res);
2519
+ return (req, res) => {
2520
+ app.routing(req, res);
2522
2521
  };
2523
2522
  }
2524
2523
  throw new Error(