spartaxx.businessmodels 1.0.197 → 1.0.199
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.ts +1 -0
- package/CCC/CCCModel.ts +5 -1
- package/CCC/ClientInfo.ts +10 -10
- package/CCC/ClientPackageDocuments.js +2 -0
- package/CCC/ClientPackageDocuments.ts +7 -0
- package/CCC/GenarateClientPackageParam.ts +4 -7
- package/CCC/ManageClientPackage.js +2 -0
- package/CCC/ManageClientPackage.ts +15 -0
- package/Common/AppConfigHub.ts +1 -0
- package/package.json +1 -1
package/CCC/AccountInfo.ts
CHANGED
package/CCC/CCCModel.ts
CHANGED
@@ -12,6 +12,8 @@ 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";
|
15
17
|
|
16
18
|
export {
|
17
19
|
ScoreCardDetails,
|
@@ -27,5 +29,7 @@ export {
|
|
27
29
|
BlastCountyPriorityResults,
|
28
30
|
GenarateClientPackageParam,
|
29
31
|
HistroyInfo,
|
30
|
-
HistroyInfoResults
|
32
|
+
HistroyInfoResults,
|
33
|
+
ClientPackageDocument,
|
34
|
+
ManageClientPackage
|
31
35
|
}
|
package/CCC/ClientInfo.ts
CHANGED
@@ -43,15 +43,15 @@ export interface ClientInfo {
|
|
43
43
|
IsNeedPropertySurveyForm?: boolean;
|
44
44
|
ESignLink?: string;
|
45
45
|
ClientEmail?: string;
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
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;
|
56
56
|
AccountInfo?: AccountInfo[];
|
57
57
|
}
|
@@ -1,10 +1,7 @@
|
|
1
1
|
export interface GenarateClientPackageParam {
|
2
2
|
LeadId?: number;
|
3
3
|
ClientId?: number;
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
FileName?: string;
|
9
|
-
OutputBase64Format?: string;
|
10
|
-
}
|
4
|
+
ClientNumber?: string;
|
5
|
+
DocuementIds?: string[];
|
6
|
+
ItIsBeforeClient?: boolean;
|
7
|
+
}
|
@@ -0,0 +1,15 @@
|
|
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
|
+
DocuementIds?: string[];
|
14
|
+
ItIsBeforeClient?: boolean;
|
15
|
+
}
|
package/Common/AppConfigHub.ts
CHANGED