spartaxx.businessmodels 1.0.136 → 1.0.138

Sign up to get free protection for your applications and to get access to all the features.
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,13 @@
1
+ export interface SentEmailServiceParam {
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;
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.136",
3
+ "version": "1.0.138",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {