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.
@@ -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
  }
@@ -11,4 +11,6 @@ export interface ClientPackageParam {
11
11
  TeamplateId?: string;
12
12
  DocumentList?: ClientPackageDocument[];
13
13
  ClientSignature?: string;
14
+ FromEmail?:string;
15
+ UserId?: number;
14
16
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ export interface CorrQueueService {
2
+ CorrQueueId?: number;
3
+ UserId?: number;
4
+ DeliveryMethodId?: number;
5
+ DeliveryAddress?: string;
6
+ SentToClient?: number;
7
+ FileCabinetId?: number;
8
+ EngineProcessData?: string;
9
+ }
@@ -206,6 +206,9 @@ function createDefaultAppConfigHub() {
206
206
  WelcomeEmailfromEmail: "",
207
207
  WelcomeEmailSubject: "",
208
208
  //#endregion
209
+ //#region PW Settings
210
+ PWConfigTestCabinet: ""
211
+ //#endregion
209
212
  };
210
213
  });
211
214
  }
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.236",
3
+ "version": "1.0.237",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {