@mablhq/mabl-cli 2.49.0 → 2.50.0

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/index.d.ts CHANGED
@@ -219,10 +219,31 @@ export declare function createMablFixtures(options?: MablToolsetOptions): {
219
219
  mabl: ({context}: any, use: (arg0: MablToolset) => any) => Promise<void>;
220
220
  };
221
221
 
222
+ /**
223
+ * Options for finding an email
224
+ */
222
225
  export interface EmailFindOptions {
226
+ /**
227
+ * The subject of the email to find
228
+ */
223
229
  subject?: string;
230
+ /**
231
+ * The from address of the email to find
232
+ */
224
233
  from?: string;
234
+ /**
235
+ * The body of the email to find
236
+ */
225
237
  body?: string;
238
+ /**
239
+ * The amount of time to look back for an email in milliseconds.
240
+ * E.g. if lookbackTimeMs is 10_000, it will ignore any emails that were received before 10 seconds ago.
241
+ */
242
+ lookbackTimeMs?: number;
243
+ /**
244
+ * The amount of time to wait for an email to be found in milliseconds.
245
+ * E.g. if timeoutMillis is 10_000, it will wait for 10 seconds for an email to be found.
246
+ */
226
247
  timeoutMillis?: number;
227
248
  }
228
249
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mablhq/mabl-cli",
3
- "version": "2.49.0",
3
+ "version": "2.50.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "The official mabl command line interface tool",
6
6
  "main": "index.js",
@@ -58,7 +58,6 @@
58
58
  "git-repo-info": "2.1.1",
59
59
  "glob": "7.1.6",
60
60
  "hpagent": "1.2.0",
61
- "http-mitm-proxy": "1.1.0",
62
61
  "humanize-duration": "3.23.0",
63
62
  "inquirer": "8.2.5",
64
63
  "js-yaml": "4.1.0",