spartaxx.businessmodels 1.0.290 → 1.0.291
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 +3 -1
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -69,6 +69,7 @@ export interface AccountInfo {
|
|
69
69
|
CDU?: string;
|
70
70
|
AccountSourceId?: number;
|
71
71
|
ReasonCode?: string;
|
72
|
+
AccountStateId?: number;
|
72
73
|
}
|
73
74
|
|
74
75
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -142,6 +143,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
142
143
|
IsReactivateAccount: false,
|
143
144
|
CDU: "",
|
144
145
|
AccountSourceId: 0,
|
145
|
-
ReasonCode: ""
|
146
|
+
ReasonCode: "",
|
147
|
+
AccountStateId: 0
|
146
148
|
};
|
147
149
|
}
|