spartaxx.businessmodels 1.0.136 → 1.0.137
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +3 -1
- package/CCC/QualifiedAccountInfo.js +2 -0
- package/CCC/QualifiedAccountInfo.ts +4 -0
- package/CCC/QualifiedClientInfo.ts +4 -1
- package/Common/CommonModel.ts +3 -2
- package/Common/EmailServiceParameters.js +2 -0
- package/Common/EmailServiceParameters.ts +8 -0
- package/Common/SentEmailServiceParam.js +2 -0
- package/Common/SentEmailServiceParam.ts +11 -0
- package/package.json +1 -1
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
|
}
|
@@ -1,7 +1,10 @@
|
|
1
1
|
export interface QualifiedClientInfo {
|
2
2
|
ClientId?: number;
|
3
3
|
ClientNumber?: string;
|
4
|
-
|
4
|
+
ClientClassificationType?: string;
|
5
|
+
ItIsCommercialClient?: boolean;
|
6
|
+
|
7
|
+
|
5
8
|
TotalAccounts?: number;
|
6
9
|
ResidentialCounts?: number;
|
7
10
|
CommercialCounts?: number;
|
package/Common/CommonModel.ts
CHANGED
@@ -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,
|
19
|
-
APICommonResponse
|
19
|
+
RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
|
20
|
+
ManageSchedulers, APICommonResponse, SentEmailServiceParam
|
20
21
|
};
|