spartaxx.businessmodels 1.0.375 → 1.0.377
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/AppConfigHub.js +4 -1
- package/Common/AppConfigHub.ts +8 -2
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -289,7 +289,10 @@ function createDefaultAppConfigHub() {
|
|
289
289
|
CCCPckEmailLetterUrl: "",
|
290
290
|
CompanyAddressTwoHundred: "",
|
291
291
|
CPckDMpropertySurveyDocumentPath: "",
|
292
|
-
RMQEsignStagingProcessQueue: ""
|
292
|
+
RMQEsignStagingProcessQueue: "",
|
293
|
+
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
294
|
+
RMQConfigCPNoticeOfExpirationofAofA: "",
|
295
|
+
CPckFilenamePrefixNoticeOfExpirationofAofA: ""
|
293
296
|
};
|
294
297
|
});
|
295
298
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -275,7 +275,10 @@ export interface AppConfigHub {
|
|
275
275
|
CCCPckEmailLetterUrl: string;
|
276
276
|
CompanyAddressTwoHundred: string;
|
277
277
|
CPckDMpropertySurveyDocumentPath: string;
|
278
|
-
RMQEsignStagingProcessQueue:string;
|
278
|
+
RMQEsignStagingProcessQueue: string;
|
279
|
+
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: string;
|
280
|
+
RMQConfigCPNoticeOfExpirationofAofA: string;
|
281
|
+
CPckFilenamePrefixNoticeOfExpirationofAofA : string;
|
279
282
|
}
|
280
283
|
|
281
284
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -556,7 +559,10 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
556
559
|
CCCPckEmailLetterUrl: "",
|
557
560
|
CompanyAddressTwoHundred: "",
|
558
561
|
CPckDMpropertySurveyDocumentPath: "",
|
559
|
-
RMQEsignStagingProcessQueue:""
|
562
|
+
RMQEsignStagingProcessQueue: "",
|
563
|
+
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
564
|
+
RMQConfigCPNoticeOfExpirationofAofA: "",
|
565
|
+
CPckFilenamePrefixNoticeOfExpirationofAofA: ""
|
560
566
|
}
|
561
567
|
}
|
562
568
|
|