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