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.
@@ -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
File without changes
|