spartaxx.businessmodels 1.0.138 → 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,3 +1,5 @@
|
|
1
|
+
import { SendEmailServiceAttachments } from "./SendEmailServiceAttachments";
|
2
|
+
|
1
3
|
export interface SentEmailServiceParam {
|
2
4
|
From?: string;
|
3
5
|
To?: string;
|
@@ -7,7 +9,7 @@ export interface SentEmailServiceParam {
|
|
7
9
|
Html?: string;
|
8
10
|
Text?: string;
|
9
11
|
IsHtml?: boolean;
|
10
|
-
Attachments?:
|
12
|
+
Attachments?: SendEmailServiceAttachments[];
|
11
13
|
DispositionNotificationTo?: string;
|
12
14
|
ReturnReceiptTo?: string;
|
13
15
|
}
|