@mailmodo/cli 0.0.35-beta.pr37.60 → 0.0.35

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.
@@ -42,18 +42,15 @@ export default class Status extends BaseCommand {
42
42
  this.log(` Emails sent this month: ${chalk.bold(String(monthlySent))}`);
43
43
  }
44
44
  if (quota) {
45
- if (quota.plan === 'free') {
46
- this.log(` Free tier remaining: ${chalk.cyan(String(quota.freeRemaining))} emails`);
45
+ if (quota.freeRemaining > 0) {
46
+ this.log(` Free tier remaining: ${chalk.cyan(String(quota.freeRemaining))}`);
47
47
  }
48
- else if (quota.plan === 'paid') {
49
- if (quota.currentBlockEmailsRemaining !== null &&
50
- quota.currentBlockEmailsRemaining !== undefined) {
51
- const { blockSize } = quota;
52
- const sent = blockSize - quota.currentBlockEmailsRemaining;
53
- const remaining = quota.currentBlockEmailsRemaining;
54
- this.log(` Current paid block (${blockSize} emails) : ${chalk.cyan(`${sent} emails sent, ${remaining} emails remaining`)}`);
48
+ else if (quota.blocksUsed !== undefined) {
49
+ if (quota.currentBlockRemaining !== null &&
50
+ quota.currentBlockRemaining !== undefined) {
51
+ this.log(` Current paid block: ${chalk.cyan(`${quota.currentBlockRemaining} / 10,000 used`)}`);
55
52
  }
56
- this.log(` Blocks used: ${quota.blocksUsed}`);
53
+ this.log(` Blocks purchased: ${quota.blocksUsed}`);
57
54
  }
58
55
  }
59
56
  this.log('');
@@ -280,6 +280,45 @@
280
280
  "index.js"
281
281
  ]
282
282
  },
283
+ "emails": {
284
+ "aliases": [],
285
+ "args": {},
286
+ "description": "List and view configured email sequences",
287
+ "examples": [
288
+ "<%= config.bin %> emails",
289
+ "<%= config.bin %> emails --json"
290
+ ],
291
+ "flags": {
292
+ "json": {
293
+ "description": "Output as JSON",
294
+ "name": "json",
295
+ "allowNo": false,
296
+ "type": "boolean"
297
+ },
298
+ "yes": {
299
+ "char": "y",
300
+ "description": "Skip confirmation prompts",
301
+ "name": "yes",
302
+ "allowNo": false,
303
+ "type": "boolean"
304
+ }
305
+ },
306
+ "hasDynamicHelp": false,
307
+ "hiddenAliases": [],
308
+ "id": "emails",
309
+ "pluginAlias": "@mailmodo/cli",
310
+ "pluginName": "@mailmodo/cli",
311
+ "pluginType": "core",
312
+ "strict": true,
313
+ "enableJsonFlag": false,
314
+ "isESM": true,
315
+ "relativePath": [
316
+ "dist",
317
+ "commands",
318
+ "emails",
319
+ "index.js"
320
+ ]
321
+ },
283
322
  "init": {
284
323
  "aliases": [],
285
324
  "args": {},
@@ -365,13 +404,12 @@
365
404
  "index.js"
366
405
  ]
367
406
  },
368
- "emails": {
407
+ "logout": {
369
408
  "aliases": [],
370
409
  "args": {},
371
- "description": "List and view configured email sequences",
410
+ "description": "Sign out by removing saved credentials from this machine",
372
411
  "examples": [
373
- "<%= config.bin %> emails",
374
- "<%= config.bin %> emails --json"
412
+ "<%= config.bin %> logout"
375
413
  ],
376
414
  "flags": {
377
415
  "json": {
@@ -390,7 +428,7 @@
390
428
  },
391
429
  "hasDynamicHelp": false,
392
430
  "hiddenAliases": [],
393
- "id": "emails",
431
+ "id": "logout",
394
432
  "pluginAlias": "@mailmodo/cli",
395
433
  "pluginName": "@mailmodo/cli",
396
434
  "pluginType": "core",
@@ -400,7 +438,7 @@
400
438
  "relativePath": [
401
439
  "dist",
402
440
  "commands",
403
- "emails",
441
+ "logout",
404
442
  "index.js"
405
443
  ]
406
444
  },
@@ -474,14 +512,19 @@
474
512
  "index.js"
475
513
  ]
476
514
  },
