spartaxx.businessmodels 1.0.270 → 1.0.272

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.
package/CCC/CCCModel.ts CHANGED
@@ -26,6 +26,8 @@ import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
26
26
  import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
27
27
  import { ClientInputForm } from "./ClientInputForm";
28
28
  import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWithDocuFirstAPIParam";
29
+ import {DynamicDMFormParams} from "CCC/DynamicDMFormParams";
30
+ import {DynamicDMFormClientInputData} from "CCC/DynamicDMFormClientInputData";
29
31
 
30
32
  export {
31
33
  ScoreCardDetails,
@@ -59,5 +61,7 @@ export {
59
61
  ClientPhoneInfo,
60
62
  createDefaultClientPhoneInfo,
61
63
  ClientInputForm,
62
- ValidateClientSignWithDocuFirstAPIParam
64
+ ValidateClientSignWithDocuFirstAPIParam,
65
+ DynamicDMFormParams,
66
+ DynamicDMFormClientInputData
63
67
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+
2
+ export interface DynamicDMFormClientInputData {
3
+ name: string;
4
+ value: string | boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ import {AccountInfo} from "CCC/AccountInfo";
2
+ import {DynamicDMFormClientInputData} from "CCC/DynamicDMFormClientInputData";
3
+
4
+ export interface DynamicDMFormParams {
5
+ element?: DynamicDMFormClientInputData[];
6
+ accoundDetails: AccountInfo;
7
+ }
8
+
9
+
10
+
@@ -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.272",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {