spartaxx.businessmodels 1.0.354 → 1.0.356

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
  }
@@ -7,12 +7,12 @@ export interface PwProcessDocumentDetails {
7
7
  AccountNumber: string;
8
8
  TaxYear: number;
9
9
  County: string;
10
- InvoiceNumber: string;
11
- PaymentMethod: string;
12
- PaymentAmount: number;
13
- PaymentPosted: number;
14
- PaymentPostedDate: Date;
15
- LandUseCode: string;
10
+ InvoiceNumber: string | null;
11
+ PaymentMethod: string | null;
12
+ PaymentAmount: number | null;
13
+ PaymentPosted: number | null;
14
+ PaymentPostedDate: Date | null;
15
+ LandUseCode: string | null;
16
16
  DocumentStatus: string;
17
17
  DocumentRouteTo: string;
18
18
  IsValidateEsign: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.354",
3
+ "version": "1.0.356",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
File without changes