openmates 0.12.0-alpha.25 → 0.12.0-alpha.26

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.
@@ -9649,7 +9649,7 @@ function createServerBackup(installPath, role, options = {}) {
9649
9649
  try {
9650
9650
  const dump = execSync(
9651
9651
  `docker exec cms-database pg_dump --clean --if-exists --no-owner --no-privileges -U ${shellQuote(databaseUser)} ${shellQuote(databaseName)}`,
9652
- { encoding: "utf-8" }
9652
+ { encoding: "utf-8", maxBuffer: 256 * 1024 * 1024 }
9653
9653
  );
9654
9654
  writeFileSync3(join3(tempDir, "postgres.sql"), dump);
9655
9655
  } catch (error) {
package/dist/cli.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getExtForLang,
4
4
  serializeToYaml
5
- } from "./chunk-V7DUGDYQ.js";
5
+ } from "./chunk-KYTZNUYQ.js";
6
6
  import "./chunk-AXNRPVLE.js";
7
7
  export {
8
8
  getExtForLang,
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  getExtForLang,
12
12
  normalizeInterestTagIds,
13
13
  serializeToYaml
14
- } from "./chunk-V7DUGDYQ.js";
14
+ } from "./chunk-KYTZNUYQ.js";
15
15
  import "./chunk-AXNRPVLE.js";
16
16
  export {
17
17
  ASSISTANT_FEEDBACK_REPORT_TITLE,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.12.0-alpha.25",
3
+ "version": "0.12.0-alpha.26",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",