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