@mailmodo/cli 0.0.57 → 0.0.58
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/oclif.manifest.json +168 -168
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -137,13 +137,15 @@
|
|
|
137
137
|
"index.js"
|
|
138
138
|
]
|
|
139
139
|
},
|
|
140
|
-
"
|
|
140
|
+
"deploy": {
|
|
141
141
|
"aliases": [],
|
|
142
142
|
"args": {},
|
|
143
|
-
"description": "
|
|
143
|
+
"description": "Deploy, pause, or resume an email sequence",
|
|
144
144
|
"examples": [
|
|
145
|
-
"<%= config.bin %>
|
|
146
|
-
"<%= config.bin %>
|
|
145
|
+
"<%= config.bin %> deploy",
|
|
146
|
+
"<%= config.bin %> deploy --yes",
|
|
147
|
+
"<%= config.bin %> deploy --pause seq_abc123",
|
|
148
|
+
"<%= config.bin %> deploy --resume seq_abc123 --json"
|
|
147
149
|
],
|
|
148
150
|
"flags": {
|
|
149
151
|
"json": {
|
|
@@ -158,11 +160,31 @@
|
|
|
158
160
|
"name": "yes",
|
|
159
161
|
"allowNo": false,
|
|
160
162
|
"type": "boolean"
|
|
163
|
+
},
|
|
164
|
+
"pause": {
|
|
165
|
+
"description": "Pause a deployed sequence by ID (stops scheduled + triggered sends)",
|
|
166
|
+
"exclusive": [
|
|
167
|
+
"resume"
|
|
168
|
+
],
|
|
169
|
+
"name": "pause",
|
|
170
|
+
"hasDynamicHelp": false,
|
|
171
|
+
"multiple": false,
|
|
172
|
+
"type": "option"
|
|
173
|
+
},
|
|
174
|
+
"resume": {
|
|
175
|
+
"description": "Resume a paused sequence by ID",
|
|
176
|
+
"exclusive": [
|
|
177
|
+
"pause"
|
|
178
|
+
],
|
|
179
|
+
"name": "resume",
|
|
180
|
+
"hasDynamicHelp": false,
|
|
181
|
+
"multiple": false,
|
|
182
|
+
"type": "option"
|
|
161
183
|
}
|
|
162
184
|
},
|
|
163
185
|
"hasDynamicHelp": false,
|
|
164
186
|
"hiddenAliases": [],
|
|
165
|
-
"id": "
|
|
187
|
+
"id": "deploy",
|
|
166
188
|
"pluginAlias": "@mailmodo/cli",
|
|
167
189
|
"pluginName": "@mailmodo/cli",
|
|
168
190
|
"pluginType": "core",
|
|
@@ -172,19 +194,17 @@
|
|
|
172
194
|
"relativePath": [
|
|
173
195
|
"dist",
|
|
174
196
|
"commands",
|
|
175
|
-
"
|
|
197
|
+
"deploy",
|
|
176
198
|
"index.js"
|
|
177
199
|
]
|
|
178
200
|
},
|
|
179
|
-
"
|
|
201
|
+
"deployments": {
|
|
180
202
|
"aliases": [],
|
|
181
203
|
"args": {},
|
|
182
|
-
"description": "
|
|
204
|
+
"description": "List every deployed sequence on this account, with the IDs needed for deploy --pause / --resume",
|
|
183
205
|
"examples": [
|
|
184
|
-
"<%= config.bin %>
|
|
185
|
-
"<%= config.bin %>
|
|
186
|
-
"<%= config.bin %> deploy --pause seq_abc123",
|
|
187
|
-
"<%= config.bin %> deploy --resume seq_abc123 --json"
|
|
206
|
+
"<%= config.bin %> deployments",
|
|
207
|
+
"<%= config.bin %> deployments --json"
|
|
188
208
|
],
|
|
189
209
|
"flags": {
|
|
190
210
|
"json": {
|
|
@@ -199,31 +219,11 @@
|
|
|
199
219
|
"name": "yes",
|
|
200
220
|
"allowNo": false,
|
|
201
221
|
"type": "boolean"
|
|
202
|
-
},
|
|
203
|
-
"pause": {
|
|
204
|
-
"description": "Pause a deployed sequence by ID (stops scheduled + triggered sends)",
|
|
205
|
-
"exclusive": [
|
|
206
|
-
"resume"
|
|
207
|
-
],
|
|
208
|
-
"name": "pause",
|
|
209
|
-
"hasDynamicHelp": false,
|
|
210
|
-
"multiple": false,
|
|
211
|
-
"type": "option"
|
|
212
|
-
},
|
|
213
|
-
"resume": {
|
|
214
|
-
"description": "Resume a paused sequence by ID",
|
|
215
|
-
"exclusive": [
|
|
216
|
-
"pause"
|
|
217
|
-
],
|
|
218
|
-
"name": "resume",
|
|
219
|
-
"hasDynamicHelp": false,
|
|
220
|
-
"multiple": false,
|
|
221
|
-
"type": "option"
|
|
222
222
|
}
|
|
223
223
|
},
|
|
224
224
|
"hasDynamicHelp": false,
|
|
225
225
|
"hiddenAliases": [],
|
|
226
|
-
"id": "
|
|
226
|
+
"id": "deployments",
|
|
227
227
|
"pluginAlias": "@mailmodo/cli",
|
|
228
228
|
"pluginName": "@mailmodo/cli",
|
|
229
229
|
"pluginType": "core",
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
"relativePath": [
|
|
234
234
|
"dist",
|
|
235
235
|
"commands",
|
|
236
|
-
"
|
|
236
|
+
"deployments",
|
|
237
237
|
"index.js"
|
|
238
238
|
]
|
|
239
239
|
},
|
|
@@ -631,6 +631,139 @@
|
|
|
631
631
|
"index.js"
|
|
632
632
|
]
|
|
633
633
|
},
|
|
634
|
+
"sdk": {
|
|
635
|
+
"aliases": [],
|
|
636
|
+
"args": {},
|
|
637
|
+
"description": "Show the SDK track() / identify() reference for deployed sequences",
|
|
638
|
+
"examples": [
|
|
639
|
+
"<%= config.bin %> sdk",
|
|
640
|
+
"<%= config.bin %> sdk --sequence-id a1b2c3d4",
|
|
641
|
+
"<%= config.bin %> sdk --json"
|
|
642
|
+
],
|
|
643
|
+
"flags": {
|
|
644
|
+
"json": {
|
|
645
|
+
"description": "Output as JSON",
|
|
646
|
+
"name": "json",
|
|
647
|
+
"allowNo": false,
|
|
648
|
+
"type": "boolean"
|
|
649
|
+
},
|
|
650
|
+
"yes": {
|
|
651
|
+
"char": "y",
|
|
652
|
+
"description": "Skip confirmation prompts",
|
|
653
|
+
"name": "yes",
|
|
654
|
+
"allowNo": false,
|
|
655
|
+
"type": "boolean"
|
|
656
|
+
},
|
|
657
|
+
"sequence-id": {
|
|
658
|
+
"description": "Limit output to a single active sequence by ID (default: all active sequences)",
|
|
659
|
+
"name": "sequence-id",
|
|
660
|
+
"hasDynamicHelp": false,
|
|
661
|
+
"multiple": false,
|
|
662
|
+
"type": "option"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"hasDynamicHelp": false,
|
|
666
|
+
"hiddenAliases": [],
|
|
667
|
+
"id": "sdk",
|
|
668
|
+
"pluginAlias": "@mailmodo/cli",
|
|
669
|
+
"pluginName": "@mailmodo/cli",
|
|
670
|
+
"pluginType": "core",
|
|
671
|
+
"strict": true,
|
|
672
|
+
"enableJsonFlag": false,
|
|
673
|
+
"isESM": true,
|
|
674
|
+
"relativePath": [
|
|
675
|
+
"dist",
|
|
676
|
+
"commands",
|
|
677
|
+
"sdk",
|
|
678
|
+
"index.js"
|
|
679
|
+
]
|
|
680
|
+
},
|
|
681
|
+
"settings": {
|
|
682
|
+
"aliases": [],
|
|
683
|
+
"args": {},
|
|
684
|
+
"description": "View and update project settings",
|
|
685
|
+
"examples": [
|
|
686
|
+
"<%= config.bin %> settings",
|
|
687
|
+
"<%= config.bin %> settings --set brand_color=#0F3460",
|
|
688
|
+
"<%= config.bin %> settings --json"
|
|
689
|
+
],
|
|
690
|
+
"flags": {
|
|
691
|
+
"json": {
|
|
692
|
+
"description": "Output as JSON",
|
|
693
|
+
"name": "json",
|
|
694
|
+
"allowNo": false,
|
|
695
|
+
"type": "boolean"
|
|
696
|
+
},
|
|
697
|
+
"yes": {
|
|
698
|
+
"char": "y",
|
|
699
|
+
"description": "Skip confirmation prompts",
|
|
700
|
+
"name": "yes",
|
|
701
|
+
"allowNo": false,
|
|
702
|
+
"type": "boolean"
|
|
703
|
+
},
|
|
704
|
+
"set": {
|
|
705
|
+
"description": "Set a setting (format: key=value)",
|
|
706
|
+
"name": "set",
|
|
707
|
+
"hasDynamicHelp": false,
|
|
708
|
+
"multiple": false,
|
|
709
|
+
"type": "option"
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
"hasDynamicHelp": false,
|
|
713
|
+
"hiddenAliases": [],
|
|
714
|
+
"id": "settings",
|
|
715
|
+
"pluginAlias": "@mailmodo/cli",
|
|
716
|
+
"pluginName": "@mailmodo/cli",
|
|
717
|
+
"pluginType": "core",
|
|
718
|
+
"strict": true,
|
|
719
|
+
"enableJsonFlag": false,
|
|
720
|
+
"isESM": true,
|
|
721
|
+
"relativePath": [
|
|
722
|
+
"dist",
|
|
723
|
+
"commands",
|
|
724
|
+
"settings",
|
|
725
|
+
"index.js"
|
|
726
|
+
]
|
|
727
|
+
},
|
|
728
|
+
"status": {
|
|
729
|
+
"aliases": [],
|
|
730
|
+
"args": {},
|
|
731
|
+
"description": "View email performance metrics and quota usage",
|
|
732
|
+
"examples": [
|
|
733
|
+
"<%= config.bin %> status",
|
|
734
|
+
"<%= config.bin %> status --json"
|
|
735
|
+
],
|
|
736
|
+
"flags": {
|
|
737
|
+
"json": {
|
|
738
|
+
"description": "Output as JSON",
|
|
739
|
+
"name": "json",
|
|
740
|
+
"allowNo": false,
|
|
741
|
+
"type": "boolean"
|
|
742
|
+
},
|
|
743
|
+
"yes": {
|
|
744
|
+
"char": "y",
|
|
745
|
+
"description": "Skip confirmation prompts",
|
|
746
|
+
"name": "yes",
|
|
747
|
+
"allowNo": false,
|
|
748
|
+
"type": "boolean"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
"hasDynamicHelp": false,
|
|
752
|
+
"hiddenAliases": [],
|
|
753
|
+
"id": "status",
|
|
754
|
+
"pluginAlias": "@mailmodo/cli",
|
|
755
|
+
"pluginName": "@mailmodo/cli",
|
|
756
|
+
"pluginType": "core",
|
|
757
|
+
"strict": true,
|
|
758
|
+
"enableJsonFlag": false,
|
|
759
|
+
"isESM": true,
|
|
760
|
+
"relativePath": [
|
|
761
|
+
"dist",
|
|
762
|
+
"commands",
|
|
763
|
+
"status",
|
|
764
|
+
"index.js"
|
|
765
|
+
]
|
|
766
|
+
},
|
|
634
767
|
"report": {
|
|
635
768
|
"aliases": [],
|
|
636
769
|
"args": {},
|
|
@@ -797,140 +930,7 @@
|
|
|
797
930
|
"report",
|
|
798
931
|
"index.js"
|
|
799
932
|
]
|
|
800
|
-
},
|
|
801
|
-
"sdk": {
|
|
802
|
-
"aliases": [],
|
|
803
|
-
"args": {},
|
|
804
|
-
"description": "Show the SDK track() / identify() reference for deployed sequences",
|
|
805
|
-
"examples": [
|
|
806
|
-
"<%= config.bin %> sdk",
|
|
807
|
-
"<%= config.bin %> sdk --sequence-id a1b2c3d4",
|
|
808
|
-
"<%= config.bin %> sdk --json"
|
|
809
|
-
],
|
|
810
|
-
"flags": {
|
|
811
|
-
"json": {
|
|
812
|
-
"description": "Output as JSON",
|
|
813
|
-
"name": "json",
|
|
814
|
-
"allowNo": false,
|
|
815
|
-
"type": "boolean"
|
|
816
|
-
},
|
|
817
|
-
"yes": {
|
|
818
|
-
"char": "y",
|
|
819
|
-
"description": "Skip confirmation prompts",
|
|
820
|
-
"name": "yes",
|
|
821
|
-
"allowNo": false,
|
|
822
|
-
"type": "boolean"
|
|
823
|
-
},
|
|
824
|
-
"sequence-id": {
|
|
825
|
-
"description": "Limit output to a single active sequence by ID (default: all active sequences)",
|
|
826
|
-
"name": "sequence-id",
|
|
827
|
-
"hasDynamicHelp": false,
|
|
828
|
-
"multiple": false,
|
|
829
|
-
"type": "option"
|
|
830
|
-
}
|
|
831
|
-
},
|
|
832
|
-
"hasDynamicHelp": false,
|
|
833
|
-
"hiddenAliases": [],
|
|
834
|
-
"id": "sdk",
|
|
835
|
-
"pluginAlias": "@mailmodo/cli",
|
|
836
|
-
"pluginName": "@mailmodo/cli",
|
|
837
|
-
"pluginType": "core",
|
|
838
|
-
"strict": true,
|
|
839
|
-
"enableJsonFlag": false,
|
|
840
|
-
"isESM": true,
|
|
841
|
-
"relativePath": [
|
|
842
|
-
"dist",
|
|
843
|
-
"commands",
|
|
844
|
-
"sdk",
|
|
845
|
-
"index.js"
|
|
846
|
-
]
|
|
847
|
-
},
|
|
848
|
-
"settings": {
|
|
849
|
-
"aliases": [],
|
|
850
|
-
"args": {},
|
|
851
|
-
"description": "View and update project settings",
|
|
852
|
-
"examples": [
|
|
853
|
-
"<%= config.bin %> settings",
|
|
854
|
-
"<%= config.bin %> settings --set brand_color=#0F3460",
|
|
855
|
-
"<%= config.bin %> settings --json"
|
|
856
|
-
],
|
|
857
|
-
"flags": {
|
|
858
|
-
"json": {
|
|
859
|
-
"description": "Output as JSON",
|
|
860
|
-
"name": "json",
|
|
861
|
-
"allowNo": false,
|
|
862
|
-
"type": "boolean"
|
|
863
|
-
},
|
|
864
|
-
"yes": {
|
|
865
|
-
"char": "y",
|
|
866
|
-
"description": "Skip confirmation prompts",
|
|
867
|
-
"name": "yes",
|
|
868
|
-
"allowNo": false,
|
|
869
|
-
"type": "boolean"
|
|
870
|
-
},
|
|
871
|
-
"set": {
|
|
872
|
-
"description": "Set a setting (format: key=value)",
|
|
873
|
-
"name": "set",
|
|
874
|
-
"hasDynamicHelp": false,
|
|
875
|
-
"multiple": false,
|
|
876
|
-
"type": "option"
|
|
877
|
-
}
|
|
878
|
-
},
|
|
879
|
-
"hasDynamicHelp": false,
|
|
880
|
-
"hiddenAliases": [],
|
|
881
|
-
"id": "settings",
|
|
882
|
-
"pluginAlias": "@mailmodo/cli",
|
|
883
|
-
"pluginName": "@mailmodo/cli",
|
|
884
|
-
"pluginType": "core",
|
|
885
|
-
"strict": true,
|
|
886
|
-
"enableJsonFlag": false,
|
|
887
|
-
"isESM": true,
|
|
888
|
-
"relativePath": [
|
|
889
|
-
"dist",
|
|
890
|
-
"commands",
|
|
891
|
-
"settings",
|
|
892
|
-
"index.js"
|
|
893
|
-
]
|
|
894
|
-
},
|
|
895
|
-
"status": {
|
|
896
|
-
"aliases": [],
|
|
897
|
-
"args": {},
|
|
898
|
-
"description": "View email performance metrics and quota usage",
|
|
899
|
-
"examples": [
|
|
900
|
-
"<%= config.bin %> status",
|
|
901
|
-
"<%= config.bin %> status --json"
|
|
902
|
-
],
|
|
903
|
-
"flags": {
|
|
904
|
-
"json": {
|
|
905
|
-
"description": "Output as JSON",
|
|
906
|
-
"name": "json",
|
|
907
|
-
"allowNo": false,
|
|
908
|
-
"type": "boolean"
|
|
909
|
-
},
|
|
910
|
-
"yes": {
|
|
911
|
-
"char": "y",
|
|
912
|
-
"description": "Skip confirmation prompts",
|
|
913
|
-
"name": "yes",
|
|
914
|
-
"allowNo": false,
|
|
915
|
-
"type": "boolean"
|
|
916
|
-
}
|
|
917
|
-
},
|
|
918
|
-
"hasDynamicHelp": false,
|
|
919
|
-
"hiddenAliases": [],
|
|
920
|
-
"id": "status",
|
|
921
|
-
"pluginAlias": "@mailmodo/cli",
|
|
922
|
-
"pluginName": "@mailmodo/cli",
|
|
923
|
-
"pluginType": "core",
|
|
924
|
-
"strict": true,
|
|
925
|
-
"enableJsonFlag": false,
|
|
926
|
-
"isESM": true,
|
|
927
|
-
"relativePath": [
|
|
928
|
-
"dist",
|
|
929
|
-
"commands",
|
|
930
|
-
"status",
|
|
931
|
-
"index.js"
|
|
932
|
-
]
|
|
933
933
|
}
|
|
934
934
|
},
|
|
935
|
-
"version": "0.0.
|
|
935
|
+
"version": "0.0.58"
|
|
936
936
|
}
|