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