spartaxx.businessmodels 1.0.357 → 1.0.358
Sign up to get free protection for your applications and to get access to all the features.
@@ -19,7 +19,9 @@ CDU?: string;
|
|
19
19
|
|
20
20
|
OwnerOccupied?: number;
|
21
21
|
Remodeled?: number;
|
22
|
-
|
22
|
+
RemodeledTypeTotal?: number;
|
23
|
+
RemodeledTypeExtensive?: number;
|
24
|
+
RemodeledTypePartial?: number;
|
23
25
|
IsPropertyInFloodZone?: number;
|
24
26
|
RepairsForCurrentTaxYear?: number;
|
25
27
|
AllDamageRepaired?: number;
|
@@ -20,7 +20,6 @@ export interface QualifiedClientInfo {
|
|
20
20
|
CCCPckEmailBlastFileName?: string;
|
21
21
|
CCCPckEmailBlastOutputFilePath?: string;
|
22
22
|
ClientSignature?: string;
|
23
|
-
gUId?: string;
|
24
23
|
}
|
25
24
|
|
26
25
|
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
@@ -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
|