@abloatai/cli 0.43.0 → 0.44.0

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.
Files changed (2) hide show
  1. package/dist/cli.cjs +6 -2
  2. package/package.json +3 -3
package/dist/cli.cjs CHANGED
@@ -284961,7 +284961,9 @@ async function status(args = []) {
284961
284961
  ` ${import_picocolors19.default.yellow("?")} ${import_picocolors19.default.dim("nothing is blocking a write, but this key could not read the plane's databases \u2014 some checks were skipped")}`
284962
284962
  );
284963
284963
  } else {
284964
- console.log(` ${import_picocolors19.default.green("\u2713")} ${import_picocolors19.default.dim("ready \u2014 a write should succeed")}`);
284964
+ console.log(
284965
+ ` ${import_picocolors19.default.green("\u2713")} ${import_picocolors19.default.dim("write infrastructure is ready \u2014 database constraints and row-level policies still apply")}`
284966
+ );
284965
284967
  }
284966
284968
  console.log();
284967
284969
  }
@@ -285118,7 +285120,9 @@ async function doctor() {
285118
285120
  ` ${import_picocolors20.default.yellow("?")} ${import_picocolors20.default.dim(`nothing is blocking a write, but ${skipped} check${skipped === 1 ? "" : "s"} could not be run`)}`
285119
285121
  );
285120
285122
  } else {
285121
- console.log(` ${import_picocolors20.default.green("\u2713")} ${import_picocolors20.default.dim("everything checks out \u2014 a write should succeed")}`);
285123
+ console.log(
285124
+ ` ${import_picocolors20.default.green("\u2713")} ${import_picocolors20.default.dim("write infrastructure is ready \u2014 your database constraints and row-level policies still apply")}`
285125
+ );
285122
285126
  }
285123
285127
  console.log();
285124
285128
  if (blocking.length > 0 || failed > 0) process.exitCode = 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abloatai/cli",
3
- "version": "0.43.0",
3
+ "version": "0.44.0",
4
4
  "description": "The ablo command line: set up Ablo, connect your database, and push your schema from the terminal.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -30,10 +30,10 @@
30
30
  "directory": "packages/cli"
31
31
  },
32
32
  "dependencies": {
33
- "@abloatai/transaction": "^0.43.0",
33
+ "@abloatai/transaction": "^0.44.0",
34
34
  "jiti": "^2.7.0",
35
35
  "zod": "^4.4.3",
36
- "@abloatai/humans": "^0.43.0"
36
+ "@abloatai/humans": "^0.44.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@clack/prompts": "^0.11.0",