@mailmodo/cli 0.0.41-beta.pr43.70 → 0.0.41-beta.pr44.69
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.
|
@@ -113,7 +113,7 @@ export default class Contacts extends BaseCommand {
|
|
|
113
113
|
this.log(`\n Export status: ${status ?? 'unknown'}. No download URL yet.\n`);
|
|
114
114
|
return;
|
|
115
115
|
}
|
|
116
|
-
const fileResult = await this.apiClient.getPublicFile(downloadUrl.trim());
|
|
116
|
+
const fileResult = await this.withApiSpinner({ json: jsonOutput, text: ' Downloading CSV file...' }, () => this.apiClient.getPublicFile(downloadUrl.trim()));
|
|
117
117
|
if (!fileResult.ok) {
|
|
118
118
|
this.error(`Download failed: ${fileResult.status} ${fileResult.error ?? ''}\n` +
|
|
119
119
|
` URL: ${fileResult.debug.fullUrl}`);
|
|
@@ -138,15 +138,9 @@ export default class Deploy extends BaseCommand {
|
|
|
138
138
|
if (domainVerify.ok && domainVerify.data?.domainStatus === 'VERIFIED') {
|
|
139
139
|
return true;
|
|
140
140
|
}
|
|
141
|
-
if (yamlConfig.project?.domain) {
|
|
142
|
-
if (!flags.json) {
|
|
143
|
-
this.log(`\n ${INFO.DOMAIN_PENDING_VERIFICATION}\n`);
|
|
144
|
-
}
|
|
145
|
-
return false;
|
|
146
|
-
}
|
|
147
141
|
if (!flags.json) {
|
|
148
|
-
this.log(`\n No sending domain
|
|
149
|
-
this.log(` You need a
|
|
142
|
+
this.log(`\n No sending domain verified yet.`);
|
|
143
|
+
this.log(` You need to verify a domain before sending emails.`);
|
|
150
144
|
this.log(` This is a one-time setup. Takes about 5 minutes.\n`);
|
|
151
145
|
}
|
|
152
146
|
if (!flags.yes) {
|
|
@@ -261,7 +261,7 @@ export default class Settings extends BaseCommand {
|
|
|
261
261
|
const mimeType = mimeTypes[ext ?? ''] ?? 'application/octet-stream';
|
|
262
262
|
const formData = new FormData();
|
|
263
263
|
formData.append('logo', new Blob([new Uint8Array(fileBuffer)], { type: mimeType }), logoPath.split(/[/\\]/).pop() || 'logo.png');
|
|
264
|
-
const response = await this.apiClient.postFormData(API_ENDPOINTS.ASSETS_LOGO, formData);
|
|
264
|
+
const response = await this.withApiSpinner({ json: false, text: ' Uploading logo file...' }, () => this.apiClient.postFormData(API_ENDPOINTS.ASSETS_LOGO, formData));
|
|
265
265
|
if (!response.ok) {
|
|
266
266
|
this.handleApiError(response);
|
|
267
267
|
}
|
package/dist/lib/messages.d.ts
CHANGED
|
@@ -31,7 +31,6 @@ export declare const INFO: {
|
|
|
31
31
|
readonly DNS_RECORDS_FAILED: string;
|
|
32
32
|
readonly DOMAIN_NOT_DEPLOYED_HINT: `When ready, run: ${string}
|
|
33
33
|
Then: ${string}`;
|
|
34
|
-
readonly DOMAIN_PENDING_VERIFICATION: `Your domain is not verified yet. Please verify it first. Run ${string} to check the status.`;
|
|
35
34
|
readonly SEQUENCES_NOT_DEPLOYED: `Sequences saved but ${string}.`;
|
|
36
35
|
};
|
|
37
36
|
export declare function recordLabel(index: number): string;
|
package/dist/lib/messages.js
CHANGED
|
@@ -31,7 +31,6 @@ export const INFO = {
|
|
|
31
31
|
DNS_PROPAGATION: 'DNS changes take 5–30 minutes to propagate.',
|
|
32
32
|
DNS_RECORDS_FAILED: chalk.yellow('Some records failed.'),
|
|
33
33
|
DOMAIN_NOT_DEPLOYED_HINT: `When ready, run: ${chalk.cyan('mailmodo domain')}\n Then: ${chalk.cyan('mailmodo deploy')}`,
|
|
34
|
-
DOMAIN_PENDING_VERIFICATION: `Your domain is not verified yet. Please verify it first. Run ${chalk.cyan('mailmodo domain --verify')} to check the status.`,
|
|
35
34
|
SEQUENCES_NOT_DEPLOYED: `Sequences saved but ${chalk.yellow('NOT deployed')}.`,
|
|
36
35
|
};
|
|
37
36
|
export function recordLabel(index) {
|
package/oclif.manifest.json
CHANGED
|
@@ -228,13 +228,19 @@
|
|
|
228
228
|
"index.js"
|
|
229
229
|
]
|
|
230
230
|
},
|
|
231
|
-
"
|
|
231
|
+
"edit": {
|
|
232
232
|
"aliases": [],
|
|
233
|
-
"args": {
|
|
234
|
-
|
|
233
|
+
"args": {
|
|
234
|
+
"id": {
|
|
235
|
+
"description": "Email template ID to edit",
|
|
236
|
+
"name": "id",
|
|
237
|
+
"required": true
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"description": "Edit an email using AI-assisted natural language changes",
|
|
235
241
|
"examples": [
|
|
236
|
-
"<%= config.bin %>
|
|
237
|
-
"<%= config.bin %>
|
|
242
|
+
"<%= config.bin %> edit welcome",
|
|
243
|
+
"<%= config.bin %> edit welcome --change \"make subject more urgent\" --yes"
|
|
238
244
|
],
|
|
239
245
|
"flags": {
|
|
240
246
|
"json": {
|
|
@@ -249,11 +255,18 @@
|
|
|
249
255
|
"name": "yes",
|
|
250
256
|
"allowNo": false,
|
|
251
257
|
"type": "boolean"
|
|
258
|
+
},
|
|
259
|
+
"change": {
|
|
260
|
+
"description": "Natural language description of the change",
|
|
261
|
+
"name": "change",
|
|
262
|
+
"hasDynamicHelp": false,
|
|
263
|
+
"multiple": false,
|
|
264
|
+
"type": "option"
|
|
252
265
|
}
|
|
253
266
|
},
|
|
254
267
|
"hasDynamicHelp": false,
|
|
255
268
|
"hiddenAliases": [],
|
|
256
|
-
"id": "
|
|
269
|
+
"id": "edit",
|
|
257
270
|
"pluginAlias": "@mailmodo/cli",
|
|
258
271
|
"pluginName": "@mailmodo/cli",
|
|
259
272
|
"pluginType": "core",
|
|
@@ -263,23 +276,17 @@
|
|
|
263
276
|
"relativePath": [
|
|
264
277
|
"dist",
|
|
265
278
|
"commands",
|
|
266
|
-
"
|
|
279
|
+
"edit",
|
|
267
280
|
"index.js"
|
|
268
281
|
]
|
|
269
282
|
},
|
|
270
|
-
"
|
|
283
|
+
"emails": {
|
|
271
284
|
"aliases": [],
|
|
272
|
-
"args": {
|
|
273
|
-
|
|
274
|
-
"description": "Email template ID to edit",
|
|
275
|
-
"name": "id",
|
|
276
|
-
"required": true
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
"description": "Edit an email using AI-assisted natural language changes",
|
|
285
|
+
"args": {},
|
|
286
|
+
"description": "List and view configured email sequences",
|
|
280
287
|
"examples": [
|
|
281
|
-
"<%= config.bin %>
|
|
282
|
-
"<%= config.bin %>
|
|
288
|
+
"<%= config.bin %> emails",
|
|
289
|
+
"<%= config.bin %> emails --json"
|
|
283
290
|
],
|
|
284
291
|
"flags": {
|
|
285
292
|
"json": {
|
|
@@ -294,18 +301,11 @@
|
|
|
294
301
|
"name": "yes",
|
|
295
302
|
"allowNo": false,
|
|
296
303
|
"type": "boolean"
|
|
297
|
-
},
|
|
298
|
-
"change": {
|
|
299
|
-
"description": "Natural language description of the change",
|
|
300
|
-
"name": "change",
|
|
301
|
-
"hasDynamicHelp": false,
|
|
302
|
-
"multiple": false,
|
|
303
|
-
"type": "option"
|
|
304
304
|
}
|
|
305
305
|
},
|
|
306
306
|
"hasDynamicHelp": false,
|
|
307
307
|
"hiddenAliases": [],
|
|
308
|
-
"id": "
|
|
308
|
+
"id": "emails",
|
|
309
309
|
"pluginAlias": "@mailmodo/cli",
|
|
310
310
|
"pluginName": "@mailmodo/cli",
|
|
311
311
|
"pluginType": "core",
|
|
@@ -315,7 +315,7 @@
|
|
|
315
315
|
"relativePath": [
|
|
316
316
|
"dist",
|
|
317
317
|
"commands",
|
|
318
|
-
"
|
|
318
|
+
"emails",
|
|
319
319
|
"index.js"
|
|
320
320
|
]
|
|
321
321
|
},
|
|
@@ -657,5 +657,5 @@
|
|
|
657
657
|
]
|
|
658
658
|
}
|
|
659
659
|
},
|
|
660
|
-
"version": "0.0.41-beta.
|
|
660
|
+
"version": "0.0.41-beta.pr44.69"
|
|
661
661
|
}
|
package/package.json
CHANGED