spartaxx.businessmodels 1.0.337 → 1.0.339
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/NoticeOfProtestClientInfo.ts +2 -0
- package/CCC/QualifiedClientInfo.js +1 -2
- package/CCC/QualifiedClientInfo.ts +1 -3
- package/ClientSetup/ClientContactInfo.js +3 -4
- package/ClientSetup/ClientContactInfo.ts +7 -11
- package/Masters/ReferenceSelectOpentionLookup.js +2 -0
- package/Masters/ReferenceSelectOpentionLookup.ts +5 -0
- package/package.json +1 -1
@@ -1,11 +1,13 @@
|
|
1
1
|
import { CCCTemplateData } from "./CCCTemplateData";
|
2
2
|
import { ClientInputFormSteper } from "./ClientInputForm";
|
3
|
+
import { CCCClientContactFormInfo } from "./CCCClientContactFormInfo";
|
3
4
|
|
4
5
|
export interface NoticeOfProtestClientInfo {
|
5
6
|
NoticeOfProtestSteper?: NoticeOfProtestSteper[];
|
6
7
|
AdditionalAccount?: string;
|
7
8
|
CCCTemplateData?: CCCTemplateData;
|
8
9
|
ClientInputFormSteper?: ClientInputFormSteper[];
|
10
|
+
CCCClientContactFormInfo?: CCCClientContactFormInfo;
|
9
11
|
}
|
10
12
|
|
11
13
|
export interface NoticeOfProtestSteper {
|
@@ -19,7 +19,6 @@ export interface QualifiedClientInfo {
|
|
19
19
|
InitiatedBy?: number;
|
20
20
|
CCCPckEmailBlastFileName?: string;
|
21
21
|
CCCPckEmailBlastOutputFilePath?: string;
|
22
|
-
ClientSignature?: string;
|
23
22
|
}
|
24
23
|
|
25
24
|
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
@@ -43,7 +42,6 @@ export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClien
|
|
43
42
|
IsSelected: false,
|
44
43
|
InitiatedBy: 0,
|
45
44
|
CCCPckEmailBlastFileName: "",
|
46
|
-
CCCPckEmailBlastOutputFilePath: ""
|
47
|
-
ClientSignature: ""
|
45
|
+
CCCPckEmailBlastOutputFilePath: ""
|
48
46
|
};
|
49
47
|
};
|
@@ -13,8 +13,6 @@ exports.createDefaultClientContactInfo = createDefaultClientContactInfo;
|
|
13
13
|
function createDefaultClientContactInfo() {
|
14
14
|
return __awaiter(this, void 0, void 0, function* () {
|
15
15
|
return {
|
16
|
-
AddressId: 0,
|
17
|
-
ContactId: 0,
|
18
16
|
FirstName: "",
|
19
17
|
LastName: "",
|
20
18
|
Email: "",
|
@@ -22,13 +20,14 @@ function createDefaultClientContactInfo() {
|
|
22
20
|
AddressLine1: "",
|
23
21
|
AddressLine2: "",
|
24
22
|
AddressLine3: "",
|
25
|
-
Zip: "",
|
26
23
|
CityId: 0,
|
27
24
|
StateId: 0,
|
25
|
+
Zip: "",
|
28
26
|
CellPhone: "",
|
29
27
|
OfficePhone: "",
|
30
28
|
HomePhone: "",
|
31
|
-
|
29
|
+
AddressId: 0,
|
30
|
+
ContactId: 0,
|
32
31
|
};
|
33
32
|
});
|
34
33
|
}
|
@@ -1,8 +1,4 @@
|
|
1
|
-
import { ClientPhoneInfo } from "../CCC/ClientPhoneInfo"
|
2
|
-
|
3
1
|
export interface ClientContactInfo {
|
4
|
-
AddressId: number,
|
5
|
-
ContactId: number,
|
6
2
|
FirstName: string,
|
7
3
|
LastName: string,
|
8
4
|
Email: string,
|
@@ -10,19 +6,18 @@ export interface ClientContactInfo {
|
|
10
6
|
AddressLine1: string,
|
11
7
|
AddressLine2: string,
|
12
8
|
AddressLine3: string,
|
13
|
-
Zip: string,
|
14
9
|
CityId: number,
|
15
10
|
StateId: number,
|
11
|
+
Zip: string,
|
16
12
|
CellPhone: string,
|
17
13
|
OfficePhone: string,
|
18
|
-
HomePhone: string
|
19
|
-
|
14
|
+
HomePhone: string,
|
15
|
+
AddressId: number,
|
16
|
+
ContactId: number,
|
20
17
|
}
|
21
18
|
|
22
19
|
export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
|
23
20
|
return {
|
24
|
-
AddressId: 0,
|
25
|
-
ContactId: 0,
|
26
21
|
FirstName: "",
|
27
22
|
LastName: "",
|
28
23
|
Email: "",
|
@@ -30,12 +25,13 @@ export async function createDefaultClientContactInfo(): Promise<ClientContactInf
|
|
30
25
|
AddressLine1: "",
|
31
26
|
AddressLine2: "",
|
32
27
|
AddressLine3: "",
|
33
|
-
Zip: "",
|
34
28
|
CityId: 0,
|
35
29
|
StateId: 0,
|
30
|
+
Zip: "",
|
36
31
|
CellPhone: "",
|
37
32
|
OfficePhone: "",
|
38
33
|
HomePhone: "",
|
39
|
-
|
34
|
+
AddressId: 0,
|
35
|
+
ContactId: 0,
|
40
36
|
};
|
41
37
|
}
|