@mailmodo/cli 0.0.56-beta.pr58.107 → 0.0.56-beta.pr58.108
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.
|
@@ -32,7 +32,7 @@ function shortSeq(id) {
|
|
|
32
32
|
}
|
|
33
33
|
export function renderEntries(ctx, data) {
|
|
34
34
|
const { entries, limit, page, total } = data;
|
|
35
|
-
ctx.log(`\n ${'Time'.padEnd(TIME_W)}${'
|
|
35
|
+
ctx.log(`\n ${'Time'.padEnd(TIME_W)}${'Template'.padEnd(EMAIL_W)}` +
|
|
36
36
|
`${'Sequence'.padEnd(SEQ_W)}${'Status'.padEnd(STATUS_W)}Contact`);
|
|
37
37
|
ctx.log(` ${'─'.repeat(CONTACT_COL + 28)}`);
|
|
38
38
|
if (!entries?.length) {
|
|
@@ -15,7 +15,7 @@ const OUTPUT_CHOICES = [
|
|
|
15
15
|
];
|
|
16
16
|
const GROUP_BY_CHOICES = [
|
|
17
17
|
{ name: 'None (totals only)', value: 'none' },
|
|
18
|
-
{ name: 'Email
|
|
18
|
+
{ name: 'Email template', value: 'emailId' },
|
|
19
19
|
{ name: 'Sequence ID', value: 'sequenceId' },
|
|
20
20
|
{ name: 'Day', value: 'day' },
|
|
21
21
|
{ name: 'Hour', value: 'hour' },
|
package/oclif.manifest.json
CHANGED
|
@@ -380,13 +380,13 @@
|
|
|
380
380
|
"index.js"
|
|
381
381
|
]
|
|
382
382
|
},
|
|
383
|
-
"
|
|
383
|
+
"init": {
|
|
384
384
|
"aliases": [],
|
|
385
385
|
"args": {},
|
|
386
|
-
"description": "
|
|
386
|
+
"description": "Analyze your product and generate email sequences",
|
|
387
387
|
"examples": [
|
|
388
|
-
"<%= config.bin %>
|
|
389
|
-
"
|
|
388
|
+
"<%= config.bin %> init",
|
|
389
|
+
"<%= config.bin %> init --url https://myapp.com --yes"
|
|
390
390
|
],
|
|
391
391
|
"flags": {
|
|
392
392
|
"json": {
|
|
@@ -401,11 +401,18 @@
|
|
|
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"
|
|
404
411
|
}
|
|
405
412
|
},
|
|
406
413
|
"hasDynamicHelp": false,
|
|
407
414
|
"hiddenAliases": [],
|
|
408
|
-
"id": "
|
|
415
|
+
"id": "init",
|
|
409
416
|
"pluginAlias": "@mailmodo/cli",
|
|
410
417
|
"pluginName": "@mailmodo/cli",
|
|
411
418
|
"pluginType": "core",
|
|
@@ -415,17 +422,17 @@
|
|
|
415
422
|
"relativePath": [
|
|
416
423
|
"dist",
|
|
417
424
|
"commands",
|
|
418
|
-
"
|
|
425
|
+
"init",
|
|
419
426
|
"index.js"
|
|
420
427
|
]
|
|
421
428
|
},
|
|
422
|
-
"
|
|
429
|
+
"login": {
|
|
423
430
|
"aliases": [],
|
|
424
431
|
"args": {},
|
|
425
|
-
"description": "
|
|
432
|
+
"description": "Authenticate with Mailmodo using your API key",
|
|
426
433
|
"examples": [
|
|
427
|
-
"<%= config.bin %>
|
|
428
|
-
"<%= config.bin %>
|
|
434
|
+
"<%= config.bin %> login",
|
|
435
|
+
"MAILMODO_API_KEY=YOUR_API_KEY <%= config.bin %> login"
|
|
429
436
|
],
|
|
430
437
|
"flags": {
|
|
431
438
|
"json": {
|
|
@@ -440,18 +447,11 @@
|
|
|
440
447
|
"name": "yes",
|
|
441
448
|
"allowNo": false,
|
|
442
449
|
"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": "login",
|
|
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
|
+
"login",
|
|
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.108"
|
|
936
936
|
}
|
package/package.json
CHANGED