@bigbinary/neeto-playwright-commons 1.12.0 → 1.12.2
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.cjs.js +7974 -19
- package/index.cjs.js.map +1 -1
- package/index.d.ts +5 -0
- package/index.js +7974 -19
- package/index.js.map +1 -1
- package/package.json +2 -1
package/index.d.ts
CHANGED
|
@@ -405,6 +405,7 @@ interface FormattedList {
|
|
|
405
405
|
to: Identifier[];
|
|
406
406
|
cc: Identifier[];
|
|
407
407
|
bcc: Identifier[];
|
|
408
|
+
replyTo: Identifier[];
|
|
408
409
|
received: string;
|
|
409
410
|
subject: string;
|
|
410
411
|
}
|
|
@@ -462,6 +463,8 @@ declare class MailerUtils {
|
|
|
462
463
|
*
|
|
463
464
|
* cc: An array of objects containing the name and email of the sender of the email as part of the cc list.
|
|
464
465
|
*
|
|
466
|
+
* replyTo: An array of objects containing the name and email of the individuals to whom replies should be directed.
|
|
467
|
+
*
|
|
465
468
|
* bcc: An array of objects containing the name and email of the recipients of the email as part of the bcc list.
|
|
466
469
|
*
|
|
467
470
|
* received: A JavaScript Date object containing the date-time of the email delivery.
|
|
@@ -521,6 +524,8 @@ declare class MailerUtils {
|
|
|
521
524
|
*
|
|
522
525
|
* cc: An array of objects containing the name and email of the sender of the email as part of the cc list.
|
|
523
526
|
*
|
|
527
|
+
* replyTo: An array of objects containing the name and email of the individuals to whom replies should be directed.
|
|
528
|
+
*
|
|
524
529
|
* bcc: An array of objects containing the name and email of the recipients of the email as part of the bcc list.
|
|
525
530
|
*
|
|
526
531
|
* received: A JavaScript Date object containing the date-time of the email delivery.
|