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