spartaxx.businessmodels 1.0.309 → 1.0.310
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -70,6 +70,7 @@ export interface AccountInfo {
|
|
70
70
|
AccountSourceId?: number;
|
71
71
|
ReasonCode?: string;
|
72
72
|
AccountStateId?: number;
|
73
|
+
CountyStateName?: string;
|
73
74
|
}
|
74
75
|
|
75
76
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -144,6 +145,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
144
145
|
CDU: "",
|
145
146
|
AccountSourceId: 0,
|
146
147
|
ReasonCode: "",
|
147
|
-
AccountStateId: 0
|
148
|
+
AccountStateId: 0,
|
149
|
+
CountyStateName: ""
|
148
150
|
};
|
149
151
|
}
|