spartaxx.businessmodels 1.0.204 → 1.0.206
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,6 +4,7 @@ import {
|
|
4
4
|
DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
|
5
5
|
ApiMasterDatasetColumns
|
6
6
|
} from "../Masters/MasterModels";
|
7
|
+
import { ProtestingAccountInfo } from "../Protest/ProtestingAccountInfo";
|
7
8
|
|
8
9
|
export interface QualifiedClientResults {
|
9
10
|
TotalRecords?: number;
|
@@ -24,4 +25,11 @@ export interface QualifiedClientResults {
|
|
24
25
|
IsShowCriteriaTextbox?: boolean;
|
25
26
|
CriteriaName?: string;
|
26
27
|
FilterCriteriaSelectedValue?: ManageCampaignCriteriaLookup | null;
|
28
|
+
|
29
|
+
TotalCounties?: number;
|
30
|
+
TotalAccounts?: number;
|
31
|
+
TotalEmailModeCounties?: number;
|
32
|
+
TotalUSmailModeCounties?: number;
|
33
|
+
TotalOnlinePortalModeCounties?: number;
|
34
|
+
ProtestingAccountInfo?: ProtestingAccountInfo[];
|
27
35
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -16,6 +16,7 @@ export interface AppConfigHub {
|
|
16
16
|
CPckFilenamePrefixCommercialAofA?: string;
|
17
17
|
CPckFilenamePrefixBAAofA?: string;
|
18
18
|
CPckFilenamePrefixPropertySurvey?: string;
|
19
|
+
CPckFilenameOOTCaliforniaPowerOfAttorney?: string;
|
19
20
|
CPckTexasAccountSummaryTemplateHeaderHtmlContentId?: string;
|
20
21
|
CPckTexasAccountSummaryTemplateBodyHtmlContentId?: string;
|
21
22
|
CPckTexasResidentialAgreementTemplateHeaderHtmlContentId?: string;
|
@@ -154,6 +155,8 @@ export interface AppConfigHub {
|
|
154
155
|
RMQConfigCPckOOTCommercialAgreement?: string;
|
155
156
|
RMQConfigCPckOOTPowerOfAttorney?: string;
|
156
157
|
RMQConfigClientPackageQueue?: string;
|
158
|
+
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm?: string;
|
159
|
+
RMQConfigCPckOOTCaliforniaPowerOfAttorney?: string;
|
157
160
|
|
158
161
|
//#endregion
|
159
162
|
|