spartaxx.businessmodels 1.0.289 → 1.0.290
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 +13 -1
- package/Common/AppConfigHub.ts +29 -5
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -269,7 +269,19 @@ function createDefaultAppConfigHub() {
|
|
269
269
|
CPckOOTUSMailCoverLetterILCookBodyHtmlContentId: "",
|
270
270
|
cpckCLPowerOfAttorney: "",
|
271
271
|
cpckCLILCook: "",
|
272
|
-
RMQConfigPriorYearDataLoader: ""
|
272
|
+
RMQConfigPriorYearDataLoader: "",
|
273
|
+
CPckOOTPowerOfAttorneyDocumentName: "",
|
274
|
+
CPckILOtherThanCookAgreementDocumentName: "",
|
275
|
+
CPckILCookAgreementDocumentName: "",
|
276
|
+
CPckGAAgreementDocumentName: "",
|
277
|
+
CPckResidentialAgreementDocumentName: "",
|
278
|
+
CPckPropertySurveyDocumentName: "",
|
279
|
+
CPckBlankAofADocumentName: "",
|
280
|
+
CPckBPPAgreementDocumentName: "",
|
281
|
+
CPckBlankBAAofADocumentName: "",
|
282
|
+
CPckCoverLetterDocumentName: "",
|
283
|
+
CPckCaliforniaPowerOfAttorneyDocumentName: "",
|
284
|
+
CPckCaliforniaAgentAuthorizationFormDocumentName: "",
|
273
285
|
};
|
274
286
|
});
|
275
287
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -256,6 +256,18 @@ export interface AppConfigHub {
|
|
256
256
|
cpckCLPowerOfAttorney: string;
|
257
257
|
cpckCLILCook: string;
|
258
258
|
RMQConfigPriorYearDataLoader: string;
|
259
|
+
CPckOOTPowerOfAttorneyDocumentName: string;
|
260
|
+
CPckILOtherThanCookAgreementDocumentName: string;
|
261
|
+
CPckILCookAgreementDocumentName: string;
|
262
|
+
CPckGAAgreementDocumentName: string;
|
263
|
+
CPckResidentialAgreementDocumentName: string;
|
264
|
+
CPckPropertySurveyDocumentName: string;
|
265
|
+
CPckBlankAofADocumentName: string;
|
266
|
+
CPckBPPAgreementDocumentName: string;
|
267
|
+
CPckBlankBAAofADocumentName: string;
|
268
|
+
CPckCoverLetterDocumentName: string;
|
269
|
+
CPckCaliforniaPowerOfAttorneyDocumentName: string;
|
270
|
+
CPckCaliforniaAgentAuthorizationFormDocumentName: string;
|
259
271
|
}
|
260
272
|
|
261
273
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -481,15 +493,15 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
481
493
|
CPckFilenamePrefixCLPropertySurvey: "",
|
482
494
|
DNDNextYearServicePackageId: 0,
|
483
495
|
CCCPkgInactiveCAFTypeId: 0,
|
484
|
-
CCCPkgInactiveClientRemarks:
|
496
|
+
CCCPkgInactiveClientRemarks: "",
|
485
497
|
CCCPkgInactiveLetterTypeId: 0,
|
486
498
|
CCCPkgDNDCAFTypeId: 0,
|
487
499
|
CCCPkgDNDClientRemarks: "",
|
488
|
-
CCCPkgDNDReasonCode:
|
500
|
+
CCCPkgDNDReasonCode: "",
|
489
501
|
CCCPkgDNDLetterTypeId: 0,
|
490
502
|
CCCPkgReactiveCAFTypeId: 0,
|
491
|
-
CCCPkgReactiveClientRemarks:
|
492
|
-
CCCPkgReactiveReasonCode:
|
503
|
+
CCCPkgReactiveClientRemarks: "",
|
504
|
+
CCCPkgReactiveReasonCode: "",
|
493
505
|
CCCPkgReactiveLetterTypeId: 0,
|
494
506
|
cpckCLPropertySurvey: "",
|
495
507
|
cpckCLAgreementOnly: "",
|
@@ -516,7 +528,19 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
516
528
|
CPckOOTUSMailCoverLetterILCookBodyHtmlContentId: "",
|
517
529
|
cpckCLPowerOfAttorney: "",
|
518
530
|
cpckCLILCook: "",
|
519
|
-
RMQConfigPriorYearDataLoader: ""
|
531
|
+
RMQConfigPriorYearDataLoader: "",
|
532
|
+
CPckOOTPowerOfAttorneyDocumentName: "",
|
533
|
+
CPckILOtherThanCookAgreementDocumentName: "",
|
534
|
+
CPckILCookAgreementDocumentName: "",
|
535
|
+
CPckGAAgreementDocumentName: "",
|
536
|
+
CPckResidentialAgreementDocumentName: "",
|
537
|
+
CPckPropertySurveyDocumentName: "",
|
538
|
+
CPckBlankAofADocumentName: "",
|
539
|
+
CPckBPPAgreementDocumentName: "",
|
540
|
+
CPckBlankBAAofADocumentName: "",
|
541
|
+
CPckCoverLetterDocumentName: "",
|
542
|
+
CPckCaliforniaPowerOfAttorneyDocumentName: "",
|
543
|
+
CPckCaliforniaAgentAuthorizationFormDocumentName: "",
|
520
544
|
}
|
521
545
|
}
|
522
546
|
|