spartaxx.businessmodels 1.0.137 → 1.0.139

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.
@@ -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
  };
@@ -0,0 +1,6 @@
1
+ export interface SendEmailServiceAttachments {
2
+ Content?: string;
3
+ FileName?: string;
4
+ Type?: string;
5
+ Disposition?: string;
6
+ }
@@ -1,11 +1,15 @@
1
+ import { SendEmailServiceAttachments } from "./SendEmailServiceAttachments";
2
+
1
3
  export interface SentEmailServiceParam {
2
- From: string;
3
- To: string;
4
- Subject: string;
5
- Html: string;
6
- Text: string;
7
- IsHtml: boolean;
8
- Attachments: string[];
9
- DispositionNotificationTo: string;
10
- ReturnReceiptTo: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.137",
3
+ "version": "1.0.139",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,8 +0,0 @@
1
- export interface EmailServiceParameters {
2
- From?: string;
3
- To?: string;
4
- Bcc?: string;
5
- Subject?: string;
6
- HtmlContent?: string;
7
- ItIsHtml?: boolean;
8
- }