@mgsoftwarebv/mg-dashboard-mcp 7.0.15 → 7.0.16

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.js CHANGED
@@ -9145,7 +9145,7 @@ function normaliseMigrationSql(sql25) {
9145
9145
  return sql25.replace(/\r\n/g, "\n").trim() + "\n";
9146
9146
  }
9147
9147
  function migrationSha256(sql25) {
9148
- return createHash("sha256").update(normaliseMigrationSql(sql25), "utf8").digest("hex");
9148
+ return createHash("sha256").update(sql25.replace(/\r\n/g, "\n"), "utf8").digest("hex");
9149
9149
  }
9150
9150
  function dollarQuoteTag(value) {
9151
9151
  let tag = "_mcp";