477
- "settings": {
515
+ "preview": {
478
516
  "aliases": [],
479
- "args": {},
480
- "description": "View and update project settings",
517
+ "args": {
518
+ "id": {
519
+ "description": "Email template ID to preview",
520
+ "name": "id"
521
+ }
522
+ },
523
+ "description": "Preview an email in browser, as text, or send a test",
481
524
  "examples": [
482
- "<%= config.bin %> settings",
483
- "<%= config.bin %> settings --set brand_color=#0F3460",
484
- "<%= config.bin %> settings --json"
525
+ "<%= config.bin %> preview welcome",
526
+ "<%= config.bin %> preview welcome --text",
527
+ "<%= config.bin %> preview welcome --send me@example.com"
485
528
  ],
486
529
  "flags": {
487
530
  "json": {
@@ -497,56 +540,23 @@
497
540
  "allowNo": false,
498
541
  "type": "boolean"
499
542
  },
500
- "set": {
501
- "description": "Set a setting (format: key=value)",
502
- "name": "set",
543
+ "send": {
544
+ "description": "Send test email to this address",
545
+ "name": "send",
503
546
  "hasDynamicHelp": false,
504
547
  "multiple": false,
505
548
  "type": "option"
506
- }
507
- },
508
- "hasDynamicHelp": false,
509
- "hiddenAliases": [],
510
- "id": "settings",
511
- "pluginAlias": "@mailmodo/cli",
512
- "pluginName": "@mailmodo/cli",
513
- "pluginType": "core",
514
- "strict": true,
515
- "enableJsonFlag": false,
516
- "isESM": true,
517
- "relativePath": [
518
- "dist",
519
- "commands",
520
- "settings",
521
- "index.js"
522
- ]
523
- },
524
- "status": {
525
- "aliases": [],
526
- "args": {},
527
- "description": "View email performance metrics and quota usage",
528
- "examples": [
529
- "<%= config.bin %> status",
530
- "<%= config.bin %> status --json"
531
- ],
532
- "flags": {
533
- "json": {
534
- "description": "Output as JSON",
535
- "name": "json",
536
- "allowNo": false,
537
- "type": "boolean"
538
549
  },
539
- "yes": {
540
- "char": "y",
541
- "description": "Skip confirmation prompts",
542
- "name": "yes",
550
+ "text": {
551
+ "description": "Output plain text version (for AI agents)",
552
+ "name": "text",
543
553
  "allowNo": false,
544
554
  "type": "boolean"
545
555
  }
546
556
  },
547
557
  "hasDynamicHelp": false,
548
558
  "hiddenAliases": [],
549
- "id": "status",
559
+ "id": "preview",
550
560
  "pluginAlias": "@mailmodo/cli",
551
561
  "pluginName": "@mailmodo/cli",
552
562
  "pluginType": "core",
@@ -556,23 +566,18 @@
556
566
  "relativePath": [
557
567
  "dist",
558
568
  "commands",
559
- "status",
569
+ "preview",
560
570
  "index.js"
561
571
  ]
562
572
  },
563
- "preview": {
573
+ "settings": {
564
574
  "aliases": [],
565
- "args": {
566
- "id": {
567
- "description": "Email template ID to preview",
568
- "name": "id"
569
- }
570
- },
571
- "description": "Preview an email in browser, as text, or send a test",
575
+ "args": {},
576
+ "description": "View and update project settings",
572
577
  "examples": [
573
- "<%= config.bin %> preview welcome",
574
- "<%= config.bin %> preview welcome --text",
575
- "<%= config.bin %> preview welcome --send me@example.com"
578
+ "<%= config.bin %> settings",
579
+ "<%= config.bin %> settings --set brand_color=#0F3460",
580
+ "<%= config.bin %> settings --json"
576
581
  ],
577
582
  "flags": {
578
583
  "json": {
@@ -588,23 +593,17 @@
588
593
  "allowNo": false,
589
594
  "type": "boolean"
590
595
  },
591
- "send": {
592
- "description": "Send test email to this address",
593
- "name": "send",
596
+ "set": {
597
+ "description": "Set a setting (format: key=value)",
598
+ "name": "set",
594
599
  "hasDynamicHelp": false,
595
600
  "multiple": false,
596
601
  "type": "option"
597
- },
598
- "text": {
599
- "description": "Output plain text version (for AI agents)",
600
- "name": "text",
601
- "allowNo": false,
602
- "type": "boolean"
603
602
  }
604
603
  },
605
604
  "hasDynamicHelp": false,
606
605
  "hiddenAliases": [],
607
- "id": "preview",
606
+ "id": "settings",
608
607
  "pluginAlias": "@mailmodo/cli",
609
608
  "pluginName": "@mailmodo/cli",
610
609
  "pluginType": "core",
@@ -614,16 +613,17 @@
614
613
  "relativePath": [
615
614
  "dist",
616
615
  "commands",
617
- "preview",
616
+ "settings",
618
617
  "index.js"
619
618
  ]
620
619
  },
621
- "logout": {
620
+ "status": {
622
621
  "aliases": [],
623
622
  "args": {},
624
- "description": "Sign out by removing saved credentials from this machine",
623
+ "description": "View email performance metrics and quota usage",
625
624
  "examples": [
626
- "<%= config.bin %> logout"
625
+ "<%= config.bin %> status",
626
+ "<%= config.bin %> status --json"
627
627
  ],
628
628
  "flags": {
629
629
  "json": {
@@ -642,7 +642,7 @@
642
642
  },
643
643
  "hasDynamicHelp": false,
644
644
  "hiddenAliases": [],
645
- "id": "logout",
645
+ "id": "status",
646
646
  "pluginAlias": "@mailmodo/cli",
647
647
  "pluginName": "@mailmodo/cli",
648
648
  "pluginType": "core",
@@ -652,10 +652,10 @@
652
652
  "relativePath": [
653
653
  "dist",
654
654
  "commands",
655
- "logout",
655
+ "status",
656
656
  "index.js"
657
657
  ]
658
658
  }
659
659
  },
660
- "version": "0.0.35-beta.pr37.60"
660
+ "version": "0.0.35"
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.35-beta.pr37.60",
4
+ "version": "0.0.35",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"