@mailmodo/cli 0.0.56-beta.pr58.106 → 0.0.56-beta.pr58.107
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.
|
@@ -71,10 +71,12 @@ export async function promptReportFlags(flags) {
|
|
|
71
71
|
default: flags.output,
|
|
72
72
|
message: 'Output mode:',
|
|
73
73
|
});
|
|
74
|
-
const groupBy =
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
74
|
+
const groupBy = output === 'summary'
|
|
75
|
+
? await select({
|
|
76
|
+
choices: GROUP_BY_CHOICES,
|
|
77
|
+
default: flags['group-by'],
|
|
78
|
+
message: 'Group by:',
|
|
79
|
+
})
|
|
80
|
+
: 'none';
|
|
79
81
|
return { ...flags, ...timeRange, 'group-by': groupBy, output };
|
|
80
82
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -380,13 +380,13 @@
|
|
|
380
380
|
"index.js"
|
|
381
381
|
]
|
|
382
382
|
},
|
|
383
|
-
"
|
|
383
|
+
"login": {
|
|
384
384
|
"aliases": [],
|
|
385
385
|
"args": {},
|
|
386
|
-
"description": "
|
|
386
|
+
"description": "Authenticate with Mailmodo using your API key",
|
|
387
387
|
"examples": [
|
|
388
|
-
"<%= config.bin %>
|
|
389
|
-
"<%= config.bin %>
|
|
388
|
+
"<%= config.bin %> login",
|
|
389
|
+
"MAILMODO_API_KEY=YOUR_API_KEY <%= config.bin %> login"
|
|
390
390
|
],
|
|
391
391
|
"flags": {
|
|
392
392
|
"json": {
|
|
@@ -401,18 +401,11 @@
|
|
|
401
401
|
"name": "yes",
|
|
402
402
|
"allowNo": false,
|
|
403
403
|
"type": "boolean"
|
|
404
|
-
},
|
|
405
|
-
"url": {
|
|
406
|
-
"description": "Product URL to analyze",
|
|
407
|
-
"name": "url",
|
|
408
|
-
"hasDynamicHelp": false,
|
|
409
|
-
"multiple": false,
|
|
410
|
-
"type": "option"
|
|
411
404
|
}
|
|
412
405
|
},
|
|
413
406
|
"hasDynamicHelp": false,
|
|
414
407
|
"hiddenAliases": [],
|
|
415
|
-
"id": "
|
|
408
|
+
"id": "login",
|
|
416
409
|
"pluginAlias": "@mailmodo/cli",
|
|
417
410
|
"pluginName": "@mailmodo/cli",
|
|
418
411
|
"pluginType": "core",
|
|
@@ -422,17 +415,17 @@
|
|
|
422
415
|
"relativePath": [
|
|
423
416
|
"dist",
|
|
424
417
|
"commands",
|
|
425
|
-
"
|
|
418
|
+
"login",
|
|
426
419
|
"index.js"
|
|
427
420
|
]
|
|
428
421
|
},
|
|
429
|
-
"
|
|
422
|
+
"init": {
|
|
430
423
|
"aliases": [],
|
|
431
424
|
"args": {},
|
|
432
|
-
"description": "
|
|
425
|
+
"description": "Analyze your product and generate email sequences",
|
|
433
426
|
"examples": [
|
|
434
|
-
"<%= config.bin %>
|
|
435
|
-
"
|
|
427
|
+
"<%= config.bin %> init",
|
|
428
|
+
"<%= config.bin %> init --url https://myapp.com --yes"
|
|
436
429
|
],
|
|
437
430
|
"flags": {
|
|
438
431
|
"json": {
|
|
@@ -447,11 +440,18 @@
|
|
|
447
440
|
"name": "yes",
|
|
448
441
|
"allowNo": false,
|
|
449
442
|
"type": "boolean"
|
|
443
|
+
},
|
|
444
|
+
"url": {
|
|
445
|
+
"description": "Product URL to analyze",
|
|
446
|
+
"name": "url",
|
|
447
|
+
"hasDynamicHelp": false,
|
|
448
|
+
"multiple": false,
|
|
449
|
+
"type": "option"
|
|
450
450
|
}
|
|
451
451
|
},
|
|
452
452
|
"hasDynamicHelp": false,
|
|
453
453
|
"hiddenAliases": [],
|
|
454
|
-
"id": "
|
|
454
|
+
"id": "init",
|
|
455
455
|
"pluginAlias": "@mailmodo/cli",
|
|
456
456
|
"pluginName": "@mailmodo/cli",
|
|
457
457
|
"pluginType": "core",
|
|
@@ -461,7 +461,7 @@
|
|
|
461
461
|
"relativePath": [
|
|
462
462
|
"dist",
|
|
463
463
|
"commands",
|
|
464
|
-
"
|
|
464
|
+
"init",
|
|
465
465
|
"index.js"
|
|
466
466
|
]
|
|
467
467
|
},
|
|
@@ -932,5 +932,5 @@
|
|
|
932
932
|
]
|
|
933
933
|
}
|
|
934
934
|
},
|
|
935
|
-
"version": "0.0.56-beta.pr58.
|
|
935
|
+
"version": "0.0.56-beta.pr58.107"
|
|
936
936
|
}
|
package/package.json
CHANGED