@mailmodo/cli 0.0.27 → 0.0.28
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/commands/deploy/index.js +1 -3
- package/oclif.manifest.json +93 -93
- package/package.json +1 -1
|
@@ -73,9 +73,7 @@ export default class Deploy extends BaseCommand {
|
|
|
73
73
|
return {
|
|
74
74
|
condition: email.condition || null,
|
|
75
75
|
ctaText: email.ctaText || '',
|
|
76
|
-
delay:
|
|
77
|
-
? Number.parseInt(email.delay, 10) || 0
|
|
78
|
-
: email.delay,
|
|
76
|
+
delay: email.delay,
|
|
79
77
|
goal: email.goal || '',
|
|
80
78
|
id: email.id,
|
|
81
79
|
isReminder: false,
|
package/oclif.manifest.json
CHANGED
|
@@ -76,13 +76,15 @@
|
|
|
76
76
|
"index.js"
|
|
77
77
|
]
|
|
78
78
|
},
|
|
79
|
-
"
|
|
79
|
+
"contacts": {
|
|
80
80
|
"aliases": [],
|
|
81
81
|
"args": {},
|
|
82
|
-
"description": "
|
|
82
|
+
"description": "Manage contacts — search, export, or delete",
|
|
83
83
|
"examples": [
|
|
84
|
-
"<%= config.bin %>
|
|
85
|
-
"<%= config.bin %>
|
|
84
|
+
"<%= config.bin %> contacts",
|
|
85
|
+
"<%= config.bin %> contacts --search sarah@example.com",
|
|
86
|
+
"<%= config.bin %> contacts --export # GDPR CSV → contacts.csv",
|
|
87
|
+
"<%= config.bin %> contacts --delete sarah@example.com"
|
|
86
88
|
],
|
|
87
89
|
"flags": {
|
|
88
90
|
"json": {
|
|
@@ -97,11 +99,31 @@
|
|
|
97
99
|
"name": "yes",
|
|
98
100
|
"allowNo": false,
|
|
99
101
|
"type": "boolean"
|
|
102
|
+
},
|
|
103
|
+
"delete": {
|
|
104
|
+
"description": "GDPR hard delete a contact by email",
|
|
105
|
+
"name": "delete",
|
|
106
|
+
"hasDynamicHelp": false,
|
|
107
|
+
"multiple": false,
|
|
108
|
+
"type": "option"
|
|
109
|
+
},
|
|
110
|
+
"export": {
|
|
111
|
+
"description": "Export all contacts as GDPR-compliant CSV (writes contacts.csv in the current directory)",
|
|
112
|
+
"name": "export",
|
|
113
|
+
"allowNo": false,
|
|
114
|
+
"type": "boolean"
|
|
115
|
+
},
|
|
116
|
+
"search": {
|
|
117
|
+
"description": "Search for a contact by email",
|
|
118
|
+
"name": "search",
|
|
119
|
+
"hasDynamicHelp": false,
|
|
120
|
+
"multiple": false,
|
|
121
|
+
"type": "option"
|
|
100
122
|
}
|
|
101
123
|
},
|
|
102
124
|
"hasDynamicHelp": false,
|
|
103
125
|
"hiddenAliases": [],
|
|
104
|
-
"id": "
|
|
126
|
+
"id": "contacts",
|
|
105
127
|
"pluginAlias": "@mailmodo/cli",
|
|
106
128
|
"pluginName": "@mailmodo/cli",
|
|
107
129
|
"pluginType": "core",
|
|
@@ -111,19 +133,17 @@
|
|
|
111
133
|
"relativePath": [
|
|
112
134
|
"dist",
|
|
113
135
|
"commands",
|
|
114
|
-
"
|
|
136
|
+
"contacts",
|
|
115
137
|
"index.js"
|
|
116
138
|
]
|
|
117
139
|
},
|
|
118
|
-
"
|
|
140
|
+
"deploy": {
|
|
119
141
|
"aliases": [],
|
|
120
142
|
"args": {},
|
|
121
|
-
"description": "
|
|
143
|
+
"description": "Deploy email sequences and verify sending domain",
|
|
122
144
|
"examples": [
|
|
123
|
-
"<%= config.bin %>
|
|
124
|
-
"<%= config.bin %>
|
|
125
|
-
"<%= config.bin %> contacts --export # GDPR CSV → contacts.csv",
|
|
126
|
-
"<%= config.bin %> contacts --delete sarah@example.com"
|
|
145
|
+
"<%= config.bin %> deploy",
|
|
146
|
+
"<%= config.bin %> deploy --yes"
|
|
127
147
|
],
|
|
128
148
|
"flags": {
|
|
129
149
|
"json": {
|
|
@@ -138,31 +158,11 @@
|
|
|
138
158
|
"name": "yes",
|
|
139
159
|
"allowNo": false,
|
|
140
160
|
"type": "boolean"
|
|
141
|
-
},
|
|
142
|
-
"delete": {
|
|
143
|
-
"description": "GDPR hard delete a contact by email",
|
|
144
|
-
"name": "delete",
|
|
145
|
-
"hasDynamicHelp": false,
|
|
146
|
-
"multiple": false,
|
|
147
|
-
"type": "option"
|
|
148
|
-
},
|
|
149
|
-
"export": {
|
|
150
|
-
"description": "Export all contacts as GDPR-compliant CSV (writes contacts.csv in the current directory)",
|
|
151
|
-
"name": "export",
|
|
152
|
-
"allowNo": false,
|
|
153
|
-
"type": "boolean"
|
|
154
|
-
},
|
|
155
|
-
"search": {
|
|
156
|
-
"description": "Search for a contact by email",
|
|
157
|
-
"name": "search",
|
|
158
|
-
"hasDynamicHelp": false,
|
|
159
|
-
"multiple": false,
|
|
160
|
-
"type": "option"
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
"hasDynamicHelp": false,
|
|
164
164
|
"hiddenAliases": [],
|
|
165
|
-
"id": "
|
|
165
|
+
"id": "deploy",
|
|
166
166
|
"pluginAlias": "@mailmodo/cli",
|
|
167
167
|
"pluginName": "@mailmodo/cli",
|
|
168
168
|
"pluginType": "core",
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"relativePath": [
|
|
173
173
|
"dist",
|
|
174
174
|
"commands",
|
|
175
|
-
"
|
|
175
|
+
"deploy",
|
|
176
176
|
"index.js"
|
|
177
177
|
]
|
|
178
178
|
},
|
|
@@ -404,6 +404,44 @@
|
|
|
404
404
|
"index.js"
|
|
405
405
|
]
|
|
406
406
|
},
|
|
407
|
+
"logout": {
|
|
408
|
+
"aliases": [],
|
|
409
|
+
"args": {},
|
|
410
|
+
"description": "Sign out by removing saved credentials from this machine",
|
|
411
|
+
"examples": [
|
|
412
|
+
"<%= config.bin %> logout"
|
|
413
|
+
],
|
|
414
|
+
"flags": {
|
|
415
|
+
"json": {
|
|
416
|
+
"description": "Output as JSON",
|
|
417
|
+
"name": "json",
|
|
418
|
+
"allowNo": false,
|
|
419
|
+
"type": "boolean"
|
|
420
|
+
},
|
|
421
|
+
"yes": {
|
|
422
|
+
"char": "y",
|
|
423
|
+
"description": "Skip confirmation prompts",
|
|
424
|
+
"name": "yes",
|
|
425
|
+
"allowNo": false,
|
|
426
|
+
"type": "boolean"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"hasDynamicHelp": false,
|
|
430
|
+
"hiddenAliases": [],
|
|
431
|
+
"id": "logout",
|
|
432
|
+
"pluginAlias": "@mailmodo/cli",
|
|
433
|
+
"pluginName": "@mailmodo/cli",
|
|
434
|
+
"pluginType": "core",
|
|
435
|
+
"strict": true,
|
|
436
|
+
"enableJsonFlag": false,
|
|
437
|
+
"isESM": true,
|
|
438
|
+
"relativePath": [
|
|
439
|
+
"dist",
|
|
440
|
+
"commands",
|
|
441
|
+
"logout",
|
|
442
|
+
"index.js"
|
|
443
|
+
]
|
|
444
|
+
},
|
|
407
445
|
"logs": {
|
|
408
446
|
"aliases": [],
|
|
409
447
|
"args": {},
|
|
@@ -474,44 +512,6 @@
|
|
|
474
512
|
"index.js"
|
|
475
513
|
]
|
|
476
514
|
},
|
|
477
|
-
"logout": {
|
|
478
|
-
"aliases": [],
|
|
479
|
-
"args": {},
|
|
480
|
-
"description": "Sign out by removing saved credentials from this machine",
|
|
481
|
-
"examples": [
|
|
482
|
-
"<%= config.bin %> logout"
|
|
483
|
-
],
|
|
484
|
-
"flags": {
|
|
485
|
-
"json": {
|
|
486
|
-
"description": "Output as JSON",
|
|
487
|
-
"name": "json",
|
|
488
|
-
"allowNo": false,
|
|
489
|
-
"type": "boolean"
|
|
490
|
-
},
|
|
491
|
-
"yes": {
|
|
492
|
-
"char": "y",
|
|
493
|
-
"description": "Skip confirmation prompts",
|
|
494
|
-
"name": "yes",
|
|
495
|
-
"allowNo": false,
|
|
496
|
-
"type": "boolean"
|
|
497
|
-
}
|
|
498
|
-
},
|
|
499
|
-
"hasDynamicHelp": false,
|
|
500
|
-
"hiddenAliases": [],
|
|
501
|
-
"id": "logout",
|
|
502
|
-
"pluginAlias": "@mailmodo/cli",
|
|
503
|
-
"pluginName": "@mailmodo/cli",
|
|
504
|
-
"pluginType": "core",
|
|
505
|
-
"strict": true,
|
|
506
|
-
"enableJsonFlag": false,
|
|
507
|
-
"isESM": true,
|
|
508
|
-
"relativePath": [
|
|
509
|
-
"dist",
|
|
510
|
-
"commands",
|
|
511
|
-
"logout",
|
|
512
|
-
"index.js"
|
|
513
|
-
]
|
|
514
|
-
},
|
|
515
515
|
"preview": {
|
|
516
516
|
"aliases": [],
|
|
517
517
|
"args": {
|
|
@@ -570,13 +570,14 @@
|
|
|
570
570
|
"index.js"
|
|
571
571
|
]
|
|
572
572
|
},
|
|
573
|
-
"
|
|
573
|
+
"settings": {
|
|
574
574
|
"aliases": [],
|
|
575
575
|
"args": {},
|
|
576
|
-
"description": "View
|
|
576
|
+
"description": "View and update project settings",
|
|
577
577
|
"examples": [
|
|
578
|
-
"<%= config.bin %>
|
|
579
|
-
"<%= config.bin %>
|
|
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": "
|
|
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
|
-
"
|
|
616
|
+
"settings",
|
|
609
617
|
"index.js"
|
|
610
618
|
]
|
|
611
619
|
},
|
|
612
|
-
"
|
|
620
|
+
"status": {
|
|
613
621
|
"aliases": [],
|
|
614
622
|
"args": {},
|
|
615
|
-
"description": "View and
|
|
623
|
+
"description": "View email performance metrics and quota usage",
|
|
616
624
|
"examples": [
|
|
617
|
-
"<%= config.bin %>
|
|
618
|
-
"<%= config.bin %>
|
|
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": "
|
|
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
|
-
"
|
|
655
|
+
"status",
|
|
656
656
|
"index.js"
|
|
657
657
|
]
|
|
658
658
|
}
|
|
659
659
|
},
|
|
660
|
-
"version": "0.0.
|
|
660
|
+
"version": "0.0.28"
|
|
661
661
|
}
|