spartaxx.businessmodels 1.0.244 → 1.0.245
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 +1 -0
- package/CCC/AccountInfo.ts +2 -0
- package/Common/AppConfigHub.js +1 -0
- package/Common/AppConfigHub.ts +2 -0
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -23,6 +23,7 @@ export interface AccountInfo {
|
|
23
23
|
LitigationContingency?: string;
|
24
24
|
IsNeedAofA?: number;
|
25
25
|
IsNeedBAAofA?: number;
|
26
|
+
LUCDescription?: string;
|
26
27
|
|
27
28
|
OwnerName?: string;
|
28
29
|
OwnerEmail?: string;
|
@@ -79,6 +80,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
79
80
|
LitigationContingency: '',
|
80
81
|
IsNeedAofA: 0,
|
81
82
|
IsNeedBAAofA: 0,
|
83
|
+
LUCDescription: "",
|
82
84
|
|
83
85
|
OwnerName: '',
|
84
86
|
OwnerEmail: '',
|
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -209,6 +209,7 @@ export interface AppConfigHub {
|
|
209
209
|
AppraisalDistrictPhone: string;
|
210
210
|
RevDate: string;
|
211
211
|
CompanyWebsite: string;
|
212
|
+
LicenceStateComplaintsWebsite: string;
|
212
213
|
|
213
214
|
//#endregion
|
214
215
|
|
@@ -441,6 +442,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
441
442
|
AppraisalDistrictPhone: "",
|
442
443
|
RevDate: "",
|
443
444
|
CompanyWebsite: "",
|
445
|
+
LicenceStateComplaintsWebsite: "",
|
444
446
|
|
445
447
|
//#endregion
|
446
448
|
|