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