spartaxx.businessmodels 1.0.354 → 1.0.355

Sign up to get free protection for your applications and to get access to all the features.
package/CCC/CCCModel.ts CHANGED
@@ -31,7 +31,6 @@ import { DynamicDMFormClientInputData } from "./DynamicDMFormClientInputData";
31
31
  import { DMpropertySurveyClientInfo } from "./DMpropertySurveyClientInfo";
32
32
  import { ClientInputFormSteper } from "./ClientInputForm";
33
33
  import { NoticeOfProtestSteper } from "./NoticeOfProtestClientInfo";
34
- import { ManageESignLink } from "./ManageESignLink";
35
34
 
36
35
  export {
37
36
  ScoreCardDetails,
@@ -72,6 +71,5 @@ export {
72
71
  AccountDocumentInfo,
73
72
  ClientDocumentInfo,
74
73
  ClientInputFormSteper,
75
- NoticeOfProtestSteper,
76
- ManageESignLink
74
+ NoticeOfProtestSteper
77
75
  }
@@ -33,6 +33,7 @@ function createDefaultClientContactInfo() {
33
33
  HomePhone: "",
34
34
  AddressId: 0,
35
35
  ContactId: 0,
36
+ IsSMSConcernReceived: false
36
37
  };
37
38
  });
38
39
  }
@@ -22,6 +22,7 @@ export interface ClientContactInfo {
22
22
  HomePhone: string;
23
23
  AddressId: number;
24
24
  ContactId: number;
25
+ IsSMSConcernReceived: boolean;
25
26
  }
26
27
 
27
28
  export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
@@ -46,5 +47,6 @@ export async function createDefaultClientContactInfo(): Promise<ClientContactInf
46
47
  HomePhone: "",
47
48
  AddressId: 0,
48
49
  ContactId: 0,
50
+ IsSMSConcernReceived: false
49
51
  };
50
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.354",
3
+ "version": "1.0.355",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,9 +0,0 @@
1
- export interface ManageESignLink {
2
- Id?: number;
3
- Guid?: string;
4
- ExpiryDate?: string;
5
- IsCompleted?: number;
6
- ClientData?: string;
7
- Stage?: string;
8
- ManageLinkId?: number;
9
- }