spartaxx.businessmodels 1.0.189 → 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 +27 -0
- 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
@@ -151,4 +151,31 @@ export interface AppConfigHub {
|
|
151
151
|
|
152
152
|
//#endregion
|
153
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
|
+
|
154
181
|
}
|