@mablhq/mabl-cli 2.51.37 → 2.51.42
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/core/execution/VariableUtils.js +66 -40
- package/execution/index.js +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -398,8 +398,8 @@ export interface MablMailboxEmail {
|
|
|
398
398
|
getBodyText(): Promise<string | null>;
|
|
399
399
|
|
|
400
400
|
/**
|
|
401
|
-
* Get the body of the email
|
|
402
|
-
* @returns The body of the email
|
|
401
|
+
* Get the locator for the body of the email.
|
|
402
|
+
* @returns The locator for the body of the email.
|
|
403
403
|
*/
|
|
404
|
-
|
|
404
|
+
getBodyLocator(): Locator;
|
|
405
405
|
}
|