@hitc/netsuite-types 2025.2.8 → 2025.2.9
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/EmailCapturePlugin.d.ts +3 -3
- package/package.json +1 -1
package/EmailCapturePlugin.d.ts
CHANGED
|
@@ -21,12 +21,12 @@ interface IAttachment {
|
|
|
21
21
|
/** Object that represents an email message sent to the Email Capture plug-in implementation. */
|
|
22
22
|
interface IEmail {
|
|
23
23
|
getAttachments(): IAttachment[];
|
|
24
|
-
getCc(): IAddress;
|
|
25
|
-
getFrom(): IAddress
|
|
24
|
+
getCc(): IAddress[];
|
|
25
|
+
getFrom(): IAddress; // Documentation incorrectly shows this as an array, but an email only comes from one address.
|
|
26
26
|
getHtmlBody(): string;
|
|
27
27
|
getReplyTo(): IAddress;
|
|
28
28
|
getSentDate(): Date;
|
|
29
29
|
getSubject(): string;
|
|
30
30
|
getTextBody(): string;
|
|
31
|
-
getTo(): IAddress;
|
|
31
|
+
getTo(): IAddress[]; // Documentation incorrectly shows this as a single address, but testing confirms that it's an array.
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"posttest": "npm run cleanup"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://github.com/headintheclouddev/typings-suitescript-2.0",
|
|
11
|
-
"version": "2025.2.
|
|
11
|
+
"version": "2025.2.9",
|
|
12
12
|
"author": "Head in the Cloud Development <gurus@headintheclouddev.com> (www.headintheclouddev.com)",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"repository": {
|