spartaxx.businessmodels 1.0.465 → 1.0.467
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CCC/AccountInfo.js +9 -1
- package/CCC/AccountInfo.ts +18 -1
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
@@ -112,7 +112,15 @@ function createDefaultAccountInfo() {
|
|
112
112
|
FeeAdjustYear5: "",
|
113
113
|
FeeAdjustYear6: "",
|
114
114
|
CAFReasonCodeId: 0,
|
115
|
-
IsAofAExpired: 0
|
115
|
+
IsAofAExpired: 0,
|
116
|
+
Township: "",
|
117
|
+
ILResiStandardTerms: "",
|
118
|
+
ILResiLitigationTerms: "",
|
119
|
+
ILResiArbitrationTerms: "",
|
120
|
+
ILSecondYearTerms: "",
|
121
|
+
ILThirdYearTerms: "",
|
122
|
+
BPPStandardTerms: "",
|
123
|
+
BPPLitigationTerms: "",
|
116
124
|
};
|
117
125
|
});
|
118
126
|
}
|
package/CCC/AccountInfo.ts
CHANGED
@@ -104,6 +104,14 @@ export interface AccountInfo {
|
|
104
104
|
FeeAdjustYear6?: string;
|
105
105
|
CAFReasonCodeId?: number;
|
106
106
|
IsAofAExpired?: number;
|
107
|
+
Township?: string;
|
108
|
+
ILResiStandardTerms?: string;
|
109
|
+
ILResiLitigationTerms?: string;
|
110
|
+
ILResiArbitrationTerms?: string;
|
111
|
+
ILSecondYearTerms?: string;
|
112
|
+
ILThirdYearTerms?: string;
|
113
|
+
BPPStandardTerms?: string;
|
114
|
+
BPPLitigationTerms?: string;
|
107
115
|
}
|
108
116
|
|
109
117
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -210,6 +218,15 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
210
218
|
FeeAdjustYear5: "",
|
211
219
|
FeeAdjustYear6: "",
|
212
220
|
CAFReasonCodeId: 0,
|
213
|
-
IsAofAExpired: 0
|
221
|
+
IsAofAExpired: 0,
|
222
|
+
Township: "",
|
223
|
+
ILResiStandardTerms: "",
|
224
|
+
ILResiLitigationTerms: "",
|
225
|
+
ILResiArbitrationTerms: "",
|
226
|
+
ILSecondYearTerms: "",
|
227
|
+
ILThirdYearTerms: "",
|
228
|
+
BPPStandardTerms: "",
|
229
|
+
BPPLitigationTerms: "",
|
230
|
+
|
214
231
|
};
|
215
232
|
}
|