@mailmodo/cli 0.0.42-beta.pr45.71 → 0.0.42

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.
@@ -97,7 +97,7 @@ export default class Domain extends BaseCommand {
97
97
  this.log(`\n ${INFO.DNS_RECORDS_FAILED}`);
98
98
  if (!dkim) {
99
99
  this.log(`\n DKIM common mistakes:`);
100
- this.log(` - Using CNAME instead of TXT record type`);
100
+ this.log(` - Using TXT instead of CNAME record type`);
101
101
  this.log(` - Including the full domain in the Host field`);
102
102
  this.log(` - Cloudflare: proxy must be OFF (grey cloud, not orange)`);
103
103
  }
@@ -228,13 +228,19 @@
228
228
  "index.js"
229
229
  ]
230
230
  },
231
- "emails": {
231
+ "edit": {
232
232
  "aliases": [],
233
- "args": {},
234
- "description": "List and view configured email sequences",
233
+ "args": {
234
+ "id": {
235
+ "description": "Email template ID to edit",
236
+ "name": "id",
237
+ "required": true
238
+ }
239
+ },
240
+ "description": "Edit an email using AI-assisted natural language changes",
235
241
  "examples": [
236
- "<%= config.bin %> emails",
237
- "<%= config.bin %> emails --json"
242
+ "<%= config.bin %> edit welcome",
243
+ "<%= config.bin %> edit welcome --change \"make subject more urgent\" --yes"
238
244
  ],
239
245
  "flags": {
240
246
  "json": {
@@ -249,11 +255,18 @@
249
255
  "name": "yes",
250
256
  "allowNo": false,
251
257
  "type": "boolean"
258
+ },
259
+ "change": {
260
+ "description": "Natural language description of the change",
261
+ "name": "change",
262
+ "hasDynamicHelp": false,
263
+ "multiple": false,
264
+ "type": "option"
252
265
  }
253
266
  },
254
267
  "hasDynamicHelp": false,
255
268
  "hiddenAliases": [],
256
- "id": "emails",
269
+ "id": "edit",
257
270
  "pluginAlias": "@mailmodo/cli",
258
271
  "pluginName": "@mailmodo/cli",
259
272
  "pluginType": "core",
@@ -263,23 +276,17 @@
263
276
  "relativePath": [
264
277
  "dist",
265
278
  "commands",
266
- "emails",
279
+ "edit",
267
280
  "index.js"
268
281
  ]
269
282
  },
270
- "edit": {
283
+ "emails": {
271
284
  "aliases": [],
272
- "args": {
273
- "id": {
274
- "description": "Email template ID to edit",
275
- "name": "id",
276
- "required": true
277
- }
278
- },
279
- "description": "Edit an email using AI-assisted natural language changes",
285
+ "args": {},
286
+ "description": "List and view configured email sequences",
280
287
  "examples": [
281
- "<%= config.bin %> edit welcome",
282
- "<%= config.bin %> edit welcome --change \"make subject more urgent\" --yes"
288
+ "<%= config.bin %> emails",
289
+ "<%= config.bin %> emails --json"
283
290
  ],
284
291
  "flags": {
285
292
  "json": {
@@ -294,18 +301,11 @@
294
301
  "name": "yes",
295
302
  "allowNo": false,
296
303
  "type": "boolean"
297
- },
298
- "change": {
299
- "description": "Natural language description of the change",
300
- "name": "change",
301
- "hasDynamicHelp": false,
302
- "multiple": false,
303
- "type": "option"
304
304
  }
305
305
  },
306
306
  "hasDynamicHelp": false,
307
307
  "hiddenAliases": [],
308
- "id": "edit",
308
+ "id": "emails",
309
309
  "pluginAlias": "@mailmodo/cli",
310
310
  "pluginName": "@mailmodo/cli",
311
311
  "pluginType": "core",
@@ -315,7 +315,7 @@
315
315
  "relativePath": [
316
316
  "dist",
317
317
  "commands",
318
- "edit",
318
+ "emails",
319
319
  "index.js"
320
320
  ]
321
321
  },
@@ -512,19 +512,14 @@
512
512
  "index.js"
513
513
  ]
514
514
  },
