spartaxx.businessmodels 1.0.236 → 1.0.237
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CCC/CCCTemplateData.ts
CHANGED
@@ -4,6 +4,8 @@ import { AppConfigHub } from "../Common/AppConfigHub";
|
|
4
4
|
import { RabbitMQQueueInfo } from "../Common/RabbitMQQueueInfo";
|
5
5
|
import { ClientPackageParam } from "./ClientPackageParam";
|
6
6
|
import { LookupMaster } from "Masters/LookupMaster";
|
7
|
+
import { SentEmailServiceParam } from "Common/SentEmailServiceParam";
|
8
|
+
import { CorrQueueService } from "Campaign/CorrQueueService";
|
7
9
|
|
8
10
|
export interface CCCTemplateData {
|
9
11
|
QualifiedClientInfo?: QualifiedClientInfo;
|
@@ -16,4 +18,7 @@ export interface CCCTemplateData {
|
|
16
18
|
OutputFilePath?: string;
|
17
19
|
OutputBase64Format?: string;
|
18
20
|
CPckFileName?: string;
|
21
|
+
SentEmailServiceParam?: SentEmailServiceParam;
|
22
|
+
EngineQueueName?: string;
|
23
|
+
CorrQueueService?: CorrQueueService;
|
19
24
|
}
|
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -222,6 +222,11 @@ export interface AppConfigHub {
|
|
222
222
|
|
223
223
|
//#endregion
|
224
224
|
|
225
|
+
//#region PW Settings
|
226
|
+
|
227
|
+
PWConfigTestCabinet?: string;
|
228
|
+
|
229
|
+
//#endregion
|
225
230
|
}
|
226
231
|
|
227
232
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -292,7 +297,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
292
297
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
293
298
|
CPckClientEmailESignSubject: "",
|
294
299
|
CCCPckUSMailLetterFileNameEsign: "",
|
295
|
-
|
300
|
+
|
296
301
|
//#endregion
|
297
302
|
|
298
303
|
//#region CCC Package Config
|
@@ -449,6 +454,11 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
449
454
|
|
450
455
|
//#endregion
|
451
456
|
|
457
|
+
//#region PW Settings
|
458
|
+
|
459
|
+
PWConfigTestCabinet: ""
|
460
|
+
|
461
|
+
//#endregion
|
452
462
|
}
|
453
463
|
}
|
454
464
|
|