spartaxx.businessmodels 1.0.374 → 1.0.376
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,12 +23,12 @@ export interface AccountDocumentInfo {
|
|
23
23
|
IsDocumentGenerated?: boolean;
|
24
24
|
DocumentPath?: string;
|
25
25
|
DocumentUrl?: string;
|
26
|
-
LiquidEngineHtmlCondent?: string;
|
26
|
+
LiquidEngineHtmlCondent?: string[];
|
27
27
|
}
|
28
28
|
|
29
29
|
export interface ClientDocumentInfo {
|
30
30
|
DocumentName?: string;
|
31
31
|
DocumentPath?: string;
|
32
32
|
DocumentUrl?: string;
|
33
|
-
LiquidEngineHtmlCondent?: string;
|
33
|
+
LiquidEngineHtmlCondent?: string[];
|
34
34
|
}
|
package/Common/AppConfigHub.js
CHANGED
@@ -289,7 +289,9 @@ function createDefaultAppConfigHub() {
|
|
289
289
|
CCCPckEmailLetterUrl: "",
|
290
290
|
CompanyAddressTwoHundred: "",
|
291
291
|
CPckDMpropertySurveyDocumentPath: "",
|
292
|
-
RMQEsignStagingProcessQueue: ""
|
292
|
+
RMQEsignStagingProcessQueue: "",
|
293
|
+
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
294
|
+
RMQConfigCPNoticeOfExpirationofAofA: ""
|
293
295
|
};
|
294
296
|
});
|
295
297
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -275,7 +275,9 @@ 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;
|
279
281
|
}
|
280
282
|
|
281
283
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -556,7 +558,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
556
558
|
CCCPckEmailLetterUrl: "",
|
557
559
|
CompanyAddressTwoHundred: "",
|
558
560
|
CPckDMpropertySurveyDocumentPath: "",
|
559
|
-
RMQEsignStagingProcessQueue:""
|
561
|
+
RMQEsignStagingProcessQueue: "",
|
562
|
+
CPckTexasNoticeOfExpirationofAofATemplateBodyHtmlContentId: "",
|
563
|
+
RMQConfigCPNoticeOfExpirationofAofA: ""
|
560
564
|
}
|
561
565
|
}
|
562
566
|
|