spartaxx.businessmodels 1.0.423 → 1.0.425
Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,7 @@ export interface QualifiedClientInfo {
|
|
21
21
|
CCCPckEmailBlastOutputFilePath?: string;
|
22
22
|
ClientSignature?: string;
|
23
23
|
gUId?: string;
|
24
|
+
CampaignId?: number
|
24
25
|
}
|
25
26
|
|
26
27
|
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
@@ -45,6 +46,8 @@ export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClien
|
|
45
46
|
InitiatedBy: 0,
|
46
47
|
CCCPckEmailBlastFileName: "",
|
47
48
|
CCCPckEmailBlastOutputFilePath: "",
|
48
|
-
ClientSignature: ""
|
49
|
+
ClientSignature: "",
|
50
|
+
gUId: "",
|
51
|
+
CampaignId: 0
|
49
52
|
};
|
50
53
|
};
|
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -309,6 +309,7 @@ export interface AppConfigHub {
|
|
309
309
|
CCCServicePackageId: number;
|
310
310
|
CCCEmailServicePackageId: string;
|
311
311
|
CCCUsmailServicePackageId: string;
|
312
|
+
BppPhone: string
|
312
313
|
}
|
313
314
|
|
314
315
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -622,7 +623,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
622
623
|
RMQConfigCCCpaperwiseprocess: "",
|
623
624
|
CCCServicePackageId: 0,
|
624
625
|
CCCEmailServicePackageId: "",
|
625
|
-
CCCUsmailServicePackageId: ""
|
626
|
+
CCCUsmailServicePackageId: "",
|
627
|
+
BppPhone: ""
|
626
628
|
}
|
627
629
|
}
|
628
630
|
|