spartaxx.businessmodels 1.0.298 → 1.0.300
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.js +1 -1
- package/CCC/AccountInfo.ts +2 -2
- package/CCC/ClientInputForm.ts +6 -4
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
export interface AccountInfo {
|
2
2
|
ClientId?: number;
|
3
3
|
AccountId?: number;
|
4
|
-
AccountNumber?:
|
4
|
+
AccountNumber?: string;
|
5
5
|
PropertyType?: string;
|
6
6
|
CountyName?: string;
|
7
7
|
CountyCode?: string;
|
@@ -76,7 +76,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
76
76
|
return {
|
77
77
|
ClientId: 0,
|
78
78
|
AccountId: 0,
|
79
|
-
AccountNumber:
|
79
|
+
AccountNumber: "",
|
80
80
|
PropertyType: "",
|
81
81
|
CountyName: "",
|
82
82
|
CountyCode: "",
|
package/CCC/ClientInputForm.ts
CHANGED
@@ -18,11 +18,13 @@ export interface ClientInputForm {
|
|
18
18
|
PerformOtherTaxMatters?: boolean;
|
19
19
|
RevokePriorForSameMatters?: boolean;
|
20
20
|
ListRepresentatives?: string;
|
21
|
-
|
22
|
-
|
21
|
+
|
22
|
+
ResAofAStepFiveAgentAuthorityEndDate?: string;
|
23
|
+
ResAofAStepNineDeliveryDate?: string;
|
24
|
+
ComAofAStepFiveAgentAuthorityEndDate?: string;
|
23
25
|
Tittle?:number;
|
24
|
-
|
26
|
+
AofAComSigneeName?:string;
|
25
27
|
SigneeRole?:boolean;
|
26
|
-
|
28
|
+
BAAofASigneeName?:string;
|
27
29
|
}
|
28
30
|
|