spartaxx.businessmodels 1.0.270 → 1.0.271

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,7 +27,8 @@ function createDefaultClientContactInfo() {
27
27
  StateId: 0,
28
28
  CellPhone: "",
29
29
  OfficePhone: "",
30
- HomePhone: ""
30
+ HomePhone: "",
31
+ ClientPhoneInfo: []
31
32
  };
32
33
  });
33
34
  }
@@ -1,3 +1,5 @@
1
+ import { ClientPhoneInfo } from "CCC/ClientPhoneInfo"
2
+
1
3
  export interface ClientContactInfo {
2
4
  AddressId: number,
3
5
  ContactId: number,
@@ -14,6 +16,7 @@ export interface ClientContactInfo {
14
16
  CellPhone: string,
15
17
  OfficePhone: string,
16
18
  HomePhone: string
19
+ ClientPhoneInfo: ClientPhoneInfo[]
17
20
  }
18
21
 
19
22
  export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
@@ -32,6 +35,7 @@ export async function createDefaultClientContactInfo(): Promise<ClientContactInf
32
35
  StateId: 0,
33
36
  CellPhone: "",
34
37
  OfficePhone: "",
35
- HomePhone: ""
38
+ HomePhone: "",
39
+ ClientPhoneInfo: []
36
40
  };
37
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.270",
3
+ "version": "1.0.271",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {