spartaxx.businessmodels 1.0.137 → 1.0.139
Sign up to get free protection for your applications and to get access to all the features.
package/Common/CommonModel.ts
CHANGED
@@ -13,9 +13,10 @@ import { ManageFrequencyConfig } from "./ManageFrequency";
|
|
13
13
|
import { ManageSchedulers } from "./ManageSchedulers";
|
14
14
|
import { APICommonResponse } from "./APICommonResponse";
|
15
15
|
import { SentEmailServiceParam } from "./SentEmailServiceParam";
|
16
|
+
import { SendEmailServiceAttachments } from "./SendEmailServiceAttachments";
|
16
17
|
|
17
18
|
export {
|
18
19
|
ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
|
19
20
|
RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
|
20
|
-
ManageSchedulers, APICommonResponse, SentEmailServiceParam
|
21
|
+
ManageSchedulers, APICommonResponse, SentEmailServiceParam, SendEmailServiceAttachments
|
21
22
|
};
|
@@ -1,11 +1,15 @@
|
|
1
|
+
import { SendEmailServiceAttachments } from "./SendEmailServiceAttachments";
|
2
|
+
|
1
3
|
export interface SentEmailServiceParam {
|
2
|
-
From
|
3
|
-
To
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
4
|
+
From?: string;
|
5
|
+
To?: string;
|
6
|
+
BCC?: string;
|
7
|
+
CC?: string;
|
8
|
+
Subject?: string;
|
9
|
+
Html?: string;
|
10
|
+
Text?: string;
|
11
|
+
IsHtml?: boolean;
|
12
|
+
Attachments?: SendEmailServiceAttachments[];
|
13
|
+
DispositionNotificationTo?: string;
|
14
|
+
ReturnReceiptTo?: string;
|
11
15
|
}
|
package/package.json
CHANGED
File without changes
|