spartaxx.businessmodels 1.0.135 → 1.0.137

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,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
+ }
@@ -1,3 +1,5 @@
1
+ import { TemplateDefaultValuePairMaster } from "./TemplateDefaultValuePairMaster";
2
+
1
3
  export interface TemplateInfo {
2
4
  ModuleId?: number;
3
5
  ModuleName?: string;
@@ -10,7 +12,9 @@ export interface TemplateInfo {
10
12
  IsTemplateToggleOn?: boolean;
11
13
  SectionId?: number;
12
14
  SectionName?: string;
15
+ IsSectionSelected?: boolean;
13
16
  ContentId?: number;
14
17
  HtmlContent?: string;
15
18
  DocumentsType?: number;
16
- }
19
+ TemplateDefaultValuePairMaster?: TemplateDefaultValuePairMaster[];
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.135",
3
+ "version": "1.0.137",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {