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 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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface DMCategory {
2
+ CategoryId?: number;
3
+ CategoryName?: string;
4
+ PaperwiseCategoryName?: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface DMImageInfos {
2
+ Src?: string;
3
+ Title?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface DMQuestionImage {
2
+ QuestionId?: number;
3
+ QuestionImageName?: string;
4
+ PaperwiseCategoryName?: string;
5
+ }
@@ -0,0 +1,5 @@
1
+ export interface DMQuestionImages {
2
+ Image1?: string;
3
+ Image2?: string;
4
+ Image3?: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export interface DMSpecifiedConditions {
2
+ ID?: number;
3
+ Condition?: string;
4
+ VeryGood?: boolean;
5
+ Average?: boolean;
6
+ Poor?: boolean;
7
+ Unsound?: boolean;
8
+ BriefDescription?: string;
9
+ SendPictures?: boolean;
10
+ SendPicturesNo?: boolean;
11
+ }
package/CCC/DMUnit.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/CCC/DMUnit.ts ADDED
@@ -0,0 +1,4 @@
1
+ export interface DMUnit {
2
+ UnitId?: number;
3
+ Unit?: string;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface QuestionImage{
2
+ QestionId?: number,
3
+ QestionImageName?: string,
4
+ PaperwiseCategoryName?: string,
5
+ }
@@ -101,4 +101,5 @@ export interface SelectedPropertyList {
101
101
  export interface SelectedAllProperty {
102
102
  County: string;
103
103
  AccountNumber: string;
104
+ StateCode: string;
104
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.210",
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.5.4"
21
+ "typescript": "^5.6.3"
22
22
  }
23
23
  }