@mailmodo/cli 0.0.38 → 0.0.39
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.
- package/dist/lib/base-command.js +1 -1
- package/oclif.manifest.json +26 -26
- package/package.json +1 -1
package/dist/lib/base-command.js
CHANGED
|
@@ -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(warning);
|
|
72
|
+
this.warn(chalk.hex('#FFA500')(warning));
|
|
73
73
|
}
|
|
74
74
|
return result;
|
|
75
75
|
}
|
package/oclif.manifest.json
CHANGED
|
@@ -280,13 +280,13 @@
|
|
|
280
280
|
"index.js"
|
|
281
281
|
]
|
|
282
282
|
},
|
|
283
|
-
"
|
|
283
|
+
"emails": {
|
|
284
284
|
"aliases": [],
|
|
285
285
|
"args": {},
|
|
286
|
-
"description": "
|
|
286
|
+
"description": "List and view configured email sequences",
|
|
287
287
|
"examples": [
|
|
288
|
-
"<%= config.bin %>
|
|
289
|
-
"<%= config.bin %>
|
|
288
|
+
"<%= config.bin %> emails",
|
|
289
|
+
"<%= config.bin %> emails --json"
|
|
290
290
|
],
|
|
291
291
|
"flags": {
|
|
292
292
|
"json": {
|
|
@@ -301,18 +301,11 @@
|
|
|
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"
|
|
311
304
|
}
|
|
312
305
|
},
|
|
313
306
|
"hasDynamicHelp": false,
|
|
314
307
|
"hiddenAliases": [],
|
|
315
|
-
"id": "
|
|
308
|
+
"id": "emails",
|
|
316
309
|
"pluginAlias": "@mailmodo/cli",
|
|
317
310
|
"pluginName": "@mailmodo/cli",
|
|
318
311
|
"pluginType": "core",
|
|
@@ -322,17 +315,17 @@
|
|
|
322
315
|
"relativePath": [
|
|
323
316
|
"dist",
|
|
324
317
|
"commands",
|
|
325
|
-
"
|
|
318
|
+
"emails",
|
|
326
319
|
"index.js"
|
|
327
320
|
]
|
|
328
321
|
},
|
|
329
|
-
"
|
|
322
|
+
"init": {
|
|
330
323
|
"aliases": [],
|
|
331
324
|
"args": {},
|
|
332
|
-
"description": "
|
|
325
|
+
"description": "Analyze your product and generate email sequences",
|
|
333
326
|
"examples": [
|
|
334
|
-
"<%= config.bin %>
|
|
335
|
-
"
|
|
327
|
+
"<%= config.bin %> init",
|
|
328
|
+
"<%= config.bin %> init --url https://myapp.com --yes"
|
|
336
329
|
],
|
|
337
330
|
"flags": {
|
|
338
331
|
"json": {
|
|
@@ -347,11 +340,18 @@
|
|
|
347
340
|
"name": "yes",
|
|
348
341
|
"allowNo": false,
|
|
349
342
|
"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": "
|
|
354
|
+
"id": "init",
|
|
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
|
-
"
|
|
364
|
+
"init",
|
|
365
365
|
"index.js"
|
|
366
366
|
]
|
|
367
367
|
},
|
|
368
|
-
"
|
|
368
|
+
"login": {
|
|
369
369
|
"aliases": [],
|
|
370
370
|
"args": {},
|
|
371
|
-
"description": "
|
|
371
|
+
"description": "Authenticate with Mailmodo using your API key",
|
|
372
372
|
"examples": [
|
|
373
|
-
"<%= config.bin %>
|
|
374
|
-
"<%= config.bin %>
|
|
373
|
+
"<%= config.bin %> login",
|
|
374
|
+
"MAILMODO_API_KEY=mm_live_xxx <%= config.bin %> login"
|
|
375
375
|
],
|
|
376
376
|
"flags": {
|
|
377
377
|
"json": {
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
},
|
|
391
391
|
"hasDynamicHelp": false,
|
|
392
392
|
"hiddenAliases": [],
|
|
393
|
-
"id": "
|
|
393
|
+
"id": "login",
|
|
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
|
-
"
|
|
403
|
+
"login",
|
|
404
404
|
"index.js"
|
|
405
405
|
]
|
|
406
406
|
},
|
|
@@ -657,5 +657,5 @@
|
|
|
657
657
|
]
|
|
658
658
|
}
|
|
659
659
|
},
|
|
660
|
-
"version": "0.0.
|
|
660
|
+
"version": "0.0.39"
|
|
661
661
|
}
|