spartaxx.businessmodels 1.0.378 → 1.0.380
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
@@ -293,7 +293,9 @@ function createDefaultAppConfigHub() {
|
|
293
293
|
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
294
294
|
RMQConfigCPNoticeOfExpirationofAofA: "",
|
295
295
|
CPckFilenamePrefixNoticeOfExpirationofAofA: "",
|
296
|
-
RMQConfigCCCNoticeOfExpirationofAofA: ""
|
296
|
+
RMQConfigCCCNoticeOfExpirationofAofA: "",
|
297
|
+
ConsiergeSubject: "",
|
298
|
+
CampaignConciergeTemplateBodyHtmlContentId: "",
|
297
299
|
};
|
298
300
|
});
|
299
301
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -280,6 +280,8 @@ export interface AppConfigHub {
|
|
280
280
|
RMQConfigCPNoticeOfExpirationofAofA: string;
|
281
281
|
CPckFilenamePrefixNoticeOfExpirationofAofA: string;
|
282
282
|
RMQConfigCCCNoticeOfExpirationofAofA: string;
|
283
|
+
ConsiergeSubject: string;
|
284
|
+
CampaignConciergeTemplateBodyHtmlContentId: string;
|
283
285
|
}
|
284
286
|
|
285
287
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -564,7 +566,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
564
566
|
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
565
567
|
RMQConfigCPNoticeOfExpirationofAofA: "",
|
566
568
|
CPckFilenamePrefixNoticeOfExpirationofAofA: "",
|
567
|
-
RMQConfigCCCNoticeOfExpirationofAofA: ""
|
569
|
+
RMQConfigCCCNoticeOfExpirationofAofA: "",
|
570
|
+
ConsiergeSubject: "",
|
571
|
+
CampaignConciergeTemplateBodyHtmlContentId: "",
|
568
572
|
}
|
569
573
|
}
|
570
574
|
|
package/package.json
CHANGED
File without changes
|