@mailmodo/cli 0.0.23-beta.pr25.40 → 0.0.23

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.
@@ -118,7 +118,7 @@ export default class Deploy extends BaseCommand {
118
118
  monthlyCap: project?.monthlyCap ?? DEFAULT_MONTHLY_CAP,
119
119
  product: this.buildProductSection(project),
120
120
  senderDetails: this.buildSenderSection(project),
121
- ...(project?.webhookUrl ? { webhookUrl: project.webhookUrl } : {}),
121
+ webhookUrl: project?.webhookUrl || '',
122
122
  };
123
123
  }
124
124
  async confirmDeploy(yamlConfig, flags) {
@@ -153,19 +153,14 @@
153
153
  "index.js"
154
154
  ]
155
155
  },
156
- "edit": {
156
+ "domain": {
157
157
  "aliases": [],
158
- "args": {
159
- "id": {
160
- "description": "Email template ID to edit",
161
- "name": "id",
162
- "required": true
163
- }
164
- },
165
- "description": "Edit an email using AI-assisted natural language changes",
158
+ "args": {},
159
+ "description": "Set up and verify your sending domain",
166
160
  "examples": [
167
- "<%= config.bin %> edit welcome",
168
- "<%= config.bin %> edit welcome --change \"make subject more urgent\" --yes"
161
+ "<%= config.bin %> domain",
162
+ "<%= config.bin %> domain --verify",
163
+ "<%= config.bin %> domain --status"
169
164
  ],
170
165
  "flags": {
171
166
  "json": {
@@ -181,17 +176,22 @@
181
176
  "allowNo": false,
182
177
  "type": "boolean"
183
178
  },
184
- "change": {
185
- "description": "Natural language description of the change",
186
- "name": "change",
187
- "hasDynamicHelp": false,
188
- "multiple": false,
189
- "type": "option"
179
+ "status": {
180
+ "description": "Show domain health status",
181
+ "name": "status",
182
+ "allowNo": false,
183
+ "type": "boolean"
184
+ },
185
+ "verify": {
186
+ "description": "Verify DNS records",
187
+ "name": "verify",
188
+ "allowNo": false,
189
+ "type": "boolean"
190
190
  }
191
191
  },
192
192
  "hasDynamicHelp": false,
193
193
  "hiddenAliases": [],
194
- "id": "edit",
194
+ "id": "domain",
195
195
  "pluginAlias": "@mailmodo/cli",
196
196
  "pluginName": "@mailmodo/cli",
197
197
  "pluginType": "core",
@@ -201,17 +201,23 @@
201
201
  "relativePath": [
202
202
  "dist",
203
203
  "commands",
204
- "edit",
204
+ "domain",
205
205
  "index.js"
206
206
  ]
207
207
  },
208
- "emails": {
208
+ "edit": {
209
209
  "aliases": [],
210
- "args": {},
211
- "description": "List and view configured email sequences",
210
+ "args": {
211
+ "id": {
212
+ "description": "Email template ID to edit",
213
+ "name": "id",
214
+ "required": true
215
+ }
216
+ },
217
+ "description": "Edit an email using AI-assisted natural language changes",
212
218
  "examples": [
213
- "<%= config.bin %> emails",
214
- "<%= config.bin %> emails --json"
219
+ "<%= config.bin %> edit welcome",
220
+ "<%= config.bin %> edit welcome --change \"make subject more urgent\" --yes"
215
221
  ],
216
222
  "flags": {
217
223
  "json": {
@@ -226,11 +232,18 @@
226
232
  "name": "yes",
227
233
  "allowNo": false,
228
234
  "type": "boolean"
235
+ },
236
+ "change": {
237
+ "description": "Natural language description of the change",
238
+ "name": "change",
239
+ "hasDynamicHelp": false,
240
+ "multiple": false,
241
+ "type": "option"
229
242
  }
230
243
  },
231
244
  "hasDynamicHelp": false,
232
245
  "hiddenAliases": [],
233
- "id": "emails",
246
+ "id": "edit",
234
247
  "pluginAlias": "@mailmodo/cli",
235
248
  "pluginName": "@mailmodo/cli",
236
249
  "pluginType": "core",
@@ -240,18 +253,17 @@
240
253
  "relativePath": [
241
254
  "dist",
242
255
  "commands",
243
- "emails",
256
+ "edit",
244
257
  "index.js"
245
258
  ]
246
259
  },
247
- "domain": {
260
+ "emails": {
248
261
  "aliases": [],
249
262
  "args": {},
250
- "description": "Set up and verify your sending domain",
263
+ "description": "List and view configured email sequences",
251
264
  "examples": [
252
- "<%= config.bin %> domain",
253
- "<%= config.bin %> domain --verify",
254
- "<%= config.bin %> domain --status"
265
+ "<%= config.bin %> emails",
266
+ "<%= config.bin %> emails --json"
255
267
  ],
256
268
  "flags": {
257
269
  "json": {
@@ -266,23 +278,11 @@
266
278
  "name": "yes",
267
279
  "allowNo": false,
268
280
  "type": "boolean"
269
- },
270
- "status": {
271
- "description": "Show domain health status",
272
- "name": "status",
273
- "allowNo": false,
274
- "type": "boolean"
275
- },
276
- "verify": {
277
- "description": "Verify DNS records",
278
- "name": "verify",
279
- "allowNo": false,
280
- "type": "boolean"
281
281
  }
282
282
  },
283
283
  "hasDynamicHelp": false,
284
284
  "hiddenAliases": [],
285
- "id": "domain",
285
+ "id": "emails",
286
286
  "pluginAlias": "@mailmodo/cli",
287
287
  "pluginName": "@mailmodo/cli",
288
288
  "pluginType": "core",
@@ -292,7 +292,7 @@
292
292
  "relativePath": [
293
293
  "dist",
294
294
  "commands",
295
- "domain",
295
+ "emails",
296
296
  "index.js"
297
297
  ]
298
298
  },
@@ -634,5 +634,5 @@
634
634
  ]
635
635
  }
636
636
  },
637
- "version": "0.0.23-beta.pr25.40"
637
+ "version": "0.0.23"
638
638
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mailmodo/cli",
3
3
  "description": "Email lifecycle automation for the AI-native builder generation.",
4
- "version": "0.0.23-beta.pr25.40",
4
+ "version": "0.0.23",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"