@mailmodo/cli 0.0.56-beta.pr58.95 → 0.0.56-beta.pr58.96
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/constants.d.ts +2 -2
- package/dist/lib/constants.js +2 -4
- package/oclif.manifest.json +79 -79
- package/package.json +1 -1
package/dist/lib/constants.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* when this is true so end users never see internal request metadata.
|
|
5
5
|
*/
|
|
6
6
|
export declare const IS_DEV_MODE: boolean;
|
|
7
|
-
export declare const API_BASE_URL
|
|
7
|
+
export declare const API_BASE_URL: string;
|
|
8
8
|
export declare const API_ENDPOINTS: Readonly<{
|
|
9
9
|
ANALYTICS: "/analytics";
|
|
10
10
|
ANALYZE: "/analyze";
|
|
@@ -31,7 +31,7 @@ export declare const API_ENDPOINTS: Readonly<{
|
|
|
31
31
|
SEQUENCES_SDK: "/sequences/sdk";
|
|
32
32
|
SEQUENCES_VALIDATE: "/sequences/validate";
|
|
33
33
|
}>;
|
|
34
|
-
export declare const LOGIN_URL
|
|
34
|
+
export declare const LOGIN_URL: string;
|
|
35
35
|
export declare const PREVIEW_PORT = 3421;
|
|
36
36
|
export declare const DEFAULT_BRAND_COLOR = "#1A56DB";
|
|
37
37
|
export declare const TEMPLATES_DIR = "mailmodo";
|
package/dist/lib/constants.js
CHANGED
|
@@ -6,8 +6,7 @@ const DEV_API_BASE_URL = 'https://app-vertex-debug.azurewebsites.net';
|
|
|
6
6
|
* when this is true so end users never see internal request metadata.
|
|
7
7
|
*/
|
|
8
8
|
export const IS_DEV_MODE = Boolean(process.env.MAILMODO_DEV_TSX || process.env.MAILMODO_DEBUG);
|
|
9
|
-
|
|
10
|
-
const PRODUCTION_API_BASE_URL = 'https://app-vertex-debug.azurewebsites.net';
|
|
9
|
+
const PRODUCTION_API_BASE_URL = 'https://api.mailmodo.dev';
|
|
11
10
|
export const API_BASE_URL = process.env.MAILMODO_DEV_TSX
|
|
12
11
|
? DEV_API_BASE_URL
|
|
13
12
|
: PRODUCTION_API_BASE_URL;
|
|
@@ -38,8 +37,7 @@ export const API_ENDPOINTS = Object.freeze({
|
|
|
38
37
|
SEQUENCES_VALIDATE: '/sequences/validate',
|
|
39
38
|
});
|
|
40
39
|
const DEV_LOGIN_URL = 'https://app-vertex-debug.azurewebsites.net/signup.html';
|
|
41
|
-
|
|
42
|
-
const PRODUCTION_LOGIN_URL = 'https://app-vertex-debug.azurewebsites.net/signup.html';
|
|
40
|
+
const PRODUCTION_LOGIN_URL = 'https://app.mailmodo.dev';
|
|
43
41
|
export const LOGIN_URL = process.env.MAILMODO_DEV_TSX
|
|
44
42
|
? DEV_LOGIN_URL
|
|
45
43
|
: PRODUCTION_LOGIN_URL;
|
package/oclif.manifest.json
CHANGED
|
@@ -137,67 +137,6 @@
|
|
|
137
137
|
"index.js"
|
|
138
138
|
]
|
|
139
139
|
},
|
|
140
|
-
"deploy": {
|
|
141
|
-
"aliases": [],
|
|
142
|
-
"args": {},
|
|
143
|
-
"description": "Deploy, pause, or resume an email sequence",
|
|
144
|
-
"examples": [
|
|
145
|
-
"<%= config.bin %> deploy",
|
|
146
|
-
"<%= config.bin %> deploy --yes",
|
|
147
|
-
"<%= config.bin %> deploy --pause seq_abc123",
|
|
148
|
-
"<%= config.bin %> deploy --resume seq_abc123 --json"
|
|
149
|
-
],
|
|
150
|
-
"flags": {
|
|
151
|
-
"json": {
|
|
152
|
-
"description": "Output as JSON",
|
|
153
|
-
"name": "json",
|
|
154
|
-
"allowNo": false,
|
|
155
|
-
"type": "boolean"
|
|
156
|
-
},
|
|
157
|
-
"yes": {
|
|
158
|
-
"char": "y",
|
|
159
|
-
"description": "Skip confirmation prompts",
|
|
160
|
-
"name": "yes",
|
|
161
|
-
"allowNo": false,
|
|
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"
|
|
183
|
-
}
|
|
184
|
-
},
|
|
185
|
-
"hasDynamicHelp": false,
|
|
186
|
-
"hiddenAliases": [],
|
|
187
|
-
"id": "deploy",
|
|
188
|
-
"pluginAlias": "@mailmodo/cli",
|
|
189
|
-
"pluginName": "@mailmodo/cli",
|
|
190
|
-
"pluginType": "core",
|
|
191
|
-
"strict": true,
|
|
192
|
-
"enableJsonFlag": false,
|
|
193
|
-
"isESM": true,
|
|
194
|
-
"relativePath": [
|
|
195
|
-
"dist",
|
|
196
|
-
"commands",
|
|
197
|
-
"deploy",
|
|
198
|
-
"index.js"
|
|
199
|
-
]
|
|
200
|
-
},
|
|
201
140
|
"deployments": {
|
|
202
141
|
"aliases": [],
|
|
203
142
|
"args": {},
|
|
@@ -237,14 +176,15 @@
|
|
|
237
176
|
"index.js"
|
|
238
177
|
]
|
|
239
178
|
},
|
|
240
|
-
"
|
|
179
|
+
"deploy": {
|
|
241
180
|
"aliases": [],
|
|
242
181
|
"args": {},
|
|
243
|
-
"description": "
|
|
182
|
+
"description": "Deploy, pause, or resume an email sequence",
|
|
244
183
|
"examples": [
|
|
245
|
-
"<%= config.bin %>
|
|
246
|
-
"<%= config.bin %>
|
|
247
|
-
"<%= config.bin %>
|
|
184
|
+
"<%= config.bin %> deploy",
|
|
185
|
+
"<%= config.bin %> deploy --yes",
|
|
186
|
+
"<%= config.bin %> deploy --pause seq_abc123",
|
|
187
|
+
"<%= config.bin %> deploy --resume seq_abc123 --json"
|
|
248
188
|
],
|
|
249
189
|
"flags": {
|
|
250
190
|
"json": {
|
|
@@ -260,22 +200,30 @@
|
|
|
260
200
|
"allowNo": false,
|
|
261
201
|
"type": "boolean"
|
|
262
202
|
},
|
|
263
|
-
"
|
|
264
|
-
"description": "
|
|
265
|
-
"
|
|
266
|
-
|
|
267
|
-
|
|
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"
|
|
268
212
|
},
|
|
269
|
-
"
|
|
270
|
-
"description": "
|
|
271
|
-
"
|
|
272
|
-
|
|
273
|
-
|
|
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"
|
|
274
222
|
}
|
|
275
223
|
},
|
|
276
224
|
"hasDynamicHelp": false,
|
|
277
225
|
"hiddenAliases": [],
|
|
278
|
-
"id": "
|
|
226
|
+
"id": "deploy",
|
|
279
227
|
"pluginAlias": "@mailmodo/cli",
|
|
280
228
|
"pluginName": "@mailmodo/cli",
|
|
281
229
|
"pluginType": "core",
|
|
@@ -285,7 +233,7 @@
|
|
|
285
233
|
"relativePath": [
|
|
286
234
|
"dist",
|
|
287
235
|
"commands",
|
|
288
|
-
"
|
|
236
|
+
"deploy",
|
|
289
237
|
"index.js"
|
|
290
238
|
]
|
|
291
239
|
},
|
|
@@ -380,6 +328,58 @@
|
|
|
380
328
|
"index.js"
|
|
381
329
|
]
|
|
382
330
|
},
|
|
331
|
+
"domain": {
|
|
332
|
+
"aliases": [],
|
|
333
|
+
"args": {},
|
|
334
|
+
"description": "Set up and verify your sending domain",
|
|
335
|
+
"examples": [
|
|
336
|
+
"<%= config.bin %> domain",
|
|
337
|
+
"<%= config.bin %> domain --verify",
|
|
338
|
+
"<%= config.bin %> domain --status"
|
|
339
|
+
],
|
|
340
|
+
"flags": {
|
|
341
|
+
"json": {
|
|
342
|
+
"description": "Output as JSON",
|
|
343
|
+
"name": "json",
|
|
344
|
+
"allowNo": false,
|
|
345
|
+
"type": "boolean"
|
|
346
|
+
},
|
|
347
|
+
"yes": {
|
|
348
|
+
"char": "y",
|
|
349
|
+
"description": "Skip confirmation prompts",
|
|
350
|
+
"name": "yes",
|
|
351
|
+
"allowNo": false,
|
|
352
|
+
"type": "boolean"
|
|
353
|
+
},
|
|
354
|
+
"status": {
|
|
355
|
+
"description": "Show domain health status",
|
|
356
|
+
"name": "status",
|
|
357
|
+
"allowNo": false,
|
|
358
|
+
"type": "boolean"
|
|
359
|
+
},
|
|
360
|
+
"verify": {
|
|
361
|
+
"description": "Verify DNS records",
|
|
362
|
+
"name": "verify",
|
|
363
|
+
"allowNo": false,
|
|
364
|
+
"type": "boolean"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"hasDynamicHelp": false,
|
|
368
|
+
"hiddenAliases": [],
|
|
369
|
+
"id": "domain",
|
|
370
|
+
"pluginAlias": "@mailmodo/cli",
|
|
371
|
+
"pluginName": "@mailmodo/cli",
|
|
372
|
+
"pluginType": "core",
|
|
373
|
+
"strict": true,
|
|
374
|
+
"enableJsonFlag": false,
|
|
375
|
+
"isESM": true,
|
|
376
|
+
"relativePath": [
|
|
377
|
+
"dist",
|
|
378
|
+
"commands",
|
|
379
|
+
"domain",
|
|
380
|
+
"index.js"
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
383
|
"init": {
|
|
384
384
|
"aliases": [],
|
|
385
385
|
"args": {},
|
|
@@ -765,5 +765,5 @@
|
|
|
765
765
|
]
|
|
766
766
|
}
|
|
767
767
|
},
|
|
768
|
-
"version": "0.0.56-beta.pr58.
|
|
768
|
+
"version": "0.0.56-beta.pr58.96"
|
|
769
769
|
}
|
package/package.json
CHANGED