@bayoudhi/moose-lib-serverless 0.7.7 → 0.7.9

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.
@@ -4813,7 +4813,7 @@ var init_compiler_config = __esm({
4813
4813
  import_path = __toESM(require("path"));
4814
4814
  MOOSE_COMPILER_PLUGINS = [
4815
4815
  {
4816
- transform: require.resolve("@bayoudhi/moose-lib-serverless/dist/compilerPlugin.js")
4816
+ transform: "./node_modules/@514labs/moose-lib/dist/compilerPlugin.js"
4817
4817
  // No longer using transformProgram - direct typia integration eliminates
4818
4818
  // the need for program replacement and the associated incremental compilation issues
4819
4819
  },
@@ -7208,11 +7208,19 @@ async function runScripts(config) {
7208
7208
  return worker;
7209
7209
  }
7210
7210
  var import_commander = require_commander();
7211
- var packageJson = { version: "0.6.417" };
7211
+ var packageJson = { version: "0.6.418" };
7212
7212
  var program = new import_commander.Command();
7213
7213
  program.name("moose-runner").description("Moose runner for various operations").version(packageJson.version);
7214
7214
  program.command("print-version").description("Print the installed moose-lib version").action(() => {
7215
- process.stdout.write(packageJson.version);
7215
+ (function() {
7216
+ try {
7217
+ var out = require("child_process").execSync("moose --version", { encoding: "utf8", stdio: ["pipe", "pipe", "pipe"] }).trim();
7218
+ var match = out.match(/moose-cli\s+(\S+)/);
7219
+ process.stdout.write(match ? match[1] : packageJson.version);
7220
+ } catch (e) {
7221
+ process.stdout.write(packageJson.version);
7222
+ }
7223
+ })();
7216
7224
  });
7217
7225
  program.command("dmv2-serializer").description("Load DMv2 index").action(async () => {
7218
7226
  await dumpMooseInternal();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bayoudhi/moose-lib-serverless",
3
- "version": "0.7.7",
3
+ "version": "0.7.9",
4
4
  "description": "Serverless-compatible subset of @514labs/moose-lib for AWS Lambda and edge runtimes. Provides OlapTable, Stream, Workflow, View, and other Moose SDK classes without native C++ dependencies (Kafka, Temporal). Includes a patched compiler plugin for type-driven schema injection.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -59,7 +59,7 @@
59
59
  "typescript": "~5.9.2"
60
60
  },
61
61
  "devDependencies": {
62
- "@514labs/moose-lib": "0.6.417",
62
+ "@514labs/moose-lib": "0.6.418",
63
63
  "tsup": "^8.4.0"
64
64
  },
65
65
  "peerDependencies": {