spartaxx.businessmodels 1.0.458 → 1.0.460
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 +6 -1
- package/Common/AppConfigHub.ts +11 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -353,7 +353,12 @@ function createDefaultAppConfigHub() {
|
|
353
353
|
RMQConfigCCCEmailReasons: "",
|
354
354
|
RMQConfigCCCEmailBlastServices: "",
|
355
355
|
RMQConfigSocketReceiverServices: "",
|
356
|
-
RMQConfigUSMailBlastQueue: ""
|
356
|
+
RMQConfigUSMailBlastQueue: "",
|
357
|
+
RMQConfigEmailBlastQueue: "",
|
358
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: "",
|
359
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: "",
|
360
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: "",
|
361
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: ""
|
357
362
|
};
|
358
363
|
});
|
359
364
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -341,6 +341,11 @@ export interface AppConfigHub {
|
|
341
341
|
RMQConfigCCCEmailBlastServices: string;
|
342
342
|
RMQConfigSocketReceiverServices: string;
|
343
343
|
RMQConfigUSMailBlastQueue: string;
|
344
|
+
RMQConfigEmailBlastQueue: string;
|
345
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: string;
|
346
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: string;
|
347
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: string;
|
348
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: string;
|
344
349
|
}
|
345
350
|
|
346
351
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -686,7 +691,12 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
686
691
|
RMQConfigCCCEmailReasons: "",
|
687
692
|
RMQConfigCCCEmailBlastServices: "",
|
688
693
|
RMQConfigSocketReceiverServices: "",
|
689
|
-
RMQConfigUSMailBlastQueue: ""
|
694
|
+
RMQConfigUSMailBlastQueue: "",
|
695
|
+
RMQConfigEmailBlastQueue: "",
|
696
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: "",
|
697
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: "",
|
698
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: "",
|
699
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: ""
|
690
700
|
}
|
691
701
|
}
|
692
702
|
|