spartaxx.businessmodels 1.0.466 → 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 +7 -0
- package/CCC/AccountInfo.ts +14 -0
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
@@ -114,6 +114,13 @@ function createDefaultAccountInfo() {
|
|
114
114
|
CAFReasonCodeId: 0,
|
115
115
|
IsAofAExpired: 0,
|
116
116
|
Township: "",
|
117
|
+
ILResiStandardTerms: "",
|
118
|
+
ILResiLitigationTerms: "",
|
119
|
+
ILResiArbitrationTerms: "",
|
120
|
+
ILSecondYearTerms: "",
|
121
|
+
ILThirdYearTerms: "",
|
122
|
+
BPPStandardTerms: "",
|
123
|
+
BPPLitigationTerms: "",
|
117
124
|
};
|
118
125
|
});
|
119
126
|
}
|
package/CCC/AccountInfo.ts
CHANGED
@@ -105,6 +105,13 @@ export interface AccountInfo {
|
|
105
105
|
CAFReasonCodeId?: number;
|
106
106
|
IsAofAExpired?: number;
|
107
107
|
Township?: string;
|
108
|
+
ILResiStandardTerms?: string;
|
109
|
+
ILResiLitigationTerms?: string;
|
110
|
+
ILResiArbitrationTerms?: string;
|
111
|
+
ILSecondYearTerms?: string;
|
112
|
+
ILThirdYearTerms?: string;
|
113
|
+
BPPStandardTerms?: string;
|
114
|
+
BPPLitigationTerms?: string;
|
108
115
|
}
|
109
116
|
|
110
117
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -213,6 +220,13 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
213
220
|
CAFReasonCodeId: 0,
|
214
221
|
IsAofAExpired: 0,
|
215
222
|
Township: "",
|
223
|
+
ILResiStandardTerms: "",
|
224
|
+
ILResiLitigationTerms: "",
|
225
|
+
ILResiArbitrationTerms: "",
|
226
|
+
ILSecondYearTerms: "",
|
227
|
+
ILThirdYearTerms: "",
|
228
|
+
BPPStandardTerms: "",
|
229
|
+
BPPLitigationTerms: "",
|
216
230
|
|
217
231
|
};
|
218
232
|
}
|