spartaxx.businessmodels 1.0.189 → 1.0.191
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +5 -1
- package/CCC/HistroyInfo.js +2 -0
- package/CCC/HistroyInfo.ts +11 -0
- package/CCC/HistroyInfoResults.js +2 -0
- package/CCC/HistroyInfoResults.ts +9 -0
- package/CCC/QualifiedClientInfo.ts +1 -0
- package/Common/AppConfigHub.ts +27 -0
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -10,6 +10,8 @@ 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";
|
14
|
+
import { HistroyInfoResults } from "./HistroyInfoResults";
|
13
15
|
|
14
16
|
export {
|
15
17
|
ScoreCardDetails,
|
@@ -23,5 +25,7 @@ export {
|
|
23
25
|
Client,
|
24
26
|
BlastCountyPriority,
|
25
27
|
BlastCountyPriorityResults,
|
26
|
-
GenarateClientPackageParam
|
28
|
+
GenarateClientPackageParam,
|
29
|
+
HistroyInfo,
|
30
|
+
HistroyInfoResults
|
27
31
|
}
|
@@ -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
|
}
|