515
- "preview": {
515
+ "settings": {
516
516
  "aliases": [],
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",
517
+ "args": {},
518
+ "description": "View and update project settings",
524
519
  "examples": [
525
- "<%= config.bin %> preview welcome",
526
- "<%= config.bin %> preview welcome --text",
527
- "<%= config.bin %> preview welcome --send me@example.com"
520
+ "<%= config.bin %> settings",
521
+ "<%= config.bin %> settings --set brand_color=#0F3460",
522
+ "<%= config.bin %> settings --json"
528
523
  ],
529
524
  "flags": {
530
525
  "json": {
@@ -540,23 +535,17 @@
540
535
  "allowNo": false,
541
536
  "type": "boolean"
542
537
  },
543
- "send": {
544
- "description": "Send test email to this address",
545
- "name": "send",
538
+ "set": {
539
+ "description": "Set a setting (format: key=value)",
540
+ "name": "set",
546
541
  "hasDynamicHelp": false,
547
542
  "multiple": false,
548
543
  "type": "option"
549
- },
550
- "text": {
551
- "description": "Output plain text version (for AI agents)",
552
- "name": "text",
553
- "allowNo": false,
554
- "type": "boolean"
555
544
  }
556
545
  },
557
546
  "hasDynamicHelp": false,
558
547
  "hiddenAliases": [],
559
- "id": "preview",
548
+ "id": "settings",
560
549
  "pluginAlias": "@mailmodo/cli",
561
550
  "pluginName": "@mailmodo/cli",
562
551
  "pluginType": "core",
@@ -566,18 +555,17 @@
566
555
  "relativePath": [
567
556
  "dist",
568
557
  "commands",
569
- "preview",
558
+ "settings",
570
559
  "index.js"
571
560
  ]
572
561
  },
573
- "settings": {
562
+ "status": {
574
563
  "aliases": [],
575
564
  "args": {},
576
- "description": "View and update project settings",
565
+ "description": "View email performance metrics and quota usage",
577
566
  "examples": [
578
- "<%= config.bin %> settings",
579
- "<%= config.bin %> settings --set brand_color=#0F3460",
580
- "<%= config.bin %> settings --json"
567
+ "<%= config.bin %> status",
568
+ "<%= config.bin %> status --json"
581
569
  ],
582
570
  "flags": {
583
571
  "json": {
@@ -592,18 +580,11 @@
592
580
  "name": "yes",
593
581
  "allowNo": false,
594
582
  "type": "boolean"
595
- },
596
- "set": {
597
- "description": "Set a setting (format: key=value)",
598
- "name": "set",
599
- "hasDynamicHelp": false,
600
- "multiple": false,
601
- "type": "option"
602
583
  }
603
584
  },
604
585
  "hasDynamicHelp": false,
605
586
  "hiddenAliases": [],
606
- "id": "settings",
587
+ "id": "status",
607
588
  "pluginAlias": "@mailmodo/cli",
608
589
  "pluginName": "@mailmodo/cli",
609
590
  "pluginType": "core",
@@ -613,17 +594,23 @@
613
594
  "relativePath": [
614
595
  "dist",
615
596
  "commands",
616
- "settings",
597
+ "status",
617
598
  "index.js"
618
599
  ]
619
600
  },
620
- "status": {
601
+ "preview": {
621
602
  "aliases": [],
622
- "args": {},
623
- "description": "View email performance metrics and quota usage",
603
+ "args": {
604
+ "id": {
605
+ "description": "Email template ID to preview",
606
+ "name": "id"
607
+ }
608
+ },
609
+ "description": "Preview an email in browser, as text, or send a test",
624
610
  "examples": [
625
- "<%= config.bin %> status",
626
- "<%= config.bin %> status --json"
611
+ "<%= config.bin %> preview welcome",
612
+ "<%= config.bin %> preview welcome --text",
613
+ "<%= config.bin %> preview welcome --send me@example.com"
627
614
  ],
628
615
  "flags": {
629
616
  "json": {
@@ -638,11 +625,24 @@
638
625
  "name": "yes",
639
626
  "allowNo": false,
640
627
  "type": "boolean"
628
+ },
629
+ "send": {
630
+ "description": "Send test email to this address",
631
+ "name": "send",
632
+ "hasDynamicHelp": false,
633
+ "multiple": false,
634
+ "type": "option"
635
+ },
636
+ "text": {
637
+ "description": "Output plain text version (for AI agents)",
638
+ "name": "text",
639
+ "allowNo": false,
640
+ "type": "boolean"
641
641
  }
642
642
  },
643
643
  "hasDynamicHelp": false,
644
644
  "hiddenAliases": [],
645
- "id": "status",
645
+ "id": "preview",
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
- "status",
655
+ "preview",
656
656
  "index.js"
657
657
  ]
658
658
  }
659
659
  },
660
- "version": "0.0.42-beta.pr45.71"
660
+ "version": "0.0.42"
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.42-beta.pr45.71",
4
+ "version": "0.0.42",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"