spartaxx.businessmodels 1.0.227 → 1.0.229
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 +66 -0
- package/CCC/AccountInfo.ts +59 -2
- package/CCC/CCCClientContactFormInfo.ts +6 -5
- package/CCC/CCCModel.js +9 -0
- package/CCC/CCCModel.ts +10 -4
- package/CCC/ClientInfo.js +70 -0
- package/CCC/ClientInfo.ts +113 -54
- package/CCC/ClientPhoneInfo.js +23 -0
- package/CCC/ClientPhoneInfo.ts +17 -0
- package/CCC/QualifiedClientInfo.js +35 -0
- package/CCC/QualifiedClientInfo.ts +24 -1
- package/ClientSetup/ClientContactInfo.js +31 -0
- package/ClientSetup/ClientContactInfo.ts +35 -12
- package/Common/AppConfigHub.js +208 -0
- package/Common/AppConfigHub.ts +230 -2
- package/Common/CommonModel.js +3 -0
- package/Common/CommonModel.ts +2 -2
- package/Masters/LookupMaster.js +18 -0
- package/Masters/LookupMaster.ts +7 -0
- package/Masters/MasterModels.js +5 -0
- package/Masters/MasterModels.ts +3 -2
- package/Masters/ReferenceTypeLookupMaster.js +21 -0
- package/Masters/ReferenceTypeLookupMaster.ts +13 -0
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
@@ -1,2 +1,68 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultAccountInfo = createDefaultAccountInfo;
|
13
|
+
function createDefaultAccountInfo() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
ClientId: 0,
|
17
|
+
AccountId: 0,
|
18
|
+
AccountNumber: 0,
|
19
|
+
PropertyType: '',
|
20
|
+
OCALUCType: '',
|
21
|
+
CountyName: '',
|
22
|
+
CountyState: '',
|
23
|
+
AccountStatus: '',
|
24
|
+
AccountStatusId: 0,
|
25
|
+
PropertyAddress: '',
|
26
|
+
CadLegalName: '',
|
27
|
+
PriorYear2: 0,
|
28
|
+
PriorYear2NoticedValue: '',
|
29
|
+
PriorYear2FinalValue: '',
|
30
|
+
PriorYear1: 0,
|
31
|
+
PriorYear1NoticedValue: '',
|
32
|
+
PriorYear1FinalValue: '',
|
33
|
+
TaxYear: 2024,
|
34
|
+
NoticedValue: '',
|
35
|
+
FinalValue: '',
|
36
|
+
StandardContingency: '',
|
37
|
+
LitigationContingency: '',
|
38
|
+
IsNeedAofA: 0,
|
39
|
+
IsNeedBAAofA: 0,
|
40
|
+
OwnerName: '',
|
41
|
+
OwnerEmail: '',
|
42
|
+
OwnerPhone: '',
|
43
|
+
OwnerAddress: '',
|
44
|
+
BuildingSQFT: '',
|
45
|
+
BuildingValue: '',
|
46
|
+
Grade: '',
|
47
|
+
YearBuilt: '',
|
48
|
+
LandSQFT: '',
|
49
|
+
LandValue: '',
|
50
|
+
ConditionDesire: '',
|
51
|
+
RemodelYear: '',
|
52
|
+
AppraisalDistrictName: '',
|
53
|
+
AgentName: '',
|
54
|
+
CompleteAgentAddress: '',
|
55
|
+
AgentCode: '',
|
56
|
+
AgentPhone: '',
|
57
|
+
OwnerCity: '',
|
58
|
+
OwnerTown: '',
|
59
|
+
OwnerState: '',
|
60
|
+
OwnerZipCode: '',
|
61
|
+
IsProtested: false,
|
62
|
+
IsDontProtested: false,
|
63
|
+
IsInactivate: false,
|
64
|
+
IsInactivateReasonCode: 0,
|
65
|
+
IsReactivateAccount: false
|
66
|
+
};
|
67
|
+
});
|
68
|
+
}
|
package/CCC/AccountInfo.ts
CHANGED
@@ -46,9 +46,66 @@ export interface AccountInfo {
|
|
46
46
|
OwnerState?: string;
|
47
47
|
OwnerZipCode?: string;
|
48
48
|
|
49
|
-
IsProtested?:
|
50
|
-
IsDontProtested?:
|
49
|
+
IsProtested?: boolean;
|
50
|
+
IsDontProtested?: boolean;
|
51
51
|
IsInactivate?: boolean;
|
52
52
|
IsInactivateReasonCode?: number;
|
53
53
|
IsReactivateAccount?: boolean;
|
54
|
+
}
|
55
|
+
|
56
|
+
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
57
|
+
return {
|
58
|
+
ClientId: 0,
|
59
|
+
AccountId: 0,
|
60
|
+
AccountNumber: 0,
|
61
|
+
PropertyType: '',
|
62
|
+
OCALUCType: '',
|
63
|
+
CountyName: '',
|
64
|
+
CountyState: '',
|
65
|
+
AccountStatus: '',
|
66
|
+
AccountStatusId: 0,
|
67
|
+
PropertyAddress: '',
|
68
|
+
CadLegalName: '',
|
69
|
+
PriorYear2: 0,
|
70
|
+
PriorYear2NoticedValue: '',
|
71
|
+
PriorYear2FinalValue: '',
|
72
|
+
PriorYear1: 0,
|
73
|
+
PriorYear1NoticedValue: '',
|
74
|
+
PriorYear1FinalValue: '',
|
75
|
+
TaxYear: 2024,
|
76
|
+
NoticedValue: '',
|
77
|
+
FinalValue: '',
|
78
|
+
StandardContingency: '',
|
79
|
+
LitigationContingency: '',
|
80
|
+
IsNeedAofA: 0,
|
81
|
+
IsNeedBAAofA: 0,
|
82
|
+
|
83
|
+
OwnerName: '',
|
84
|
+
OwnerEmail: '',
|
85
|
+
OwnerPhone: '',
|
86
|
+
OwnerAddress: '',
|
87
|
+
BuildingSQFT: '',
|
88
|
+
BuildingValue: '',
|
89
|
+
Grade: '',
|
90
|
+
YearBuilt: '',
|
91
|
+
LandSQFT: '',
|
92
|
+
LandValue: '',
|
93
|
+
ConditionDesire: '',
|
94
|
+
RemodelYear: '',
|
95
|
+
AppraisalDistrictName: '',
|
96
|
+
AgentName: '',
|
97
|
+
CompleteAgentAddress: '',
|
98
|
+
AgentCode: '',
|
99
|
+
AgentPhone: '',
|
100
|
+
OwnerCity: '',
|
101
|
+
OwnerTown: '',
|
102
|
+
OwnerState: '',
|
103
|
+
OwnerZipCode: '',
|
104
|
+
|
105
|
+
IsProtested: false,
|
106
|
+
IsDontProtested: false,
|
107
|
+
IsInactivate: false,
|
108
|
+
IsInactivateReasonCode: 0,
|
109
|
+
IsReactivateAccount: false
|
110
|
+
};
|
54
111
|
}
|
@@ -1,9 +1,10 @@
|
|
1
1
|
import { ClientContactInfo } from "ClientSetup/ClientContactInfo";
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import { LookupMaster, ReferenceTypeLookupMaster } from "Masters/MasterModels";
|
3
|
+
import { ClientPhoneInfo } from "./ClientPhoneInfo";
|
4
4
|
|
5
5
|
export interface CCCClientContactFormInfo {
|
6
|
-
ClientContactInfo
|
7
|
-
|
8
|
-
|
6
|
+
ClientContactInfo: ClientContactInfo;
|
7
|
+
StateInfo: LookupMaster[];
|
8
|
+
CityInfo: ReferenceTypeLookupMaster[];
|
9
|
+
ClientPhoneInfo: ClientPhoneInfo[];
|
9
10
|
}
|
package/CCC/CCCModel.js
CHANGED
@@ -1,2 +1,11 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.createDefaultClientPhoneInfo = exports.createDefaultAccountInfo = exports.createDefaultClientInfo = exports.createDefaultQualifiedClientInfo = void 0;
|
4
|
+
const QualifiedClientInfo_1 = require("./QualifiedClientInfo");
|
5
|
+
Object.defineProperty(exports, "createDefaultQualifiedClientInfo", { enumerable: true, get: function () { return QualifiedClientInfo_1.createDefaultQualifiedClientInfo; } });
|
6
|
+
const ClientInfo_1 = require("./ClientInfo");
|
7
|
+
Object.defineProperty(exports, "createDefaultClientInfo", { enumerable: true, get: function () { return ClientInfo_1.createDefaultClientInfo; } });
|
8
|
+
const AccountInfo_1 = require("./AccountInfo");
|
9
|
+
Object.defineProperty(exports, "createDefaultAccountInfo", { enumerable: true, get: function () { return AccountInfo_1.createDefaultAccountInfo; } });
|
10
|
+
const ClientPhoneInfo_1 = require("./ClientPhoneInfo");
|
11
|
+
Object.defineProperty(exports, "createDefaultClientPhoneInfo", { enumerable: true, get: function () { return ClientPhoneInfo_1.createDefaultClientPhoneInfo; } });
|
package/CCC/CCCModel.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import { ScoreCardDetails } from "./ScoreCardDetails";
|
2
2
|
import { ScoreCardSummary } from "./ScoreCardSummary";
|
3
|
-
import { QualifiedClientInfo } from "./QualifiedClientInfo";
|
3
|
+
import { QualifiedClientInfo, createDefaultQualifiedClientInfo } from "./QualifiedClientInfo";
|
4
4
|
import { QualifiedClientParam } from "./QualifiedClientParam";
|
5
5
|
import { QualifiedClientResults } from "./QualifiedClientResults";
|
6
|
-
import { ClientInfo } from "./ClientInfo";
|
7
|
-
import { AccountInfo } from "./AccountInfo";
|
6
|
+
import { ClientInfo, createDefaultClientInfo } from "./ClientInfo";
|
7
|
+
import { AccountInfo, createDefaultAccountInfo } from "./AccountInfo";
|
8
8
|
import { CCCTemplateData } from "./CCCTemplateData";
|
9
9
|
import { Client } from "./Client";
|
10
10
|
import { BlastCountyPriority } from "./BlastCountyPriority";
|
@@ -23,15 +23,19 @@ import { DMImageInfos } from "./DMImageInfos";
|
|
23
23
|
import { ClientPackageParam } from "./ClientPackageParam";
|
24
24
|
import { CCCClientContactFormInfo } from "./CCCClientContactFormInfo";
|
25
25
|
import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
|
26
|
+
import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
|
26
27
|
|
27
28
|
export {
|
28
29
|
ScoreCardDetails,
|
29
30
|
ScoreCardSummary,
|
30
31
|
QualifiedClientInfo,
|
32
|
+
createDefaultQualifiedClientInfo,
|
31
33
|
QualifiedClientParam,
|
32
34
|
QualifiedClientResults,
|
33
35
|
ClientInfo,
|
36
|
+
createDefaultClientInfo,
|
34
37
|
AccountInfo,
|
38
|
+
createDefaultAccountInfo,
|
35
39
|
CCCTemplateData,
|
36
40
|
Client,
|
37
41
|
BlastCountyPriority,
|
@@ -49,5 +53,7 @@ export {
|
|
49
53
|
DMImageInfos,
|
50
54
|
ClientPackageParam,
|
51
55
|
CCCClientContactFormInfo,
|
52
|
-
NoticeOfProtestClientInfo
|
56
|
+
NoticeOfProtestClientInfo,
|
57
|
+
ClientPhoneInfo,
|
58
|
+
createDefaultClientPhoneInfo
|
53
59
|
}
|
package/CCC/ClientInfo.js
CHANGED
@@ -1,2 +1,72 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultClientInfo = createDefaultClientInfo;
|
13
|
+
function createDefaultClientInfo() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
ClientId: 0,
|
17
|
+
ClientNumber: "",
|
18
|
+
ClientName: "",
|
19
|
+
Classificationtype: "Standard",
|
20
|
+
LetterDate: new Date().toISOString().split('T')[0],
|
21
|
+
TaxYear: "",
|
22
|
+
ContactName: "",
|
23
|
+
ContactPhoneNumber: "",
|
24
|
+
ContactOfficeNumber: "",
|
25
|
+
ContactHomeNumber: "",
|
26
|
+
ContactEmail: "",
|
27
|
+
ContactAlternativeEmail: "",
|
28
|
+
ContactAddress: "",
|
29
|
+
ContactCity: "",
|
30
|
+
ContactState: "",
|
31
|
+
ContactPincode: "",
|
32
|
+
ContactCountry: "",
|
33
|
+
ContactSalutation: "",
|
34
|
+
ContactFirstName: "",
|
35
|
+
ContactLastName: "",
|
36
|
+
ContactFax: "",
|
37
|
+
ContactStateCode: "",
|
38
|
+
ItIsCommercialClient: 0,
|
39
|
+
IsNeedAgreement: 0,
|
40
|
+
TotalPropertyCount: 0,
|
41
|
+
TotalResPropertyCount: 0,
|
42
|
+
TotalComPropertyCount: 0,
|
43
|
+
IsNeedAofA: 0,
|
44
|
+
IsNeedAofAExpirtationForm: 0,
|
45
|
+
IsHomeStead: 0,
|
46
|
+
IsNeedConsentForm: 0,
|
47
|
+
TotalAofAPropertyCount: 0,
|
48
|
+
TotalAofAResPropertyCount: 0,
|
49
|
+
TotalAofAComPropertyCount: 0,
|
50
|
+
IsNeedBAAofA: 0,
|
51
|
+
TotalBAAofAPropertyCount: 0,
|
52
|
+
TotalBAAofAResPropertyCount: 0,
|
53
|
+
TotalBAAofAComPropertyCount: 0,
|
54
|
+
IsHasResidentialAccount: 0,
|
55
|
+
IsNeedPropertySurveyForm: 0,
|
56
|
+
ESignLink: "",
|
57
|
+
ClientEmail: "",
|
58
|
+
ClientAddress: "",
|
59
|
+
ClientCity: "",
|
60
|
+
ClientState: "",
|
61
|
+
ClientPinCode: "",
|
62
|
+
Day: 0,
|
63
|
+
Month: 0,
|
64
|
+
Year: 0,
|
65
|
+
Terms: "",
|
66
|
+
Title: "",
|
67
|
+
ClientSignature: "",
|
68
|
+
AccountInfo: []
|
69
|
+
};
|
70
|
+
});
|
71
|
+
}
|
72
|
+
;
|
package/CCC/ClientInfo.ts
CHANGED
@@ -1,57 +1,116 @@
|
|
1
1
|
import { AccountInfo } from "./AccountInfo";
|
2
2
|
|
3
3
|
export interface ClientInfo {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
}
|
4
|
+
ClientId?: number;
|
5
|
+
ClientNumber?: string;
|
6
|
+
ClientName?: string;
|
7
|
+
Classificationtype?: string;
|
8
|
+
LetterDate?: string;
|
9
|
+
TaxYear?: string;
|
10
|
+
ContactName?: string;
|
11
|
+
ContactPhoneNumber?: string;
|
12
|
+
ContactOfficeNumber?: string;
|
13
|
+
ContactHomeNumber?: string;
|
14
|
+
ContactEmail?: string;
|
15
|
+
ContactAlternativeEmail?: string;
|
16
|
+
ContactAddress?: string;
|
17
|
+
ContactCity?: string;
|
18
|
+
ContactState?: string;
|
19
|
+
ContactPincode?: string;
|
20
|
+
ContactCountry?: string;
|
21
|
+
ContactSalutation?: string;
|
22
|
+
ContactFirstName?: string;
|
23
|
+
ContactLastName?: string;
|
24
|
+
ContactFax?: string;
|
25
|
+
ContactStateCode?: string;
|
26
|
+
ItIsCommercialClient?: number;
|
27
|
+
IsNeedAgreement?: number;
|
28
|
+
TotalPropertyCount?: number;
|
29
|
+
TotalResPropertyCount?: number;
|
30
|
+
TotalComPropertyCount?: number;
|
31
|
+
IsNeedAofA?: number;
|
32
|
+
IsNeedAofAExpirtationForm?: number;
|
33
|
+
IsHomeStead?: number;
|
34
|
+
IsNeedConsentForm?: number;
|
35
|
+
TotalAofAPropertyCount?: number;
|
36
|
+
TotalAofAResPropertyCount?: number;
|
37
|
+
TotalAofAComPropertyCount?: number;
|
38
|
+
IsNeedBAAofA?: number;
|
39
|
+
TotalBAAofAPropertyCount?: number;
|
40
|
+
TotalBAAofAResPropertyCount?: number;
|
41
|
+
TotalBAAofAComPropertyCount?: number;
|
42
|
+
IsHasResidentialAccount?: number;
|
43
|
+
IsNeedPropertySurveyForm?: number;
|
44
|
+
ESignLink?: string;
|
45
|
+
ClientEmail?: string;
|
46
|
+
ClientAddress?: string;
|
47
|
+
ClientCity?: string;
|
48
|
+
ClientState?: string;
|
49
|
+
ClientPinCode?: string;
|
50
|
+
Day?: number;
|
51
|
+
Month?: number;
|
52
|
+
Year?: number;
|
53
|
+
Terms?: string;
|
54
|
+
Title?: string;
|
55
|
+
ClientSignature?: string;
|
56
|
+
AccountInfo?: AccountInfo[];
|
57
|
+
}
|
58
|
+
|
59
|
+
export async function createDefaultClientInfo(): Promise<ClientInfo> {
|
60
|
+
return {
|
61
|
+
ClientId: 0,
|
62
|
+
ClientNumber: "",
|
63
|
+
ClientName: "",
|
64
|
+
Classificationtype: "Standard",
|
65
|
+
LetterDate: new Date().toISOString().split('T')[0],
|
66
|
+
TaxYear: "",
|
67
|
+
ContactName: "",
|
68
|
+
ContactPhoneNumber: "",
|
69
|
+
ContactOfficeNumber: "",
|
70
|
+
ContactHomeNumber: "",
|
71
|
+
ContactEmail: "",
|
72
|
+
ContactAlternativeEmail: "",
|
73
|
+
ContactAddress: "",
|
74
|
+
ContactCity: "",
|
75
|
+
ContactState: "",
|
76
|
+
ContactPincode: "",
|
77
|
+
ContactCountry: "",
|
78
|
+
ContactSalutation: "",
|
79
|
+
ContactFirstName: "",
|
80
|
+
ContactLastName: "",
|
81
|
+
ContactFax: "",
|
82
|
+
ContactStateCode: "",
|
83
|
+
ItIsCommercialClient: 0,
|
84
|
+
IsNeedAgreement: 0,
|
85
|
+
TotalPropertyCount: 0,
|
86
|
+
TotalResPropertyCount: 0,
|
87
|
+
TotalComPropertyCount: 0,
|
88
|
+
IsNeedAofA: 0,
|
89
|
+
IsNeedAofAExpirtationForm: 0,
|
90
|
+
IsHomeStead: 0,
|
91
|
+
IsNeedConsentForm: 0,
|
92
|
+
TotalAofAPropertyCount: 0,
|
93
|
+
TotalAofAResPropertyCount: 0,
|
94
|
+
TotalAofAComPropertyCount: 0,
|
95
|
+
IsNeedBAAofA: 0,
|
96
|
+
TotalBAAofAPropertyCount: 0,
|
97
|
+
TotalBAAofAResPropertyCount: 0,
|
98
|
+
TotalBAAofAComPropertyCount: 0,
|
99
|
+
IsHasResidentialAccount: 0,
|
100
|
+
IsNeedPropertySurveyForm: 0,
|
101
|
+
ESignLink: "",
|
102
|
+
ClientEmail: "",
|
103
|
+
ClientAddress: "",
|
104
|
+
ClientCity: "",
|
105
|
+
ClientState: "",
|
106
|
+
ClientPinCode: "",
|
107
|
+
Day: 0,
|
108
|
+
Month: 0,
|
109
|
+
Year: 0,
|
110
|
+
Terms: "",
|
111
|
+
Title: "",
|
112
|
+
ClientSignature: "",
|
113
|
+
AccountInfo: []
|
114
|
+
}
|
115
|
+
};
|
116
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultClientPhoneInfo = createDefaultClientPhoneInfo;
|
13
|
+
function createDefaultClientPhoneInfo() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
PhoneId: 0,
|
17
|
+
PhoneNumber: "",
|
18
|
+
PhoneType: "",
|
19
|
+
PhoneTypeId: 0,
|
20
|
+
PhoneContactOrder: ""
|
21
|
+
};
|
22
|
+
});
|
23
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
export interface ClientPhoneInfo {
|
2
|
+
PhoneId: number;
|
3
|
+
PhoneNumber: string;
|
4
|
+
PhoneType: string;
|
5
|
+
PhoneTypeId: number;
|
6
|
+
PhoneContactOrder: string;
|
7
|
+
}
|
8
|
+
|
9
|
+
export async function createDefaultClientPhoneInfo(): Promise<ClientPhoneInfo> {
|
10
|
+
return {
|
11
|
+
PhoneId: 0,
|
12
|
+
PhoneNumber: "",
|
13
|
+
PhoneType: "",
|
14
|
+
PhoneTypeId: 0,
|
15
|
+
PhoneContactOrder: ""
|
16
|
+
};
|
17
|
+
}
|
@@ -1,2 +1,37 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultQualifiedClientInfo = createDefaultQualifiedClientInfo;
|
13
|
+
function createDefaultQualifiedClientInfo() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
Id: 0,
|
17
|
+
ClientId: 0,
|
18
|
+
ClientNumber: "",
|
19
|
+
ClientName: "",
|
20
|
+
ClassificationType: "",
|
21
|
+
ItIsCommercialClient: false,
|
22
|
+
TaxYear: 0,
|
23
|
+
Mode: "",
|
24
|
+
DeliveryAddress: "",
|
25
|
+
ResidentialAccounts: 0,
|
26
|
+
CommercialAccounts: 0,
|
27
|
+
TotalAccounts: 0,
|
28
|
+
BlastStatusId: 0,
|
29
|
+
Status: "Active",
|
30
|
+
BlastDate: "",
|
31
|
+
Documents: "",
|
32
|
+
IsSelected: false,
|
33
|
+
InitiatedBy: 0
|
34
|
+
};
|
35
|
+
});
|
36
|
+
}
|
37
|
+
;
|
@@ -17,4 +17,27 @@ export interface QualifiedClientInfo {
|
|
17
17
|
Documents?: string;
|
18
18
|
IsSelected?: boolean;
|
19
19
|
InitiatedBy?: number;
|
20
|
-
}
|
20
|
+
}
|
21
|
+
|
22
|
+
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
23
|
+
return {
|
24
|
+
Id: 0,
|
25
|
+
ClientId: 0,
|
26
|
+
ClientNumber: "",
|
27
|
+
ClientName: "",
|
28
|
+
ClassificationType: "",
|
29
|
+
ItIsCommercialClient: false,
|
30
|
+
TaxYear: 0,
|
31
|
+
Mode: "",
|
32
|
+
DeliveryAddress: "",
|
33
|
+
ResidentialAccounts: 0,
|
34
|
+
CommercialAccounts: 0,
|
35
|
+
TotalAccounts: 0,
|
36
|
+
BlastStatusId: 0,
|
37
|
+
Status: "Active",
|
38
|
+
BlastDate: "",
|
39
|
+
Documents: "",
|
40
|
+
IsSelected: false,
|
41
|
+
InitiatedBy: 0
|
42
|
+
};
|
43
|
+
};
|
@@ -1,2 +1,33 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultAccountInfo = createDefaultAccountInfo;
|
13
|
+
function createDefaultAccountInfo() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
AddressId: 0,
|
17
|
+
ContactId: 0,
|
18
|
+
FirstName: "",
|
19
|
+
LastName: "",
|
20
|
+
Email: "",
|
21
|
+
AlternativeEmail: "",
|
22
|
+
AddressLine1: "",
|
23
|
+
AddressLine2: "",
|
24
|
+
AddressLine3: "",
|
25
|
+
Zip: "",
|
26
|
+
CityId: 0,
|
27
|
+
StateId: 0,
|
28
|
+
CellPhone: "",
|
29
|
+
OfficePhone: "",
|
30
|
+
HomePhone: ""
|
31
|
+
};
|
32
|
+
});
|
33
|
+
}
|
@@ -1,14 +1,37 @@
|
|
1
1
|
export interface ClientContactInfo {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
2
|
+
AddressId: number,
|
3
|
+
ContactId: number,
|
4
|
+
FirstName: string,
|
5
|
+
LastName: string,
|
6
|
+
Email: string,
|
7
|
+
AlternativeEmail: string,
|
8
|
+
AddressLine1: string,
|
9
|
+
AddressLine2: string,
|
10
|
+
AddressLine3: string,
|
11
|
+
Zip: string,
|
12
|
+
CityId: number,
|
13
|
+
StateId: number,
|
14
|
+
CellPhone: string,
|
15
|
+
OfficePhone: string,
|
16
|
+
HomePhone: string
|
17
|
+
}
|
18
|
+
|
19
|
+
export async function createDefaultAccountInfo(): Promise<ClientContactInfo> {
|
20
|
+
return {
|
21
|
+
AddressId: 0,
|
22
|
+
ContactId: 0,
|
23
|
+
FirstName: "",
|
24
|
+
LastName: "",
|
25
|
+
Email: "",
|
26
|
+
AlternativeEmail: "",
|
27
|
+
AddressLine1: "",
|
28
|
+
AddressLine2: "",
|
29
|
+
AddressLine3: "",
|
30
|
+
Zip: "",
|
31
|
+
CityId: 0,
|
32
|
+
StateId: 0,
|
33
|
+
CellPhone: "",
|
34
|
+
OfficePhone: "",
|
35
|
+
HomePhone: ""
|
36
|
+
};
|
14
37
|
}
|
package/Common/AppConfigHub.js
CHANGED
@@ -1,2 +1,210 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultAppConfigHub = createDefaultAppConfigHub;
|
13
|
+
function createDefaultAppConfigHub() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
//#region Client Package Config
|
17
|
+
CPckLetterGenTempPath: "",
|
18
|
+
CPckLetterGenPath: "",
|
19
|
+
CPckFilenamePrefixResicentialCoverLetter: "",
|
20
|
+
CPckFilenamePrefixCommercialCoverLetter: "",
|
21
|
+
CPckFilenamePrefixContactForm: "",
|
22
|
+
CPckFilenamePrefixCommrcialAgreement: "",
|
23
|
+
CPckFilenamePrefixResidentialAgreement: "",
|
24
|
+
CPckFilenamePrefixAccountList: "",
|
25
|
+
CPckFilenamePrefixAofAExpirationForm: "",
|
26
|
+
CPckFilenamePrefixConsentForm: "",
|
27
|
+
CPckFilenamePrefixResidentialAofA: "",
|
28
|
+
CPckFilenamePrefixCommercialAofA: "",
|
29
|
+
CPckFilenamePrefixBAAofA: "",
|
30
|
+
CPckFilenamePrefixPropertySurvey: "",
|
31
|
+
CPckFilenamePrefixBPPAgreement: "",
|
32
|
+
CPckFilenameOOTCaliforniaPowerOfAttorney: "",
|
33
|
+
CPckTexasAccountSummaryTemplateHeaderHtmlContentId: "",
|
34
|
+
CPckTexasAccountSummaryTemplateBodyHtmlContentId: "",
|
35
|
+
CPckTexasResidentialAgreementTemplateHeaderHtmlContentId: "",
|
36
|
+
CPckTexasResidentialAgreementTemplateBodyHtmlContentId: "",
|
37
|
+
CPckTexasResidentialAgreementTemplateFooterHtmlContentId: "",
|
38
|
+
CPckTexasCommercialAgreementTemplateHeaderHtmlContentId: "",
|
39
|
+
CPckTexasCommercialAgreementTemplateBodyHtmlContentId: "",
|
40
|
+
CPckTexasCommercialAgreementTemplateFooterHtmlContentId: "",
|
41
|
+
CPckTexasConsentFormTemplateHeaderHtmlContentId: "",
|
42
|
+
CPckTexasConsentFormTemplateBodyHtmlContentId: "",
|
43
|
+
CPckTexasConsentFormTemplateFooterHtmlContentId: "",
|
44
|
+
CPckTexasAofAExpiryDateFromTemplateBodyHtmlContentId: "",
|
45
|
+
CPckTexasResidentialAofAPage1BodyHtmlContentId: "",
|
46
|
+
CPckTexasResidentialAofAPage2BodyHtmlContentId: "",
|
47
|
+
CPckTexasCommercialAofAPage1BodyHtmlContentId: "",
|
48
|
+
CPckTexasCommercialAofAPage2BodyHtmlContentId: "",
|
49
|
+
CPckTexasBAAofAPage1BodyHtmlContentId: "",
|
50
|
+
CPckTexasBAAofAPage1FooterHtmlContentId: "",
|
51
|
+
CPckTexasBAAofAPage2BodyHtmlContentId: "",
|
52
|
+
CPckTexasBAAofAPage2FooterHtmlContentId: "",
|
53
|
+
CPckTexasPropertySurveyTemplateBodyHtmlContentId: "",
|
54
|
+
CPckTexasLeadCommercialAgreementTemplateHeaderHtmlContentId: "",
|
55
|
+
CPckTexasLeadCommercialAgreementTemplateBodyHtmlContentId: "",
|
56
|
+
CPckTexasBPPAgreementPage1BodyHtmlContentId: "",
|
57
|
+
CPckTexasBPPAgreementPage2BodyHtmlContentId: "",
|
58
|
+
CPckOOTOOTCommercialAgreementTemplateHeaderHtmlContentId: "",
|
59
|
+
CPckOOTOOTCommercialAgreementTemplateBodyHtmlContentId: "",
|
60
|
+
CPckOOTAuthorizationFormTemplateBodyHtmlContentId: "",
|
61
|
+
CPckOOTOOTPowerOfAttorneyPage1HeaderHtmlContentId: "",
|
62
|
+
CPckOOTOOTPowerOfAttorneyPage1BodyHtmlContentId: "",
|
63
|
+
CPckOOTOOTPowerOfAttorneyPage2HeaderHtmlContentId: "",
|
64
|
+
CPckOOTOOTPowerOfAttorneyPage2BodyHtmlContentId: "",
|
65
|
+
CPckOOTOOTPowerOfAttorneyPage2FooterHtmlContentId: "",
|
66
|
+
CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId: "",
|
67
|
+
CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId: "",
|
68
|
+
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId: "",
|
69
|
+
ESignLink: "",
|
70
|
+
CPckFileName: "",
|
71
|
+
CPckESignLink: "",
|
72
|
+
CPckSalesCRMESignFromEmail: "",
|
73
|
+
CPckSalesCRMESignSubject: "",
|
74
|
+
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
75
|
+
CPckClientEmailESignSubject: "",
|
76
|
+
//#endregion
|
77
|
+
//#region CCC Package Config
|
78
|
+
CCCPckLetterGenTempPath: "",
|
79
|
+
CCCPckLetterGenPath: "",
|
80
|
+
CCCPckUSMailLetterFileName: "",
|
81
|
+
CCCPckFromEmail: "",
|
82
|
+
CCCPckEmailSubject: "",
|
83
|
+
CCCPckBlastEMailCount: "",
|
84
|
+
CCCPckBlastUSMailCount: "",
|
85
|
+
CCCPckFilenamePrefixReason: "",
|
86
|
+
CCCPckResidentialCoverLetterTemplateBodyHtmlContentId: "",
|
87
|
+
CCCPckResidentialCoverLetterTemplateFooterHtmlContentId: "",
|
88
|
+
CCCPckCommercialCoverLetterTemplateBodyHtmlContentId: "",
|
89
|
+
CCCPckCommercialCoverLetterTemplateFooterHtmlContentId: "",
|
90
|
+
CCCPckContactDetailsTemplateBodyHtmlContentId: "",
|
91
|
+
CCCPckReasonstoProtestPage1BodyHtmlContentId: "",
|
92
|
+
CCCPckReasonstoProtestPage2BodyHtmlContentId: "",
|
93
|
+
CCCPckReasonstoProtestPage2FooterHtmlContentId: "",
|
94
|
+
CCCPckResidentialClientEmailTemplateContentoftheemailHtmlContentId: "",
|
95
|
+
CCCPckCommercialClientEmailTemplateContentoftheemailHtmlContentId: "",
|
96
|
+
CCCPckEmailLetterGenPath: "",
|
97
|
+
CCCPckEmailLetterFileNamePrefix: "",
|
98
|
+
CPckFilenamePrefixOOTCommercialAgreement: "",
|
99
|
+
CPckFilenamePrefixAuthorizationForm: "",
|
100
|
+
CPckFilenameOOTPowerOfAttorney: "",
|
101
|
+
CPckFilenameOOTCaliforniaAgentAuthorizationForm: "",
|
102
|
+
cpkresidentialagreement: "",
|
103
|
+
cpkresidentialaofa: "",
|
104
|
+
cpkbaaofa: "",
|
105
|
+
cpkpropertysurvey: "",
|
106
|
+
cpkbppagreement: "",
|
107
|
+
cpkcommercialagreement: "",
|
108
|
+
cpkcommercialaofa: "",
|
109
|
+
CPckClientEmailContentId: "",
|
110
|
+
//#endregion
|
111
|
+
//#region Protest Config
|
112
|
+
ProtestLetterName: "",
|
113
|
+
ProtestHB201LetterName: "",
|
114
|
+
ProtestExcelSheet: "",
|
115
|
+
ProtestLetterGenPath: "",
|
116
|
+
ProtestLetterGenTempPath: "",
|
117
|
+
ProtestLetterFileNamePrefix: "",
|
118
|
+
ProtestHB201LetterFileNamePrefix: "",
|
119
|
+
ProtestExcelSheetFileNamePrefix: "",
|
120
|
+
ProtestProtestLetterCoverLetterBodyHtmlContentId: "",
|
121
|
+
ProtestProtestLetterCoverLetterFooterHtmlContentId: "",
|
122
|
+
ProtestProtestLetterAccountListBodyHtmlContentId: "",
|
123
|
+
ProtestProtestLetterAccountListFooterHtmlContentId: "",
|
124
|
+
ProtestProtestHB201LetterCoverLetterBodyHtmlContentId: "",
|
125
|
+
ProtestProtestHB201LetterCoverLetterFooterHtmlContentId: "",
|
126
|
+
ProtestProtestHB201LetterAccountListBodyHtmlContentId: "",
|
127
|
+
ProtestProtestHB201LetterAccountListFooterHtmlContentId: "",
|
128
|
+
ProtestProtestCountyEmailTemplateContentoftheemailHtmlContentId: "",
|
129
|
+
ProtestCountyLetterFromEmail: "",
|
130
|
+
ProtestCountyLetterToEmail: "",
|
131
|
+
ProtestCountyLetterSubject: "",
|
132
|
+
ProtestCountyLetterDispositionNotificationToEmail: "",
|
133
|
+
ProtestCountyLetterReturnReceiptToEmail: "",
|
134
|
+
//#endregion
|
135
|
+
//#region Client Setup Config
|
136
|
+
ClientSetupWelcomeEmailTemplateContentoftheemailHtmlContentId: "",
|
137
|
+
ClientSetupNextYearSignUpTemplateContentoftheemailHtmlContentId: "",
|
138
|
+
//#endregion
|
139
|
+
//#region External Params
|
140
|
+
UserId: 0,
|
141
|
+
//#endregion
|
142
|
+
//#region RabbitMQ Configuration
|
143
|
+
RMQConfigUserName: "",
|
144
|
+
RMQConfigPassword: "",
|
145
|
+
RMQConfigHost: "",
|
146
|
+
RMQConfigPort: "",
|
147
|
+
RMQConfigProtestCountyQueue: "",
|
148
|
+
RMQConfigProtestLetterGenerationQueue: "",
|
149
|
+
RMQConfigHB201ProtestLetterGenerationQueue: "",
|
150
|
+
RMQConfigExcelfileGenerationQueue: "",
|
151
|
+
RMQConfigEmailSenderService: "",
|
152
|
+
RMQConfigClentSetup: "",
|
153
|
+
RMQConfigCCCUSMailBlastQueue: "",
|
154
|
+
RMQConfigCCCEmailBlastQueue: "",
|
155
|
+
RMQConfigCCCResidentialCoverLetterService: "",
|
156
|
+
RMQConfigCCCCommercialCoverLetterService: "",
|
157
|
+
RMQConfigCCCContactForm: "",
|
158
|
+
RMQConfigCCCResidentialAgreement: "",
|
159
|
+
RMQConfigCCCCommercialAgreement: "",
|
160
|
+
RMQConfigCCCAccountList: "",
|
161
|
+
RMQConfigCCCAofAExpiryDateFrom: "",
|
162
|
+
RMQConfigCCCConsentForm: "",
|
163
|
+
RMQConfigCCCResidentialAofA: "",
|
164
|
+
RMQConfigCCCCommercialAofA: "",
|
165
|
+
RMQConfigCCCBAAofA: "",
|
166
|
+
RMQConfigCCCPropertySurvey: "",
|
167
|
+
RMQConfigCCCReasons: "",
|
168
|
+
RMQConfigClientPackageQueue: "",
|
169
|
+
RMQConfigCPckResidentialAgreement: "",
|
170
|
+
RMQConfigCPckCommercialAgreement: "",
|
171
|
+
RMQConfigCPckResidentialAofA: "",
|
172
|
+
RMQConfigCPckCommercialAofA: "",
|
173
|
+
RMQConfigCPckBAaofa: "",
|
174
|
+
RMQConfigCPckPropertySurvey: "",
|
175
|
+
RMQConfigCPckBPPAgreement: "",
|
176
|
+
RMQConfigCPckOOTAuthorizationForm: "",
|
177
|
+
RMQConfigCPckOOTCommercialAgreement: "",
|
178
|
+
RMQConfigCPckOOTPowerOfAttorney: "",
|
179
|
+
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm: "",
|
180
|
+
RMQConfigCPckOOTCaliforniaPowerOfAttorney: "",
|
181
|
+
//#endregion
|
182
|
+
//#region Common Config
|
183
|
+
CompanyName: "",
|
184
|
+
CompanyAddress: "",
|
185
|
+
CompanyCity: "",
|
186
|
+
CompanyState: "",
|
187
|
+
CompanyZip: "",
|
188
|
+
CompanyPhone: "",
|
189
|
+
CompanyEmail: "",
|
190
|
+
CompanyTollFree: "",
|
191
|
+
CompanyFax: "",
|
192
|
+
ClientPortalUrl: "",
|
193
|
+
ClientPortalUrlLabel: "",
|
194
|
+
TaxYear: "",
|
195
|
+
NextYear: "",
|
196
|
+
AppraisalAddress: "",
|
197
|
+
AppraisalDistrictPhone: "",
|
198
|
+
RevDate: "",
|
199
|
+
CompanyWebsite: "",
|
200
|
+
//#endregion
|
201
|
+
//#region Clientsetup Config
|
202
|
+
NextYearSignupfromEmail: "",
|
203
|
+
NextYearSignupsubject: "",
|
204
|
+
WelcomeEmail: "",
|
205
|
+
WelcomeEmailfromEmail: "",
|
206
|
+
WelcomeEmailSubject: "",
|
207
|
+
//#endregion
|
208
|
+
};
|
209
|
+
});
|
210
|
+
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -202,7 +202,7 @@ export interface AppConfigHub {
|
|
202
202
|
CompanyTollFree?: string;
|
203
203
|
CompanyFax?: string;
|
204
204
|
ClientPortalUrl?: string;
|
205
|
-
ClientPortalUrlLabel?: string;
|
205
|
+
ClientPortalUrlLabel?: string;
|
206
206
|
TaxYear?: string;
|
207
207
|
NextYear?: string;
|
208
208
|
AppraisalAddress?: string;
|
@@ -222,4 +222,232 @@ export interface AppConfigHub {
|
|
222
222
|
|
223
223
|
//#endregion
|
224
224
|
|
225
|
-
}
|
225
|
+
}
|
226
|
+
|
227
|
+
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
228
|
+
return {
|
229
|
+
//#region Client Package Config
|
230
|
+
|
231
|
+
CPckLetterGenTempPath: "",
|
232
|
+
CPckLetterGenPath: "",
|
233
|
+
|
234
|
+
CPckFilenamePrefixResicentialCoverLetter: "",
|
235
|
+
CPckFilenamePrefixCommercialCoverLetter: "",
|
236
|
+
CPckFilenamePrefixContactForm: "",
|
237
|
+
CPckFilenamePrefixCommrcialAgreement: "",
|
238
|
+
CPckFilenamePrefixResidentialAgreement: "",
|
239
|
+
CPckFilenamePrefixAccountList: "",
|
240
|
+
CPckFilenamePrefixAofAExpirationForm: "",
|
241
|
+
CPckFilenamePrefixConsentForm: "",
|
242
|
+
CPckFilenamePrefixResidentialAofA: "",
|
243
|
+
CPckFilenamePrefixCommercialAofA: "",
|
244
|
+
CPckFilenamePrefixBAAofA: "",
|
245
|
+
CPckFilenamePrefixPropertySurvey: "",
|
246
|
+
CPckFilenamePrefixBPPAgreement: "",
|
247
|
+
CPckFilenameOOTCaliforniaPowerOfAttorney: "",
|
248
|
+
|
249
|
+
CPckTexasAccountSummaryTemplateHeaderHtmlContentId: "",
|
250
|
+
CPckTexasAccountSummaryTemplateBodyHtmlContentId: "",
|
251
|
+
CPckTexasResidentialAgreementTemplateHeaderHtmlContentId: "",
|
252
|
+
CPckTexasResidentialAgreementTemplateBodyHtmlContentId: "",
|
253
|
+
CPckTexasResidentialAgreementTemplateFooterHtmlContentId: "",
|
254
|
+
CPckTexasCommercialAgreementTemplateHeaderHtmlContentId: "",
|
255
|
+
CPckTexasCommercialAgreementTemplateBodyHtmlContentId: "",
|
256
|
+
CPckTexasCommercialAgreementTemplateFooterHtmlContentId: "",
|
257
|
+
CPckTexasConsentFormTemplateHeaderHtmlContentId: "",
|
258
|
+
CPckTexasConsentFormTemplateBodyHtmlContentId: "",
|
259
|
+
CPckTexasConsentFormTemplateFooterHtmlContentId: "",
|
260
|
+
CPckTexasAofAExpiryDateFromTemplateBodyHtmlContentId: "",
|
261
|
+
CPckTexasResidentialAofAPage1BodyHtmlContentId: "",
|
262
|
+
CPckTexasResidentialAofAPage2BodyHtmlContentId: "",
|
263
|
+
CPckTexasCommercialAofAPage1BodyHtmlContentId: "",
|
264
|
+
CPckTexasCommercialAofAPage2BodyHtmlContentId: "",
|
265
|
+
CPckTexasBAAofAPage1BodyHtmlContentId: "",
|
266
|
+
CPckTexasBAAofAPage1FooterHtmlContentId: "",
|
267
|
+
CPckTexasBAAofAPage2BodyHtmlContentId: "",
|
268
|
+
CPckTexasBAAofAPage2FooterHtmlContentId: "",
|
269
|
+
CPckTexasPropertySurveyTemplateBodyHtmlContentId: "",
|
270
|
+
CPckTexasLeadCommercialAgreementTemplateHeaderHtmlContentId: "",
|
271
|
+
CPckTexasLeadCommercialAgreementTemplateBodyHtmlContentId: "",
|
272
|
+
CPckTexasBPPAgreementPage1BodyHtmlContentId: "",
|
273
|
+
CPckTexasBPPAgreementPage2BodyHtmlContentId: "",
|
274
|
+
|
275
|
+
CPckOOTOOTCommercialAgreementTemplateHeaderHtmlContentId: "",
|
276
|
+
CPckOOTOOTCommercialAgreementTemplateBodyHtmlContentId: "",
|
277
|
+
CPckOOTAuthorizationFormTemplateBodyHtmlContentId: "",
|
278
|
+
CPckOOTOOTPowerOfAttorneyPage1HeaderHtmlContentId: "",
|
279
|
+
CPckOOTOOTPowerOfAttorneyPage1BodyHtmlContentId: "",
|
280
|
+
CPckOOTOOTPowerOfAttorneyPage2HeaderHtmlContentId: "",
|
281
|
+
CPckOOTOOTPowerOfAttorneyPage2BodyHtmlContentId: "",
|
282
|
+
CPckOOTOOTPowerOfAttorneyPage2FooterHtmlContentId: "",
|
283
|
+
CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId: "",
|
284
|
+
CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId: "",
|
285
|
+
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId: "",
|
286
|
+
|
287
|
+
ESignLink: "",
|
288
|
+
CPckFileName: "",
|
289
|
+
CPckESignLink: "",
|
290
|
+
CPckSalesCRMESignFromEmail: "",
|
291
|
+
CPckSalesCRMESignSubject: "",
|
292
|
+
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
293
|
+
CPckClientEmailESignSubject: "",
|
294
|
+
|
295
|
+
//#endregion
|
296
|
+
|
297
|
+
//#region CCC Package Config
|
298
|
+
|
299
|
+
CCCPckLetterGenTempPath: "",
|
300
|
+
CCCPckLetterGenPath: "",
|
301
|
+
CCCPckUSMailLetterFileName: "",
|
302
|
+
CCCPckFromEmail: "",
|
303
|
+
CCCPckEmailSubject: "",
|
304
|
+
CCCPckBlastEMailCount: "",
|
305
|
+
CCCPckBlastUSMailCount: "",
|
306
|
+
CCCPckFilenamePrefixReason: "",
|
307
|
+
CCCPckResidentialCoverLetterTemplateBodyHtmlContentId: "",
|
308
|
+
CCCPckResidentialCoverLetterTemplateFooterHtmlContentId: "",
|
309
|
+
CCCPckCommercialCoverLetterTemplateBodyHtmlContentId: "",
|
310
|
+
CCCPckCommercialCoverLetterTemplateFooterHtmlContentId: "",
|
311
|
+
CCCPckContactDetailsTemplateBodyHtmlContentId: "",
|
312
|
+
CCCPckReasonstoProtestPage1BodyHtmlContentId: "",
|
313
|
+
CCCPckReasonstoProtestPage2BodyHtmlContentId: "",
|
314
|
+
CCCPckReasonstoProtestPage2FooterHtmlContentId: "",
|
315
|
+
CCCPckResidentialClientEmailTemplateContentoftheemailHtmlContentId: "",
|
316
|
+
CCCPckCommercialClientEmailTemplateContentoftheemailHtmlContentId: "",
|
317
|
+
CCCPckEmailLetterGenPath: "",
|
318
|
+
CCCPckEmailLetterFileNamePrefix: "",
|
319
|
+
CPckFilenamePrefixOOTCommercialAgreement: "",
|
320
|
+
CPckFilenamePrefixAuthorizationForm: "",
|
321
|
+
CPckFilenameOOTPowerOfAttorney: "",
|
322
|
+
CPckFilenameOOTCaliforniaAgentAuthorizationForm: "",
|
323
|
+
cpkresidentialagreement: "",
|
324
|
+
cpkresidentialaofa: "",
|
325
|
+
cpkbaaofa: "",
|
326
|
+
cpkpropertysurvey: "",
|
327
|
+
cpkbppagreement: "",
|
328
|
+
cpkcommercialagreement: "",
|
329
|
+
cpkcommercialaofa: "",
|
330
|
+
CPckClientEmailContentId: "",
|
331
|
+
|
332
|
+
//#endregion
|
333
|
+
|
334
|
+
//#region Protest Config
|
335
|
+
|
336
|
+
ProtestLetterName: "",
|
337
|
+
ProtestHB201LetterName: "",
|
338
|
+
ProtestExcelSheet: "",
|
339
|
+
ProtestLetterGenPath: "",
|
340
|
+
ProtestLetterGenTempPath: "",
|
341
|
+
ProtestLetterFileNamePrefix: "",
|
342
|
+
ProtestHB201LetterFileNamePrefix: "",
|
343
|
+
ProtestExcelSheetFileNamePrefix: "",
|
344
|
+
ProtestProtestLetterCoverLetterBodyHtmlContentId: "",
|
345
|
+
ProtestProtestLetterCoverLetterFooterHtmlContentId: "",
|
346
|
+
ProtestProtestLetterAccountListBodyHtmlContentId: "",
|
347
|
+
ProtestProtestLetterAccountListFooterHtmlContentId: "",
|
348
|
+
ProtestProtestHB201LetterCoverLetterBodyHtmlContentId: "",
|
349
|
+
ProtestProtestHB201LetterCoverLetterFooterHtmlContentId: "",
|
350
|
+
ProtestProtestHB201LetterAccountListBodyHtmlContentId: "",
|
351
|
+
ProtestProtestHB201LetterAccountListFooterHtmlContentId: "",
|
352
|
+
ProtestProtestCountyEmailTemplateContentoftheemailHtmlContentId: "",
|
353
|
+
ProtestCountyLetterFromEmail: "",
|
354
|
+
ProtestCountyLetterToEmail: "",
|
355
|
+
ProtestCountyLetterSubject: "",
|
356
|
+
ProtestCountyLetterDispositionNotificationToEmail: "",
|
357
|
+
ProtestCountyLetterReturnReceiptToEmail: "",
|
358
|
+
//#endregion
|
359
|
+
|
360
|
+
//#region Client Setup Config
|
361
|
+
|
362
|
+
ClientSetupWelcomeEmailTemplateContentoftheemailHtmlContentId: "",
|
363
|
+
ClientSetupNextYearSignUpTemplateContentoftheemailHtmlContentId: "",
|
364
|
+
|
365
|
+
//#endregion
|
366
|
+
|
367
|
+
//#region External Params
|
368
|
+
|
369
|
+
UserId: 0,
|
370
|
+
|
371
|
+
//#endregion
|
372
|
+
|
373
|
+
//#region RabbitMQ Configuration
|
374
|
+
|
375
|
+
RMQConfigUserName: "",
|
376
|
+
RMQConfigPassword: "",
|
377
|
+
RMQConfigHost: "",
|
378
|
+
RMQConfigPort: "",
|
379
|
+
RMQConfigProtestCountyQueue: "",
|
380
|
+
RMQConfigProtestLetterGenerationQueue: "",
|
381
|
+
RMQConfigHB201ProtestLetterGenerationQueue: "",
|
382
|
+
RMQConfigExcelfileGenerationQueue: "",
|
383
|
+
RMQConfigEmailSenderService: "",
|
384
|
+
RMQConfigClentSetup: "",
|
385
|
+
|
386
|
+
RMQConfigCCCUSMailBlastQueue: "",
|
387
|
+
RMQConfigCCCEmailBlastQueue: "",
|
388
|
+
RMQConfigCCCResidentialCoverLetterService: "",
|
389
|
+
RMQConfigCCCCommercialCoverLetterService: "",
|
390
|
+
RMQConfigCCCContactForm: "",
|
391
|
+
RMQConfigCCCResidentialAgreement: "",
|
392
|
+
RMQConfigCCCCommercialAgreement: "",
|
393
|
+
RMQConfigCCCAccountList: "",
|
394
|
+
RMQConfigCCCAofAExpiryDateFrom: "",
|
395
|
+
RMQConfigCCCConsentForm: "",
|
396
|
+
RMQConfigCCCResidentialAofA: "",
|
397
|
+
RMQConfigCCCCommercialAofA: "",
|
398
|
+
RMQConfigCCCBAAofA: "",
|
399
|
+
RMQConfigCCCPropertySurvey: "",
|
400
|
+
RMQConfigCCCReasons: "",
|
401
|
+
|
402
|
+
RMQConfigClientPackageQueue: "",
|
403
|
+
RMQConfigCPckResidentialAgreement: "",
|
404
|
+
RMQConfigCPckCommercialAgreement: "",
|
405
|
+
RMQConfigCPckResidentialAofA: "",
|
406
|
+
RMQConfigCPckCommercialAofA: "",
|
407
|
+
RMQConfigCPckBAaofa: "",
|
408
|
+
RMQConfigCPckPropertySurvey: "",
|
409
|
+
RMQConfigCPckBPPAgreement: "",
|
410
|
+
|
411
|
+
RMQConfigCPckOOTAuthorizationForm: "",
|
412
|
+
RMQConfigCPckOOTCommercialAgreement: "",
|
413
|
+
RMQConfigCPckOOTPowerOfAttorney: "",
|
414
|
+
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm: "",
|
415
|
+
RMQConfigCPckOOTCaliforniaPowerOfAttorney: "",
|
416
|
+
|
417
|
+
//#endregion
|
418
|
+
|
419
|
+
//#region Common Config
|
420
|
+
|
421
|
+
CompanyName: "",
|
422
|
+
CompanyAddress: "",
|
423
|
+
CompanyCity: "",
|
424
|
+
CompanyState: "",
|
425
|
+
CompanyZip: "",
|
426
|
+
CompanyPhone: "",
|
427
|
+
CompanyEmail: "",
|
428
|
+
CompanyTollFree: "",
|
429
|
+
CompanyFax: "",
|
430
|
+
ClientPortalUrl: "",
|
431
|
+
ClientPortalUrlLabel: "",
|
432
|
+
TaxYear: "",
|
433
|
+
NextYear: "",
|
434
|
+
AppraisalAddress: "",
|
435
|
+
AppraisalDistrictPhone: "",
|
436
|
+
RevDate: "",
|
437
|
+
CompanyWebsite: "",
|
438
|
+
|
439
|
+
//#endregion
|
440
|
+
|
441
|
+
//#region Clientsetup Config
|
442
|
+
|
443
|
+
NextYearSignupfromEmail: "",
|
444
|
+
NextYearSignupsubject: "",
|
445
|
+
WelcomeEmail: "",
|
446
|
+
WelcomeEmailfromEmail: "",
|
447
|
+
WelcomeEmailSubject: "",
|
448
|
+
|
449
|
+
//#endregion
|
450
|
+
|
451
|
+
}
|
452
|
+
}
|
453
|
+
|
package/Common/CommonModel.js
CHANGED
@@ -1,2 +1,5 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.createDefaultAppConfigHub = void 0;
|
4
|
+
const AppConfigHub_1 = require("./AppConfigHub");
|
5
|
+
Object.defineProperty(exports, "createDefaultAppConfigHub", { enumerable: true, get: function () { return AppConfigHub_1.createDefaultAppConfigHub; } });
|
package/Common/CommonModel.ts
CHANGED
@@ -14,12 +14,12 @@ import { ManageSchedulers } from "./ManageSchedulers";
|
|
14
14
|
import { APICommonResponse } from "./APICommonResponse";
|
15
15
|
import { SentEmailServiceParam } from "./SentEmailServiceParam";
|
16
16
|
import { TemplateContents } from "./TemplateContents";
|
17
|
-
import { AppConfigHub } from "./AppConfigHub";
|
17
|
+
import { AppConfigHub, createDefaultAppConfigHub } from "./AppConfigHub";
|
18
18
|
import { FileDownloadParam } from "./FileDownloadPara";
|
19
19
|
|
20
20
|
export {
|
21
21
|
ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
|
22
22
|
RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig,
|
23
23
|
ManageSchedulers, APICommonResponse, SentEmailServiceParam, TemplateContents,
|
24
|
-
AppConfigHub, FileDownloadParam
|
24
|
+
AppConfigHub, createDefaultAppConfigHub, FileDownloadParam
|
25
25
|
};
|
package/Masters/LookupMaster.js
CHANGED
@@ -1,2 +1,20 @@
|
|
1
1
|
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createLookupMaster = createLookupMaster;
|
13
|
+
function createLookupMaster() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
Id: 0,
|
17
|
+
Value: ""
|
18
|
+
};
|
19
|
+
});
|
20
|
+
}
|
package/Masters/LookupMaster.ts
CHANGED
package/Masters/MasterModels.js
CHANGED
@@ -1,2 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.createDefaultReferenceTypeLookupMaster = exports.createLookupMaster = void 0;
|
4
|
+
const LookupMaster_1 = require("./LookupMaster");
|
5
|
+
Object.defineProperty(exports, "createLookupMaster", { enumerable: true, get: function () { return LookupMaster_1.createLookupMaster; } });
|
6
|
+
const ReferenceTypeLookupMaster_1 = require("./ReferenceTypeLookupMaster");
|
7
|
+
Object.defineProperty(exports, "createDefaultReferenceTypeLookupMaster", { enumerable: true, get: function () { return ReferenceTypeLookupMaster_1.createDefaultReferenceTypeLookupMaster; } });
|
package/Masters/MasterModels.ts
CHANGED
@@ -4,10 +4,11 @@ import { DataSetMaster } from "./DataSetMaster";
|
|
4
4
|
import { DatasetSelectOperation } from "./DatasetSelectOperation";
|
5
5
|
import { DatasetFilterOperation } from "./DatasetFilterOperation";
|
6
6
|
import { DatasetSortingOperation } from "./DatasetSortingOperation";
|
7
|
-
import { LookupMaster } from "./LookupMaster";
|
7
|
+
import { LookupMaster, createLookupMaster } from "./LookupMaster";
|
8
|
+
import { ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster } from "./ReferenceTypeLookupMaster";
|
8
9
|
|
9
10
|
export {
|
10
11
|
APIMaster, ApiMasterDatasetColumns, DataSetMaster,
|
11
12
|
DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
|
12
|
-
LookupMaster
|
13
|
+
LookupMaster, createLookupMaster, ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster
|
13
14
|
};
|
@@ -0,0 +1,21 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
12
|
+
exports.createDefaultReferenceTypeLookupMaster = createDefaultReferenceTypeLookupMaster;
|
13
|
+
function createDefaultReferenceTypeLookupMaster() {
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
15
|
+
return {
|
16
|
+
Id: 0,
|
17
|
+
Value: "",
|
18
|
+
MasterId: 0
|
19
|
+
};
|
20
|
+
});
|
21
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
export interface ReferenceTypeLookupMaster {
|
2
|
+
Id: number;
|
3
|
+
Value: string;
|
4
|
+
MasterId: number
|
5
|
+
}
|
6
|
+
|
7
|
+
export async function createDefaultReferenceTypeLookupMaster(): Promise<ReferenceTypeLookupMaster> {
|
8
|
+
return {
|
9
|
+
Id: 0,
|
10
|
+
Value: "",
|
11
|
+
MasterId: 0
|
12
|
+
};
|
13
|
+
}
|