spartaxx.businessmodels 1.0.308 → 1.0.310
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.js +2 -1
- package/CCC/AccountInfo.ts +3 -1
- package/CCC/ClientInfo.js +2 -1
- package/CCC/ClientInfo.ts +3 -1
- package/CCC/ClientInputForm.ts +3 -3
- package/CCC/ClientPackageParam.ts +1 -0
- package/ClientSetup/ClientSetupModels.ts +1 -2
- package/ClientSetup/PropertySearchParameters.ts +0 -1
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -70,6 +70,7 @@ export interface AccountInfo {
|
|
70
70
|
AccountSourceId?: number;
|
71
71
|
ReasonCode?: string;
|
72
72
|
AccountStateId?: number;
|
73
|
+
CountyStateName?: string;
|
73
74
|
}
|
74
75
|
|
75
76
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -144,6 +145,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
144
145
|
CDU: "",
|
145
146
|
AccountSourceId: 0,
|
146
147
|
ReasonCode: "",
|
147
|
-
AccountStateId: 0
|
148
|
+
AccountStateId: 0,
|
149
|
+
CountyStateName: ""
|
148
150
|
};
|
149
151
|
}
|
package/CCC/ClientInfo.js
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -55,6 +55,7 @@ export interface ClientInfo {
|
|
55
55
|
ClientSignature?: string;
|
56
56
|
SigneeName?: string;
|
57
57
|
AccountInfo?: AccountInfo[];
|
58
|
+
IPAddress?: string;
|
58
59
|
}
|
59
60
|
|
60
61
|
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
@@ -112,7 +113,8 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
|
112
113
|
Title: "",
|
113
114
|
ClientSignature: "",
|
114
115
|
SigneeName: "",
|
115
|
-
AccountInfo: []
|
116
|
+
AccountInfo: [],
|
117
|
+
IPAddress: ""
|
116
118
|
}
|
117
119
|
};
|
118
120
|
|
package/CCC/ClientInputForm.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
export interface ClientInputForm {
|
2
2
|
TaxpayerName?: string;
|
3
|
-
TelephoneNumber?:
|
3
|
+
TelephoneNumber?: string;
|
4
4
|
MaillingAddress?: string;
|
5
5
|
SpouseName?: string;
|
6
|
-
SpouseTelephoneNumber?:
|
6
|
+
SpouseTelephoneNumber?: string;
|
7
7
|
SpouseMaillingAddress?: string;
|
8
8
|
PropertyAddress?: string;
|
9
9
|
TaxType?: string;
|
10
|
-
TaxPeriod?:
|
10
|
+
TaxPeriod?: string;
|
11
11
|
MakePaymentsOnBehalfOfTaxYear?: boolean;
|
12
12
|
ReceiveChecksForRefunds?: boolean;
|
13
13
|
ExecuteWaiversForTaxDeficiencies?: boolean;
|