spartaxx.businessmodels 1.0.188 → 1.0.190
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/HistroyInfo.js +2 -0
- package/CCC/HistroyInfo.ts +11 -0
- package/Common/AppConfigHub.ts +33 -2
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -10,6 +10,7 @@ import { Client } from "./Client";
|
|
10
10
|
import { BlastCountyPriority } from "./BlastCountyPriority";
|
11
11
|
import { BlastCountyPriorityResults } from "./BlastCountyPriorityResults";
|
12
12
|
import { GenarateClientPackageParam } from "./GenarateClientPackageParam";
|
13
|
+
import { HistroyInfo } from "./HistroyInfo";
|
13
14
|
|
14
15
|
export {
|
15
16
|
ScoreCardDetails,
|
@@ -23,5 +24,6 @@ export {
|
|
23
24
|
Client,
|
24
25
|
BlastCountyPriority,
|
25
26
|
BlastCountyPriorityResults,
|
26
|
-
GenarateClientPackageParam
|
27
|
+
GenarateClientPackageParam,
|
28
|
+
HistroyInfo
|
27
29
|
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export interface HistroyInfo {
|
2
|
+
InitiatedDate?: string;
|
3
|
+
InitiatedBy?: number;
|
4
|
+
CompletedDate?: string;
|
5
|
+
BlastStatus?: string;
|
6
|
+
TotalCount?: number;
|
7
|
+
TotalResCount?: number;
|
8
|
+
TotalComCount?: number;
|
9
|
+
CompletedCount?: number;
|
10
|
+
PendingCount?: number;
|
11
|
+
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -77,7 +77,7 @@ export interface AppConfigHub {
|
|
77
77
|
CCCPckCommercialClientEmailTemplateContentoftheemailHtmlContentId?: string;
|
78
78
|
CCCPckEmailLetterGenPath?: string;
|
79
79
|
CCCPckEmailLetterFileNamePrefix?: string;
|
80
|
-
|
80
|
+
|
81
81
|
//#endregion
|
82
82
|
|
83
83
|
//#region Protest Config
|
@@ -99,7 +99,11 @@ export interface AppConfigHub {
|
|
99
99
|
ProtestProtestHB201LetterAccountListBodyHtmlContentId?: string;
|
100
100
|
ProtestProtestHB201LetterAccountListFooterHtmlContentId?: string;
|
101
101
|
ProtestProtestCountyEmailTemplateContentoftheemailHtmlContentId?: string;
|
102
|
-
|
102
|
+
ProtestCountyLetterFromEmail?: string;
|
103
|
+
ProtestCountyLetterToEmail?: string;
|
104
|
+
ProtestCountyLetterSubject?: string;
|
105
|
+
ProtestCountyLetterDispositionNotificationToEmail?: string;
|
106
|
+
ProtestCountyLetterReturnReceiptToEmail?: string;
|
103
107
|
//#endregion
|
104
108
|
|
105
109
|
//#region Client Setup Config
|
@@ -147,4 +151,31 @@ export interface AppConfigHub {
|
|
147
151
|
|
148
152
|
//#endregion
|
149
153
|
|
154
|
+
//#region Common Config
|
155
|
+
|
156
|
+
CompanyName?: string;
|
157
|
+
CompanyAddress?: string;
|
158
|
+
CompanyCity?: string;
|
159
|
+
CompanyState?: string;
|
160
|
+
CompanyZip?: string;
|
161
|
+
CompanyPhone?: string;
|
162
|
+
CompanyEmail?: string;
|
163
|
+
CompanyTollFree?: string;
|
164
|
+
CompanyFax?: string;
|
165
|
+
ClientPortalUrl?: string;
|
166
|
+
TaxYear?: string;
|
167
|
+
NextYear?: string;
|
168
|
+
|
169
|
+
//#endregion
|
170
|
+
|
171
|
+
//#region Clientsetup Config
|
172
|
+
|
173
|
+
NextYearSignupfromEmail?: string;
|
174
|
+
NextYearSignupsubject?: string;
|
175
|
+
WelcomeEmail?: string;
|
176
|
+
WelcomeEmailfromEmail?: string;
|
177
|
+
WelcomeEmailSubject?: string;
|
178
|
+
|
179
|
+
//#endregion
|
180
|
+
|
150
181
|
}
|