spartaxx.businessmodels 1.0.269 → 1.0.271
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.
@@ -1,3 +1,5 @@
|
|
1
|
+
import { ClientPhoneInfo } from "CCC/ClientPhoneInfo"
|
2
|
+
|
1
3
|
export interface ClientContactInfo {
|
2
4
|
AddressId: number,
|
3
5
|
ContactId: number,
|
@@ -14,6 +16,7 @@ export interface ClientContactInfo {
|
|
14
16
|
CellPhone: string,
|
15
17
|
OfficePhone: string,
|
16
18
|
HomePhone: string
|
19
|
+
ClientPhoneInfo: ClientPhoneInfo[]
|
17
20
|
}
|
18
21
|
|
19
22
|
export async function createDefaultClientContactInfo(): Promise<ClientContactInfo> {
|
@@ -32,6 +35,7 @@ export async function createDefaultClientContactInfo(): Promise<ClientContactInf
|
|
32
35
|
StateId: 0,
|
33
36
|
CellPhone: "",
|
34
37
|
OfficePhone: "",
|
35
|
-
HomePhone: ""
|
38
|
+
HomePhone: "",
|
39
|
+
ClientPhoneInfo: []
|
36
40
|
};
|
37
41
|
}
|
package/Common/AppConfigHub.js
CHANGED
@@ -244,17 +244,17 @@ function createDefaultAppConfigHub() {
|
|
244
244
|
CCCPkgReactiveClientRemarks: "",
|
245
245
|
CCCPkgReactiveReasonCode: "",
|
246
246
|
CCCPkgReactiveLetterTypeId: 0,
|
247
|
-
cpckCLPropertySurvey:
|
248
|
-
cpckCLAgreementOnly:
|
249
|
-
cpckCLAofAAgreementOnly:
|
250
|
-
cpckCLNoAgreement:
|
251
|
-
cpckCLStandardContingencyLitigation:
|
252
|
-
cpckCLAofABAAofA:
|
253
|
-
cpckCLBAAofA:
|
254
|
-
cpckCLProblemAofA:
|
255
|
-
cpckCLAofAonly:
|
256
|
-
cpckCLAgreementPropertySurvey:
|
257
|
-
cpckCLAofAPropertySurvey:
|
247
|
+
cpckCLPropertySurvey: "",
|
248
|
+
cpckCLAgreementOnly: "",
|
249
|
+
cpckCLAofAAgreementOnly: "",
|
250
|
+
cpckCLNoAgreement: "",
|
251
|
+
cpckCLStandardContingencyLitigation: "",
|
252
|
+
cpckCLAofABAAofA: "",
|
253
|
+
cpckCLBAAofA: "",
|
254
|
+
cpckCLProblemAofA: "",
|
255
|
+
cpckCLAofAonly: "",
|
256
|
+
cpckCLAgreementPropertySurvey: "",
|
257
|
+
cpckCLAofAPropertySurvey: "",
|
258
258
|
};
|
259
259
|
});
|
260
260
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -230,17 +230,17 @@ export interface AppConfigHub {
|
|
230
230
|
CCCPkgReactiveClientRemarks: string;
|
231
231
|
CCCPkgReactiveReasonCode: string;
|
232
232
|
CCCPkgReactiveLetterTypeId: number;
|
233
|
-
cpckCLPropertySurvey:
|
234
|
-
cpckCLAgreementOnly:
|
235
|
-
cpckCLAofAAgreementOnly:
|
236
|
-
cpckCLNoAgreement:
|
237
|
-
cpckCLStandardContingencyLitigation:
|
238
|
-
cpckCLAofABAAofA:
|
239
|
-
cpckCLBAAofA:
|
240
|
-
cpckCLProblemAofA:
|
241
|
-
cpckCLAofAonly:
|
242
|
-
cpckCLAgreementPropertySurvey:
|
243
|
-
cpckCLAofAPropertySurvey:
|
233
|
+
cpckCLPropertySurvey: string;
|
234
|
+
cpckCLAgreementOnly: string;
|
235
|
+
cpckCLAofAAgreementOnly: string;
|
236
|
+
cpckCLNoAgreement: string;
|
237
|
+
cpckCLStandardContingencyLitigation: string;
|
238
|
+
cpckCLAofABAAofA: string;
|
239
|
+
cpckCLBAAofA: string;
|
240
|
+
cpckCLProblemAofA: string;
|
241
|
+
cpckCLAofAonly: string;
|
242
|
+
cpckCLAgreementPropertySurvey: string;
|
243
|
+
cpckCLAofAPropertySurvey: string;
|
244
244
|
}
|
245
245
|
|
246
246
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -476,17 +476,17 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
476
476
|
CCCPkgReactiveClientRemarks: "",
|
477
477
|
CCCPkgReactiveReasonCode: "",
|
478
478
|
CCCPkgReactiveLetterTypeId: 0,
|
479
|
-
cpckCLPropertySurvey:
|
480
|
-
cpckCLAgreementOnly:
|
481
|
-
cpckCLAofAAgreementOnly:
|
482
|
-
cpckCLNoAgreement:
|
483
|
-
cpckCLStandardContingencyLitigation:
|
484
|
-
cpckCLAofABAAofA:
|
485
|
-
cpckCLBAAofA:
|
486
|
-
cpckCLProblemAofA:
|
487
|
-
cpckCLAofAonly:
|
488
|
-
cpckCLAgreementPropertySurvey:
|
489
|
-
cpckCLAofAPropertySurvey:
|
479
|
+
cpckCLPropertySurvey: "",
|
480
|
+
cpckCLAgreementOnly: "",
|
481
|
+
cpckCLAofAAgreementOnly: "",
|
482
|
+
cpckCLNoAgreement: "",
|
483
|
+
cpckCLStandardContingencyLitigation: "",
|
484
|
+
cpckCLAofABAAofA: "",
|
485
|
+
cpckCLBAAofA: "",
|
486
|
+
cpckCLProblemAofA: "",
|
487
|
+
cpckCLAofAonly: "",
|
488
|
+
cpckCLAgreementPropertySurvey: "",
|
489
|
+
cpckCLAofAPropertySurvey: "",
|
490
490
|
}
|
491
491
|
}
|
492
492
|
|