spartaxx.businessmodels 1.0.180 → 1.0.181
Sign up to get free protection for your applications and to get access to all the features.
- package/Campaign/CampaignFilterCriteria.js +2 -0
- package/Campaign/CampaignFilterCriteria.ts +8 -0
- package/Campaign/CampaignFilterCriteriaFields.js +2 -0
- package/Campaign/CampaignFilterCriteriaFields.ts +6 -0
- package/Campaign/CampaignModel.ts +5 -1
- package/Common/AppConfigHub.ts +8 -0
- package/Protest/ProtestLetterTemplateParams.ts +6 -3
- package/package.json +1 -1
@@ -1,10 +1,14 @@
|
|
1
1
|
import { CampaignCriteria } from "./CampaignCriteria";
|
2
2
|
import { ManageCampaignCriteria } from "./ManageCampaignCriteria";
|
3
3
|
import { ManageCampaignCriteriaLookup } from "./ManageCampaignCriteriaLookup";
|
4
|
+
import { CampaignFilterCriteria } from "./CampaignFilterCriteria";
|
5
|
+
import { CampaignFilterCriteriaFields } from "./CampaignFilterCriteriaFields";
|
4
6
|
|
5
7
|
export {
|
6
8
|
CampaignCriteria,
|
7
9
|
ManageCampaignCriteria,
|
8
|
-
ManageCampaignCriteriaLookup
|
10
|
+
ManageCampaignCriteriaLookup,
|
11
|
+
CampaignFilterCriteria,
|
12
|
+
CampaignFilterCriteriaFields
|
9
13
|
}
|
10
14
|
|
package/Common/AppConfigHub.ts
CHANGED
@@ -130,6 +130,14 @@ export interface AppConfigHub {
|
|
130
130
|
RMQConfigCCCContactForm?: string;
|
131
131
|
RMQConfigCCCAccountList?: string;
|
132
132
|
RMQConfigCCCReasons?: string;
|
133
|
+
RMQConfigCPckAofAExpiryDateFrom?: string;
|
134
|
+
RMQConfigCPckConsentForm?: string;
|
135
|
+
RMQConfigCPckPropertySurvey?: string;
|
136
|
+
RMQConfigCPckBAAofA?: string;
|
137
|
+
RMQConfigCPckCommercialAofA?: string;
|
138
|
+
RMQConfigCPckResidentialAofA?: string;
|
139
|
+
RMQConfigCPckCommercialAgreement?: string;
|
140
|
+
RMQConfigCPckResidentialAgreement?: string;
|
133
141
|
|
134
142
|
//#endregion
|
135
143
|
|
@@ -1,13 +1,16 @@
|
|
1
1
|
import { LiquidJSProtestLetterDataParser } from "./LiquidJSProtestLetterDataParser";
|
2
2
|
import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
|
3
3
|
import { ProtestDocumentTypes } from "./ProtestDocumentTypes";
|
4
|
+
import { AppConfigHub} from "../Common/CommonModel";
|
5
|
+
import { RabbitMQQueueInfo } from "../Common/RabbitMQQueueInfo";
|
4
6
|
|
5
7
|
export interface ProtestLetterTemplateParams {
|
6
8
|
ProtestFilingId: number;
|
7
9
|
ProtestDate: string;
|
8
10
|
IsRequestedHB201: boolean;
|
9
|
-
|
10
11
|
LiquidJSProtestLetterDataParser: LiquidJSProtestLetterDataParser;
|
11
|
-
ExportExcelColumns: DatasetSelectOperation[]
|
12
|
-
ProtestDocumentTypes: ProtestDocumentTypes[]
|
12
|
+
ExportExcelColumns: DatasetSelectOperation[];
|
13
|
+
ProtestDocumentTypes: ProtestDocumentTypes[];
|
14
|
+
AppConfigHub:AppConfigHub;
|
15
|
+
RabbitMQQueueInfo: RabbitMQQueueInfo;
|
13
16
|
}
|