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 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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { HistroyInfo } from "./HistroyInfo";
2
+ import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
3
+
4
+ export interface HistroyInfoResults {
5
+ HistroyInfo: HistroyInfo[];
6
+ DatasetSelectOperation: DatasetSelectOperation[];
7
+
8
+
9
+ }
@@ -16,4 +16,5 @@ export interface QualifiedClientInfo {
16
16
  BlastDate?: string;
17
17
  Documents?: string;
18
18
  IsSelected?: boolean;
19
+ InitiatedBy?: number;
19
20
  }
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.189",
3
+ "version": "1.0.191",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {