spartaxx.businessmodels 1.0.465 → 1.0.466
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 +2 -1
- package/CCC/AccountInfo.ts +4 -1
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -104,6 +104,7 @@ export interface AccountInfo {
|
|
104
104
|
FeeAdjustYear6?: string;
|
105
105
|
CAFReasonCodeId?: number;
|
106
106
|
IsAofAExpired?: number;
|
107
|
+
Township?: string;
|
107
108
|
}
|
108
109
|
|
109
110
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -210,6 +211,8 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
210
211
|
FeeAdjustYear5: "",
|
211
212
|
FeeAdjustYear6: "",
|
212
213
|
CAFReasonCodeId: 0,
|
213
|
-
IsAofAExpired: 0
|
214
|
+
IsAofAExpired: 0,
|
215
|
+
Township: "",
|
216
|
+
|
214
217
|
};
|
215
218
|
}
|