spartaxx.businessmodels 1.0.377 → 1.0.379
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,12 +23,10 @@ export interface AccountDocumentInfo {
|
|
23
23
|
IsDocumentGenerated?: boolean;
|
24
24
|
DocumentPath?: string;
|
25
25
|
DocumentUrl?: string;
|
26
|
-
LiquidEngineHtmlCondent?: string[];
|
27
26
|
}
|
28
27
|
|
29
28
|
export interface ClientDocumentInfo {
|
30
29
|
DocumentName?: string;
|
31
30
|
DocumentPath?: string;
|
32
31
|
DocumentUrl?: string;
|
33
|
-
LiquidEngineHtmlCondent?: string[];
|
34
32
|
}
|
package/Common/AppConfigHub.js
CHANGED
@@ -292,7 +292,8 @@ function createDefaultAppConfigHub() {
|
|
292
292
|
RMQEsignStagingProcessQueue: "",
|
293
293
|
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
294
294
|
RMQConfigCPNoticeOfExpirationofAofA: "",
|
295
|
-
CPckFilenamePrefixNoticeOfExpirationofAofA: ""
|
295
|
+
CPckFilenamePrefixNoticeOfExpirationofAofA: "",
|
296
|
+
RMQConfigCCCNoticeOfExpirationofAofA: ""
|
296
297
|
};
|
297
298
|
});
|
298
299
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -278,7 +278,8 @@ export interface AppConfigHub {
|
|
278
278
|
RMQEsignStagingProcessQueue: string;
|
279
279
|
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: string;
|
280
280
|
RMQConfigCPNoticeOfExpirationofAofA: string;
|
281
|
-
CPckFilenamePrefixNoticeOfExpirationofAofA
|
281
|
+
CPckFilenamePrefixNoticeOfExpirationofAofA: string;
|
282
|
+
RMQConfigCCCNoticeOfExpirationofAofA: string;
|
282
283
|
}
|
283
284
|
|
284
285
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -562,7 +563,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
562
563
|
RMQEsignStagingProcessQueue: "",
|
563
564
|
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
564
565
|
RMQConfigCPNoticeOfExpirationofAofA: "",
|
565
|
-
CPckFilenamePrefixNoticeOfExpirationofAofA: ""
|
566
|
+
CPckFilenamePrefixNoticeOfExpirationofAofA: "",
|
567
|
+
RMQConfigCCCNoticeOfExpirationofAofA: ""
|
566
568
|
}
|
567
569
|
}
|
568
570
|
|