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