spartaxx.businessmodels 1.0.360 → 1.0.363
Sign up to get free protection for your applications and to get access to all the features.
@@ -20,6 +20,7 @@ export interface QualifiedClientInfo {
|
|
20
20
|
CCCPckEmailBlastFileName?: string;
|
21
21
|
CCCPckEmailBlastOutputFilePath?: string;
|
22
22
|
ClientSignature?: string;
|
23
|
+
gUId?: string;
|
23
24
|
}
|
24
25
|
|
25
26
|
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
package/Common/AppConfigHub.js
CHANGED
@@ -288,7 +288,8 @@ function createDefaultAppConfigHub() {
|
|
288
288
|
CCCPckLetterGenUrl: "",
|
289
289
|
CCCPckEmailLetterUrl: "",
|
290
290
|
CompanyAddressTwoHundred: "",
|
291
|
-
CPckDMpropertySurveyDocumentPath: ""
|
291
|
+
CPckDMpropertySurveyDocumentPath: "",
|
292
|
+
RMQEsignStagingProcessQueue: ""
|
292
293
|
};
|
293
294
|
});
|
294
295
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -275,6 +275,7 @@ export interface AppConfigHub {
|
|
275
275
|
CCCPckEmailLetterUrl: string;
|
276
276
|
CompanyAddressTwoHundred: string;
|
277
277
|
CPckDMpropertySurveyDocumentPath: string;
|
278
|
+
RMQEsignStagingProcessQueue:string;
|
278
279
|
}
|
279
280
|
|
280
281
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -554,7 +555,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
554
555
|
CCCPckLetterGenUrl: "",
|
555
556
|
CCCPckEmailLetterUrl: "",
|
556
557
|
CompanyAddressTwoHundred: "",
|
557
|
-
CPckDMpropertySurveyDocumentPath: ""
|
558
|
+
CPckDMpropertySurveyDocumentPath: "",
|
559
|
+
RMQEsignStagingProcessQueue:""
|
558
560
|
}
|
559
561
|
}
|
560
562
|
|