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