spartaxx.businessmodels 1.0.210 → 1.0.211
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +13 -1
- package/CCC/DMCategory.js +2 -0
- package/CCC/DMCategory.ts +5 -0
- package/CCC/DMImageInfos.js +2 -0
- package/CCC/DMImageInfos.ts +4 -0
- package/CCC/DMQuestion.js +2 -0
- package/CCC/DMQuestion.ts +26 -0
- package/CCC/DMQuestionImage.js +2 -0
- package/CCC/DMQuestionImage.ts +5 -0
- package/CCC/DMQuestionImages.TS +5 -0
- package/CCC/DMSpecifiedConditions.js +2 -0
- package/CCC/DMSpecifiedConditions.ts +11 -0
- package/CCC/DMUnit.js +2 -0
- package/CCC/DMUnit.ts +4 -0
- package/CCC/DMpropertySurveyClientInputs.js +2 -0
- package/CCC/DMpropertySurveyClientInputs.ts +52 -0
- package/CCC/QuestionImage.js +2 -0
- package/CCC/QuestionImage.ts +5 -0
- package/ClientSetup/ClientSetupParam.ts +1 -0
- package/package.json +2 -2
package/CCC/CCCModel.ts
CHANGED
@@ -14,6 +14,12 @@ import { HistroyInfo } from "./HistroyInfo";
|
|
14
14
|
import { HistroyInfoResults } from "./HistroyInfoResults";
|
15
15
|
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
16
16
|
import { ManageClientPackage } from "./ManageClientPackage";
|
17
|
+
import { DMUnit } from "./DMUnit";
|
18
|
+
import { DMCategory } from "./DMCategory";
|
19
|
+
import { DMQuestion } from "./DMQuestion";
|
20
|
+
import { DMpropertySurveyClientInputs } from "./DMpropertySurveyClientInputs";
|
21
|
+
import { DMQuestionImage } from "./DMQuestionImage";
|
22
|
+
import { DMImageInfos } from "./DMImageInfos";
|
17
23
|
|
18
24
|
export {
|
19
25
|
ScoreCardDetails,
|
@@ -31,5 +37,11 @@ export {
|
|
31
37
|
HistroyInfo,
|
32
38
|
HistroyInfoResults,
|
33
39
|
ClientPackageDocument,
|
34
|
-
ManageClientPackage
|
40
|
+
ManageClientPackage,
|
41
|
+
DMUnit,
|
42
|
+
DMCategory,
|
43
|
+
DMQuestion,
|
44
|
+
DMpropertySurveyClientInputs,
|
45
|
+
DMQuestionImage,
|
46
|
+
DMImageInfos
|
35
47
|
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { QuestionImage } from "./QuestionImage"
|
2
|
+
|
3
|
+
export interface DMQuestion {
|
4
|
+
QuestionId?: number;
|
5
|
+
CategoryId?: number;
|
6
|
+
Question?: string;
|
7
|
+
IsActive?: boolean;
|
8
|
+
InputTypeId?: number;
|
9
|
+
DisplayOrderNumber?: number;
|
10
|
+
ListValues?: string;
|
11
|
+
DefaultValue?: string;
|
12
|
+
Unit?: string;
|
13
|
+
UnitId?: number;
|
14
|
+
PWName?: string;
|
15
|
+
PropertyTypeId?: number;
|
16
|
+
PaperwiseCategoryName?: string;
|
17
|
+
PropertyConditionIsChecked?: boolean;
|
18
|
+
PropertyConditionIsCheckedNo?: boolean;
|
19
|
+
PropertyConditionValue?: string;
|
20
|
+
PropertyConditionNotes?: string;
|
21
|
+
PropertyConditionUnitValue?: string;
|
22
|
+
HVACRepairs?: string;
|
23
|
+
HVACReplacement?: string;
|
24
|
+
DMQuestionImages?: string;
|
25
|
+
QuestionImage: QuestionImage[];
|
26
|
+
}
|
package/CCC/DMUnit.js
ADDED
package/CCC/DMUnit.ts
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
import { DMUnit } from "./DMUnit";
|
2
|
+
import { DMCategory } from "./DMCategory";
|
3
|
+
import { DMQuestion } from "./DMQuestion";
|
4
|
+
import { DMSpecifiedConditions } from "./DMSpecifiedConditions";
|
5
|
+
|
6
|
+
export interface DMpropertySurveyClientInputs {
|
7
|
+
AccountNumber?: string;
|
8
|
+
AccountId?: number;
|
9
|
+
ClientNumber?: string;
|
10
|
+
ClientName?: string;
|
11
|
+
ClientId?: number;
|
12
|
+
PropertyAddr?: string;
|
13
|
+
County?: string;
|
14
|
+
CountyId?: number;
|
15
|
+
TaxYear?: number;
|
16
|
+
BuildingSqFT?: number;
|
17
|
+
BuildingValue?: number;
|
18
|
+
LandSqFT?: number;
|
19
|
+
LandValue?: number;
|
20
|
+
YearBuilt?: number;
|
21
|
+
RemodelYear?: number;
|
22
|
+
Grade?: string;
|
23
|
+
CDU?: string;
|
24
|
+
HOMvalueOpinion?: string;
|
25
|
+
OwnerOccupied?: string;
|
26
|
+
HomeSoldLast24months?: string;
|
27
|
+
SoldListingPrice?: string;
|
28
|
+
HasStructureFloodedBefore?: string;
|
29
|
+
HowManyTimes?: number;
|
30
|
+
LastFloodingDate?: Date;
|
31
|
+
StillConditionIssues?: string;
|
32
|
+
Remarks?: string;
|
33
|
+
Remodeled?: string;
|
34
|
+
RemodeledType?: string;
|
35
|
+
ActionID?: number;
|
36
|
+
ActionType?: string;
|
37
|
+
IsPropertyInFloodZone?: string;
|
38
|
+
RepairsForCurrentTaxYear?: string;
|
39
|
+
AllDamageRepaired?: string;
|
40
|
+
HomeInsuranceCoverage?: string;
|
41
|
+
PleaseDescribe?: string;
|
42
|
+
AnyAtypicalCharacteristics?: string;
|
43
|
+
AdditionalComments?: string;
|
44
|
+
PropertyDetailsId?: number;
|
45
|
+
DMUnit?: DMUnit;
|
46
|
+
DMCategory?: DMCategory;
|
47
|
+
DMQuestion?: DMQuestion;
|
48
|
+
DMSpecifiedConditions?: DMSpecifiedConditions;
|
49
|
+
IsBlank?: boolean;
|
50
|
+
}
|
51
|
+
|
52
|
+
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "spartaxx.businessmodels",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.211",
|
4
4
|
"main": "protest.js",
|
5
5
|
"type": "commonjs",
|
6
6
|
"scripts": {
|
@@ -18,6 +18,6 @@
|
|
18
18
|
},
|
19
19
|
"devDependencies": {
|
20
20
|
"@types/node": "^20.14.11",
|
21
|
-
"typescript": "^5.
|
21
|
+
"typescript": "^5.6.3"
|
22
22
|
}
|
23
23
|
}
|