spartaxx.businessmodels 1.0.460 → 1.0.462
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
@@ -358,7 +358,8 @@ function createDefaultAppConfigHub() {
|
|
358
358
|
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: "",
|
359
359
|
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: "",
|
360
360
|
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: "",
|
361
|
-
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: ""
|
361
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: "",
|
362
|
+
CPckFileNamePrefixNYAuthorization: ""
|
362
363
|
};
|
363
364
|
});
|
364
365
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -346,6 +346,7 @@ export interface AppConfigHub {
|
|
346
346
|
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: string;
|
347
347
|
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: string;
|
348
348
|
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: string;
|
349
|
+
CPckFileNamePrefixNYAuthorization: string;
|
349
350
|
}
|
350
351
|
|
351
352
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -696,7 +697,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
696
697
|
CPckOOTNewYorkResidentialAuthorizationFormPage1BodyHtmlContentId: "",
|
697
698
|
CPckOOTNewYorkResidentialAuthorizationFormPage2BodyHtmlContentId: "",
|
698
699
|
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: "",
|
699
|
-
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: ""
|
700
|
+
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: "",
|
701
|
+
CPckFileNamePrefixNYAuthorization: ""
|
700
702
|
}
|
701
703
|
}
|
702
704
|
|