spartaxx.businessmodels 1.0.229 → 1.0.231
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.
@@ -9,8 +9,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
9
9
|
});
|
10
10
|
};
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
-
exports.
|
13
|
-
function
|
12
|
+
exports.createDefaultClientContactInfo = createDefaultClientContactInfo;
|
13
|
+
function createDefaultClientContactInfo() {
|
14
14
|
return __awaiter(this, void 0, void 0, function* () {
|
15
15
|
return {
|
16
16
|
AddressId: 0,
|
@@ -16,7 +16,7 @@ export interface ClientContactInfo {
|
|
16
16
|
HomePhone: string
|
17
17
|
}
|
18
18
|
|
19
|
-
export async function
|
19
|
+
export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
|
20
20
|
return {
|
21
21
|
AddressId: 0,
|
22
22
|
ContactId: 0,
|
@@ -15,7 +15,7 @@ import { AgentTypeInfo } from "./AgentTypeInfo";
|
|
15
15
|
import { AgentNameInfo } from "./AgentNameInfo";
|
16
16
|
import { ParishNameInfo } from "./ParishNameInfo";
|
17
17
|
|
18
|
-
export interface ClientSetupModels{
|
18
|
+
export interface ClientSetupModels {
|
19
19
|
State: StateInfo,
|
20
20
|
City: CityInfo,
|
21
21
|
County: CountyInfo,
|
@@ -25,7 +25,7 @@ export interface ClientSetupModels{
|
|
25
25
|
Employee: EmployeeInfo,
|
26
26
|
HotelTeamSalesAgent: HotelTeamSalesAgentInfo,
|
27
27
|
ServicePackage: ServicePackageInfo,
|
28
|
-
PhoneType: PhoneTypeInfo,
|
28
|
+
PhoneType: PhoneTypeInfo,
|
29
29
|
CurrentTaxYear: CurrentTaxYearInfo,
|
30
30
|
ClientType: ClientTypeInfo,
|
31
31
|
AgentType: AgentTypeInfo,
|
@@ -96,6 +96,29 @@ export interface SelectedPropertyList {
|
|
96
96
|
State: string;
|
97
97
|
IsRendition: boolean;
|
98
98
|
IsFinancial: boolean;
|
99
|
+
TxrollCadId: number;
|
100
|
+
TxrollLegalDescription: string;
|
101
|
+
TxrollParcelId: string;
|
102
|
+
TxrollLandSize: number;
|
103
|
+
TxrollGba: number;
|
104
|
+
TxrollYearBuilt: number;
|
105
|
+
TxrollOwnerName: string;
|
106
|
+
TxrollClassCode: string;
|
107
|
+
TxrollNeighborhoodCode: string;
|
108
|
+
TxrollNra: number;
|
109
|
+
TxrollGrade: string;
|
110
|
+
TxrollEconomicArea: number;
|
111
|
+
TxrollSubDivi: string;
|
112
|
+
TxrollLandUseCode: string;
|
113
|
+
Stories: string;
|
114
|
+
CDU: string;
|
115
|
+
TxrollNoticedLandValue: number;
|
116
|
+
TxrollNoticedImprovedValue: number;
|
117
|
+
TxrollNoticedMarketValue: number;
|
118
|
+
TxrollNoticedTotalValue: number;
|
119
|
+
TxrollExemptionCode: string;
|
120
|
+
TxrollJurisdictionCode: string;
|
121
|
+
TxrollOcaluc: string;
|
99
122
|
}
|
100
123
|
|
101
124
|
export interface SelectedAllProperty {
|