spartaxx.businessmodels 1.0.309 → 1.0.311

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/CCCModel.ts CHANGED
@@ -29,6 +29,7 @@ import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWit
29
29
  import { DynamicDMFormParams } from "./DynamicDMFormParams";
30
30
  import { DynamicDMFormClientInputData } from "./DynamicDMFormClientInputData";
31
31
  import { DMpropertySurveyClientInfo } from "./DMpropertySurveyClientInfo";
32
+ import { ClientInputFormSteper } from "./ClientInputForm";
32
33
 
33
34
  export {
34
35
  ScoreCardDetails,
@@ -67,5 +68,6 @@ export {
67
68
  DynamicDMFormClientInputData,
68
69
  DMpropertySurveyClientInfo,
69
70
  AccountDocumentInfo,
70
- ClientDocumentInfo
71
+ ClientDocumentInfo,
72
+ ClientInputFormSteper
71
73
  }
@@ -1,11 +1,43 @@
1
+ import { DMpropertySurveyClientInputs } from "./DMpropertySurveyClientInputs";
2
+
3
+ export interface ClientInputFormSteper {
4
+ Name: string;
5
+ IsCompleted: boolean;
6
+ ClientInputFormData?: ClientInputForm[];
7
+ }
8
+
1
9
  export interface ClientInputForm {
10
+
11
+ //#region CLIENT & ACCOUNT INFO
12
+ AccountId?: number;
13
+ AccountNumber?: string;
14
+ PropertyAddress?: string;
15
+ //#endregion
16
+
17
+ //#region TX-RES, COM AND BA AOFA
18
+ ResAofAStepFiveAgentAuthorityEndDate?: string;
19
+ ResAofAStepNineDeliveryDate?: string;
20
+ ComAofAStepFiveAgentAuthorityEndDate?: string;
21
+ ComAofATittleId?: number;
22
+ ComAofATittle?: string;
23
+ ComAofASigneeName?: string;
24
+ ComAofASigneeRoleChk1?: boolean;
25
+ ComAofASigneeRoleChk2?: boolean;
26
+ ComAofASigneeRoleChk3?: boolean;
27
+ BAAofASigneeName?: string;
28
+ //#endregion
29
+
30
+ //#region TX-PROPERTY SURVEY
31
+ DMpropertySurveyClientInputs?: DMpropertySurveyClientInputs;
32
+ //#endregion
33
+
34
+ //#region GA-POA
2
35
  TaxpayerName?: string;
3
36
  TelephoneNumber?: string;
4
37
  MaillingAddress?: string;
5
38
  SpouseName?: string;
6
39
  SpouseTelephoneNumber?: string;
7
40
  SpouseMaillingAddress?: string;
8
- PropertyAddress?: string;
9
41
  TaxType?: string;
10
42
  TaxPeriod?: string;
11
43
  MakePaymentsOnBehalfOfTaxYear?: boolean;
@@ -18,16 +50,12 @@ export interface ClientInputForm {
18
50
  PerformOtherTaxMatters?: boolean;
19
51
  RevokePriorForSameMatters?: boolean;
20
52
  ListRepresentatives?: string;
53
+ //#endregion
21
54
 
22
- ResAofAStepFiveAgentAuthorityEndDate?: string;
23
- ResAofAStepNineDeliveryDate?: string;
24
- ComAofAStepFiveAgentAuthorityEndDate?: string;
25
- ComAofATittleId?:number;
26
- ComAofATittle?:string;
27
- ComAofASigneeName?:string;
28
- ComAofASigneeRoleChk1?:boolean;
29
- ComAofASigneeRoleChk2?:boolean;
30
- ComAofASigneeRoleChk3?:boolean;
31
- BAAofASigneeName?:string;
55
+ //#region GA AND IL AUTHORIZATION FROM
56
+ GAILAuthorizationSigneeName?: string;
57
+ //#endregion
32
58
  }
33
59
 
60
+
61
+
@@ -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.309",
3
+ "version": "1.0.311",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {