@mailmodo/cli 0.0.26-beta.pr28.43 → 0.0.26-beta.pr28.45

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.
@@ -152,9 +152,8 @@ export default class Billing extends BaseCommand {
152
152
  formatUsageBlock(block) {
153
153
  const allowance = block.blockAllowance ?? Math.max(block.blocksCount * block.blockSize, 0);
154
154
  const used = Math.max(block.emailsSent ?? 0, 0);
155
- const activatedAt = block.activatedAt || block.acivatedAt;
156
- const activationSuffix = activatedAt
157
- ? `, activated ${new Date(activatedAt).toLocaleDateString('en-US')}`
155
+ const activationSuffix = block.activatedAt
156
+ ? `, activated ${new Date(block.activatedAt).toLocaleDateString('en-US')}`
158
157
  : '';
159
158
  return `${block.type} block: ${used.toLocaleString()} / ${allowance.toLocaleString()} used (${block.status}${activationSuffix})`;
160
159
  }
@@ -657,5 +657,5 @@
657
657
  ]
658
658
  }
659
659
  },
660
- "version": "0.0.26-beta.pr28.43"
660
+ "version": "0.0.26-beta.pr28.45"
661
661
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mailmodo/cli",
3
3
  "description": "Email lifecycle automation for the AI-native builder generation.",
4
- "version": "0.0.26-beta.pr28.43",
4
+ "version": "0.0.26-beta.pr28.45",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"