spartaxx.businessmodels 1.0.458 → 1.0.459
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 +2 -1
- package/Common/AppConfigHub.ts +3 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -353,7 +353,8 @@ function createDefaultAppConfigHub() {
|
|
353
353
|
RMQConfigCCCEmailReasons: "",
|
354
354
|
RMQConfigCCCEmailBlastServices: "",
|
355
355
|
RMQConfigSocketReceiverServices: "",
|
356
|
-
RMQConfigUSMailBlastQueue: ""
|
356
|
+
RMQConfigUSMailBlastQueue: "",
|
357
|
+
RMQConfigEmailBlastQueue: ""
|
357
358
|
};
|
358
359
|
});
|
359
360
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -341,6 +341,7 @@ export interface AppConfigHub {
|
|
341
341
|
RMQConfigCCCEmailBlastServices: string;
|
342
342
|
RMQConfigSocketReceiverServices: string;
|
343
343
|
RMQConfigUSMailBlastQueue: string;
|
344
|
+
RMQConfigEmailBlastQueue: string;
|
344
345
|
}
|
345
346
|
|
346
347
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -686,7 +687,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
686
687
|
RMQConfigCCCEmailReasons: "",
|
687
688
|
RMQConfigCCCEmailBlastServices: "",
|
688
689
|
RMQConfigSocketReceiverServices: "",
|
689
|
-
RMQConfigUSMailBlastQueue: ""
|
690
|
+
RMQConfigUSMailBlastQueue: "",
|
691
|
+
RMQConfigEmailBlastQueue: ""
|
690
692
|
}
|
691
693
|
}
|
692
694
|
|