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.
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface SendEmailServiceAttachments {
2
+ Content?: string;
3
+ FileName?: string;
4
+ Type?: string;
5
+ Disposition?: string;
6
+ }
@@ -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?: string[];
12
+ Attachments?: SendEmailServiceAttachments[];
11
13
  DispositionNotificationTo?: string;
12
14
  ReturnReceiptTo?: string;
13
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.138",
3
+ "version": "1.0.139",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {