spartaxx.businessmodels 1.0.461 → 1.0.463
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 +4 -0
- package/Common/AppConfigHub.ts +8 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -355,6 +355,10 @@ function createDefaultAppConfigHub() {
|
|
355
355
|
RMQConfigSocketReceiverServices: "",
|
356
356
|
RMQConfigUSMailBlastQueue: "",
|
357
357
|
RMQConfigEmailBlastQueue: "",
|
358
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: "",
|
359
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: "",
|
360
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: "",
|
361
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: "",
|
358
362
|
CPckFileNamePrefixNYAuthorization: ""
|
359
363
|
};
|
360
364
|
});
|
package/Common/AppConfigHub.ts
CHANGED
@@ -342,6 +342,10 @@ export interface AppConfigHub {
|
|
342
342
|
RMQConfigSocketReceiverServices: string;
|
343
343
|
RMQConfigUSMailBlastQueue: string;
|
344
344
|
RMQConfigEmailBlastQueue: string;
|
345
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: string;
|
346
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: string;
|
347
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: string;
|
348
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: string;
|
345
349
|
CPckFileNamePrefixNYAuthorization: string;
|
346
350
|
}
|
347
351
|
|
@@ -690,6 +694,10 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
690
694
|
RMQConfigSocketReceiverServices: "",
|
691
695
|
RMQConfigUSMailBlastQueue: "",
|
692
696
|
RMQConfigEmailBlastQueue: "",
|
697
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: "",
|
698
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: "",
|
699
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: "",
|
700
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: "",
|
693
701
|
CPckFileNamePrefixNYAuthorization: ""
|
694
702
|
}
|
695
703
|
}
|