spartaxx.businessmodels 1.0.184 → 1.0.186
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/ClientInfo.ts
CHANGED
@@ -4,6 +4,11 @@ import { DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation
|
|
4
4
|
|
5
5
|
export interface QualifiedClientResults {
|
6
6
|
TotalRecords?: number;
|
7
|
+
TotalRecordsUSMail?: number;
|
8
|
+
TotalRecordsEmail?: number;
|
9
|
+
TotalSelectedClients?: number;
|
10
|
+
TotalSelectedClientsUSMail?: number;
|
11
|
+
TotalSelectedClientsEmail?: number;
|
7
12
|
QualifiedClientInfo?: QualifiedClientInfo[];
|
8
13
|
DatasetSelectOperation?: DatasetSelectOperation[];
|
9
14
|
DatasetFilterOperation?: DatasetFilterOperation[];
|
package/Common/AppConfigHub.ts
CHANGED
@@ -75,7 +75,9 @@ export interface AppConfigHub {
|
|
75
75
|
CCCPckReasonstoProtestPage2FooterHtmlContentId?: string;
|
76
76
|
CCCPckResidentialClientEmailTemplateContentoftheemailHtmlContentId?: string;
|
77
77
|
CCCPckCommercialClientEmailTemplateContentoftheemailHtmlContentId?: string;
|
78
|
-
|
78
|
+
CCCPckEmailLetterGenPath?: string;
|
79
|
+
CCCPckEmailLetterFileNamePrefix?: string;
|
80
|
+
|
79
81
|
//#endregion
|
80
82
|
|
81
83
|
//#region Protest Config
|
package/Common/FileGenConfig.ts
CHANGED