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.
@@ -81,7 +81,8 @@ function createDefaultAccountInfo() {
81
81
  CDU: "",
82
82
  AccountSourceId: 0,
83
83
  ReasonCode: "",
84
- AccountStateId: 0
84
+ AccountStateId: 0,
85
+ CountyStateName: ""
85
86
  };
86
87
  });
87
88
  }
@@ -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
@@ -66,7 +66,8 @@ function createDefaultClientInfo() {
66
66
  Title: "",
67
67
  ClientSignature: "",
68
68
  SigneeName: "",
69
- AccountInfo: []
69
+ AccountInfo: [],
70
+ IPAddress: ""
70
71
  };
71
72
  });
72
73
  }
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
 
@@ -1,13 +1,13 @@
1
1
  export interface ClientInputForm {
2
2
  TaxpayerName?: string;
3
- TelephoneNumber?: number;
3
+ TelephoneNumber?: string;
4
4
  MaillingAddress?: string;
5
5
  SpouseName?: string;
6
- SpouseTelephoneNumber?: number;
6
+ SpouseTelephoneNumber?: string;
7
7
  SpouseMaillingAddress?: string;
8
8
  PropertyAddress?: string;
9
9
  TaxType?: string;
10
- TaxPeriod?: number;
10
+ TaxPeriod?: string;
11
11
  MakePaymentsOnBehalfOfTaxYear?: boolean;
12
12
  ReceiveChecksForRefunds?: boolean;
13
13
  ExecuteWaiversForTaxDeficiencies?: boolean;
@@ -16,6 +16,7 @@ export interface ClientPackageParam {
16
16
  FromEmail?: string;
17
17
  ClientSignature?: string;
18
18
  ClientInputForm?: ClientInputForm;
19
+ IPAddress?: string;
19
20
 
20
21
  TeamplateId?: string;
21
22
  DocumentList?: ClientPackageDocument[];
@@ -31,6 +31,5 @@ export interface ClientSetupModels {
31
31
  AgentType: AgentTypeInfo,
32
32
  AgentName: AgentNameInfo,
33
33
  ParishName: ParishNameInfo,
34
- TermsType: TermsTypeInfo,
35
- TaxrollCounty: CountyInfo
34
+ TermsType: TermsTypeInfo
36
35
  }
@@ -9,5 +9,4 @@ export interface PropertySearchParameters {
9
9
  County: string;
10
10
  TaxYear: number;
11
11
  IsCoreCounty: boolean;
12
- CountyId?: number;
13
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.308",
3
+ "version": "1.0.310",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {