@mailmodo/cli 0.0.38-beta.pr40.63 → 0.0.38

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.
@@ -69,7 +69,7 @@ export class BaseCommand extends Command {
69
69
  const result = await work().finally(() => spinner.stop());
70
70
  const warning = result.addCardWarning;
71
71
  if (typeof warning === 'string' && warning) {
72
- this.warn(chalk.hex('#FFA500')(warning));
72
+ this.warn(warning);
73
73
  }
74
74
  return result;
75
75
  }
@@ -280,13 +280,13 @@
280
280
  "index.js"
281
281
  ]
282
282
  },
283
- "emails": {
283
+ "init": {
284
284
  "aliases": [],
285
285
  "args": {},
286
- "description": "List and view configured email sequences",
286
+ "description": "Analyze your product and generate email sequences",
287
287
  "examples": [
288
- "<%= config.bin %> emails",
289
- "<%= config.bin %> emails --json"
288
+ "<%= config.bin %> init",
289
+ "<%= config.bin %> init --url https://myapp.com --yes"
290
290
  ],
291
291
  "flags": {
292
292
  "json": {
@@ -301,11 +301,18 @@
301
301
  "name": "yes",
302
302
  "allowNo": false,
303
303
  "type": "boolean"
304
+ },
305
+ "url": {
306
+ "description": "Product URL to analyze",
307
+ "name": "url",
308
+ "hasDynamicHelp": false,
309
+ "multiple": false,
310
+ "type": "option"
304
311
  }
305
312
  },
306
313
  "hasDynamicHelp": false,
307
314
  "hiddenAliases": [],
308
- "id": "emails",
315
+ "id": "init",
309
316
  "pluginAlias": "@mailmodo/cli",
310
317
  "pluginName": "@mailmodo/cli",
311
318
  "pluginType": "core",
@@ -315,17 +322,17 @@
315
322
  "relativePath": [
316
323
  "dist",
317
324
  "commands",
318
- "emails",
325
+ "init",
319
326
  "index.js"
320
327
  ]
321
328
  },
322
- "init": {
329
+ "login": {
323
330
  "aliases": [],
324
331
  "args": {},
325
- "description": "Analyze your product and generate email sequences",
332
+ "description": "Authenticate with Mailmodo using your API key",
326
333
  "examples": [
327
- "<%= config.bin %> init",
328
- "<%= config.bin %> init --url https://myapp.com --yes"
334
+ "<%= config.bin %> login",
335
+ "MAILMODO_API_KEY=mm_live_xxx <%= config.bin %> login"
329
336
  ],
330
337
  "flags": {
331
338
  "json": {
@@ -340,18 +347,11 @@
340
347
  "name": "yes",
341
348
  "allowNo": false,
342
349
  "type": "boolean"
343
- },
344
- "url": {
345
- "description": "Product URL to analyze",
346
- "name": "url",
347
- "hasDynamicHelp": false,
348
- "multiple": false,
349
- "type": "option"
350
350
  }
351
351
  },
352
352
  "hasDynamicHelp": false,
353
353
  "hiddenAliases": [],
354
- "id": "init",
354
+ "id": "login",
355
355
  "pluginAlias": "@mailmodo/cli",
356
356
  "pluginName": "@mailmodo/cli",
357
357
  "pluginType": "core",
@@ -361,17 +361,17 @@
361
361
  "relativePath": [
362
362
  "dist",
363
363
  "commands",
364
- "init",
364
+ "login",
365
365
  "index.js"
366
366
  ]
367
367
  },
368
- "login": {
368
+ "emails": {
369
369
  "aliases": [],
370
370
  "args": {},
371
- "description": "Authenticate with Mailmodo using your API key",
371
+ "description": "List and view configured email sequences",
372
372
  "examples": [
373
- "<%= config.bin %> login",
374
- "MAILMODO_API_KEY=mm_live_xxx <%= config.bin %> login"
373
+ "<%= config.bin %> emails",
374
+ "<%= config.bin %> emails --json"
375
375
  ],
376
376
  "flags": {
377
377
  "json": {
@@ -390,7 +390,7 @@
390
390
  },
391
391
  "hasDynamicHelp": false,
392
392
  "hiddenAliases": [],
393
- "id": "login",
393
+ "id": "emails",
394
394
  "pluginAlias": "@mailmodo/cli",
395
395
  "pluginName": "@mailmodo/cli",
396
396
  "pluginType": "core",
@@ -400,7 +400,7 @@
400
400
  "relativePath": [
401
401
  "dist",
402
402
  "commands",
403
- "login",
403
+ "emails",
404
404
  "index.js"
405
405
  ]
406
406
  },
@@ -570,13 +570,14 @@
570
570
  "index.js"
571
571
  ]
572
572
  },
573
- "status": {
573
+ "settings": {
574
574
  "aliases": [],
575
575
  "args": {},
576
- "description": "View email performance metrics and quota usage",
576
+ "description": "View and update project settings",
577
577
  "examples": [
578
- "<%= config.bin %> status",
579
- "<%= config.bin %> status --json"
578
+ "<%= config.bin %> settings",
579
+ "<%= config.bin %> settings --set brand_color=#0F3460",
580
+ "<%= config.bin %> settings --json"
580
581
  ],
581
582
  "flags": {
582
583
  "json": {
@@ -591,11 +592,18 @@
591
592
  "name": "yes",
592
593
  "allowNo": false,
593
594
  "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"
594
602
  }
595
603
  },
596
604
  "hasDynamicHelp": false,
597
605
  "hiddenAliases": [],
598
- "id": "status",
606
+ "id": "settings",
599
607
  "pluginAlias": "@mailmodo/cli",
600
608
  "pluginName": "@mailmodo/cli",
601
609
  "pluginType": "core",
@@ -605,18 +613,17 @@
605
613
  "relativePath": [
606
614
  "dist",
607
615
  "commands",
608
- "status",
616
+ "settings",
609
617
  "index.js"
610
618
  ]
611
619
  },
612
- "settings": {
620
+ "status": {
613
621
  "aliases": [],
614
622
  "args": {},
615
- "description": "View and update project settings",
623
+ "description": "View email performance metrics and quota usage",
616
624
  "examples": [
617
- "<%= config.bin %> settings",
618
- "<%= config.bin %> settings --set brand_color=#0F3460",
619
- "<%= config.bin %> settings --json"
625
+ "<%= config.bin %> status",
626
+ "<%= config.bin %> status --json"
620
627
  ],
621
628
  "flags": {
622
629
  "json": {
@@ -631,18 +638,11 @@
631
638
  "name": "yes",
632
639
  "allowNo": false,
633
640
  "type": "boolean"
634
- },
635
- "set": {
636
- "description": "Set a setting (format: key=value)",
637
- "name": "set",
638
- "hasDynamicHelp": false,
639
- "multiple": false,
640
- "type": "option"
641
641
  }
642
642
  },
643
643
  "hasDynamicHelp": false,
644
644
  "hiddenAliases": [],
645
- "id": "settings",
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
- "settings",
655
+ "status",
656
656
  "index.js"
657
657
  ]
658
658
  }
659
659
  },
660
- "version": "0.0.38-beta.pr40.63"
660
+ "version": "0.0.38"
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.38-beta.pr40.63",
4
+ "version": "0.0.38",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"