spartaxx.businessmodels 1.0.209 → 1.0.211

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/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
  }
@@ -52,11 +52,11 @@ export interface AppConfigHub {
52
52
  CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId?: string;
53
53
  CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId?: string;
54
54
  CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId?: string;
55
-
55
+
56
56
  ESignLink?: string;
57
57
  CPckFileName?: string;
58
- CPckESignLink?:string;
59
- CPckSalesCRMESignFromEmail?:string;
58
+ CPckESignLink?: string;
59
+ CPckSalesCRMESignFromEmail?: string;
60
60
  CPckSalesCRMESignSubject?: string;
61
61
  CPckSalesCRMESignTemplateContentoftheemailHtmlContentId?: string;
62
62
 
@@ -162,6 +162,7 @@ export interface AppConfigHub {
162
162
  RMQConfigClientPackageQueue?: string;
163
163
  RMQConfigCPckOOTCaliforniaAgentAuthorizationForm?: string;
164
164
  RMQConfigCPckOOTCaliforniaPowerOfAttorney?: string;
165
+ RMQConfigClentSetup?: string;
165
166
 
166
167
  //#endregion
167
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.209",
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
  }