spartaxx.businessmodels 1.0.338 → 1.0.339

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,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
- ClientPhoneInfo: []
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
- ClientPhoneInfo: ClientPhoneInfo[]
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
- ClientPhoneInfo: []
34
+ AddressId: 0,
35
+ ContactId: 0,
40
36
  };
41
37
  }
@@ -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.339",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {