spartaxx.businessmodels 1.0.298 → 1.0.299
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.js +1 -1
- package/CCC/AccountInfo.ts +2 -2
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
export interface AccountInfo {
|
2
2
|
ClientId?: number;
|
3
3
|
AccountId?: number;
|
4
|
-
AccountNumber?:
|
4
|
+
AccountNumber?: string;
|
5
5
|
PropertyType?: string;
|
6
6
|
CountyName?: string;
|
7
7
|
CountyCode?: string;
|
@@ -76,7 +76,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
76
76
|
return {
|
77
77
|
ClientId: 0,
|
78
78
|
AccountId: 0,
|
79
|
-
AccountNumber:
|
79
|
+
AccountNumber: "",
|
80
80
|
PropertyType: "",
|
81
81
|
CountyName: "",
|
82
82
|
CountyCode: "",
|