spartaxx.businessmodels 1.0.127 → 1.0.129
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/QualifiedClientInfo.js +2 -0
- package/CCC/QualifiedClientInfo.ts +11 -0
- package/TemplateManagement/TemplateDefaultValuePairMaster.ts +2 -2
- package/TemplateManagement/TemplateInfo.ts +11 -10
- package/TemplateManagement/TemplateMaster.ts +4 -4
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
import { ScoreCardDetails } from "./ScoreCardDetails";
|
2
2
|
import { ScoreCardSummary } from "./ScoreCardSummary";
|
3
|
+
import { QualifiedClientInfo } from "./QualifiedClientInfo";
|
3
4
|
|
4
5
|
export {
|
5
6
|
ScoreCardDetails,
|
6
|
-
ScoreCardSummary
|
7
|
+
ScoreCardSummary,
|
8
|
+
QualifiedClientInfo
|
7
9
|
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export interface QualifiedClientInfo {
|
2
|
+
ClientId?: number;
|
3
|
+
ClientNumber?: string;
|
4
|
+
Classificationtype?: string;
|
5
|
+
Totalacounts?: number;
|
6
|
+
Residencialcounts?: number;
|
7
|
+
Commercialcounts?: number;
|
8
|
+
Homestead?: number;
|
9
|
+
Mode?: string;
|
10
|
+
DeliveryAddress?: string;
|
11
|
+
}
|
@@ -1,12 +1,13 @@
|
|
1
1
|
export interface TemplateInfo {
|
2
|
-
ModuleId
|
3
|
-
ModuleName
|
4
|
-
DocumentId
|
5
|
-
DocumentName
|
6
|
-
TemplateId
|
7
|
-
TemplateName
|
8
|
-
SectionId
|
9
|
-
SectionName
|
10
|
-
ContentId
|
11
|
-
HtmlContent
|
2
|
+
ModuleId?: number;
|
3
|
+
ModuleName?: string;
|
4
|
+
DocumentId?: number;
|
5
|
+
DocumentName?: string;
|
6
|
+
TemplateId?: number;
|
7
|
+
TemplateName?: string;
|
8
|
+
SectionId?: number;
|
9
|
+
SectionName?: string;
|
10
|
+
ContentId?: number;
|
11
|
+
HtmlContent?: string;
|
12
|
+
DocumentsType?: number;
|
12
13
|
}
|