spartaxx.businessmodels 1.0.268 → 1.0.270
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/Common/AppConfigHub.js +11 -0
- package/Common/AppConfigHub.ts +22 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -244,6 +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
258
|
};
|
248
259
|
});
|
249
260
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -230,6 +230,17 @@ export interface AppConfigHub {
|
|
230
230
|
CCCPkgReactiveClientRemarks: string;
|
231
231
|
CCCPkgReactiveReasonCode: string;
|
232
232
|
CCCPkgReactiveLetterTypeId: number;
|
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;
|
233
244
|
}
|
234
245
|
|
235
246
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -465,6 +476,17 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
465
476
|
CCCPkgReactiveClientRemarks: "",
|
466
477
|
CCCPkgReactiveReasonCode: "",
|
467
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: "",
|
468
490
|
}
|
469
491
|
}
|
470
492
|
|