spartaxx.businessmodels 1.0.136 → 1.0.137

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.
package/CCC/CCCModel.ts CHANGED
@@ -3,11 +3,13 @@ import { ScoreCardSummary } from "./ScoreCardSummary";
3
3
  import { QualifiedClientInfo } from "./QualifiedClientInfo";
4
4
  import { QualifiedClientParam } from "./QualifiedClientParam";
5
5
  import { QualifiedClientResults } from "./QualifiedClientResults";
6
+ import { QualifiedAccountInfo } from "./QualifiedAccountInfo";
6
7
 
7
8
  export {
8
9
  ScoreCardDetails,
9
10
  ScoreCardSummary,
10
11
  QualifiedClientInfo,
11
12
  QualifiedClientParam,
12
- QualifiedClientResults
13
+ QualifiedClientResults,
14
+ QualifiedAccountInfo
13
15
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface QualifiedAccountInfo {
2
+ AccountId?: number;
3
+ AccountNumber?: string;
4
+ }
@@ -1,7 +1,10 @@
1
1
  export interface QualifiedClientInfo {
2
2
  ClientId?: number;
3
3
  ClientNumber?: string;
4
- ClassificationType?: string;
4
+ ClientClassificationType?: string;
5
+ ItIsCommercialClient?: boolean;
6
+
7
+
5
8
  TotalAccounts?: number;
6
9
  ResidentialCounts?: number;
7
10
  CommercialCounts?: number;
@@ -12,9 +12,10 @@ import { ManageFilters } from "./ManageFilters";
12
12
  import { ManageFrequencyConfig } from "./ManageFrequency";
13
13
  import { ManageSchedulers } from "./ManageSchedulers";
14
14
  import { APICommonResponse } from "./APICommonResponse";
15
+ import { SentEmailServiceParam } from "./SentEmailServiceParam";
15
16
 
16
17
  export {
17
18
  ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
18
- RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig, ManageSchedulers,
19
- APICommonResponse
19
+ RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
20
+ ManageSchedulers, APICommonResponse, SentEmailServiceParam
20
21
  };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export interface EmailServiceParameters {
2
+ From?: string;
3
+ To?: string;
4
+ Bcc?: string;
5
+ Subject?: string;
6
+ HtmlContent?: string;
7
+ ItIsHtml?: boolean;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
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;
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.136",
3
+ "version": "1.0.137",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {