spartaxx.businessmodels 1.0.223 → 1.0.225
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.ts +1 -0
- package/CCC/CCCModel.ts +3 -1
- package/ClientSetup/ClientContactInfo.js +2 -0
- package/ClientSetup/ClientContactInfo.ts +14 -0
- package/ClientSetup/ClientSetupModels.ts +1 -1
- package/Common/AppConfigHub.ts +6 -0
- package/Common/CCCClientContactFormInfo.js +2 -0
- package/Common/CCCClientContactFormInfo.ts +9 -0
- package/package.json +1 -1
package/CCC/AccountInfo.ts
CHANGED
package/CCC/CCCModel.ts
CHANGED
@@ -21,6 +21,7 @@ import { DMpropertySurveyClientInputs } from "./DMpropertySurveyClientInputs";
|
|
21
21
|
import { DMQuestionImage } from "./DMQuestionImage";
|
22
22
|
import { DMImageInfos } from "./DMImageInfos";
|
23
23
|
import { ClientPackageParam } from "./ClientPackageParam";
|
24
|
+
import { CCCClientContactFormInfo } from "Common/CCCClientContactFormInfo";
|
24
25
|
|
25
26
|
export {
|
26
27
|
ScoreCardDetails,
|
@@ -45,5 +46,6 @@ export {
|
|
45
46
|
DMpropertySurveyClientInputs,
|
46
47
|
DMQuestionImage,
|
47
48
|
DMImageInfos,
|
48
|
-
ClientPackageParam
|
49
|
+
ClientPackageParam,
|
50
|
+
CCCClientContactFormInfo
|
49
51
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export interface ClientContactInfo {
|
2
|
+
FirstName?: string;
|
3
|
+
LastName?: string;
|
4
|
+
Email?: string;
|
5
|
+
AlternateEmail?: string;
|
6
|
+
AddressLine1?: string;
|
7
|
+
AddressLine2?: string;
|
8
|
+
AddressLine3?: string;
|
9
|
+
AddressLine4?: string;
|
10
|
+
CityId?: number;
|
11
|
+
StateId?: number;
|
12
|
+
ZipCode?: string;
|
13
|
+
Phone?: string;
|
14
|
+
}
|
@@ -14,7 +14,7 @@ import { ClientTypeInfo } from "./ClientTypeInfo";
|
|
14
14
|
import { AgentTypeInfo } from "./AgentTypeInfo";
|
15
15
|
import { AgentNameInfo } from "./AgentNameInfo";
|
16
16
|
import { ParishNameInfo } from "./ParishNameInfo";
|
17
|
-
|
17
|
+
|
18
18
|
export interface ClientSetupModels{
|
19
19
|
State: StateInfo,
|
20
20
|
City: CityInfo,
|
package/Common/AppConfigHub.ts
CHANGED
@@ -4,6 +4,7 @@ export interface AppConfigHub {
|
|
4
4
|
|
5
5
|
CPckLetterGenTempPath?: string;
|
6
6
|
CPckLetterGenPath?: string;
|
7
|
+
|
7
8
|
CPckFilenamePrefixResicentialCoverLetter?: string;
|
8
9
|
CPckFilenamePrefixCommercialCoverLetter?: string;
|
9
10
|
CPckFilenamePrefixContactForm?: string;
|
@@ -16,7 +17,9 @@ export interface AppConfigHub {
|
|
16
17
|
CPckFilenamePrefixCommercialAofA?: string;
|
17
18
|
CPckFilenamePrefixBAAofA?: string;
|
18
19
|
CPckFilenamePrefixPropertySurvey?: string;
|
20
|
+
CPckFilenamePrefixBPPAgreement?: string;
|
19
21
|
CPckFilenameOOTCaliforniaPowerOfAttorney?: string;
|
22
|
+
|
20
23
|
CPckTexasAccountSummaryTemplateHeaderHtmlContentId?: string;
|
21
24
|
CPckTexasAccountSummaryTemplateBodyHtmlContentId?: string;
|
22
25
|
CPckTexasResidentialAgreementTemplateHeaderHtmlContentId?: string;
|
@@ -40,6 +43,8 @@ export interface AppConfigHub {
|
|
40
43
|
CPckTexasPropertySurveyTemplateBodyHtmlContentId?: string;
|
41
44
|
CPckTexasLeadCommercialAgreementTemplateHeaderHtmlContentId?: string;
|
42
45
|
CPckTexasLeadCommercialAgreementTemplateBodyHtmlContentId?: string;
|
46
|
+
CPckTexasBPPAgreementPage1BodyHtmlContentId?: string;
|
47
|
+
CPckTexasBPPAgreementPage2BodyHtmlContentId?: string;
|
43
48
|
|
44
49
|
CPckOOTOOTCommercialAgreementTemplateHeaderHtmlContentId?: string;
|
45
50
|
CPckOOTOOTCommercialAgreementTemplateBodyHtmlContentId?: string;
|
@@ -197,6 +202,7 @@ export interface AppConfigHub {
|
|
197
202
|
CompanyTollFree?: string;
|
198
203
|
CompanyFax?: string;
|
199
204
|
ClientPortalUrl?: string;
|
205
|
+
ClientPortalUrlLabel?: string;
|
200
206
|
TaxYear?: string;
|
201
207
|
NextYear?: string;
|
202
208
|
AppraisalAddress?: string;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { ClientContactInfo } from "ClientSetup/ClientContactInfo";
|
2
|
+
import { CityInfo } from "ClientSetup/CityInfo";
|
3
|
+
import { StateInfo } from "ClientSetup/StateInfo";
|
4
|
+
|
5
|
+
export interface CCCClientContactFormInfo {
|
6
|
+
ClientContactInfo?: ClientContactInfo;
|
7
|
+
CityInfo?: CityInfo[];
|
8
|
+
StateInfo?: StateInfo[];
|
9
|
+
}
|