ante-erp-cli 1.11.15 → 1.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ante-erp-cli",
3
- "version": "1.11.15",
3
+ "version": "1.11.16",
4
4
  "description": "Comprehensive CLI tool for managing ANTE ERP self-hosted installations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -400,7 +400,7 @@ export async function update(options) {
400
400
  title: stepPosHealth ? formatStepTitle(stepPosHealth, totalSteps, 'Waiting for POS App to be healthy') : '',
401
401
  skip: () => !stepPosHealth ? 'POS App not installed' : false,
402
402
  task: async () => {
403
- const healthy = await waitForServiceHealthy(composeFile, 'pos-app', 60);
403
+ const healthy = await waitForServiceHealthy(composeFile, 'ante-pos', 60);
404
404
  if (!healthy) {
405
405
  throw new Error('POS App did not become healthy within 60 seconds');
406
406
  }