spartaxx.businessmodels 1.0.442 → 1.0.444
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 -2
- package/CCC/ManageESignLink.js +2 -0
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -102,7 +102,8 @@ export interface AccountInfo {
|
|
102
102
|
FeeAdjustYear4?: string;
|
103
103
|
FeeAdjustYear5?: string;
|
104
104
|
FeeAdjustYear6?: string;
|
105
|
-
CAFReasonCodeId?: number
|
105
|
+
CAFReasonCodeId?: number;
|
106
|
+
IsAofAExpired?: number;
|
106
107
|
}
|
107
108
|
|
108
109
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -208,6 +209,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
208
209
|
FeeAdjustYear4: "",
|
209
210
|
FeeAdjustYear5: "",
|
210
211
|
FeeAdjustYear6: "",
|
211
|
-
CAFReasonCodeId: 0
|
212
|
+
CAFReasonCodeId: 0,
|
213
|
+
IsAofAExpired: 0
|
212
214
|
};
|
213
215
|
}
|