spartaxx.businessmodels 1.0.396 → 1.0.398
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.js +15 -1
- package/CCC/AccountInfo.ts +29 -1
- package/CCC/ClientPackageDocuments.ts +2 -0
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
@@ -84,7 +84,21 @@ function createDefaultAccountInfo() {
|
|
84
84
|
AccountStateId: 0,
|
85
85
|
CountyStateName: "",
|
86
86
|
selectedOption: null,
|
87
|
-
IsHomeStead: 0
|
87
|
+
IsHomeStead: 0,
|
88
|
+
AppealWithoutAttorneyTX: "",
|
89
|
+
AppealWithoutAttorneyOtherstatesnotlistedbelow: "",
|
90
|
+
AppealWithoutAttorneyOthers: "",
|
91
|
+
JudicialAdminAppealTX: "",
|
92
|
+
JudicialAdminAppealOtherstatesnotlistedbelow: "",
|
93
|
+
JudicialAdminAppealTXOthers: "",
|
94
|
+
MinAccountFeeTX: "",
|
95
|
+
MinAccountFeeOtherstatesnotlistedbelow: "",
|
96
|
+
MinAccountFeeOthers: "",
|
97
|
+
FeeAdjustYear2: "",
|
98
|
+
FeeAdjustYear3: "",
|
99
|
+
FeeAdjustYear4: "",
|
100
|
+
FeeAdjustYear5: "",
|
101
|
+
FeeAdjustYear6: "",
|
88
102
|
};
|
89
103
|
});
|
90
104
|
}
|
package/CCC/AccountInfo.ts
CHANGED
@@ -75,6 +75,20 @@ export interface AccountInfo {
|
|
75
75
|
AccountStateId?: number;
|
76
76
|
CountyStateName?: string;
|
77
77
|
selectedOption?: SelectOpentionLookup | null;
|
78
|
+
AppealWithoutAttorneyTX?: string;
|
79
|
+
AppealWithoutAttorneyOtherstatesnotlistedbelow?: string;
|
80
|
+
AppealWithoutAttorneyOthers?: string;
|
81
|
+
JudicialAdminAppealTX?: string;
|
82
|
+
JudicialAdminAppealOtherstatesnotlistedbelow?: string;
|
83
|
+
JudicialAdminAppealTXOthers?: string;
|
84
|
+
MinAccountFeeTX?: string;
|
85
|
+
MinAccountFeeOtherstatesnotlistedbelow?: string;
|
86
|
+
MinAccountFeeOthers?: string;
|
87
|
+
FeeAdjustYear2?: string;
|
88
|
+
FeeAdjustYear3?: string;
|
89
|
+
FeeAdjustYear4?: string;
|
90
|
+
FeeAdjustYear5?: string;
|
91
|
+
FeeAdjustYear6?: string;
|
78
92
|
}
|
79
93
|
|
80
94
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -152,6 +166,20 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
152
166
|
AccountStateId: 0,
|
153
167
|
CountyStateName: "",
|
154
168
|
selectedOption: null,
|
155
|
-
IsHomeStead: 0
|
169
|
+
IsHomeStead: 0,
|
170
|
+
AppealWithoutAttorneyTX: "",
|
171
|
+
AppealWithoutAttorneyOtherstatesnotlistedbelow: "",
|
172
|
+
AppealWithoutAttorneyOthers: "",
|
173
|
+
JudicialAdminAppealTX: "",
|
174
|
+
JudicialAdminAppealOtherstatesnotlistedbelow: "",
|
175
|
+
JudicialAdminAppealTXOthers: "",
|
176
|
+
MinAccountFeeTX: "",
|
177
|
+
MinAccountFeeOtherstatesnotlistedbelow: "",
|
178
|
+
MinAccountFeeOthers: "",
|
179
|
+
FeeAdjustYear2: "",
|
180
|
+
FeeAdjustYear3: "",
|
181
|
+
FeeAdjustYear4: "",
|
182
|
+
FeeAdjustYear5: "",
|
183
|
+
FeeAdjustYear6: "",
|
156
184
|
};
|
157
185
|
}
|
@@ -14,6 +14,8 @@ export interface ClientPackageDocument {
|
|
14
14
|
AccountDocumentInfo?: AccountDocumentInfo[];
|
15
15
|
ClientDocumentInfo?: ClientDocumentInfo[];
|
16
16
|
Title?: string;
|
17
|
+
PackageSummaryTitle?: string;
|
18
|
+
PackageCheckboxDescription?: string;
|
17
19
|
}
|
18
20
|
|
19
21
|
export interface AccountDocumentInfo {
|