spartaxx.businessmodels 1.0.398 → 1.0.399
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/AppConfigHub.js +2 -3
- package/Common/AppConfigHub.ts +3 -5
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -190,8 +190,6 @@ function createDefaultAppConfigHub() {
|
|
190
190
|
CPckOOTGAAgreementTemplateBodyHtmlContentId: "",
|
191
191
|
CPckOOTGAPOAPage1BodyHtmlContentId: "",
|
192
192
|
CPckOOTGAPOAPage2BodyHtmlContentId: "",
|
193
|
-
CPckOOTGANationalAgreementPage1BodyHtmlContentId: "",
|
194
|
-
CPckOOTGANationalAgreementPage2BodyHtmlContentId: "",
|
195
193
|
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: "",
|
196
194
|
CPckFileNamePrefixGAAgreement: "",
|
197
195
|
RMQConfigCPckGAAgreement: "",
|
@@ -318,7 +316,8 @@ function createDefaultAppConfigHub() {
|
|
318
316
|
CPckFileNamePrefixOOTGAPOAForm: "",
|
319
317
|
cpckOOTGAPOAForm: "",
|
320
318
|
RMQConfigESignLinkService: "",
|
321
|
-
GACompanyPhone: ""
|
319
|
+
GACompanyPhone: "",
|
320
|
+
CPckOOTSalesCRMNationalAgreementPage1BodyHtmlContentId: ""
|
322
321
|
};
|
323
322
|
});
|
324
323
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -177,8 +177,6 @@ export interface AppConfigHub {
|
|
177
177
|
CPckOOTGAAgreementTemplateBodyHtmlContentId: string;
|
178
178
|
CPckOOTGAPOAPage1BodyHtmlContentId: string;
|
179
179
|
CPckOOTGAPOAPage2BodyHtmlContentId: string;
|
180
|
-
CPckOOTGANationalAgreementPage1BodyHtmlContentId: string;
|
181
|
-
CPckOOTGANationalAgreementPage2BodyHtmlContentId: string;
|
182
180
|
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: string;
|
183
181
|
CPckFileNamePrefixGAAgreement: string;
|
184
182
|
RMQConfigCPckGAAgreement: string;
|
@@ -306,6 +304,7 @@ export interface AppConfigHub {
|
|
306
304
|
cpckOOTGAPOAForm: string;
|
307
305
|
RMQConfigESignLinkService: string;
|
308
306
|
GACompanyPhone: string;
|
307
|
+
CPckOOTSalesCRMNationalAgreementPage1BodyHtmlContentId: string;
|
309
308
|
}
|
310
309
|
|
311
310
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -488,8 +487,6 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
488
487
|
CPckOOTGAAgreementTemplateBodyHtmlContentId: "",
|
489
488
|
CPckOOTGAPOAPage1BodyHtmlContentId: "",
|
490
489
|
CPckOOTGAPOAPage2BodyHtmlContentId: "",
|
491
|
-
CPckOOTGANationalAgreementPage1BodyHtmlContentId: "",
|
492
|
-
CPckOOTGANationalAgreementPage2BodyHtmlContentId: "",
|
493
490
|
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: "",
|
494
491
|
CPckFileNamePrefixGAAgreement: "",
|
495
492
|
RMQConfigCPckGAAgreement: "",
|
@@ -616,7 +613,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
616
613
|
CPckFileNamePrefixOOTGAPOAForm: "",
|
617
614
|
cpckOOTGAPOAForm: "",
|
618
615
|
RMQConfigESignLinkService: "",
|
619
|
-
GACompanyPhone: ""
|
616
|
+
GACompanyPhone: "",
|
617
|
+
CPckOOTSalesCRMNationalAgreementPage1BodyHtmlContentId: ""
|
620
618
|
}
|
621
619
|
}
|
622
620
|
|