spartaxx.businessmodels 1.0.307 → 1.0.308

Sign up to get free protection for your applications and to get access to all the features.
package/CCC/ClientInfo.js CHANGED
@@ -66,7 +66,7 @@ function createDefaultClientInfo() {
66
66
  Title: "",
67
67
  ClientSignature: "",
68
68
  SigneeName: "",
69
- AccountInfo: [],
69
+ AccountInfo: []
70
70
  };
71
71
  });
72
72
  }
package/CCC/ClientInfo.ts CHANGED
@@ -112,7 +112,7 @@ export async function createDefaultClientInfo(): Promise<ClientInfo> {
112
112
  Title: "",
113
113
  ClientSignature: "",
114
114
  SigneeName: "",
115
- AccountInfo: [],
115
+ AccountInfo: []
116
116
  }
117
117
  };
118
118
 
@@ -1,13 +1,13 @@
1
1
  export interface ClientInputForm {
2
2
  TaxpayerName?: string;
3
- TelephoneNumber?: string;
3
+ TelephoneNumber?: number;
4
4
  MaillingAddress?: string;
5
5
  SpouseName?: string;
6
- SpouseTelephoneNumber?: string;
6
+ SpouseTelephoneNumber?: number;
7
7
  SpouseMaillingAddress?: string;
8
8
  PropertyAddress?: string;
9
9
  TaxType?: string;
10
- TaxPeriod?: string;
10
+ TaxPeriod?: number;
11
11
  MakePaymentsOnBehalfOfTaxYear?: boolean;
12
12
  ReceiveChecksForRefunds?: boolean;
13
13
  ExecuteWaiversForTaxDeficiencies?: boolean;
@@ -16,7 +16,6 @@ export interface ClientPackageParam {
16
16
  FromEmail?: string;
17
17
  ClientSignature?: string;
18
18
  ClientInputForm?: ClientInputForm;
19
- IPAddress?: string;
20
19
 
21
20
  TeamplateId?: string;
22
21
  DocumentList?: ClientPackageDocument[];
@@ -31,5 +31,6 @@ export interface ClientSetupModels {
31
31
  AgentType: AgentTypeInfo,
32
32
  AgentName: AgentNameInfo,
33
33
  ParishName: ParishNameInfo,
34
- TermsType: TermsTypeInfo
34
+ TermsType: TermsTypeInfo,
35
+ TaxrollCounty: CountyInfo
35
36
  }
@@ -9,4 +9,5 @@ export interface PropertySearchParameters {
9
9
  County: string;
10
10
  TaxYear: number;
11
11
  IsCoreCounty: boolean;
12
+ CountyId?: number;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.307",
3
+ "version": "1.0.308",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {