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