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