spartaxx.businessmodels 1.0.338 → 1.0.340

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 {
@@ -11,5 +11,4 @@ export interface ConciergeBlastInfo {
11
11
  AccountId?: number;
12
12
  AccountNumber?: string;
13
13
  DeliveryStatus?:number;
14
- PropertyAddress?: string;
15
14
  }
@@ -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,19 @@ function createDefaultClientContactInfo() {
22
20
  AddressLine1: "",
23
21
  AddressLine2: "",
24
22
  AddressLine3: "",
25
- Zip: "",
26
23
  CityId: 0,
24
+ CityName: "",
25
+ CitySelectOpention: null,
27
26
  StateId: 0,
27
+ StateName: "",
28
+ PropertyTaxState: "",
29
+ StateSelectOpention: null,
30
+ Zip: "",
28
31
  CellPhone: "",
29
32
  OfficePhone: "",
30
33
  HomePhone: "",
31
- ClientPhoneInfo: []
34
+ AddressId: 0,
35
+ ContactId: 0,
32
36
  };
33
37
  });
34
38
  }
@@ -1,28 +1,31 @@
1
- import { ClientPhoneInfo } from "../CCC/ClientPhoneInfo"
1
+
2
+ import { SelectOpentionLookup } from "../Masters/SelectOpentionLookup";
2
3
 
3
4
  export interface ClientContactInfo {
4
- AddressId: number,
5
- ContactId: number,
6
- FirstName: string,
7
- LastName: string,
8
- Email: string,
9
- AlternativeEmail: string,
10
- AddressLine1: string,
11
- AddressLine2: string,
12
- AddressLine3: string,
13
- Zip: string,
14
- CityId: number,
15
- StateId: number,
16
- CellPhone: string,
17
- OfficePhone: string,
18
- HomePhone: string
19
- ClientPhoneInfo: ClientPhoneInfo[]
5
+ FirstName: string;
6
+ LastName: string;
7
+ Email: string;
8
+ AlternativeEmail: string;
9
+ AddressLine1: string;
10
+ AddressLine2: string;
11
+ AddressLine3: string;
12
+ CityId: number;
13
+ CityName: string;
14
+ CitySelectOpention: SelectOpentionLookup | null;
15
+ StateId: number;
16
+ StateName: string;
17
+ PropertyTaxState: string;
18
+ StateSelectOpention: SelectOpentionLookup | null;
19
+ Zip: string;
20
+ CellPhone: string;
21
+ OfficePhone: string;
22
+ HomePhone: string;
23
+ AddressId: number;
24
+ ContactId: number;
20
25
  }
21
26
 
22
27
  export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
23
28
  return {
24
- AddressId: 0,
25
- ContactId: 0,
26
29
  FirstName: "",
27
30
  LastName: "",
28
31
  Email: "",
@@ -30,12 +33,18 @@ export async function createDefaultClientContactInfo(): Promise<ClientContactInf
30
33
  AddressLine1: "",
31
34
  AddressLine2: "",
32
35
  AddressLine3: "",
33
- Zip: "",
34
36
  CityId: 0,
37
+ CityName: "",
38
+ CitySelectOpention: null,
35
39
  StateId: 0,
40
+ StateName: "",
41
+ PropertyTaxState: "",
42
+ StateSelectOpention: null,
43
+ Zip: "",
36
44
  CellPhone: "",
37
45
  OfficePhone: "",
38
46
  HomePhone: "",
39
- ClientPhoneInfo: []
47
+ AddressId: 0,
48
+ ContactId: 0,
40
49
  };
41
50
  }
@@ -14,6 +14,7 @@ import { ClientTypeInfo } from "./ClientTypeInfo";
14
14
  import { AgentTypeInfo } from "./AgentTypeInfo";
15
15
  import { AgentNameInfo } from "./AgentNameInfo";
16
16
  import { ParishNameInfo } from "./ParishNameInfo";
17
+ import { ClientContactInfo } from "./ClientContactInfo";
17
18
 
18
19
  export interface ClientSetupModels {
19
20
  State: StateInfo,
@@ -32,5 +33,6 @@ export interface ClientSetupModels {
32
33
  AgentName: AgentNameInfo,
33
34
  ParishName: ParishNameInfo,
34
35
  TermsType: TermsTypeInfo,
35
- TaxrollCounty: CountyInfo
36
+ TaxrollCounty: CountyInfo,
37
+ ClientContactInfo: ClientContactInfo
36
38
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface ReferenceSelectOpentionLookup {
2
+ Value: string;
3
+ Label: string;
4
+ MasterId: string;
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.338",
3
+ "version": "1.0.340",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {