spartaxx.businessmodels 1.0.137 → 1.0.138

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,13 @@
1
1
  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;
2
+ From?: string;
3
+ To?: string;
4
+ BCC?: string;
5
+ CC?: string;
6
+ Subject?: string;
7
+ Html?: string;
8
+ Text?: string;
9
+ IsHtml?: boolean;
10
+ Attachments?: string[];
11
+ DispositionNotificationTo?: string;
12
+ ReturnReceiptTo?: string;
11
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.137",
3
+ "version": "1.0.138",
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,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
- }