spartaxx.businessmodels 1.0.196 → 1.0.197
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.ts +4 -0
- package/CCC/CCCModel.ts +1 -5
- package/CCC/ClientInfo.ts +11 -0
- package/CCC/GenarateClientPackageParam.ts +7 -3
- package/package.json +1 -1
- package/CCC/ClientPackageDocuments.js +0 -2
- package/CCC/ClientPackageDocuments.ts +0 -7
- package/CCC/ManageClientPackage.js +0 -2
- package/CCC/ManageClientPackage.ts +0 -13
package/CCC/AccountInfo.ts
CHANGED
package/CCC/CCCModel.ts
CHANGED
@@ -12,8 +12,6 @@ import { BlastCountyPriorityResults } from "./BlastCountyPriorityResults";
|
|
12
12
|
import { GenarateClientPackageParam } from "./GenarateClientPackageParam";
|
13
13
|
import { HistroyInfo } from "./HistroyInfo";
|
14
14
|
import { HistroyInfoResults } from "./HistroyInfoResults";
|
15
|
-
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
16
|
-
import { ManageClientPackage } from "./ManageClientPackage";
|
17
15
|
|
18
16
|
export {
|
19
17
|
ScoreCardDetails,
|
@@ -29,7 +27,5 @@ export {
|
|
29
27
|
BlastCountyPriorityResults,
|
30
28
|
GenarateClientPackageParam,
|
31
29
|
HistroyInfo,
|
32
|
-
HistroyInfoResults
|
33
|
-
ClientPackageDocument,
|
34
|
-
ManageClientPackage
|
30
|
+
HistroyInfoResults
|
35
31
|
}
|
package/CCC/ClientInfo.ts
CHANGED
@@ -42,5 +42,16 @@ export interface ClientInfo {
|
|
42
42
|
IsHasResidentialAccount?: boolean;
|
43
43
|
IsNeedPropertySurveyForm?: boolean;
|
44
44
|
ESignLink?: string;
|
45
|
+
ClientEmail?: string;
|
46
|
+
ClientAddress?: string;
|
47
|
+
ClientCity?: string;
|
48
|
+
ClientState?: string;
|
49
|
+
ClientPinCode?: string;
|
50
|
+
Day?: number;
|
51
|
+
Month?: number;
|
52
|
+
Year?: number;
|
53
|
+
Terms?: string;
|
54
|
+
Title?: string;
|
55
|
+
ClientSignature?: string;
|
45
56
|
AccountInfo?: AccountInfo[];
|
46
57
|
}
|
@@ -1,6 +1,10 @@
|
|
1
1
|
export interface GenarateClientPackageParam {
|
2
2
|
LeadId?: number;
|
3
3
|
ClientId?: number;
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
AccountId?: number;
|
5
|
+
PackageId?: number;
|
6
|
+
BeforeClient?: boolean;
|
7
|
+
FileGenOutputPath?: string;
|
8
|
+
FileName?: string;
|
9
|
+
OutputBase64Format?: string;
|
10
|
+
}
|
package/package.json
CHANGED
@@ -1,13 +0,0 @@
|
|
1
|
-
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
2
|
-
|
3
|
-
export interface ManageClientPackage {
|
4
|
-
ClientId?: number;
|
5
|
-
LeadId?: number;
|
6
|
-
ClientNumber?: string;
|
7
|
-
ClientName?: string;
|
8
|
-
ContactEmail?: string;
|
9
|
-
ClientStatus?: string;
|
10
|
-
OutputFilePath?: string;
|
11
|
-
OutputBase64Format?: string;
|
12
|
-
ClientPackageDocument?: ClientPackageDocument[];
|
13
|
-
}
|