spartaxx.businessmodels 1.0.452 → 1.0.454
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/Common/AppConfigHub.js +3 -1
- package/Common/AppConfigHub.ts +5 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -350,7 +350,9 @@ function createDefaultAppConfigHub() {
|
|
350
350
|
RMQConfigCCCEmailCommercialAofa: "",
|
351
351
|
RMQConfigCCCEmailBaAofa: "",
|
352
352
|
RMQConfigCCCEmailPropertySurvey: "",
|
353
|
-
RMQConfigCCCEmailReasons: ""
|
353
|
+
RMQConfigCCCEmailReasons: "",
|
354
|
+
RMQConfigCCCEmailBlastServices: "",
|
355
|
+
RMQConfigSocketReceiverServices: ""
|
354
356
|
};
|
355
357
|
});
|
356
358
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -338,6 +338,8 @@ export interface AppConfigHub {
|
|
338
338
|
RMQConfigCCCEmailBaAofa: string;
|
339
339
|
RMQConfigCCCEmailPropertySurvey: string;
|
340
340
|
RMQConfigCCCEmailReasons: string;
|
341
|
+
RMQConfigCCCEmailBlastServices: string;
|
342
|
+
RMQConfigSocketReceiverServices: string;
|
341
343
|
}
|
342
344
|
|
343
345
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -680,7 +682,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
680
682
|
RMQConfigCCCEmailCommercialAofa: "",
|
681
683
|
RMQConfigCCCEmailBaAofa: "",
|
682
684
|
RMQConfigCCCEmailPropertySurvey: "",
|
683
|
-
RMQConfigCCCEmailReasons: ""
|
685
|
+
RMQConfigCCCEmailReasons: "",
|
686
|
+
RMQConfigCCCEmailBlastServices: "",
|
687
|
+
RMQConfigSocketReceiverServices: ""
|
684
688
|
}
|
685
689
|
}
|
686
690
|
|